/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap'); */

/*font-family: 'Montserrat', sans-serif;*/
:root {
    --primary: #007367;
    --secondary: #FEE715;
    --white: #fff;
    --black: #101820;
    --wheat: #FCEDDA;
    --grey: #9a9a9a;
    --bluelight: #7f83bc;
    --red: #c00000;
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

ul {
    margin: 0px;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}
.about-list li{
    list-style-type: disc;
    color: #fff;
}
/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--grey);
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--black);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
    ;
}

body {
    width: 100%;
    height: auto;
    font-size: 14px;
    /* font-family: 'Montserrat', sans-serif; */
    font-family: 'Inter Regular';

    /* letter-spacing: 1.2px; */
    background: #fff;
}

#wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0% auto;
}

#feedback {
    position: fixed;
    z-index: 5000000;
    width: 112px;
    overflow: hidden;
    cursor: pointer;
    right: 0px;
    top: 33%;
    background-color: var(--primary);
    text-align: center;
    text-align: center;
    padding: 5px 0px;

}

#feedback a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

#feedback #register {
    background: none;
    border: none;
    color: #fff;

}

    :root {
      --brand: #007367;
      --brand-dark: #005a50;
      --brand-light: #e6f4f2;
      --accent: #c8972a;
      --text-dark: #12263a;
      --text-body: #3a4a5c;
      --text-muted: #6b7c93;
      --bg-page: #eef2f7;
      --bg-card: #ffffff;
      --track-bg: #f4f7fa;
      --border: #dde4ed;
    }

    *, *::before, *::after { box-sizing: border-box; }

    body {
      font-family: 'Inter Regular';
      background: var(--bg-page);
      color: var(--text-body);
      margin: 0;
      padding: 0;
    }

    /* ── Section ── */
    #about {
      padding: 5rem 0 5rem;
    }

    /* ── Title block ── */
    .about-title-wrap {
      text-align: center;
      margin-bottom: 2.5rem;
      position: relative;
    }

  

    .about-title {
      font-size: clamp(2.4rem, 6vw, 3.4rem);
      font-weight: 800;
      color: var(--text-dark);
      letter-spacing: -.03em;
      margin: 0 0 .85rem;
      line-height: 1.1;
    }

    .about-title-underline {
      display: block;
      width: 52px;
      height: 4px;
      background: var(--accent);
      border-radius: 2px;
      margin: 0 auto;
    }

    /* ── Main card ── */
    .about-card {
      background: var(--bg-card);
      border-radius: 1.25rem;
      border: 1px solid var(--border);
      box-shadow: 0 4px 24px rgba(18,38,58,.07);
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
    }

    /* faint decorative circle top-right */
    .about-card::after {
      content: '';
      position: absolute;
      top: -90px; right: -90px;
      width: 260px; height: 260px;
      border-radius: 50%;
      border: 40px solid rgba(0,115,103,.04);
      pointer-events: none;
    }

    /* ── Body text ── */
    .about-body-text {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text-body);
      margin: 0 0 1.25rem;
    }
    .about-body-text:last-of-type { margin-bottom: 0; }
    .about-body-text strong {
      color: var(--text-dark);
      font-weight: 700;
    }
    .prize-amount {
      color: var(--text-dark);
      font-weight: 700;
    }

    /* ── Tracks ── */
    .tracks-section {
      margin: 2rem 0;
    }

    .track-item {
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
      margin-bottom: 1.5rem;
    }
    .track-item:last-child { margin-bottom: 0; }

    /* dashed outer ring + solid icon circle */
    .track-icon-ring {
      flex-shrink: 0;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border: 2px dashed var(--brand);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .track-icon-inner {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: var(--brand);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .track-icon-inner i {
      font-size: 1.55rem;
      color: #fff;
    }

    /* bullet + text box */
    .track-content-wrap {
      display: flex;
      align-items: flex-start;
      gap: .6rem;
      flex: 1;
      min-width: 0;
    }

    .track-bullet {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--text-dark);
      flex-shrink: 0;
      margin-top: .55rem;
    }

    .track-text-box {
      flex: 1;
      background: var(--track-bg);
      border-radius: .75rem;
      padding: 1rem 1.25rem;
      font-size: .97rem;
      line-height: 1.7;
      color: var(--text-body);
    }
    .track-text-box strong {
      color: var(--text-dark);
      font-weight: 700;
    }

    /* ── Divider ── */
    .about-divider {
      border: none;
      border-top: 1.5px solid var(--border);
      margin: 1.75rem 0;
    }

    /* ── Closing text ── */
    .about-close-text {
      font-size: 1rem;
      line-height: 1.85;
      color: var(--text-body);
      margin: 0;
    }
    .about-close-text strong {
      color: var(--brand);
      font-weight: 700;
    }
    .about-close-text a {
      color: var(--brand);
      font-weight: 700;
      text-decoration: none;
    }
    .about-close-text a:hover {
      text-decoration: underline;
    }

    /* ── Responsive ── */
    @media (max-width: 767.98px) {
      #about { padding: 3.5rem 0 3.5rem; }
      .about-card { padding: 1.5rem; }
      .about-card::after { display: none; }
      .track-icon-ring { width: 64px; height: 64px; }
      .track-icon-inner { width: 50px; height: 50px; }
      .track-icon-inner i { font-size: 1.25rem; }
    }

    @media (max-width: 575.98px) {
      .about-title { font-size: 2rem; }
      .track-item { flex-direction: row; align-items: flex-start; }
      .track-text-box { padding: .85rem 1rem; font-size: .92rem; }
    }











.w-50 {
    width: 50% !important;
}

p {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    margin: 0 0 10px;
}

li {
    font-size: 16px;
}

.heading {
    color: var(--black);
    font-size: 40px;
    /* font-weight: 700; */
    margin-top: 0;
    font-family: 'Forma DJR Display Medium' !important;
    letter-spacing: 1.5px;
}

.heading .red {
    color: #007367;
}

.saSubHeading {
    font-size: 32px;
    /* font-weight: 700; */
    margin-top: 0px;
    color: var(--black);
    position: relative;
    z-index: 1;
    padding: 25px 0px;
    font-family: 'Forma DJR Display Medium' !important;
    letter-spacing: 1.5px;
}

.herosection,
.sa-about,
.sa-smart,
.sa-process,
.sa-winner,
.sa-sliders,
.sa-timeline,
.sa-smartideathon2022 {
    width: 100%;
    padding: 60px 0px;
    position: relative;
}

.sa-banner {
    width: 100%;
}

.sa-banner .carousel-indicators [data-bs-target] {
    background-color: var(--black);
    opacity: 1;
    opacity: 1;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    border-bottom: 0px !important;
    border-top: 0px !important;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-color: #000;
    opacity: 1;
}

.sa-banner .carousel-control-prev,
.sa-banner .carousel-control-next {
    opacity: 0;
}

.sa-banner .carousel-control-prev {
    left: -75px;
}

.sa-banner .carousel-control-next {
    right: -75px;
}

.sa-banner:hover .carousel-control-prev,
.sa-banner:hover .carousel-control-next {
    opacity: 1;
}


.sa-banner .carousel-indicators .active {
    background-color: var(--primary);
}

.accordion-button:not(.collapsed) {
    color: var(--black);
    background: transparent;
    box-shadow: 0px 0px 0px rgb(0 0 0 / 0%);
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.saSubHeading span {
    font-size: 37px;
    color: #f2f2f2;
    /* margin-right: 32px; */
    font-weight: 600;
    position: absolute;
    z-index: -1;
    top: 13px;
    left: -35px;
}

/*header*/
header {
    width: 100%;
    height: auto;
    padding: 5px 0px;
}

.logo {
    width: 270px;
}

.logo img {
    width: 200px;
    margin-left: -1.5rem;
}


.menu-icon {
    width: 50px;
    height: 30px;
    position: relative;
    cursor: pointer;
    z-index: 9;
    box-sizing: border-box;
    margin-top: 15px;
    display: none;
}

.menu-icon span {
    width: 35px;
    height: 3px;
    margin-left: 6px;
    position: absolute;
    top: 10px;
    display: block;
    background: var(--black);
    transition: 0.5s;
    z-index: 999999;
}

.menu-icon span:nth-child(1) {
    transform: translateY(-10px);
    width: 25px;
    margin-left: 15px;
}

.menu-icon span:nth-child(3) {
    transform: translateY(10px);
    width: 25px;
    margin-left: 15px;
}

.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg);
    transition: 0.5s;
}

