* {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
}




body {
    background-color: #EBEBEB;
    scroll-behavior: smooth;
}

.primary-color {
    color: #000000;
}

.back-color {
    background-color: #000000 !important;
    color: #fff;
}

.secondary-color {
    color: #000;
}

/* --------------------------------------------------------- */
/* --------------------------------------------------------- */

/* Sidebar (Desktop View) css starts here*/

.sidebar {
    min-height: 90vh;
    background: #ebebeb;
    text-align: center;
    /* padding: 30px 20px; */
    border-right: 1px solid #f0f0f0;
}

.sidebar img {
    max-width: 189px;
    margin-bottom: 0px;
}

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

.sidebar ul li {
    /* margin: 20px 0; */
    position: relative;
}

.sidebar ul li a {
    font-size: 14px;
    letter-spacing: 2px;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
}

.sidebar ul li a:hover {
    color: #000;

}

.social-icons .social-link {
       display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 14%;
    background: rgb(200 202 201);
    color: #000;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons .social-link:hover {
    background: #000000d4;
    color: #ece5e5 !important;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Divider lines + star */
/* .sidebar ul li:not(:first-child)::before {
    content: "";
    display: block;
    height: 1px;
    background: #000;
    margin: 15px auto;
    width: 60%;
} */

.sidebar ul li a::after {
    content: "-★-";
    display: block;
    font-size: 10px;
    margin: 3px auto;
    color: #000;
    /* margin-top: 8px; */
}

/* Social Icons */
.sidebar .social-icons {
    /* margin-top: 40px; */
}

.sidebar .social-icons a {
    /* display: block; */
    /* margin: 12px 0; */
    /* font-size: 22px; */
    color: #000000;
    transition: 0.3s;
}

.sidebar .social-icons a:hover {
    color: #000;
}

/* Hide sidebar on mobile */
@media (max-width: 991px) {
    .sidebar {
        display: none;
    }
}

/* sidebar ends here  */

/* ----------------------------------------------------------- */
/* ----------------------------------------------------------- */

/* hero banner video css starts here  */
.banner-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.img-wrapper {
    height: 100%;
}

.img-wrapper img,
.img-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease-in-out;
}

/* Overlay */
.banner-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Caption */
.banner-caption {
    position: absolute;
    bottom: 20%;
    left: 10%;
    z-index: 2;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-in-out;
}

/* Animation on load */
.banner-section.loaded .banner-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile View Fix */
/* 📱 Mobile View Fix */
@media (max-width: 768px) {
    .banner-section {
        height: auto;
        /* fixed height hatayi */
    }

    .img-wrapper video {
        object-fit: contain;
        /* pura video dikhega */
        background: #000;
        width: 100%;
        height: 40vh;
        /* screen ka 40% height */
    }

    .banner-section .overlay {
        height: 40vh;
        /* overlay bhi video ke sath match kare */
    }

    .banner-caption {
        font-size: 1.2rem;
        /* chhoti font */
        bottom: 10%;
        /* caption thoda upar */
        left: 5%;
        text-align: center;
        width: 90%;
        /* center align caption */
    }
}

/* hero banner video css ends here  */


/* banner crausel css starts here  */
/* .carousel-item {
    position: relative;
}

.img-wrapper {
    height: 90vh;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease-in-out;
}

.img-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease-in-out;
} */


/* Overlay */
/* .carousel-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
} */

/* Caption */
/* Caption base */
/* .carousel-caption-custom {
    position: absolute;
    bottom: 20%;
    left: 10%;
    z-index: 2;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-in-out;
} */

/* Jab active ho tab entry animation */
/* .carousel-item.active .carousel-caption-custom {
    opacity: 1;
    transform: translateY(0);
} */

/* Slide-out animation */
/* @keyframes textSlideFlash {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    70% {
        transform: translateY(-30px);
        opacity: 1;
    }

    100% {
        transform: translateY(-40px);
        opacity: 0;
    }
}

.carousel-caption-custom.slide-out {
    animation: textSlideFlash 0.6s forwards ease-in;
} */

/* banner crausel css ends here  */

/* --------------------------------------------------------- */
/* --------------------------------------------------------- */

/* navbar css after scroll on desktop view  */
/* Navbar hidden on desktop initially */
/* #mainNavbar {
    display: none;
}

@media (max-width: 991px) {
    #mainNavbar {
        display: flex !important;
        Mobile pe always visible
    }
} */

/* Show navbar after scroll (desktop only) */
/* #mainNavbar.show-navbar {
    display: flex !important;
} */

/* Fullscreen Menu Overlay */
/* #menuOverlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1050;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
} */

#mainNavbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    /* upar se slide hoga */
    transition: all 0.5s ease-in-out;
    z-index: 999;
}

