/* 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;
}

ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}



/* 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(5%);
    /* 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;
    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, .submitBtn{
    background: linear-gradient(180deg, #6D6D6D 0%, #2F2F2F 100%);
}

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

.btn-accent.loginBtn:active, .btn-accent.btn-lg:active, .submitBtn:active{
    color: #fff;
}

.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;
}


.loginBtn svg{
    width: 20px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}


/* 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;
    background: hsla(0, 0%, 89%, 1);

background: linear-gradient(90deg, hsla(0, 0%, 89%, 1) 0%, hsla(0, 0%, 100%, 1) 27%, hsla(0, 0%, 100%, 1) 73%, hsla(0, 0%, 92%, 1) 100%);

background: -moz-linear-gradient(90deg, hsla(0, 0%, 89%, 1) 0%, hsla(0, 0%, 100%, 1) 27%, hsla(0, 0%, 100%, 1) 73%, hsla(0, 0%, 92%, 1) 100%);

background: -webkit-linear-gradient(90deg, hsla(0, 0%, 89%, 1) 0%, hsla(0, 0%, 100%, 1) 27%, hsla(0, 0%, 100%, 1) 73%, hsla(0, 0%, 92%, 1) 100%);


}

.contact-section{
    background: #F8F6F6;
}

.contact-section h2{
    font-size: 24px;
    font-weight: bold;
    color: #2F2F2F;
}

.contact-section p a{
    color: var(--text-secondary);
    text-decoration: none;
}

.contact-icon{
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.25);
    display: flex;
}

.contact-icon svg{
    margin: auto;
    width: 45%;
    height: auto;
}

.quickEnquiry input, .quickEnquiry textarea{
    width: 100%;
    
    border-radius: 8px;
    border: 1px solid #838383;
    background: #FFF;
    
}

.quickEnquiry input{
    height: 45px;
    padding: 0px 25px;
}

.quickEnquiry textarea{
    padding: 10px 25px;
}

.quickEnquiry ::placeholder{
    color: #2f2f2f;
}

.textField{
    margin-bottom: 30px;
}


/***************************************************************/
.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;
    text-transform: uppercase;
}

.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 */

body{
    padding-top: 100px;
}

.who-can-participate{
    background: url(../images/gray-pattern-bg.jpg) no-repeat;
    background-size: cover;
}

.participateBox{
    height: 100%;
    background: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.participateBox:hover{
    transform: translateY(-3px);
    box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.2);
}

.participate-icon{
    width: fit-content;
    margin-bottom: 15px;
}

.participate-icon img{
    width: auto;
    height: 50px;
}

.participateBox h3{
    font-size: 24px;
    position: relative;
    margin-bottom: 20px;
}

.participateBox h3::after{
    content: '';
    display: block;
    position: relative;
    width: 50px;
    height: 4px;
    background: var(--brand-accent);
    margin-top: 10px;
}

.participateBox ul li{
    margin-bottom: 20px;
}

.participateBox ul li:last-child{
    margin-bottom: 0px;
}

.participateBox li{
    padding-left: 30px;
    position: relative;
}