.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
    transition: 0.5s;
}

.menu-icon.active span:nth-child(2) {
    transform: translateX(100px);
    transition: 0.5s;
    opacity: 0;
}




.menu-icon img {
    width: 100%;
}

.menu ul li a {
    padding: 0px 8px;
    font-size: 15px;
    color: var(--black);
}



/*
.saHerosection{
    position: absolute;
}
.saHerosection img{
    width: 50%;
}
*/
/* herosection Start */
.herosection {
    padding: 0px 0px;
}

.herosection .azadi {
    margin: 0% auto;
    margin-bottom: 65px;
    width: 320px;
}

.herosection .azadi img {
    width: 100%;
}


.herosection .sa-img {
    width: 80%;
    margin: 0% auto;
}

.herosection .sa-img img {
    width: 100%;
}

.herosection .heroContent {
    padding: 39px;
}

.herosection .heroContent h1 {
    color: var(--black);
    padding: 5px;
    font-size: 40px;
    font-weight: 700;
    margin-top: 0;
}

.herosection .heroContent h1 .red {
    color: var(--primary);
}

.herosection .heroContent p {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    margin: 0 0 10px;
}

/* herosection ends */

.sa-about .content {
    padding: 30px;
    background: var(--primary);
}

.sa-about .col-md-6,
.sa-about .col-md-12 {
    padding: 0px;
}