/* Jab show ho */
#mainNavbar.show-navbar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile pe hamesha visible */
@media (max-width: 991px) {
    #mainNavbar {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
}


/* Overlay hidden by default */
#menuOverlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;

    transform: scaleY(0);
    /* folded */
    transform-origin: top center;
    /* fold from top */
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    pointer-events: none;
    /* disable clicks when hidden */
    opacity: 0;
}

/* When active, unfold like paper */
#menuOverlay.active {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
}


/* Close Button */
#menuOverlay .close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: #000000;
    background: none;
    border: none;
    cursor: pointer;
}

/* Center Content */
#menuOverlay .overlay-content img {
    max-width: 150px;
    margin-bottom: 30px;
}

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

#menuOverlay ul li {
    margin: 20px 0;
}

#menuOverlay ul li a {
    font-size: 20px;
    letter-spacing: 2px;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

#menuOverlay ul li a:hover {
    color: #000;
}

#menuOverlay .social-icons a {
    color: #000000;
}

/* navbar css ends here  */

/* ---------------------------------------------------------- */
/* ---------------------------------------------------------- */

/* Sections main heading css starts here  */
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    /* text aur line ke beech spacing */
}

.section-title h4 {
    position: relative;
    /* font-weight: bold; */
    font-size: 2rem;
    color: #000;
    text-transform: uppercase;

    /* apne theme ka color */
}

/* Left line */
.section-title::before,
.section-title::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #000;
    /* line ka color */
    max-width: 600px;
    /* line ki length limit */
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .section-title {
        gap: 15px;
        /* spacing kam */
    }

    .section-title h4 {
        font-size: 1.2rem;
        /* heading choti */
    }

    .section-title::before,
    .section-title::after {
        max-width: 100px;
        /* line ki length choti */
        height: 1px;
        /* line thin */
    }
}


.title {
       color: #344a70;
    letter-spacing: .034em;
    text-transform: uppercase;
    font: 200 24px / 1.1em 'Oswald', 'Helvetica Neue', sans-serif;
}

/* 📱 Mobile view fix */
@media (max-width: 768px) {
    .title {
        font-size: 24px;
        /* tablet & mobile ke liye chhota */
        line-height: 1.2em;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 20px;
        /* very small screen ke liye aur chhota */
        line-height: 1.2em;
    }
}

/* Sections main heading css starts here  */

/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */

/* small heading design css starts here */
.heading-line {
    position: relative;
    display: inline-block;
    font-weight: bold;
    color: #000;
    /* apna theme color */
    padding-right: 15px;
    /* text aur line ke beech gap */
}

.heading-line::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -200px;
    width: 200px;
    /* line ki length */
    height: 2px;
    /* line ki thickness */
    background: #000000;
    /* line ka color */
}

/* small heading design css ends here */

/* ---------------------------------------------------------- */
/* ---------------------------------------------------------- */

/* ranking on cards css starts here   */
/* .ranking-number {
    position: absolute;
    bottom: -7px;
    font-size: 5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ffffff, #dddddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 10;
    line-height: 1;
    text-shadow:
        2px 2px 8px rgba(0, 0, 0, 0.4),
        0 0 12px rgba(255, 255, 255, 0.3);
} */


