/* CSS Variables */
:root {
    --brand-primary: #0e57a3;
    --brand-accent: #EEBC19;
    --footer-dark: #0b2236;
    --text-primary: #2F2F2F;
    --text-secondary: #2F2F2F;
    --bg-light: #F8F6F6;
    --white: #ffffff;
}

/* Global Styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 0;
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1648px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h2 {
    font-weight: 400;
}

/* Header Styles */
.site-header {
    background: #fff;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled {
    background: #fff;
}

.site-header .navbar {
    padding: 1rem 0;
}

.logo-img{
    transition: all 0.3s ease-in-out;
}

.site-header .navbar-brand .logo-img {
    filter: none;
    transition: filter 0.3s ease;
}

.site-header .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.site-header .nav-link:hover {
    color: var(--brand-primary);
}

.site-header .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.site-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-header.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
    max-height: 88.5vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.hero .container {
    z-index: 2;
    position: relative;
}

.hero .row {
    min-height: 100vh;
}

.hero-content {
    padding: 2rem 0;
    transform: translateY(20%);
    /* text-align: center; */
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    color: var(--brand-accent);
    line-height: normal;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content h1 span{
    display: block;
    font-size: 4rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.375rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

h1{
    font-weight: normal;
}

/* Award Categories Section */
.award-categories {
    color: #fff;
    position: relative;
    overflow: hidden;
}

.award-categories .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.75) 100%); */
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.award-categories .container {
    position: relative;
    z-index: 1;
}

.award-bg-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.award-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
    padding: 0 1.5rem;
}

/* Eyebrow Labels */
.eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-primary);
    margin-bottom: 0.75rem;
    font-family: Arial, Helvetica, sans-serif;
}

