@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    /* font-size  */
    /*
    Syntax: clamp(minimum_value, preferred_value, maximum_value)
    - minimum_value: The smallest size the font will be.
    - preferred_value: A value relative to the viewport width (e.g., 5vw for 5% of viewport width).
    - maximum_value: The largest size the font will be.
  */
    --font-heading1: clamp(2.5rem, 4.5vw, 5.5rem);
    /* Scales from 35px to 70px, with 6vw in between */
    --font-heading2: clamp(2.5rem, 4.5vw, 5rem);
    --font-heading3: clamp(1.8rem, 3vw, 3.5rem);
    --font-para1: clamp(1.6rem, 2.5vw, 2.2rem);
    --font-para2: clamp(1.4rem, 2vw, 1.8rem);
    --font-para3: clamp(1.3rem, 1.5vw, 1.4rem);
    --font-para4: clamp(1rem, 1.2vw, 1.1rem);
    /* font-color  */
    --header-color: #1c1f35;
    --sub-header-color: #454545;
    --deep-orange: #f86b21;
    --light-blue: #F2F7FA;
    --deep-blue: #1D4394;

}


/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Box Model Fix (Universal Box-Sizing) */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Inherit Basic Styles */
html {
    font-family: "Montserrat", sans-serif;
    font-size: 62.5%;
    line-height: 1.2;
    color: #333;
    text-size-adjust: 100%;
}

body {

    font-family: inherit;
    font-size: inherit;
    color: inherit;
    line-height: inherit;

}

/* Set default font style for block elements */

/* Reset list styles */
ul,
ol {
    list-style: none;
    padding-left: 0;
}

/* Remove default link styling */
a {
    text-decoration: none;
    color: inherit;
}

/* Ensure tables have borders */
table {
    border-collapse: collapse;
    width: 100%;
}

th,
td {
    padding: 0.5em;
    text-align: left;
    border: 1px solid #ddd;
}

/* Set up default form input styling */
input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    border: 1px solid #ccc;
    background: #fff;
    padding: 0.5em;
    margin: 0.25em 0;
    line-height: 1.5;
}

/* Add basic styling for images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    font-weight: 500;
}

/* Reset default block and inline elements' spacing */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
    display: block;
}

/* Fix for inline-block issues */
*::before,
*::after {
    box-sizing: border-box;
}

/* Global HTML Styling */
html,
body {
    height: 100%;
}

/* Prevent unwanted overflow */
body {
    overflow-x: hidden;
}



/* ************************************************************* */
/* navbar css  */
/* ************************************************************* */
.nav .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--font-para2);
    font-weight: 500;
    padding: 1rem 5%;
}


.nav #res-menu {
    display: none;
}

.top-info {
    font-size: var(--font-para3);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--header-color);
    /* border: 1px solid red; */
}

.top-info .social {
    border-left: 2px solid black;
    padding-left: 1rem;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    color: var(--header-color);
}

.top-info .social .icons {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    justify-content: center;
    color: var(--header-color);
}

.top-info .social .icons .icon {
    font-size: var(--font-para2);
}

.nav .bottom {
    min-height: 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #00214C;
    padding: 0 5%;
    font-size: var(--font-para2);
    color: var(--header-color);
}

.nav .bottom .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
}

.nav .bottom .menu>span {
    color: white;
}

.nav .bottom .menu a {
    color: white;
    text-decoration: none;
    text-wrap: nowrap;
    position: relative;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 0.3s;
}

.nav .bottom .menu .active::after {
    position: absolute;
    content: "";
    background-color: rgb(255, 146, 3);
    width: 100%;
    height: 0.4rem;
    bottom: 0rem;
    left: 0;
}

.nav .bottom .menu a::after {
    position: absolute;
    content: "";
    background-color: rgb(255, 146, 3);
    width: 0%;
    height: 0.4rem;
    bottom: 0rem;
    left: 0;
    transition: width 0.3s ease-in-out;
}

.nav .bottom .menu a:hover::after {
    width: 100%;
}

.nav .bottom .button {
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: none;
    background-color: var(--deep-orange);
    color: white;
    outline: none;
    padding: 0rem 2rem;
    min-height: 6rem;
    cursor: pointer;
    font-weight: 600;
}

.nav .bottom .button:hover {
    background-color: white;
    color: black;
}

.nav .bottom button {
    height: 100%;
    border: none;
    outline: none;
    padding: 0rem 2rem;
    cursor: pointer;
    font-weight: 600;
}

.nav .bottom .fa-bars {
    display: none;
    color: white;
    font-size: var(--font-heading2);
}

/* ************************************************************* */
/* media @ 1100  */
/* ************************************************************* */
@media (max-width: 1100px) {
    .nav .top {
        padding: 1rem 5rem;
    }

    .nav .bottom {
        padding: 0 5rem;
    }

}