.sa-about .content .heading {
    color: var(--white);
}

.sa-about .content p {
    color: #fff;
}

.sa-smart ul {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    column-gap: 25px;
    padding: 0px;
    row-gap: 25px;
}

.sa-smart ul li {
    width: 100%;
    height: auto;
    background: var(--white);
    padding: 15px;
    position: relative;
    box-shadow: 9px 9px 32px rgb(0 0 0 / 5%);
    text-align: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.sa-smart ul li p {
    color: #4394f9;
    font-size: 16px;
    font-weight: 600;
}

.sa-smart ul li:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    top: 0px;
    left: 0px;
    transition: all 0.3s ease-in-out;
}

.sa-smart ul li:hover {
    transform: translateY(-10px);
}

.sa-smart ul li:hover:before {
    width: 100%;
}

.sa-smart ul li .sa-card .img {
    width: 100px;
    margin: 0% auto;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* .sa-smart ul li .sa-card .img:before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 35px;
    height: 35px;
    top: 3px;
    right: -13px;
    border-radius: 100px;
} */

.sa-Relevant {
    background: var(--black);
}

.sa-Relevant .heading {
    color: var(--white);
}

/* .gicolor1 .img:before,
.gicolor1:before {
    background: #FED9D3
}

.gicolor2 .img:before,
.gicolor2:before {
    background: #FFF7AD
}

.gicolor3 .img:before,
.gicolor3:before {
    background: #B2F4CD
}

.gicolor4 .img:before,
.gicolor4:before {
    background: #FFBCBC
}

.gicolor5 .img:before,
.gicolor5:before {
    background: #82DCF0
} */

.sa-smart ul li .sa-card .img img {
    width: 100%;
}

.sa-smart ul li .sa-card h6 {
    font-size: 16px;
    color: var(--black);
}

.sa-eligibility {
    width: 100%;
    height: auto;
    padding: 100px 0px;
    position: relative;
    z-index: 1;
}

.sa-eligibility:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url(../img/img.jpg);
    background-attachment: fixed;
    background-size: cover;
}

.sa-eligibility:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #a58255;
}

.sa-eligibility .content {
    /* width: 75%; */
    margin: 0% auto;
    /*text-align: center;*/
    position: relative;
    z-index: 9;
}

.sa-eligibility .content .heading {
    color: var(--white);
    text-align: center;
    font-family: 'Forma DJR Display Regular' !important;
    letter-spacing: 1.5px;
        margin-bottom: 40px;
}