/* Accent Button */
.btn-accent {
    /* background-color: var(--brand-accent); */
    background: var(--btn, linear-gradient(180deg, #EFCB70 0%, #BB853A 100%));
    color: #fff;
    text-transform: uppercase;
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 100px;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease-in-out;
}

.btn-accent.loginBtn{
background: linear-gradient(180deg, #6D6D6D 0%, #2F2F2F 100%);
}

.btn-accent.loginBtn:hover{
background: linear-gradient(180deg, #3e3e3e 0%, #1f1f1f 100%);
}

.btn-accent:hover {
    /* background: #ad8713 !important; */
    background: var(--btn, linear-gradient(180deg, #d8a31b 0%, #ca9605 100%));
    color: #fff;
    /* color: #000; */
    transform: translateY(-2px);
    /* box-shadow: 0 4px 12px rgba(255, 212, 42, 0.4); */
}

.btn-accent:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 212, 42, 0.5);
    color: #fff;
}

/* Cards */
.card {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--white);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.card-img-top {
    transition: transform 0.5s ease;
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.card:hover .card-img-top {
    transform: scale(1.08);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.card-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.who-can-participate .subHeading{
    font-size: 25px;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}



/* Service Icons */
.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.service-icon-img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 40px;
    font-size: 140px;
    color: var(--brand-primary);
    opacity: 0.08;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1;
    font-weight: 700;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* Footer Dark */
.footer-dark {
    background-color: var(--bg-light);
    color: #000;
}

.footer-dark .text-white-50 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.footer-dark .text-white-50:hover {
    color: var(--brand-accent) !important;
}

.footer-dark h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-dark a {
    transition: all 0.3s ease;
}

.footer-dark a:hover {
    color: #1D1D1D;
    transform: translateY(-3px);
}

/* .footer-dark hr {
    border-color: rgba(255, 255, 255, 0.1);
} */

.footer-link a{
    color: #000;
    margin: 0px 25px;
    text-decoration: none;
}

.copyrightText a{
    color: var(--text-secondary);
    margin: 0 5px;
    text-decoration: none;
}

.copyrightText a:hover{
    color: #000;
}

/* Section Spacing */
section {
    padding: 6rem 0;
}

section.bg-light {
    background-color: var(--bg-light) !important;
}

section h2 {
    font-size: 2.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

section .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Badge Styles */
.badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.bg-primary {
    background-color: var(--brand-primary) !important;
}

/* Button Styles */
.btn-outline-primary {
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.btn-outline-primary:hover {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

.btn-link {
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
}

.btn-link:hover {
    color: var(--brand-accent);
}

.menuIcon{
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: start;
    cursor: pointer;
}

.menuIcon span{
    display: block;
    height: 2px;
    border-radius: 2px;
    background: #212121;
    width: 30px;
    transition: all 0.2s ease-in-out;
}

.menuIcon span:nth-child(2){
    width: 40px;
}

.menuIcon:hover span{
    width: 40px;
}

/* .menuIconCont, .rightBtnCol{
    border-left: 1px solid #D9D9D9;
} */

.logoCont{
    /* border-right: 1px solid #D9D9D9; */
    /* max-width: 220px; */
    transition: all 0.2s ease-in-out;
}

.loginCont{
    border-bottom: 1px solid #D9D9D9;
}


/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Additional Utilities */
.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.bg-white-50 {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

/* Image Styles */
img {
    max-width: 100%;
    height: auto;
}

.img-fluid {
    border-radius: 12px;
}

/* Service Section */
.service-icon svg {
    transition: transform 0.3s ease;
}

.service-icon:hover svg {
    transform: scale(1.1);
}

/* Typography Refinements */
p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.text-muted {
    color: var(--text-secondary) !important;
}

/* Button Refinements */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: Arial, Helvetica, sans-serif;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Navbar Refinements */
.navbar-nav .nav-link, .deskMenu .nav-link {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: #000;
    border-radius: 5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

.header-row{
    width: 100%;
}



.navbar-nav .nav-link{
    position: relative;
}



/* Partners Section */
.partners{
    background: var(--bg-light);
}
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 1.5rem; */
    /* opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%); */
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-logo img {
    height: auto;
    width: 100%;
    /* object-fit: contain; */
}

/* Footer Refinements */
.footer-dark ul li {
    margin-bottom: 0.5rem;
}

.footer-dark p {
    /* color: rgba(255, 255, 255, 0.8); */
    line-height: 1.7;
}

.logo-anchor{
    display: block;
    padding-right: 1rem;
}

.header-icon a{
    text-decoration: none;
    color: #1D1D1D;
    font-size: 0.9rem;
}

.mainNav{
    width: 100%;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.aboutCont p, .participate-bg p{
    font-size: 25px;
    /* font-family: 'Times New Roman', Times, serif; */
}

.participate-bg p{
    line-height: 2rem;
}

.participate-bg{
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.participate-bg:hover .yellowVector{
    opacity: 1;
}

.yellowVector{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.yellowVector img{
    width: 100%;
    height: 100%;
}

.participate-content, .service-icon{
    position: relative;
    z-index: 3;
}

.participate-bg:hover .service-icon img{
    filter: brightness(10);
}

.trimImg{
    position: absolute;
    right: 0;
    top: 0;
    width: 80%;
    height: 80%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.participate-bg:hover .trimImg{
    opacity: 1;
}

.trimImg img{
    width: auto;
    height: 90%;
    object-fit: cover;
}

.participate-content{
    padding-top: 3rem;
    padding-right: 2rem;
}

.cir-arrow{
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--text-primary);
    border-radius: 50%;
}

.cir-arrow svg{
    width: 70%;
    height: auto;
}

.participate-bg .cir-arrow, .awardSlide .cir-arrow{
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 4;
}

.awardSlide .cir-arrow{
    border: 1px solid #fff;
}

.awardSlide .cir-arrow svg path{
    fill: #fff;
}

.awardSlide{
    border-radius: 10px;
    border: 1px solid #D0D0D0;
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(0.5px);
    position: relative;

}

.swiper-slide{
    height: auto;
}

.swiper-slide.awardSlide{
    width: 300px;
    transition: all 0.3s ease-in-out;
}


.awardSlide h3{
    color: #fff;
    font-weight: 600;
    margin-bottom: 4rem;
}

.awardSlide{
    padding: 2rem 2rem 6rem 2rem;
}

.awardSlide p{
    color: #fff;
}

.awardSwiper .swiper-pagination{
    position: relative;
    top: inherit;
    bottom: inherit;
    padding-top: 20px;
}

.swiper-pagination-bullet{
    width:  20px;
    height: 20px;
    background: none;
    border: 1px solid #fff;
    position: relative;
}

.swiper-pagination-bullet::after{
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    left: 5px;
    top: 5px;
    position: absolute;
}

.logoSwiper .swiper-slide{
    width: 250px;
}

.topLightBorder{
    border-top: 1px solid #D9D9D9;
}

.bottomLightBorder{
    border-bottom: 1px solid #D9D9D9;
}

.logo-anchor{
    display: block;
    margin: 0 auto;
    /* max-width: 150px; */
}

.logo-anchor img{
    width: 100%;
    height: auto;
}

.closeBtn{
    display: none;
}

  .deskMenu{
        position: absolute;
        width: 250px;
        right: 0;
        top: 74px;
        background: #fff;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        display: none;
    }

    .deskMenu ul{
        overflow: hidden;
    }
    .deskMenu ul, .deskMenu ul li{
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    .deskMenu ul li:hover{
        background: var(--brand-accent);
    }

    .deskMenu ul li:hover a.nav-link{
        color: #000;
    }

    .menuIconCont:hover .deskMenu{
        display: block;
    }

    .btn-gray{
        background: #e1e1e1;
    }
    .btn-gray:hover{
        background: #cdcdcd;
        color: #000;
    }

    .deleteField{
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        width: 20px;
        cursor: pointer;
    }

    .deleteField svg{
        width: 100%;
        height: auto;
        fill: red;
    }

    .shareHolderList .form-control{
        padding-right: 2.5rem;
    }

    .correctSign{
        width: 30px;
        height: auto;
        fill: #279818;
    }


    .note{
        padding-top: 5px;
        font-size: 13px;
    }


    .case-study-heading{
        position: relative;
        padding-bottom: 15px;
        /* padding-left: 20px; */
        border-bottom: 1px solid #ccc;
    }

    .question{
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        font-weight: bold;
        line-height: 1.2;
        color: var(--text-primary);
        display: flex;
        gap: 1rem;
    }

    .question strong{
        color: #000;
        font-weight: normal;
        flex: 0 0 auto;
    }

    .answerField{
        min-height: 100px !important;
    }

    .delete_edit_btns svg{
        width: 20px;
        height: auto;
        cursor: pointer;
    }

    .delete-icon{
        fill: rgb(210, 47, 47);
    }
    .edit-icon{
        fill: var(--text-primary);
    }

    .table.applicant-details tr td:first-child{
        width: 40%;
    }

    .menuIconCont{
        display: none;
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.75));
        z-index: 1;
    }


    /* .aboutCont{
        background: url(../images/left-circle.png) no-repeat left top;
        background-size: 20% auto;
    } */

    .aboutCont {
  background-image:
    url("../images/left-circle.png"),
    url("../images/right-circle.png");

  background-repeat:
    no-repeat,
    no-repeat;

  background-position:
    left top,
    right bottom;

  background-size:
    20% auto,
    15% auto;
}

    /* .case-study-heading::after{
        content: '';
        display: block;
        width: 10px;
        height: 10px;
        background: var(--brand-accent);
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 0px;
        transform: translateY(-50%);
    } */

/* Responsive Typography */



@media (min-width: 1200px) {
    .fixed-top {
    position: sticky;
}


footer .logo-anchor{
    max-width:25vw;
}

.site-header .nav-link {
    margin: 0 1.5vw;
}

.navbar-nav .nav-link:hover{
    color: #000;
}

.navbar-nav .nav-link::after{
    content: '';
    display: block;
    left: 50%;
    bottom: 0;
    position: absolute;
    width: 0%;
    height: 2px;
    transform: translateX(-50%);
    background:var(--btn, linear-gradient(180deg, #EFCB70 0%, #BB853A 100%));
    transition: all 0.2s ease-in-out;
}

.navbar-nav .nav-link:hover::after{
    width: 80%;
}
    .btn-accent{
        min-width: 7vw;
    }
    .delete_edit_btns svg{
        width: 1.1vw;
        height: auto;
    }

    .answerCont{
        padding-left: 3.5vw;
    }

    .note{
        font-size: 0.9vw;
        padding-top: 0.5vw;
    }

    .question{
        font-size: 1.1vw;
    }

    .correctSign{
        width: 1.5vw;
    }

        .deleteField{
        right: 0.9vw;
        width: 1.1vw;

    }
    .deskMenu ul li a.nav-link{
        font-size: 1.1vw;
    }
    .deskMenu{
        width: 18vw;
        top: 9vh;
    }

    .logoSwiper .swiper-slide{
        width: 20vw;
    }

    .swiper-slide.awardSlide{
        width: 19.5vw;
        max-height: 400px;
        overflow: hidden;
    }

    .swiper-slide.awardSlide:hover{
        width: 38vw;
        background: var(--brand-accent);
    }

    .awardSlide p{
        opacity: 0;
    }

    @keyframes fadeOut {
        0%{
            opacity: 0;
        }

        100%{
            opacity: 1;
        }
    }

    .swiper-slide.awardSlide:hover p{
        color: var(--text-primary);
        /* opacity: 1; */
        animation: fadeOut 0.5s ease-in 0.2s 1 forwards;
    }

    .awardSlide h3{
       font-size: 1.6vw;
    }

    .awardSlide:hover h3{
        color: var(--text-primary);
    }

    .awardSlide:hover .cir-arrow {
        border: 1px solid var(--text-primary);
    }

    .awardSlide:hover .cir-arrow svg path{
        fill: var(--text-primary);
    }

    .cir-arrow{
        width: 3vw;
        height: 3vw;
    }
    .participate-content{
        padding-top: 3vw;
        padding-right: 4vw;
    }
    .container{
        max-width: 86vw;
    }
    .participate-bg p{
    line-height: 2vw;
}
    .service-icon{
        height: 8vw;
    }
    .who-can-participate .subHeading{
        font-size: 1.563vw;
    }
    .aboutCont p, .participate-bg p{
        font-size: 1.563vw;
    }
    .logoCont{
        width: 18vw;
    }
    .scrolled .logoCont{
        width: 12vw;
    }
    /* .rightBtnCol{
        padding-left: 3vw;
    } */
    .header-icon a{
        font-size: 1vw;
    }
    .mainNav, .loginCont{
        padding: 0vw 0vw 0vw 0vw;
    }
    .navbar-nav{
        justify-content: space-between;
    }
    .logo-anchor{
        padding:0.5vw 0vw 0.5vw 0vw;
    }
    /* Typography */
    h1 {
        font-size: 3.6vw;
        line-height: 1.1;
    }

    h2 {
        font-size: 3vw;
        line-height: 1.2;
    }

    section h2{
        font-size: 3.5vw;
    }

    .hero-content h1 {
        font-size: 4.4vw;
        line-height: 1.1;
        /* line-height: 7vw; */
        margin-bottom: 2vw !important;
    }
    /* .hero-content h1 span{
        font-size: 4.4vw;
    } */

    .hero-content p,
    .lead {
        font-size: 1.1vw;
        line-height: 1.6;
    }

    p {
        font-size: 1vw;
    }

    /* Spacing */
    section {
        padding: 4.8vw 0;
    }

    .hero-content {
        padding: 1.2vw 0;
    }

    .row.mb-5 {
        margin-bottom: 2.5vw;
    }

    /* Buttons */
    .btn {
        padding: 0.6vw 1.6vw;
        border-radius: 0.6vw;
        font-size: 0.9vw;
    }

    .btn-lg {
        padding: 0.9vw 1.1vw;
        font-size: 1.05vw;
    }

    .btn-accent {
        border-radius: 0.4vw;
    }

    /* Cards */
    .card {
        border-radius: 0.8vw;
    }

    .card-title {
        font-size: 1.25vw;
    }

    .card-text {
        font-size: 0.95vw;
    }

    .card-img-top {
        height: 12.5vw;
    }

    /* Navbar */
    .site-header .navbar {
        padding: 0vw 2vw;
    }

    .navbar-nav .nav-link {
        font-size: 1vw;
        padding: 0.4vw 0.8vw;
    }

    /* Award categories */
    .award-content h2 {
        font-size: 2.2vw;
    }

    .award-content p {
        font-size: 1.05vw;
    }
}


@media(max-width:1199px){

    footer .logo-anchor{
        max-width: 150px;
    }

    .navbar-nav .nav-link:hover{
        color: var(--brand-accent);
    }

    .menuIconCont{
        display: flex;
    }

    .menuIconCont:hover .deskMenu{
        display: none;
    }

    .scrolled .logoCont {
        max-width: 100px;
    }

    .site-header .navbar {
        padding: 0rem 0;
    }

    .logo-anchor{
        padding-right: 0rem;
        padding: 10px 0px 10px;
    }



    .closeBtn{
        display: block;
        color: #fff;
        width: 30px;
        position: absolute;
        right: 15px;
        top: 15px;
        z-index: 9;
        cursor: pointer;
    }

    .closeBtn svg{
        width: 100%;
        height: auto;
    }

    .closeBtn svg path{
        fill: #fff;
    }

    .header-row{
        width: 100%;
    }

    .navbar-nav{
        position: fixed;
        width: 100%;
        max-width: 500px;
        height: 100vh;
        overflow: auto;
        z-index: 9;
        right: -100%;
        top: 0;
        background-color: #1D1D1D;
        display: block;
        padding: 50px 30px 30px;
        transition: all 0.4s ease-in-out;
    }

    .navbar-nav .nav-link{
        font-size: 24px;
        color: var(--bg-light);
        margin-bottom: 10px;
    }
}


@media (max-width: 992px) {
    .hero {
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.25rem;
    }

    section h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .footer-link a{
        margin-bottom: 20px;
    }
    .hero {
        min-height: 70vh;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.75rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .card-img-top {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .logo-anchor{
        max-width: 200px;
    }
    .btn-lg {
        padding: 0.8rem 2.5rem;
    }
    .hero {
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
    .footer-link a{
        margin:0px 20px 20px 0px;
        display: inline-block;
    }
    .hero-content h1 span{
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .container{
        padding: 0px 20px;
    }
}



.select2-container--default .select2-search--inline .select2-search__field {

    height: 38px!important;

}