/* ************************************************************* */
/* media @ 767  */
/* ************************************************************* */
@media (max-width: 767px) {
    .nav .top {
        padding: 1rem 2rem;
    }

    .top-info .social {
        width: 100%;
    }

    .top-info .social {
        border-left: 0px solid black;
        padding-left: 0rem;
    }

    .nav #res-menu {
        position: fixed;
        color: white;
        z-index: 9999;
        background-color: #00214C;
        width: 100%;
        height: 100vh;
        padding: 4rem;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        font-size: var(--font-heading2);
        display: none;
    }

    .nav #res-menu i {
        font-size: var(--font-heading1);
        position: absolute;
        right: 1rem;
        top: 1rem;
        cursor: pointer;
    }

    .nav #res-menu a:hover {
        cursor: pointer;
        color: orange;
    }


    .top-info {
        flex-direction: column;
        align-items: flex-end;
    }

    .nav .bottom {
        padding: 1rem 2rem;
    }

    .nav .bottom .menu {
        display: none;
    }

    .nav .bottom .menu span {
        display: none;
    }

    .nav .bottom .fa-bars {
        display: block;
    }
}

@media (max-width: 454px) {
    .nav .top img {
        width: 5rem;
    }
}



/* ************************************************************* */
/* footer  */
/* ************************************************************* */
footer {
    background-size: cover;
    background-position: center;
    /* padding-bottom: 4rem; */
    color: white;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer .line {
    background-color: red;
    width: 100%;
    border: 1px solid gray;
}

footer .anchor_tags {
    color: blue;
    margin: 1rem 0rem;
    width: 90%;
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    text-align: center;
    gap: 3rem;
    row-gap: 1rem;
    font-size: var(--font-para3);
}

footer .anchor_tags a {
    color: gray;
    position: relative;
    text-align: left;
    font-size: var(--font-para4);
}

footer .anchor_tags a:hover {
    text-decoration: underline;
}

/* footer .anchor_tags a::before {

    content: "";
    position: absolute;
    height: .7rem;
    width: .7rem;
    top: 50%;
    transform: translateY(-50%);
    left: -10%;
    border-radius: 50%;
    background-color: rgb(255, 146, 3);



} */

footer iframe {
    width: 100%;
    height: 20rem;
    border: 0;
    width: 100%;
    /* border: 10px solid red; */
}

footer .actual_footer {
    background: url("../images/footer_BG.jpg");
    background-size: cover;
    padding: 2rem 0rem;

}

footer .top {
    padding-top: 4rem;
    width: 90%;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    /* border: 1px solid red; */
}

footer .top>div {
    flex: 1;
}

footer .top>div:nth-child(1) {
    flex: 1.3
}

footer .top>div:nth-child(1) p {
    margin: 3rem 0rem;
}

footer .top>div .social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    /* border: 2px solid red; */
    width: fit-content;
}

footer .top>div .social .icon:hover {
    color: rgb(255, 146, 3);
}



footer .top>div a {
    font-size: var(--font-para3);
    display: block;
}

footer .top>div a:hover {
    color: rgb(255, 146, 3);
}

footer .top>div p {
    font-size: var(--font-para3);
}

footer .top>div h3 {
    font-size: var(--font-para1);
    margin-bottom: 2rem;
}

footer hr {
    width: 90%;
    margin: auto;
    height: 0.2rem;
    margin: 2rem auto;
    background-color: white;
}

footer .bottom {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--font-para3);
    flex-wrap: wrap;
}

footer .bottom a:hover {
    color: rgb(255, 146, 3);
}

footer .top>div:nth-child(4) div {
    font-size: var(--font-para3);
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ************************************************************* */
/* media @ 1100  */
/* ************************************************************* */
@media (max-width: 1100px) {

    footer .anchor_tags {
        width: 90%;
        grid-template-columns: auto auto auto auto;
    }

    footer .top,
    footer .bottom,
    footer hr {
        width: 90%;
    }
}

/* ************************************************************* */
/* media @ 767  */
/* ************************************************************* */
@media (max-width: 767px) {
    footer .anchor_tags {

        width: 90%;
        grid-template-columns: auto auto auto;

    }

    footer .top {
        flex-wrap: wrap;
        justify-content: center;
        width: 90%;
    }

    footer .top>div {
        flex: 0 0 calc(50% - 1rem);
        margin-bottom: 2rem;
    }
}

/* media @ 454  */
@media (max-width: 454px) {
    footer .anchor_tags {
        text-align: left;
        width: 90%;
        grid-template-columns: auto auto;
    }

    footer .top {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        width: 90%;
    }

    footer .top>div {
        flex: 0 0 100%;
        /* Force each div to take full width */
        margin-bottom: 0;
        /* border: 1px solid red; */
        /* Remove row spacing when single column */
        text-align: left;
        /* Optional: Center text inside each div */
    }


    footer .top>div .social .icon:hover {
        color: rgb(255, 146, 3);
    }
}

/* ************************************************************* */
/* Extra common classes */
/* ************************************************************* */
.title {
    padding: 1rem 4rem;
    border-radius: 0.5rem;
    width: fit-content;
    font-size: var(--font-para1);
    background-color: var(--deep-orange);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.blank {
    min-height: 20vh;
    border: 2px solid black;
}