/* .sa-eligibility .content ul li {
    color: #000;
    list-style: disc;
    margin: 0 0 10px;
} */

.sa-process {
    background: #fdfdfd;
}

.sa-process .content {
    width: 50%;
    margin: 0% auto;
    text-align: center;
}

.sa-process .accordion,
.sa-smartideathon2022 .accordion {
    --bs-accordion-bg: transparent;
}

.sa-process .accordion-body ul li,
.sa-winner ul li,
.sa-smartideathon2022 ul li {
    list-style: disc;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    margin: 0 0 10px;
}

.accordion .sa-winner .saimg {
    width: 100%
}

.sa-winner .saimg {
    width: 100%;
}

.sa-winner .saimg img {
    width: 100%;
}

.sa-winner .heading {
    font-size: 32px;
    font-family: 'Forma DJR Display Medium' !important;
    letter-spacing: 1.5px;
}

.gi-slider-nav .sliders {
    margin-right: 10px;
    background: #fff;
    box-shadow: 0 4px 5px #cacaca;
}

.associate_sponsors .slider img {
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 5px #cacaca;
}

.associate_sponsors .slider {
    margin: 20px;

}

.gi-slider-nav .slick-slide {
    margin: 15px;
}
.gi-slider-nav .sliders .partners{
    width: 60%;
    margin: auto;
    padding: 10px;
}
.slick-dots {
    display: block;
}

.slick-dots li.slick-active button:before {
    color: #007367;
}

.slick-next:before,
.slick-prev:before {
    color: #007367;
    font-size: 24px;
}

.gi-slider-nav .sliders img {
    width: 60%;
}

.anchor {
    display: block;
    height: 85px;
    margin-top: -85px;
    visibility: hidden;
}
.mlMinus {
    margin-left: -4.5rem !important;
}
.footer {
    padding: 50px 0px;
    padding-bottom: 0px;
    background: #007367;
    color: var(--white);
}

.footer .content h4 {
    margin-bottom: 10px;
}

.footer .content p,
.footer p,
.footer p a {
    color: var(--white);
}

.footer .content .box ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.footer .content .box ul li {
    position: relative;
    list-style: none;
    margin: 0 2px;
}

.footer .content .box ul li:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 40px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    transition: 0.5s;
    opacity: 0;
    filter: blur(2px);
    transform: scale(0.8);
}

.footer .content .box ul li:hover:before {
    transition-delay: 0.2s;
    opacity: .2;
    transform: scale(1);
}

.footer .content .box ul li a {
    width: 40px;
    height: 40px;
    display: block;
    transition: 0.5s;
    background: #ccc;
        border-radius: 12px;
}

.footer .content .box ul li:hover a {
    transform: translateY(-10px);
}

body #wrapper .footer .content .box ul li a span {
    width: 100%;
    height: 100%;
}

.footer .content .box ul li a span:before {
    font-family: fontAwesome;
    text-align: center;
    line-height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    color: #262626;
    transform-origin: top;
    transition: transform 0.5s;
    border-radius: 12px;
}

.footer .content .box ul li:hover a span:before {
    transform: rotateX(90deg) translateY(-50%);
}

.footer .content .box ul li a span:after {
    font-family: fontAwesome;
    text-align: center;
    line-height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    color: #fff;
    transform-origin: bottom;
    transition: transform 0.5s;
    transform: rotateX(90deg) translateY(50%);
    border-radius: 12px;
}

.footer .content .box ul li:hover a span:after {
    transform: rotateX(0deg) translateY(0);
}

.footer .content .box ul li:nth-child(1) a span:before,
.footer .content .box ul li:nth-child(1) a span:after {
    content: '\f09a';
}

.footer .content .box ul li:nth-child(2) a span:before,
.footer .content .box ul li:nth-child(2) a span:after {
    content: '\f099';
}

.footer .content .box ul li:nth-child(3) a span:before,
.footer .content .box ul li:nth-child(3) a span:after {
    content: '\f167';
}

.footer .content .box ul li:nth-child(4) a span:before,
.footer .content .box ul li:nth-child(4) a span:after {
    content: '\f0e1';
}

.footer .content .box ul li:nth-child(5) a span:before,
.footer .content .box ul li:nth-child(5) a span:after {
    content: '\f16d';
}