/* Ranking Number */
.ranking-number {
    position: absolute;
    bottom: -7px;
    font-size: 5rem;
    /* default desktop */
    font-weight: bold;
    background: linear-gradient(45deg, #ffffff, #dddddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 10;
    line-height: 1;
    text-shadow:
        2px 2px 8px rgba(0, 0, 0, 0.4),
        0 0 12px rgba(255, 255, 255, 0.3);
}

/* Tablet */
@media (max-width: 768px) {
    .ranking-number {
        font-size: 3.5rem;
        bottom: -5px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .ranking-number {
        font-size: 2.5rem;
        bottom: -3px;
    }
}


/* ranking on cards css ends here   */

/* ---------------------------------------------------------------- */
/* ----------------------------------------------------------------- */

/* button-1 css starts here */
.primary-btn {
    color: #090909;
    padding: 0.7em 1.7em;
    font-size: 18px;
    border-radius: 0.5em;
    background: #e8e8e8;
    cursor: pointer;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}

.primary-btn:active {
    color: #666;
    box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

/* button-1 css ends here */

/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */

/* button-2 css starts here */
.secondary-btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

.secondary-btn.learn-more {
    width: 10rem;
    height: auto;
}

.secondary-btn.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #000000;
    border-radius: 1.625rem;
}

.secondary-btn.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

.secondary-btn.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

.secondary-btn.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

.secondary-btn.learn-more .button-text {
       transition: all 0.45s 
cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.3rem 0;
    margin: 0 0 0 1.15rem;
    color: #282936;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    /* text-transform: uppercase; */
}

.secondary-btn:hover .circle {
    width: 100%;
}

.secondary-btn:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

.secondary-btn:hover .button-text {
    color: #fff;
}

/* button-2 css ends here */

/* ------------------------------------------------------------ */
/* ------------------------------------------------------------ */

/* cards slider css starts here  */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #444; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    /* background: rgba(0, 0, 0, 0.5); */
    background: #000000;
    padding: 23px;
    border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 15px;
}



/* cards slider css ends here  */

/* ----------------------------------------------------------- */
/* ----------------------------------------------------------- */

/* one-liner css starts here */
.fact-banner {
    background: url('../img/banner1.jpg') center/cover no-repeat;
    height: 250px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* Overlay layer */
.fact-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* overlay */
    border-radius: 10px;
    z-index: 1;
}

/* Text styling */
.fact-banner h5 {
    position: relative;
    /* taki overlay ke upar rahe */
    z-index: 2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.4rem;
}

/* one-liner css endss here */

/* -------------------------------------------------------------- */
/* -------------------------------------------------------------- */

/* fact of the day css starts here  */
.card {
    /* width: 190px; */
    height: 264px !important;
    background: #000000 !important;
    font-family: inherit !important;
    position: relative !important;
    border-radius: 8px !important;
}

.quote {
    color: #383838;
    padding-left: 30px;
    position: relative;
}

.card-name {
    text-transform: uppercase;
    font-weight: 700;
    color: #000000;
    padding: 35px;
    line-height: 23px;
}

.body-text {
    font-size: 20px;
    font-weight: 900;
    padding: 60px 40px 0;
    color: #fff;
    position: absolute;
    top: 40px;
    left: 1px;
    line-height: 23px;
}

.author {
    margin-top: 5px;
    opacity: 0;
    transition: 0.5s;
}

.card:hover .author {
    opacity: 1;
}

.pic {
    width: 50px;
    height: 50px;
    background-color: rgb(158, 196, 21);
    border-radius: 50%;
}

.author-container {
    display: flex;
    align-items: center;
}

.author {
    font-weight: 700;
    color: #000000;
    padding-left: 30px;
}

.card .author svg {
    display: inline;
    font-size: 12px;
    color: rgba(128, 155, 29, 0.452);
}

/* fact of the day css starts here  */

/* ----------------------------------------------------------- */
/* ----------------------------------------------------------- */

/* iframe video css starts here  */
.review-card {
    --bg: #e8e8e8;
    --contrast: #e2e2e2ff;
    --grey: #93a1a1;
    position: relative;
    padding: 9px;
    background-color: var(--bg);
    border-radius: 35px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.review-card-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-conic-gradient(var(--bg) 0.0000001%, var(--grey) 0.000104%) 60% 60%/600% 600%;
    filter: opacity(10%) contrast(105%);
}

.review-card-inner {
    overflow: hidden;
    height: 300px;
    background-color: var(--contrast);
    border-radius: 30px;
}

.review-card-inner iframe {
    overflow: hidden;
    height: 100%;
    background-color: var(--contrast);
    border-radius: 30px;
}

/* iframe video css ends here  */


/*  poster cards css starts here  */
.review-card-2 {
    --bg: #e8e8e8;
    --contrast: #e2e2e2ff;
    --grey: #93a1a1;
    position: relative;
    padding: 9px;
    background-color: var(--bg);
    border-radius: 35px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.review-card-2-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-conic-gradient(var(--bg) 0.0000001%, var(--grey) 0.000104%) 60% 60%/600% 600%;
    filter: opacity(10%) contrast(105%);
}

.review-card-2-inner {
    overflow: hidden;
    height: 350px;
    background-color: var(--contrast);
    border-radius: 30px;
}

.review-card-2-inner img {
    overflow: hidden;
    height: 100%;
    background-color: var(--contrast);
    border-radius: 30px;
}

/* swiper responsive css in poster card design coz same css  */
/* ------------------------------
   SLIDER SPECIFIC FIX
--------------------------------*/
.mySwiper .review-card-2-inner {
    height: 350px;
    /* Desktop default */
}

/* Tablet & Mobile (Slider) */
@media (max-width: 768px) {
    .mySwiper .review-card-2-inner {
        height: auto;
        /* auto height */
        max-height: 250px;
        /* slider me limit */
    }

    .mySwiper .review-card-2-inner img {
        object-fit: contain;
        /* pura image dikhe */
        max-height: 250px;
    }
}

/* Very Small Mobile */
@media (max-width: 480px) {
    .mySwiper .review-card-2-inner {
        max-height: 180px;
    }

    .mySwiper .review-card-2-inner img {
        max-height: 180px;
        width: 100%;
    }
}


/*  poster cards css ends here  */

/* ------------------------------------------------------ */
/* ------------------------------------------------------ */