.participateBox li::after{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--btn, linear-gradient(180deg, #EFCB70 0%, #BB853A 100%));
    position: absolute;
    left: 0;
    top: 7px;
}

.award-item{
    border: 1px solid #B7B7B7;
    /* border-left: 1px solid #B7B7B7; */
    padding: 40px;
    width: 20%;
    text-align: center;
    min-height: 200px;
    display: flex;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.innerCont{
    min-height: 131px;
}

.first-row .award-item{
    border-left: 1px solid #B7B7B7;
    border-top: 1px solid #B7B7B7;
    /* border-bottom: 1px solid #B7B7B7; */
}

.first-row .award-item:last-child, .second-row .award-item:last-child, .third-row .award-item:last-child{
     border-right: 1px solid #B7B7B7;
}

.second-row .award-item{
    border-left: 1px solid #B7B7B7;
    border-top: 1px solid #B7B7B7;
    border-bottom: 1px solid #B7B7B7;
}

.third-row .award-item{
    border-left: 1px solid #B7B7B7;
    /* border-top: 1px solid #B7B7B7; */
    border-bottom: 1px solid #B7B7B7;
}

.award-item.no-border{
    border: none;
}

.award-item.no-border:hover{
    background: none;
}

.award-item img{
    width: auto;
    height: 85px;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
}

.award-item p{
    margin-bottom: 0px;
    line-height: 1.4;
}

.award-item:hover{
    background: var(--btn, linear-gradient(180deg, #EFCB70 0%, #BB853A 100%));
}

.award-item:hover img{
    filter: brightness(10);
}

.award-item:hover p{
    color: #fff;
}

.popup{
    display: none;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    max-width: 90%;
}

.popup h2{
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.categoryIcon{
    width: 150px;
    height: 150px;
    border: 1px solid #B7B7B7;
    border-radius: 50%;
    display: flex;
    margin: 0px auto 30px auto;
     background: var(--btn, linear-gradient(180deg, #EFCB70 0%, #BB853A 100%));
}

.categoryIcon img{
    width: 60%;
    height: auto;
    margin: auto;
    filter: brightness(10);
}

.f-thumbs{
    display: none;
}

.login-dropdown{
    background: #2f2f2f;
    border: 1px solid #ccc;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    width: 100%;
    left: 0px;
    padding: 0px;
    display: none;
}

.loginContainer{
    z-index: 99;
}

.login-dropdown li{
    padding: 15px;
}

.login-dropdown li a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: block;
 }

 .login-dropdown li a svg{
    display: inline-block;
    margin-right: 10px;
    width: 20px;
    height: auto;
 }

  .login-dropdown li:hover{
    background: #5f5f5f;
  }

  .awardCategories{
   background: #F8F6F6;
  }

  .accordHead{
    display: flex;
    gap: 2rem;
    position: relative;
    align-items: center;
    border-bottom: 1px solid #868686;
    padding-bottom: 15px;
    padding-right: 45px;
    cursor: pointer;
  }

  .accordHead span{
    position: absolute;
    display: flex;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(180deg, #6D6D6D 0%, #2F2F2F 100%);
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 20px;
    font-size: 1.5rem;
  }

  .accordHead span strong{
    font-weight: normal;
    line-height: 0;
    margin: auto;
    text-align: center;
    color: var(--brand-accent);
  }

  .accordHead img{
    width: 50px;
    height: auto;
  }

  .accordHead h3{
    font-size: 24px;
    color: var(--text-primary);
  }

  .accordHead.active h3{
    color: #000;
  }

  .accordHead.active img{
    filter: brightness(0.5);
  }

  .accordData{
   border-radius: 8px;
    background: #FFF;
    box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.25);
    padding: 20px;
    overflow: hidden;
    position: relative;
    display: none;
  }

  .yellowCir{
    width: 200px;
    height: 200px;
    background: var(--brand-accent);
    border-radius: 50%;
    right: 0;
    bottom: 0;
    transform: translate(23%,36%);
    position: absolute;
    z-index: 1;
  }

  .categoryTrophy{
    width: 100px;
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
  }

  .categoryTrophy img{
    width: 100%;
    height: auto;
  }

@media (min-width: 1200px) {
   
   
  .loginBtn.btn-accent{
    max-width: 11.5vw;
    min-width: 11vw;
   }
  
  .accordData .accordContent{
    min-height: 12vw;
  }  

  .accordHead span{
    width: 2.135vw;
    height: 2.135vw;
    font-size: 2vw;
  }  

  .categoryTrophy{
    width: 18vw;
  }    
    /* .fixed-top {
    position: sticky;
} */

.yellowCir{
    width: 25vw;
    height: 25vw;
}

.accordData p{
    font-size: 1.1vw;
}
  .accordData{
    padding: 3vw 28vw 4vw 3.5vw;
    border-radius: 0.3vw;
  }  

  .accordHead{
    gap: 2vw;
    padding-bottom: 1vw;
  }
  .accordHead h3{
    font-size: 1.7vw;
  }
.accordHead img{
    width: 3.1vw;
  }

.quickEnquiry input{
    height: 3.2vw;
    font-size: 1.1vw;
}

.quickEnquiry textarea{
    min-height: 6vw;
    font-size: 1.1vw;
}

.textField{
    margin-bottom: 1.6vw;
}

.contact-icon{
    width: 3.3vw;
    height: 3.3vw;
}

.contact-section h2{
    font-size: 1.7vw;
}

.contact-section p{
    font-size: 1.1vw;
}




.loginBtn svg{
    width: 1.4vw;
}

.popup{
    max-width: 60vw;
}

.popup h2{
    font-size: 1.8vw;
}
.categoryIcon{
    width: 8vw;
    height: 8vw;
}

.innerCont{
    min-height: 6.823vw;
}
.award-item{
    padding: 2vw;
    min-height: 14vw;
}

.award-item img{
    height: 4.2vw;
    margin-bottom: 1.2vw;
}

.award-item p{
    font-size: 1.1vw;
}

.participateBox li::after{
    width: 0.6vw;
    height: 0.6vw;
    top: 0.4vw;
}

.participateBox li{
    padding-left: 1.6vw;
}
.participateBox  li{
    font-size: 1.1vw;
    margin-bottom: 1vw;
}

.participateBox p{
    font-size: 1.1vw;
}

.participateBox h3{
    margin-bottom: 1.5vw;
}

.participateBox h3::after{
    width: 4vw;
}
.participate-icon{
    margin-bottom: 1vw;
}

.participateBox h3{
    font-size: 1.5vw;
}

.participate-icon img{
    height: 4.4vw;
}

body{
    padding-top: 6.5vw;
}

footer .logo-anchor{
    max-width:25vw;
}
    
.site-header .nav-link {
    margin: 0 1.2vw;
}

.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: 90vw;
    }
    .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: 17vw;
    }
    .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: 0vw 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){
     .logoCont {
    /* border-right: 1px solid #D9D9D9; */
    max-width: 220px;
  }
    .award-item.no-border{
    border: none;
    display: none;
}
    .award-item{
        width: 33%;
        border: 1px solid #B7B7B7;
    }

    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) {
    .faqsection table tr td:last-child{
        min-width: 250px;
    }
    .container{
        width: 90%;
    }
    .hero {
        min-height: 80vh;
        padding: 0;
    }
    
    .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: 767px) {
    .hero{
        max-height: inherit;
    }
}


@media (max-width: 576px) {
    .accordHead span{
        top: 0%;
        transform: translateY(0px);
    }
    .categoryTrophy, .yellowCir{
        display: none;
    }
    .accordHead img{
        display: none;
    }
    .accordHead h3{
        font-size: 18px;
    }
    .loginBtn svg{
        margin-left: 30px;
    }
    .footer-link{
        text-align: center;
    }
    .award-item{
        width: 50%;
    }
    .aboutCont p, .participate-bg p {
    font-size: 16px;
    }
    body{
        padding-top: 92px;
    }
    .scrolled .logoCont {
        max-width: 200px;
    }
    .logo-anchor{
        max-width: 200px;
    }
    .btn-lg {
        padding: 0.8rem 2.5rem;
    }
    .hero {
        min-height: 60vh;
        max-height: 83vh;
    }

    .categoryIcon {
    width: 100px;
    height: 100px;
    }

    .hero-content {
    transform: translateY(26%);
    }
    
    .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;
    }
}


@media (max-width: 399px) {
    .award-item{
        width: 100%;
    }
    p{
        font-size: 14px;
    }

    .termsconditionSection li, .termsconditionSection p{
        font-size: 14px;
        line-height: normal;
    }
}       