.footer .content .box ul li:nth-child(1) a span:after {
    background: #3b5999;
}

.footer .content .box ul li:nth-child(2) a span:after {
    background: #55acce;
}

.footer .content .box ul li:nth-child(3) a span:after {
    background: #dd4b39;
}

.footer .content .box ul li:nth-child(4) a span:after {
    background: #0077b5;
}

.footer .content .box ul li:nth-child(5) a span:after {
    background: #e4405f;
}

.sa_img,
.sa_img img {
    width: 100%;
    height: auto;
}

.black {
    position: fixed;
    background: var(--white);
    z-index: 9999 !important;
    box-shadow: 1px 1px 10px rgb(0 0 0 / 30%);
    transition: 0.5s;
}

.sa-timeline {
    background:#e8f7f4 !important;
}

.sa-timeline .heading {
    color: #007367;
}

.sa-timeline ul li .ti-card p {
    color: var(--white);
    padding: 0px;
    margin: 0px;
}

.sa-timeline ul li .ti-card {
    display: flex;
    align-items: center;
}

.sa-timeline ul li .ti-card .calender {
    margin-right: 15px;
    min-width: 80px;
    height: 56px;
    text-align: center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary);
}

.sa-timeline ul li .ti-card .calender p {
    font-size: 22px;
    color: var(--white);
    line-height: 1;
    font-weight: 600;
}

.sa-timeline ul li .ti-card .calender span {
    font-size: 12px;
    color: var(--white);
    font-weight: 500;
    line-height: 1;
}

.sa-timeline ul li .ti-card .tiContent .tiContentDate {
    font-size: 15px;
    color: #007367;
    font-weight: 600;
}

.sa-timeline ul li .ti-card .tiContent .tiContenttitle {
    font-size: 17px;
    font-weight: 600;
    color: #999999;
}

.sa-winner .row {
    align-items: center;
}

.sa-Relevant ul li .sa-card .img {
    display: none !important;
}

.sa-Relevant ul li .sa-card h6 {
    margin-bottom: 0px !important;
}

.timeline {
    list-style: none;
    display: grid;
    grid-template-columns: auto auto auto;
    row-gap: 0;
    column-gap: 22px;
    margin: 0px
}

.timeline li {
    margin-top: 20px;
}

.footer p {
    font-size: 15px;
}

@media only screen and (max-width: 992px) {
    .w-50 {
        width: 100% !important;
    }

    .sa-banner .carousel-control-prev {
        left: 0px;
    }

    .sa-banner .carousel-control-next {
        right: 0px;
    }

    .sa-banner .container,
    .sa-banner .container .row .col-md-12 {
        padding: 0px;
    }

    .sa-banner .carousel-indicators [data-bs-target] {
        width: 5px;
        height: 5px;
    }

    .header {
        position: relative;
        z-index: -1;
    }

    .menu {
        display: block;
    }

    .menu-icon {
        display: block;
    }

    .menu {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 250px;
        height: 100%;
        background: var(--white);
        z-index: 999;
        transform: translateX(-1000%);
        transition: 0.3s;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(7px);
    }

    .menu.active {
        transform: translateX(0);
    }

    .menu ul li {
        margin: 0px;
        margin-left: 0px;
        border-bottom: 1px solid #ddd;
    }

    .menu ul li:nth-child(1) {
        margin-left: 0px;
    }

    .menu ul {
        display: block;
        margin-top: 30px;
        padding: 0px;
    }

    .menu ul li a {
        padding: 10px 30px;
        display: block;
    }

    .herosection .heroContent {
        padding: 20px;
        text-align: center;
    }

    .heading,
    .herosection .heroContent h1,
    .sa-winner .heading {
        font-size: 24px;
    }

    p {
        font-size: 15px;
        font-weight: 200;
    }

    .herosection,
    .sa-about,
    .sa-smart,
    .sa-process,
    .sa-winner,
    .sa-sliders,
    .footer,
    .sa-timeline {
        width: 100%;
        padding: 30px 0px;
        position: relative;
    }

    .footer {
        padding-bottom: 0px;
    }

    .sa-smart ul {
        grid-template-columns: auto auto;
        row-gap: 25px;
    }

    .sa-eligibility {
        padding: 30px 0px;
    }

    .sa-eligibility .content {
        width: 100%;
    }

    .sa-process .content {
        width: 100%;
    }

    .herosection .heroContent h1 {
        font-size: 32px;
    }

    /* 
    .footer .fa-logo {
        width: 100%;
    } */

    .sa-process .accordion-body ul li,
    .sa-winner ul li {
        font-size: 15px;
        font-weight: 200;
    }

    .timeline {
        grid-template-columns: auto auto;
    }
}

@media only screen and (max-width: 1199px) and (min-width: 993px) {
    .menu ul li a {
        padding: 0px 6px !important;
    }
}

@media only screen and (max-width: 768px) {
    .sa-winner .saimg {
        width: 70%;
        margin: 0% auto;
        margin-bottom: 30px;
    }

    #feedback {
        width: 100%;
        top: inherit;
        bottom: 0px;
        padding: 10px 0px;
    }

    .sa-timeline ul li {
        margin-bottom: 20px;
    }
     .timeline {
        grid-template-columns: auto;
    }
}

@media only screen and (max-width: 600px) {

    .heading,
    .herosection .heroContent h1,
    .sa-winner .heading {
        font-size: 24px;
    }

    .saSubHeading {
        font-size: 20px;
    }

    .sa-winner .content ul {
        padding: 0px;
        padding-left: 10px;
    }

    .sa-about .content {
        padding: 10px;
    }

    .saimg {
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .herosection {
        padding-bottom: 0px;
    }

    .herosection .azadi {
        width: 220px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 540px) {

    
    .herosection .heroContent h1,
    .sa-winner .heading,
    .saSubHeading {
        font-size: 18px;
        text-align: center !important;
        margin-bottom: 25px;
    }
.heading{
     font-size: 18px;
        text-align: center !important;
        margin-bottom: 10px;
}
    .sa-smart ul li .sa-card .img {
        width: 50px;
    }

    .sa-smart ul li .sa-card h6 {
        font-size: 12px;
    }

    .sa-smart ul li .sa-card .img:before {
        width: 25px;
        height: 25px;
        right: -9px;
    }

    .sa-smart ul {
        column-gap: 10px;
        row-gap: 10px;
    }

    .logo img {
        width: 250px;
    }

    .herosection .heroContent {
        padding: 5px;
    }

    .herosection .heroContent p {
        font-size: 15px;
    }

    /* .timeline {
        grid-template-columns: auto;
    } */
}

@media only screen and (max-width: 420px) {
    .logo {
        width: 220px;
    }

    .industry_partners img {
        width: 100% !important;
    }

}


@media only screen and (max-width: 575px) {
    .sa-sliders .container{
            padding: 0px 32px;
    }
    

}


.video_title {
    line-height: 1.3;
    margin-bottom: 24px;
}

.modal {
    top: 300px;
}

.industry_partners img {
    margin-right: 10px;
    background: #fff;
    box-shadow: 0 4px 5px #cacaca;
    width: 362px;
}

.statistics_bg {
    background-color: #007367;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 10px 30px;
    width: 100%;
    border-radius: 5px;
}


.line {
    width: 1px;
    height: 91px;
    margin: 0px 35px;
    background-color: #c2d2d1;
    display: block !important;
}

.stat-width {
    text-align: center;
    margin-bottom: 0 !important;
}

.stat-width h6 {
    font-size: 28px;
    color: #eae5d4;
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 0;
}

.stat-width p {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.start-flex {
    display: flex;
    align-items: center;
}

.stat-width b {
    font-size: 28px;
    color: #eae5d4;
    font-weight: 600;
}

@media (min-width: 870px) and (max-width: 991px) {


    .statistics_bg .line {
        margin: 0px 25px;
    }


}

@media screen and (max-width: 870px) {
    .statistics_bg {

        display: flex;
        flex-wrap: wrap;
    }

    .statistics_bg .line {
        margin-bottom: 20px;
    }

}

@media screen and (max-width: 767px) {
    .statistics_bg .line {
        display: none !important;
    }

    .stat-width {
        text-align: center;

        margin-right: 27px;
        margin-bottom: 30px !important;
    }
}
/* registartion fee */
.fee-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fee-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-left: 4px solid #007367;
    background: #f8f9fa;
    border-radius: 8px;
}

.fee-track {
    font-weight: 600;
    color: #212529;
}

.fee-details {
    color: #0d6efd;
    font-weight: 600;
}

.fee-prize {
    color: #198754;
    font-weight: 600;
}
/* Glance */
.tracks-section {
    background: #f8fafc;
}

.tracks-table {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.tracks-table thead th {
    padding: 18px;
    border: none;
    /* font-family: "Inter SemiBold"; */
}

.tracks-table tbody td {
    padding: 18px;
    vertical-align: middle;
}

.tracks-table tbody tr:not(:last-child) td {
    border-bottom: 1px solid #eef2f7;
}
.track-criteria{
    background:#EEEEEE !important;
    color:#000;
    text-align: center;
}
.track-junior {
    background: #e8f7f4 !important;
    color: #007367;
    text-align: center;
}

.track-main {
    background: #fff4e8 !important;
    color: #d97706;
    text-align: center;
}

.registration-note {
    background: #007367;
    color: #fff;
    padding: 18px 24px;
    border-radius: 14px;
    font-size: 15px;
    line-height: 1.7;
}
.semi-bold-green {
    font-weight: 600;
    color: #004740;
}
/* 
.dropdown-item{
    margin: 10px 0;
} */


.winner-prize{
    list-style-type: none !important;
}

.winner-prize i{
    color: #007367;
    margin-right: 10px;
    font-size:18px;
}
.modal-header {
    background: #ebf7f5;
    padding: 10px 14px;
}
.modal .btn-close {
    background: #007367;
    border-radius: 100px;
    position: absolute;
    opacity: 1;
    right: -9px;
    top: -5px;
    width: 26px;
    height: 26px;
    color: #fff;
}
.modal .btn-close svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.eligiblecontent .card {
    position: relative;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all .35s ease;
    overflow: hidden;
}

/* .eligiblecontent .card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #a58255;
    transition: .35s ease;
}

.eligiblecontent .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
    border-color: #a58255;
} */

.eligiblecontent .card:hover::before {
    width: 100%;
    opacity: .05;
}

.eligiblecontent .card h4 {
    color: #14532d;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.eligiblecontent .card h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: #a58255;
    border-radius: 10px;
}

.eligiblecontent .card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.eligiblecontent .card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

.eligiblecontent .card ul li:last-child {
    margin-bottom: 0;
}

.eligiblecontent .card ul li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: #a58255;
    font-size: 18px;
}

.eligiblecontent .card b {
    color: #222;
    font-weight: 600;
}

@media (max-width: 991px) {
    .eligiblecontent .card {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .eligiblecontent .card {
        padding: 22px;
        border-radius: 14px;
    }

    .eligiblecontent .card h4 {
        font-size: 24px;
    }

    .eligiblecontent .card ul li {
        font-size: 15px;
        line-height: 1.7;
    }
}
.track-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s ease;
}

.track-card:hover{
    transform:translateY(-5px);
}

.junior-card .track-header{
    background:#e7f5f3;
    color:#007367;
}

.main-card .track-header{
    background:#fff3e8;
    color:#f57c00;
}

.track-header{
    padding:25px;
    text-align:center;
}

.track-header h3{
    font-weight:700;
}

.track-body{
    padding:25px;
}

.feature-item{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:14px 0;
    border-bottom:1px solid #eee;
}

.feature-item:last-child{
    border-bottom:none;
}

.feature-item span{
    color:#666;
    font-weight:500;
}

.feature-item strong{
    text-align:right;
    color:#222;
    max-width:55%;
}

.registration-banner{
    background:#007367;
    color:#fff;
    border-radius:18px;
    padding:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,115,103,.25);
}

@media(max-width:767px){

    .feature-item{
        flex-direction:column;
        gap:5px;
    }

    .feature-item strong{
        max-width:100%;
        text-align:left;
    }

    .track-header{
        padding:20px;
    }

    .track-body{
        padding:20px;
    }
}