* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Arial', sans-serif; */
    font-family: "Syne", sans-serif;

}
html, body {
    overflow-x: hidden;
  }
body {
    background-color: #06071b;
    color: white;
    overflow-x: hidden;
}

p {
    font-family: "Inter", sans-serif;
}

/* ----------------------------------HEADER STARTS */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    /* Glassmorphism effect */
    background: rgba(10, 17, 40, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 10px 20px;
    /* Gradient border */
    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.nav-menu::before {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    z-index: -1;
    border-radius: 30px;
    background: linear-gradient(45deg, rgba(14, 158, 201, 0.5), rgba(116, 33, 204, 0.5));
    pointer-events: none;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4dacff;
}

/* .right-icon-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
} */

.right-icon {
    height: 30px;
    width: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.right-icon:hover {
    transform: scale(1.1);
}

/* ----------------------------------HEADER ENDS */

/* ----------------------------------BANNER STARTS */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    height: 100vh;
    width: 100%;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom,
            #000000 0%,
            /* Top - Black */
            transparent 30%,
            /* Dark Blue Center Start */
            transparent 70%,
            /* Dark Blue Center End */
            #000000 100%
            /* Bottom - Black */
        ), url('/web/assets/images/dna-hero_banner.png') center/cover no-repeat;
    /* opacity: 0.4; */
}

.hero-title {
    font-size: 48px;
    /* margin-bottom: 20px; */
    line-height: 1.2;
    animation: slideDown 0.8s ease-out;
    font-weight: 700;
    margin: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 60px;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
    animation: slideDown 0.8s ease-out 0.2s both;
}

.hero-description {
    font-family: inter;
    font-weight: 300;
    font-size: 16px !important;
    color: #FFFFFFE5;
    max-width: 800px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.4s both;
}

.cta-button {
    background-color: transparent;
    border: 2px solid #0e9ec9;
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out 0.6s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(14, 158, 201, 0.4) 0%, rgba(14, 158, 201, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    background-color: rgba(14, 158, 201, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(14, 158, 201, 0.5);
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* ----------------------------------BANNER ENDS */


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 30;
}

.mobile-menu-btn .mobile-menu-dna {
    width: 70%;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 50px;
    }
}

@media screen and (max-width: 768px) {
    .right-icon {
        display: none;
        /* Hide the icon on smaller screens */
    }

    .right-icon-container {
        display: none;
    }
.menu-overlay.active {
    display: none !important;
    opacity: 1;
}

    .nav-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -280px;
        /* Start offscreen */
        width: 280px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        /* background: rgba(10, 17, 40, 0.95); */
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 0;
        padding: 80px 20px 20px;
        z-index: 20;
        transition: right 0.3s ease-in-out;
        border-left: 1px solid rgba(14, 158, 201, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 15px 0;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 10px 0;
        font-size: 18px;
    }

    .mobile-menu-btn {
        display: block;
        position: relative;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 38px;
    }

    .hero-description {
        font-size: 16px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 15px 5%;
    }

    .logo img {
        height: 30px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 30px;
    }

    .hero-description {
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .right-icon-container {
        display: none;
    }
}

/* Overlay for mobile menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 15;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/*.menu-overlay.active {*/
/*    display: block;*/
/*    opacity: 1;*/
/*}*/

/* ----------------------------------OUR COURSES STYLE STARTS */
.courses-container {
    /* background-image: url('/images/bg_star.png'); */
    background-image:
        linear-gradient(to bottom,
            #000000 0%,
            /* Top - Black */
            transparent 30%,
            /* Dark Blue Center Start */
            transparent 70%,
            /* Dark Blue Center End */
            #000000 100%
            /* Bottom - Black */
        ),
        url('/web/assets/images/bg_star.png');
    background-color: #000;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

/* Updated Ripple Effect Styles */
.ripple-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 1000px;
    left: 0;
    z-index: 0;
    pointer-events: none;
    perspective: 800px;
    transform-style: preserve-3d;
    overflow: hidden;
}

.ripple-surface {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotateX(60deg);
    /* Tilt the surface to create side view */
    transform-style: preserve-3d;
}

.ripple {
    position: absolute;
    border: 5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    opacity: 0;
    box-shadow: 0 0 10px rgba(102, 204, 255, 0.3);
}

.section-header {
    /* text-align: center; */
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 40%;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    width: 80%;
}

.section-header p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.5;
}

.dna-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dna-strand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotateY(0deg);
    height: 1800px;
    width: 1000px;
    z-index: 1;
    background: url('/web/assets/images/dna_Helix.png') no-repeat center;
    background-size: contain;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    filter: drop-shadow(0 0 10px rgba(102, 204, 255, 0.4));
}

.courses-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
}

.course-card {
    position: relative;
    width: 350px;
    max-width: 90%;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.course-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.course-card:nth-child(odd) {
    margin-left: auto;
    margin-right: 10%;
}

.course-card:nth-child(even) {
    margin-left: 10%;
    margin-right: auto;
}

/* .course-card .connector {
    position: absolute;
    top: 160px;
    height: 2px;
    background-color: rgba(102, 204, 255, 0.7);
    z-index: 3;
}


.course-card:nth-child(odd) .connector {
    right: 100%;
    width: calc(50% - 200px);
}

.course-card:nth-child(even) .connector {
    left: 100%;
    width: calc(50% - 200px);
} */



.course-card .connector-img {
    position: absolute;
    top: 168px;
    /* width: calc(50% - 200px); */
    width: 100%;
    height: auto;
    z-index: 3;
    top: 52%;
}

/* Odd and even placement */
.course-card:nth-child(odd) .connector-img {
    right: 17%;
    transform: rotate(0deg);
    /* Adjust if needed */
}

.course-card:nth-child(even) .connector-img {
    left: 7%;
    transform: rotate(0deg);
    /* Flip if needed */
}


.course-image {
    position: relative;
    border-radius: 32px;
    padding: 2.5px; /* Border thickness */
    margin: 0 auto;
    overflow: hidden;
    max-width: 1200px;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-top: 25px;
}

.course-description {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.8;
}

.know-more {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 0;
}

.know-more:after {
    content: '🡥';
    transition: transform 0.3s ease;
}

.know-more:hover:after {
    margin-left: 5px;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(102, 204, 255, 0.1);
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100vh) rotate(90deg);
        opacity: 0;
    }
}

/* @keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);

    }
}

.dna-strand.bounce {
    animation: bounce 2s ease-in-out infinite;
} */
@media screen and (max-width: 853px) and (orientation: portrait) {
    .astronaut img {
        /* display: none; */
    }
}


@media (max-width: 992px) {

    .section-header {
        width: 80%;
    }

    .course-card:nth-child(odd),
    .course-card:nth-child(even) {
        margin-left: auto;
        margin-right: auto;
    }

    /* .course-card .connector {
        width: 60px !important;
    }

    .course-card:nth-child(odd) .connector {
        left: -60px;
    }

    .course-card:nth-child(even) .connector {
        right: -60px;
    } */




    .course-card .connector-img {
        width: 60px !important;
        display: none;
    }

    .course-card:nth-child(odd) .connector-img {
        left: -60px;
        right: auto;
    }

    .course-card:nth-child(even) .connector-img {
        right: -60px;
        left: auto;
    }


    .dna-strand {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .dna-container {
        padding-top: 40px;
    }

    .course-card {
        width: 90%;
        margin-bottom: 60px;
    }

    .section-header {
        width: 100%;
        text-align: center;
    }


    .section-header h2 {
        font-size: 24px;
        width: 100%;
    }

    .section-header p {
        font-size: 14px;
        padding: 0 15px;
    }

    .course-card .connector-img {
        display: none;
    }

    /* .course-card .connector {
        display: none;
    } */
}

/* ----------------------------------OUR COURSES STYLE STARTS */


/* ----------------------------------ABOUT US STYLE STARTS */
.dna-space-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Main section styles */
.dna-space-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: transparent;
    /* Removed gradient as we'll use bg image */
    overflow: hidden;
    /* font-family: 'Arial', sans-serif; */
    color: #ffffff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
}

/* Space background image */
.dna-space-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom,
            #000000 0%,
            /* Top - Black */
            transparent 30%,
            /* Dark Blue Center Start */
            transparent 70%,
            /* Dark Blue Center End */
            #000000 100%
            /* Bottom - Black */
        ), url('/web/assets/images/About DNA Bg.png');
    /* Replace with your actual background image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 1;
    margin: 0;
}

/* Content container */
.dna-space-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    text-align: center;
    margin-top: 2rem;
}

/* Section title */
.dna-space-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.3;
}

/* Section description */
.dna-space-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFFE5;
}

/* Section about */
.dna-space-about {
    position: absolute;
    top: 100px;
    left: 100px;
    font-size: 1.2rem;
    font-weight: 500;
    z-index: 10;
}

/* Know more button */
.dna-space-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 1rem;
}

.dna-space-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Decorative elements */
.dna-space-astronaut {
    position: absolute;
    left: -10%;
    bottom: 0%;
    width: 550px;
    z-index: 5;
    transform: rotate(0deg);
    transition: transform 1s ease;
}

.dna-space-rocket {
    position: absolute;
    right: -5%;
    bottom: 0%;
    width: 400px;
    z-index: 5;
    transform: rotate(0deg);
    transition: transform 1s ease;
}

.dna-space-planet-small {
    position: absolute;
    left: 30%;
    top: 25%;
    width: 40px;
    z-index: 3;
    opacity: 0.7;
    transform: rotate(0deg);
    transition: transform 1s ease;
}

/* Animation classes that will be applied via JS */
.dna-float {
    animation: dnaFloat 8s ease-in-out infinite;
}

@keyframes dnaFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.dna-rocket-float {
    animation: dnaRocketFloat 6s ease-in-out infinite;
}

@keyframes dnaRocketFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(-5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }



    /* 0% {
        transform: translateX(0) rotate(5deg);
    }

    50% {
        transform: translateX(-30px) rotate(0deg);
    }

    100% {
        transform: translateX(0) rotate(-5deg);
    } */


    /* 0% {
        transform: translate(0, 0) rotate(15deg);
    }

    50% {
        transform: translate(-40px, -60px) rotate(5deg);
    }

    100% {
        transform: translate(0, 0) rotate(15deg);
    } */
}

.dna-planet-float {
    animation: dnaPlanetFloat 10s linear infinite;
}

@keyframes dnaPlanetFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Divider line */
.dna-space-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 2rem 0;
}

/* Media queries for responsiveness */
@media (max-width: 992px) {
    .dna-space-title {
        font-size: 2rem;
    }

    .dna-space-about {
        top: 250px;
        left: 50px;
        margin-bottom: 0px;
    }

    .dna-space-astronaut {
        width: 120px;
        display: none;
    }

    .dna-space-rocket {
        width: 100px;
        right: -2%;
        height: 200px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .dna-space-title {
        font-size: 1.8rem;
    }

    .dna-space-description {
        font-size: 1rem;
    }

    .dna-space-about {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom:0px;
    }

    .dna-space-astronaut {
        display: none;
        width: 400px;
        left: 2%;
        bottom: 73%;
    }

    .dna-space-rocket {
        width: 80px;
        bottom: 30%;
        display: none;
    }
}

@media (max-width: 576px) {
    .dna-space-section {
        padding: 1rem;
    }

    .dna-space-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .dna-space-description {
        font-size: 0.9rem;
    }

    .dna-space-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .dna-space-astronaut {
        display: none;
        width: 400px;
        left: 2%;
        bottom: 73%;
    }

    .dna-space-rocket {
        width: 60px;
        right: 2%;
        display: none;
    }

    .dna-space-planet-small {
        width: 30px;
    }
}

/* ----------------------------------ABOUT US STYLE ENDS */



/* ----------------------------------WHY CHOOSE US STYLE STARTS */
.wcu-science-bg {
    position: relative;
    /* background-color: #000; */
    /* background-image: 
        radial-gradient(circle at 80% 40%, rgba(12, 68, 105, 0.2), transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(31, 169, 211, 0.1), transparent 40%); */
    overflow: hidden;
    padding: 50px 20px 80px;
}

/* Floating molecules decoration */
.wcu-science-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(to bottom,
            #000000 0%,
            /* Top - Black */
            transparent 30%,
            /* Dark Blue Center Start */
            transparent 70%,
            /* Dark Blue Center End */
            #000000 100%
            /* Bottom - Black */
        ),
        url('/web/assets/images/why_choose_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    /* You can tweak this if needed */
    z-index: 0;
    pointer-events: none;
}


.wcu-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.wcu-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.wcu-section-header h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.wcu-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.wcu-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}



.wcu-feature-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 30px;
    padding-top: 80px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.wcu-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.wcu-feature-icon {
    position: absolute;
    top: -30px;
    left: 20px;
    height: 105px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.wcu-feature-icon img {
    height: 100%;
    object-fit: contain;
}

.wcu-feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.wcu-feature-description {
    font-size: 14px;
    color: #FFFFFFE5;
    line-height: 1.6;
}

/* Decorative elements */
.wcu-deco-microscope {
    position: absolute;
    bottom: 20px;
    left: -160px;
    width: 400px;
    opacity: 0.8;
    z-index: 0;
    animation: wcu-float-slow 8s ease-in-out infinite;
}

.wcu-deco-molecule {
    position: absolute;
    bottom: 160px;
    left: 40px;
    width: 60px;
    opacity: 0.6;
    z-index: 0;
    animation: wcu-float 6s ease-in-out infinite;
}

.wcu-deco-scientist {
    position: absolute;
    top: 10px;
    right: 60px;
    width: 300px;
    z-index: 0;
    animation: wcu-float-gentle 7s ease-in-out infinite;
}

@keyframes wcu-float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes wcu-float-slow {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes wcu-float-gentle {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    33% {
        transform: translateY(-15px) translateX(5px);
    }

    66% {
        transform: translateY(-5px) translateX(-5px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}

/* Mobile responsive */
@media (max-width: 992px) {
    .wcu-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wcu-section-header h2 {
        font-size: 30px;
    }

    .wcu-deco-scientist {
        width: 100px;
        top: 50px;
        right:60px;
        height: 150px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .wcu-features-grid {
        grid-template-columns: 1fr;
    }

    .wcu-section-header h2 {
        font-size: 26px;
    }

    .wcu-feature-box {
        padding: 20px;
        padding-top: 40px;
    }

    .wcu-feature-icon {
        top: -25px;
        left: 15px;
        height: 60px;
    }

    .wcu-deco-microscope,
    .wcu-deco-molecule {
        display: none;
    }

    .wcu-deco-scientist {
        width: 300px;
        top: auto;
        bottom: 80%;
        right: -14%;
        display: none;
    }
}

/* ----------------------------------WHY CHOOSE US STYLE ENDS */



/* ----------------------------------VIDEO LESSONS STYLE STARTS */
.video-lesson {
    padding: 100px 0;
    background: linear-gradient(to bottom,
            #000000 0%,
            /* Top - Black */
            #0a2a43 30%,
            /* Dark Blue Center Start */
            #0a2a43 70%,
            /* Dark Blue Center End */
            #000000 100%
            /* Bottom - Black */
        );
    position: relative;
}

.video-section {
    display: flex;
    gap: 40px;
    align-items: center;
}

.text-content {
    flex: 1;
    padding-right: 20px;
}

.text-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.text-content p {
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.video-gallery {
    flex: 1.2;
}

.main-video {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-video a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.main-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.thumbnail {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.thumbnail:hover {
    transform: translateY(-5px);
}

.thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16/9;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    /* Makes sure the icon doesn't interfere with clicks */
}

.play-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-left: 12px solid white;
    border-bottom: 8px solid transparent;
    margin-left: 3px;
}

.thumbnail.active {
    /* border: 2px solid #ff0000; */
    position: relative;
    z-index: 1;
    background: linear-gradient(45deg, #499DD2, #A565F299, #E8E2E2);
    padding: 1px;
    /* Adjust thickness of the "border" */
    border-radius: 8px;
    /* Optional if you want rounded corners */
}

/* Responsive styles */
@media (max-width: 992px) {
    .video-section {
        flex-direction: column;
    }

    .text-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }

    .thumbnail:last-child {
        grid-column: span 2;
        width: 50%;
        margin: 0 auto;
    }
}

/* ----------------------------------VIDEO LESSONS STYLE ENDS */

/* ----------------------------------BLOG SECTION STYLE STARTS */

.blog-section {
    padding: 100px 0;
    background-color: #000;
}

.blog-section .header-blog {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.blog-section .header-blog h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-section .blog-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-section .left-section {
    flex: 1.5;
    min-width: 300px;
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.blog-section .right-section {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.blog-section .main-blog {
    flex: 1.5;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-section .main-blog:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.blog-section .main-blog img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-section .main-blog:hover img {
    transform: scale(1.05);
}

.blog-section .thumbnail-blogs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blog-section .blog-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transition: background 0.3s ease, transform 0.3s ease;
}

.blog-section .blog-item:hover .blog-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 80%, transparent);
    transform: translateY(-5px);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 14px;
    color: #ccc;
    transition: color 0.3s ease;
}

.blog-item:hover .blog-meta {
    color: #fff;
}

.blog-section .category {
    font-size: 14px;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.blog-item:hover .category {
    color: #499DD2;
}

.blog-title {
    font-size: 24px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.blog-item:hover .blog-title {
    color: #fff;
}

.thumbnail-blog {
    display: flex;
    flex-direction: row;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    height: calc((450px - 30px) / 3);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.thumbnail-blog:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    background-color: #252525;
}

.blog-section .thumbnail-img {
    width: 40%;
    height: 100%;
    overflow: hidden;
}

.blog-section .thumbnail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.thumbnail-blog:hover .thumbnail-img img {
    transform: scale(1.08);
}

.blog-section .thumbnail-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 60%;
    height: 100%;
}

.blog-section .thumbnail-content .blog-title {
    font-size: 14px;
    margin-bottom: 5px;
}

.right-blog {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 215px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.right-blog:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.right-blog img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.right-blog:hover img {
    transform: scale(1.05);
}

.view-more-container {
    text-align: center;
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.view-more-btn {
    padding: 10px 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(45deg, #499DD2, #A565F299, #E8E2E2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: padding 0.3s ease;
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(73, 157, 210, 0.3);
}

.view-more-btn:hover::before {
    padding: 3px;
}

.date-icon,
.comment-icon {
    display: inline-flex;
    align-items: center;
}

.date-icon::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ccc' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
    margin-right: 5px;
}

.comment-icon::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ccc' viewBox='0 0 16 16'%3E%3Cpath d='M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-2.5a2 2 0 0 0-1.6.8L8 14.333 6.1 11.8a2 2 0 0 0-1.6-.8H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2.5a1 1 0 0 1 .8.4l1.9 2.533a1 1 0 0 0 1.6 0l1.9-2.533a1 1 0 0 1 .8-.4H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z'/%3E%3C/svg%3E");
    margin-right: 5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog item hover cursor */
.blog-item {
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 992px) {
    .left-section {
        flex-direction: column;
    }

    .main-blog {
        height: 350px;
    }

    .thumbnail-blogs {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .thumbnail-blog {
        flex: 1;
        min-width: 200px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .blog-container {
        flex-direction: column;
    }

    .thumbnail-blogs {
        flex-direction: column;
    }

    .thumbnail-blog {
        height: 100px;
    }

    .right-section {
        gap: 15px;
    }

    .right-blog {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .thumbnail-blog {
        height: auto;
    }

    .right-blog {
        height: 150px;
    }

    .blog-title {
        font-size: 20px;
    }

    .thumbnail-content .blog-title {
        font-size: 14px;
    }
}

/* ----------------------------------BLOG SECTION STYLE ENDS */





/* ----------------------------------CTA STYLE STARTS */
.cta-section {
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

/* .cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 0;
    pointer-events: none;
}

.cta-section::before {
    top: 0;
    background: linear-gradient(to bottom, #111 0%, transparent 100%);
} */

.cta-section::after {
    /* bottom: 0;
    background: linear-gradient(to top, #111 0%, transparent 100%); */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            black 0%,
            transparent 30%,
            transparent 70%,
            black 100%);
    z-index: 1;
}

.cta-section>* {
    position: relative;
    z-index: 2;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/web/assets/images/bg-2.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: -1;
}

.cta-content {
    max-width: 800px;
    z-index: 1;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #FFFFFFE5;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 30px;
}

.cta-button-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3498db, #8e44ad, #2ecc71, #f39c12);
    border-radius: 32px;
    z-index: -1;
}

.cta-button {
    position: relative;
    display: inline-block;
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(138, 158, 245, 0.3);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2.2rem;
    }

    .cta-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        height: 450px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 10px 30px;
        font-size: 1rem;
    }
}

/* ----------------------------------CTA STYLE STARTS */



/* ----------------------------------FOOTER STYLE STARTS */
.footer {
    background-color: #000;
    color: #fff;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-logo {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo img {
    width: 150px;
    height: auto;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-logo p {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    font-family: "Syne", sans-serif;
}

.footer-divider {
    width: 80%;
    height: 1px;
    background-color: #333;
    margin: 1rem 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ccc;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin: 1rem 0 2rem;
    gap: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* background-color: #000; */
    cursor: pointer;
    transition: transform 0.3s ease;
    background: linear-gradient(45deg, #3498db, #e74c3c, #2ecc71, #f39c12);

}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #499DD2, #A565F299, #E8E2E2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 0;
    border-radius: 30%;
    animation: animateBorder 3s linear infinite;
}

.social-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    border-radius: 30%;
    z-index: 1;
}

.social-icon i {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 1.2rem;
}

.company-link {
    margin: 0 !important;
    ;
}

/* @keyframes animateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
} */

.footer-bottom {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-bottom a,
.footer-bottom p {
    color: #888;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-family: "Inter", sans-serif;
}

.footer-bottom a:hover {
    color: #aaa;
}

.divider {
    color: #888;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        align-items: center;
        margin: 1rem 0;
    }

    .footer-nav a {
        margin: 0.5rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom a,
    .footer-bottom p {
        margin: 0.5rem 0;
    }

    .divider {
        display: none;
    }
}

/* ----------------------------------FOOTER STYLE ENDS */


/* -------------------------------------ABOUT STYLE STARTS */

/* --------------------------------------ABOUT BANNER STARTS */
.abt-hero-section {
    padding-top: 100px;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('/web/assets/images/aboutbanner.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.abt-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding:0px;
    width: 100%;
}

.abt-image-container {
    position: relative;
    border-radius: 32px;
    padding: 2.5px; /* Border thickness */
    background: linear-gradient(135deg, #A565F299,#E8E2E2, #A565F299);
    max-width: 750px;
    margin: 0 auto;
    overflow: hidden;
}

.abt-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px; /* Inner radius to match outer shape */
    background-color: #fff; /* Optional image background */
}

.abt-heading-container {
    color: white;
    margin-top: 30px;
    text-align: center;
    padding-top: 30px;
}

.abt-heading-small {
    font-size: 16px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.abt-heading-large {
    font-size:32px;
    font-weight: 600;
    line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .abt-heading-small {
        font-size: 20px;
    }
    .abt-hero-section {
        min-height: 100vh;
        padding-top: 0px;

    }
    
    .abt-heading-large {
        font-size: 28px;
    }
}





@media (max-width: 767px) {

    .abt-heading-container {
        margin-top: 0px;
        padding-top: 30px;
    }
    .abt-content-wrapper {
        padding:0px;
    }
    .abt-hero-section {
        min-height: 100vh;
    }
    
    .abt-image-container {
        max-width: 90%;
    }
    
    .abt-heading-small {
        font-size: 18px;
    }
    
    .abt-heading-large {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .abt-hero-section {
        min-height: 100vh;
        padding-top: 100px;
    }
    
    .abt-heading-large {
        font-size:24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    
}
/* --------------------------------------ABOUT BANNER ENDS */


/* --------------------------------------WHO WE ARE STARTS */
.abt-who-we-section {
    background-color: #000;
    background-image: url('/web/assets/images/abt-who-we-are-bg.png'); 
    background-size: cover;
    background-position:top;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 100px;
}

.abt-who-we-wrapper {
    position: relative;
    padding-top: 20px;
}

.abt-who-we-divider {
    height: 1px;
    background: linear-gradient(to bottom, 
    rgba(115, 115, 115, 0.2),   /* #737373 with 60% opacity */
    rgba(217, 217, 217, 0.2),   /* #D9D9D9 with 60% opacity */
    rgba(115, 115, 115, 0.2)    /* #737373 with 60% opacity */
  );    margin-bottom: 40px;
    width: 100%;
    position: relative;
}

.abt-who-we-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.abt-who-we-text {
    font-family: inter;
    font-size: 17px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.abt-who-we-rocket {
    position: absolute;
    right: -6%;
    top: 40px; /* Position near the divider line */
    /* width: 230px; */
    z-index: 2;
    transform: rotate(300deg); /* Angle pointing toward the right end of divider */
}

.abt-who-we-rocket-img {
    animation: bounce-diagonal 6s infinite ease-in-out;
    display: inline-block;
    position: relative;
    width: 100%;
    height: 350px;
    object-fit: cover;
  }
  
  @keyframes bounce-diagonal {
    0%, 100% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(10px, -20px); /* right and up */
    }
  }
  
  

/* Responsive styles */
@media (max-width: 1200px) {
    .abt-who-we-rocket {
        width: 200px;
        right: 12%;
    }
}

@media (max-width: 991px) {
    .abt-who-we-section {
        padding: 0px 0px;
    }
    
    .abt-who-we-rocket {
        display: none;
        width: 180px;
        right: 10%;
        top: 30px;
    }
    .abt-who-we-wrapper {
        padding-top:0px;
        margin-top: 0px;
    }
}

@media (max-width: 767px) {
    .abt-who-we-wrapper {
        padding-top:0px;
    }

    .abt-who-we-divider {
        margin-bottom: 30px;
    }
    
    .abt-who-we-text {
        font-size: 16px;
        padding-top: 15px;
    }
    
    .abt-who-we-rocket {
        width: 150px;
        right: 8%;
        top: 25px;
    }
}

@media (max-width: 576px) {
    .abt-who-we-section {
        padding: 0px 0 0px;
        margin-top: -50px;
    }

    .abt-who-we-divider {
        margin-bottom: 20px;
    }

    .abt-who-we-content {
        padding: 0 10px;
    }

    .abt-who-we-text {
        font-size: 15px;
        line-height: 1.5;
        padding-top: 15px;
    }
    
    .abt-who-we-rocket {
        width: 120px;
        right: 5%;
        top: 20px;
        display: none;
    }
}
/* --------------------------------------WHO WE ARE ENDS */
/* --------------------------------------VISION MISSION STYLE STARTS */
.space-section {
    position: relative;
    width: 100%;
    min-height: 650px;
    color: #fff;
    overflow: hidden;
    padding: 0px;
    margin-top: 100px;
}

/* Astronaut positioning */
.astronaut {
    position: absolute;
    top: 30px;
    left: -167px;
    width: 40%;
    z-index: 1;
}

.astronaut img {
    width: 100%;
    height: auto;
}

/* Vision section */
.vision-content {
    position: absolute;
    top: 100px;
    left: 340px;
    width: 500px;
    padding-left:100px;
}

.vision-icon {
    object-fit: contain;
    position: absolute;
    top: -30px;
    left: -70px;
    width:600px;
    height:auto;
}

/* Mission section */
.mission-content {
    margin-top:80px;
    position: absolute;
    top: 350px;
    right: 220px;
    width: 500px;
    text-align: right;
    padding-right:120px;
}

.mission-icon {
    object-fit: contain;
    height:auto;
    position: absolute;
    top: -30px;
    right: -70px;
    width:600px;
}



/* Text styling */
.section-title {
    font-size:16px;
    font-weight:700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-text {
    font-family: inter;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.8;
    margin-top: -10px;
}

.astronaut-bounce {
    animation: bounce-tilt 8s infinite ease-in-out;
    display: inline-block;
    position: relative;
    width: 100%;
    height: 350px;
    object-fit: contain;
  }
  
  @keyframes bounce-tilt {
    0%, 100% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(10px, -25px) rotate(-15deg);
    }
  }

/* Responsive styles */
@media (max-width: 1200px) {
    .vision-content {
        left:0px;
        width: 350px;
    }
    
    .mission-content {
        right: 180px;
        width: 350px;
    }
}

@media (max-width: 992px) {
    .astronaut {
        width: 200px;
        top: 80px;
        left: 15px;
    }
    
    .vision-content {
        left: 50px;
        width: 300px;
        padding-left: 0px;
    }
    
    .mission-content {
        right: 150px;
        width: 300px;
        margin-top: 40px;
    }
    
    .vision-icon, .mission-icon {
        width: 350px;
    }
    
    .planet {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .space-section {
        min-height: 800px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0px 15px;
        margin: 0px;
    }
    
    .astronaut {
        position: relative;
        top: 0;
        /* left: -125px; */
        margin-bottom: 0px;
        width: 100%;
    }
    
    .vision-content {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 500px;
        margin-bottom: 0px;
        text-align: center;
        padding-left: 0px;
    }
    
    .mission-content {
        padding-right: 0px;
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 500px;
        text-align: center;
        margin-bottom: 60px;
        margin-top: 40px;
    }
    
    .planet {
        position: relative;
        bottom: 0;
        right: 0;
    }
    
    .vision-icon, .mission-icon {
        display: none;
        position: relative;
        display: block;
        width: 80%;
        max-width: 300px;
        left: 0;
        right: 0;
        margin: 0 auto 20px;
    }
}

@media (max-width: 480px) {
    .vision-icon, .mission-icon {
        display: none;
    }
    .space-section {
        padding: 0px 15px;
        min-height: 700px;
        margin-top: 0px;
    }
    
    .astronaut {
        width:100%;
        margin-bottom: 0px;
    }
    
    .planet {
        width: 120px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-text {
        font-size: 16px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 834px) and (orientation: portrait) {

    .abtcounter-title {
        font-size: 24px;
    }

    .section-text {
        font-size:20px;
      }
      .abtcounter-subheading {
            font-size:20px;
          }
      }
  

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .vision-icon, .mission-icon {
        display: none;
    }
  }
  @media only screen and (min-width: 820px) and (max-width: 1180px) {

    .section-text {
        font-size:20px;
      }
    .vision-content {
        width: 50%;
    }
    .mission-content {
        width: 50%;
        margin-top: 40px;
    }
    .mission-content {
        padding-right: 0px;
  }
  .section-text {
    font-size:20px;
  }
  .astronaut img {
    display: none;
  }

  }
  @media only screen and (min-width: 1024px) and (max-width: 1366px) {
    .abt-hero-section {
        min-height: 100vh;
    }
    .abt-who-we-rocket {
        top:15%;
    }
    
  }
  @media screen and (max-width: 540px) and (max-height: 720px) {
    .vision-icon, .mission-icon {
        display: none;
    }
  }
  @media only screen and (max-width:500px) {
    .mission-icon,.vision-icon {
        display:none;
    }
  }

/* -------------------------------------- VISION MISSION STYLE ENDS*/


/* -----------------------------------------COUNTER STYLE STARTS */
.abtcounter-section {
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.abtcounter-heading {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.abtcounter-subheading {
    padding-top: 10px;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 60px;
    opacity: 0.8;
}

.abtcounter-stats {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.abtcounter-stat-item {
    flex: 1;
    padding: 0 20px;
    position: relative;
    margin-left: 20px;
}

.abtcounter-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to right, rgba(115, 115, 115, 0.2), rgba(217, 217, 217, 0.2), rgba(115, 115, 115, 0.2));
}

.abtcounter-number {
    text-align: left;
    font-size: 66px;
    font-weight: 700;
    margin-bottom:0px;
}

.abtcounter-title {
    text-align: left;
    font-size:20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.abtcounter-description {
    font-family: inter;
    font-weight: 300;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
}

/* Tablet Responsive Styles */
@media (max-width: 992px) {
    .abtcounter-stats {
        flex-wrap: wrap;
    }

    .abtcounter-stat-item {
        flex: 0 0 calc(50% - 40px);
        margin-bottom: 40px;
    }

    .abtcounter-stat-item:nth-child(even)::after {
        display: none;
    }

    .abtcounter-stat-item:nth-child(odd)::after {
        height: 70%;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .abtcounter-section {
        padding: 60px 15px;
    }

    .abtcounter-heading {
        font-size: 26px;
    }

    .abtcounter-subheading {
        font-family: inter;
        font-size: 17px;
        font-weight: 300;
        margin-bottom: 40px;
    }

    .abtcounter-stats {
        flex-direction: column;
    }

    .abtcounter-stat-item {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }

    .abtcounter-stat-item::after {
        display: none;
    }

    .abtcounter-number {
        font-size: 36px;
    }

    .abtcounter-title {
        font-size: 18px;
    }
}
/* -----------------------------------------COUNTER STYLE ENDS */

/* --------------------------------------ABOUT STYLE ENDS */

/* --------------------------------------------TEAM STARTS */

.team-section {
    background-image: url('/web/assets/images/mentorssectionbg.png');
    background-size:cover;
    background-position:left;
    position: relative;
    width: 100%;
    color: #fff;
    padding: 40px 0;
}

.container {
    max-width: 1200px;
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.team-header-text {
    flex: 1;
    min-width: 300px;
    margin-top: 50px;
}

.team-header-image {
    flex: 0 0 150px;
    text-align: right;
}



@keyframes floatRotate {
    0% {
      transform: rotate(0deg) translateY(0px);
    }
    50% {
      transform: rotate(10deg) translateY(-10px);
    }
    100% {
      transform: rotate(0deg) translateY(0px);
    }
  }
  
  .team-satellite-img {
    height: auto;
    margin-top: -120px;
    animation: floatRotate 10s ease-in-out infinite; /* Slower animation */
  }
  
  

.team-subtitle {
    font: syne;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #ffffff;
}

.team-title {
    font-size: 32px;
    font-weight:600;
    margin-bottom: 20px;
    width: 65%;
}

/* Slider container */
.team-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.team-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    animation: teamSlide 20s linear infinite;
}

@keyframes teamSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.team-grid:hover {
    animation-play-state: paused;
}

.team-member {
    flex: 0 0 calc(20% - 16px); /* 5 slides visible */
    min-width: calc(20% - 16px);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-img-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.team-member-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit:contain;
}

.team-member-info {
    padding: 15px;
    text-align: center;
}

.team-member-name {
    font-size:24px;
    font-weight:700;
    margin-bottom: 5px;
}

.team-member-title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 12px;
}

.team-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social-link {
    color: #fff;
    text-decoration: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

.team-social-link:hover {
    background-color: #1e90ff;
}

.team-moon-decoration {
    position: fixed;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, #9166cc, #2e2e52);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

/* Media queries for responsiveness */
@media (max-width: 1024px) {
    .team-section {
    background-position: center;
}
    .team-member {
        flex: 0 0 calc(20% - 16px);
        min-width: calc(20% - 16px);
    }
    .team-title {
        width: 100%;
    }
}

@media (max-width: 768px) {
.team-section {
    background-position: center;
}
    .team-title {
        width: 100%;
    }
    .team-member-name {
        font-size:20px;
    }
    .team-member {
        flex: 0 0 calc(33.333% - 14px);
        min-width: calc(33.333% - 14px);
    }
    
    .team-header {
        flex-direction: column;
    }
    
    .team-header-image {
        display: none;
        order: -1;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .team-header-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .team-section {
    background-position: center;
    padding-bottom: 0px;
}
    .team-member {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    
    .team-title {
        font-size: 24px;
        width: 100%;
    }
}

/* --------------------------------------------TEAM ENDS */

/* ---------------------------------------------FAQ STYEL STARTS */

.abtfaq-section {
    color: #fff;
    padding: 60px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.abtfaq-heading {
    font-weight: 600;
    font-size: 17px;
}

.abtfaq-inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.abtfaq-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
    max-width: 400px;
    margin-bottom: 30px;
}

.abtfaq-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.abtfaq-description {
    font-size: 16px;
    font-weight: 300;
    font-family: inter;
}

.abtfaq-items {
    flex: 1;
    min-width: 300px;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.abtfaq-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

/* Apply gradient border to the entire item when active */
.abtfaq-item.active {
    position: relative;
    background-clip: padding-box;
    border: 2px solid transparent;
}

.abtfaq-item.active::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(90deg, #499DD2, #A565F2 60%, #E8E2E2);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.abtfaq-question {
    background-color: rgba(40, 40, 40, 0.8);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

/* Only show border on non-active items */
.abtfaq-item:not(.active) .abtfaq-question::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px; 
    padding: 2px;
    background: linear-gradient(90deg, #499DD2, #A565F2 60%, #E8E2E2);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.abtfaq-question h3 {
    font-size: 17px;
    font-weight: 600;
}

.abtfaq-toggle {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 2;
}

.abtfaq-toggle.active {
    transform: rotate(180deg);
}

/* Remove border-radius when question is active */
.abtfaq-item.active .abtfaq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border: none;
}

.abtfaq-answer {
    background-color: rgba(30, 30, 30, 0.8);
    border: none; /* No border for answer */
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
    display: none;
    position: relative;
    z-index: 0;
}

.abtfaq-answer.active {
    display: block;
}

/* Make sure there's no gap between question and answer */
.abtfaq-item.active .abtfaq-question {
    margin-bottom: 0;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .abtfaq-inner {
        flex-direction: column;
    }

    .abtfaq-header {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .abtfaq-items {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .abtfaq-inner {
        gap: 0px;
    }
    .abtfaq-section {
        padding: 0px 0;
        margin-bottom: 0px;
    }

    .abtfaq-title {
        font-size: 28px;
    }

    .abtfaq-question h3 {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .abtfaq-section {
        padding: 0px 0;
        margin-bottom: 0px;
    }

    .abtfaq-title {
        font-size: 24px;
    }

    .abtfaq-question {
        padding: 15px;
    }

    .abtfaq-answer {
        padding: 15px;
        font-size: 14px;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .abtfaq-section {
        min-height: 60vh;
    }
}
/* -----------------------------------------------FAQ STYLE ENDS */
/* ----------------------------------------------------------------ABOUT STYLE ENDS */


/* ---------------------------------------COURSES STYLE STARTS */

 .coursemain-hero-section {
  min-height: 100vh;
  padding-top: 100px;
  position: relative;
  width: 100%;
  background-image: url('/web/assets/images/coursesbanbg.png');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.coursemain-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0px;
  width: 100%;
}

.coursemain-image-container {
  position: relative;
  border-radius: 32px;
  padding: 2.5px;
  background: linear-gradient(135deg, #A565F299, #E8E2E2, #A565F299);
  max-width: 750px;
  margin: 0 auto;
  overflow: hidden;
}

.coursemain-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  background-color: #fff;
}

.coursemain-heading-container {
  color: white;
  text-align: center;
  padding-top: 15px;
}

.coursemain-heading-small {
  font-size: 16px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}




.coursemain-divider {
  border: none;
  height: 1px;
  margin: 50px auto;
  width: 60%;
  background: linear-gradient(to right, #737373, #D9D9D9, #737373);
}

.coursemain-description {
  color: white;
  width: 50%;
  margin: 0 auto;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 768px) {
    .coursemain-hero-section {
        height:30vh !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    coursemain-heading-small {
        font-size: 18px;
    }
}
/* ----------------------------------------------------------------------------------------- */
.coursesfull-bg {
  padding-top: 40px;
  padding-bottom: 80px;
  /* background: url('/web/assets/images/coursesecbgimg.png'); */
    background: url('/web/assets/images/Courses-section bg.png');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.coursemain-heading-container {
  text-align: center;
  color: white;
  padding-bottom: 60px;
}

.coursemain-heading-small {
  font-size: 16px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}



.coursemain-divider {
  border: none;
  height: 1px;
  margin: 50px auto;
  width: 60%;
  background: linear-gradient(to right, #737373, #D9D9D9, #737373);
}

.coursemain-description {
  color: white;
  width: 60%;
  margin: 0 auto;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.dnacourse-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.dnacourse-text {
  flex: 1 1 50%;
}

.dnacourse-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.dnacourse-description {
  font-weight: 300;
  font-family: Inter, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 15px;
  color:#FFFFFFE5;
}

.dnacourse-button {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: none;
  background: transparent;
  font-size: 20px;
  transition: color 0.3s ease;
}



.dnacourse-icon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.dnacourse-button:hover .dnacourse-icon-img {
  transform: translateX(4px);
}

.dnacourse-image {
  flex: 1 1 45%;
}

.dnacourse-img-wrapper {
  background: linear-gradient(135deg, #A565F299, #E8E2E2, #A565F299);
  padding: 3px;
  border-radius: 20px;
  display: inline-block;
}

.dnacourse-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  max-height: 400px;
  object-fit: cover;
  display: block;
  background-color: #000;

  
}

.custom-hr {
    border: none;
    height: 1px;
    background-color: #D9D9D9;
    margin-bottom:30px;
    margin-top:30px;
  }

@media (max-width: 768px) {

    .dnacourse-button {
        font-size: 16px;
        margin-top: 0px;
    }
    .dnacourse-description {
        font-size: 15px;
    }

    .dnacourse-title {
        font-size: 20px;
    }

    .coursemain-heading-large {
        margin:5px auto;
    }
  .coursemain-description {
    width: 90%;
    font-size: 15px;
  }

  .dnacourse-content {
    flex-direction: column;
    text-align: center;
  }

  .dnacourse-text,
  .dnacourse-image {
    flex: 1 1 100%;
  }

  .dnacourse-img {
    margin-top:0px;
  }
  .coursemain-heading-large {
    font-size: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .coursemain-heading-large {
        font-size: 28px;
    }
        .coursemain-description {
            font-size: 17px;
        }
            .dnacourse-title {
                font-size: 24px;
            }
                .dnacourse-description {
                    font-size: 17px;
                }
}
/* ----------------------------------------COURSES STYLE ENDS */


/* -----------------------------------------------------------CONTACT STYLE STARTS */

.contact-pg-section {
    background: url('/web/assets/images/contact-bg.png');
    position: relative;
    background-color: #020b1a; /* Fallback color */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    color: white;
    padding: 60px 0;
    overflow: hidden;
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 200px;
}

.contact-pg-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.contact-pg-title {
    font-size: 16px;
    color: white;
    font-weight:600;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
}

.contact-pg-subtitle {
    margin-top:20px;
    font-weight:300;
    font-family:inter;
    font-size:16px;
    max-width:680px;
    margin-left:auto;
    margin-right: auto;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height:1.7;
}

.contact-pg-subheading{
    font-size:32px;
    font-weight:600;
    color: #ffffff;
    width: 35%;
    text-align: center;
    justify-self: anchor-center;
}

.cnt-custom-hr{
    margin: 30px 250px;
    background: linear-gradient(
        to right,
        #737373,
        #D9D9D9,
        #737373
    );
}

.contact-pg-info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 0 15px;
}

.contact-pg-info-box {
    position: relative;
    backdrop-filter: blur(120px);
    -webkit-backdrop-filter: blur(120px); /* for Safari */
    
    /* Update background to be transparent */
    background-color: rgba(255, 255, 255, 0.1);
    
    /* Add gradient border using pseudo-element */
    border-radius: 12px;
    padding: 20px;
    min-width: 250px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* Remove default border if any */
    border: none;
    
    /* Add a small padding for the gradient border */
    padding: 22px;
}

/* Create gradient border using pseudo-element */
.contact-pg-info-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    padding: 2px; /* Border width */
    background: linear-gradient(to right, #499DD2, #A565F2 60%, #E8E2E2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.contact-pg-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.contact-pg-icon {
    width: 34px;
    height: 34px;
    margin-right: 15px;
    color: #0099ff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.contact-pg-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-pg-info {
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.contact-pg-ufo {
    position: absolute;
    top: 45%;
    right: 10%;
    width: 150px;
    height: auto;
    z-index: 1;
    transform: scaleX(-1) rotate(-25deg); /* Flip to face right and tilt */
    animation: float 6s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0) scaleX(-1) rotate(-25deg);
    }
    50% {
        transform: translateY(-20px) scaleX(-1) rotate(-25deg);
    }
    100% {
        transform: translateY(0) scaleX(-1) rotate(-25deg);
    }
}

/* Contact Form Section Styling */
.cntfrm-pg-section {
    background: url('/web/assets/images/contact-bg.png'); /* Same background as contact-pg-section */
    position: relative;
    background-color: #020b1a; /* Fallback color */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    color: white;
    overflow: hidden;
    padding: 60px 0;
}

.cntfrm-pg-planet {
    position: absolute;
    top: -5%;
    left: 5%;
    width: 200px;
    height: 200px;
    z-index: 2;
}

.cntfrm-pg-planet img {
    animation: rotatePlanet 20s linear infinite, floatPlanet 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transform-origin: center;
}

@keyframes rotatePlanet {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatPlanet {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cntfrm-pg-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cntfrm-pg-title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.cntfrm-pg-subtitle {
    margin: 0 auto 40px auto;
    max-width: 700px;
    font-family: inter, sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFFE5;
    line-height: 1.5;
}

.cntfrm-pg-form-container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
}

.cntfrm-pg-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 0; /* helps flexbox children shrink properly */
}

/* Inputs and Textareas */
.cntfrm-pg-input,
.cntfrm-pg-textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    color: white;
    border: 2px solid transparent;
    /* background-color: transparent; */
    background-color: rgba(255, 255, 255, 0.1);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image:
        linear-gradient(#0C0C20, #0C0C20),
        linear-gradient(45deg, #499DD2, #A565F2 60%, #E8E2E2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    resize: vertical;
    transition: all 0.3s ease;
}

.cntfrm-pg-textarea {
    min-height: 150px;
}

.cntfrm-pg-input::placeholder,
.cntfrm-pg-textarea::placeholder {
    color:#ffffff;
}

.cntfrm-pg-input:focus,
.cntfrm-pg-textarea:focus {
    outline: none;
    background-image:
        linear-gradient(#0C0C20, #0C0C20),
        linear-gradient(45deg, #A565F2, #499DD2, #E8E2E2);
    box-shadow: 0 0 0 2px rgba(165, 101, 242, 0.5);
}

/* Submit Button */
.cntfrm-pg-submit {
    margin-top: 10px;
    padding: 12px 50px;
    color: white;
    border-radius:24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    border: 2px solid transparent;
    background-color: transparent;
    background-image:
        linear-gradient(#0C0C20, #0C0C20),
        linear-gradient(45deg, #499DD2, #A565F2 60%, #E8E2E2);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.cntfrm-pg-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Map Section */
.cntfrm-pg-map {
    flex: 1;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.cntfrm-pg-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .contact-pg-info-container {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-pg-info-box {
        width: 100%;
        max-width: 450px;
    }
    
    .contact-pg-ufo {
        width: 100px;
        display: none;
        right: 5%;
    }
    
    .cntfrm-pg-form-container {
        flex-direction: column;
        gap: 40px;
    }

    .cntfrm-pg-map {
        width: 100%;
        height: 300px; /* slightly smaller height for tablet */
    }

    .cntfrm-pg-subtitle {
        margin: 0 30px 40px;
        max-width: none;
    }

    /* Make form full width on tablet */
    .cntfrm-pg-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
        .contact-pg-info {
            font-size: 16px !important;
        }
    .contact-pg-section {
        padding-top: 150px !important;
    }
    
    .contact-pg-title {
        font-size: 22px;
        padding: 12px 24px;
    }
    
    .contact-pg-subtitle {
        font-size: 14px;
    }
    
    .contact-pg-ufo {
        display: none;
        width: 80px;
        top: 65%;
        right: 5%;
    }
    
    .cnt-custom-hr {
        padding: 0px;
        margin: 0px;
    }
    
    .contact-pg-subheading {
        width: 100%;
        font-size: 24px;
    }
    
    .cntfrm-pg-title {
        font-size: 28px;
    }

    .cntfrm-pg-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
        margin: 0 15px 30px;
    }

    .cntfrm-pg-section {
        padding: 40px 15px;
    }

    .cntfrm-pg-planet {
        display: none;
        width: 60px;
        height: 60px;
    }

    .cntfrm-pg-planet img {
        display: none;
        width: 100%;
        height: auto;
    }

    .cntfrm-pg-form-container {
        gap: 30px;
    }

    /* Make form full width on mobile */
    .cntfrm-pg-form {
        width: 100%;
    }

    .cntfrm-pg-submit {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-pg-section {
        padding: 40px 0;
    }
    
    .contact-pg-title {
        font-size: 18px;
        padding: 10px 20px;
    }
    
    .contact-pg-info {
        font-size: 13px;
    }
    
    .contact-pg-ufo {
        display: none;
        width: 60px;
        top: 75%;
        right: 10%;
    }
}

@media (max-width: 480px) {
    .cntfrm-pg-title {
        font-size: 24px;
    }

    .cntfrm-pg-subtitle {
        margin: 0 15px 30px;
    }

    .cntfrm-pg-form {
        gap: 10px;
    }

    .cntfrm-pg-input,
    .cntfrm-pg-textarea,
    .cntfrm-pg-submit {
        padding: 12px;
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
    }

    .cntfrm-pg-submit {
        width: 100%;
    }
}
@media (min-width: 600px) and (max-width: 1024px) {
    .cntfrm-pg-planet{
        display: none;
    }

    .cntfrm-pg-section {
        padding: 40px 20px;
    }

    .cnt-custom-hr {
        padding:0px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .contact-pg-ufo{
        display: none;
    }
}
/* ---------------------------------------------CONTACT STYLLE ENDS */
/* ---------------------------------------------COURSE INNER PAGE STYLE STARTS */

/* CSS */
.courses-background-wrapper {
    background: url('/web/assets/images/Courses-section bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Course Inner Section */
.courseinner-wrapper {
    padding: 150px 0 60px;
    position: relative;
}

.courseinner-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.crsinner-hr {
    background: linear-gradient(90deg, #737373 0%, #D9D9D9 50%, #737373 100%);
    margin: 30px 0px;
    height: 1px;
    border: none;
}

.courseinner-image {
    flex: 0 0 40%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding: 2px;
    background: linear-gradient(to right, #499DD2, #A565F299, #E8E2E2);
}

.courseinner-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 7px;
}

.courseinner-title {
    flex: 0 0 55%;
    padding-right: 20px;
}

.courseinner-title h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
}

.courseinner-title p {
    font-family: inter;
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFFE5;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Content with Divider */
.content-with-divider {
    position: relative;
}

.course-sections-container {
    position: relative;
}

.course-sections-container::before {
    content: '';
    position: absolute;
    left: calc(65% + 15px);
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.courseinner-section {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.courseinner-section:last-child {
    margin-bottom: 0;
}

.courseinner-content {
    flex: 0 0 65%;
    padding-right: 15px;
}

.courseinner-info {
    flex: 0 0 35%;
    margin-left: 30px;
    display: block !important; /* Ensure visibility */
    opacity: 1 !important; /* Ensure visibility */
    visibility: visible !important; /* Ensure visibility */
}

.courseinner-about h3,
.courseinner-for h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.courseinner-about p,
.courseinner-for p {
    font-family: inter;
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFFE5;
    line-height: 1.6;
    margin-bottom: 20px;
}

.courseinner-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.courseinner-info-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(120px);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    display: block !important; /* Ensure visibility */
}

.courseinner-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    padding: 2px;
    border-radius: 10px;
    background: linear-gradient(to right, #499DD2, #A565F299, #E8E2E2);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.courseinner-info-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.courseinner-info-item:last-child {
    border-bottom: none;
}

.courseinner-info-icon {
    flex: 0 0 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}


.courseinner-info-icon:hover {
  transform: scale(1.2) ;
  color: #007BFF; /* Optional color change */
}
.courseinner-info-text {
    flex: 1;
}

.courseinner-info-text h5 {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

.courseinner-info-value {
    flex: 0 0 auto;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}










/* More Courses Section */
.crsinn-section {
    padding: 60px 0;
    position: relative;
}

.crsinn-header {
    text-align: center;
    margin-bottom: 30px;
}

.crsinn-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff; /* Added to ensure visibility */
}

.crsinn-description {
    font-family: inter;
    font-size: 16px;
    color: #FFFFFFE5;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.crsinn-slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 -10px;
}

.crsinn-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.crsinn-slider-inner {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.crsinn-slide {
    flex: 0 0 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.crsinn-card {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crsinn-card:hover {
    transform: translateY(-5px);
}

.crsinn-card-img {
    border-radius: 16px;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.crsinn-card-content {
    padding-top: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.crsinn-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.crsinn-card-text {
    font-family: inter;
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFFE5;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1;
}

.crsinn-card-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.crsinn-card-btn svg {
    margin-left: 5px;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.crsinn-card-btn:hover svg {
    transform: translateX(3px);
}

.crsinn-indicators {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 8px;
}

.crsinn-indicator {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}

.crsinn-indicator.active {
    background: #fff;
    width: 35px;
}

/* Responsive Styles - Updated for better visibility */
/* Medium screens - Added new specific breakpoint for 978px to 1288px */
@media screen and (min-width: 978px) and (max-width: 1288px) {
      .courseinner-apply {
    text-align:center;
}

    .courseinner-section {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .course-sections-container::before {
        display: none;
    }
    
    .courseinner-content {
        flex: 0 0 100%;
        padding-right: 0;
    }
    
    .courseinner-info {
        flex: 0 0 100%;
        margin-left: 0;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .courseinner-info-box {
        width: 100%;
        max-width: 100%;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .courseinner-info-item {
        justify-content: space-between;
    }
    
    .crsinn-slide {
        flex: 0 0 50%;
    }
}

@media screen and (max-width: 992px) {
      .courseinner-apply {
    text-align:center;
}

    .courseinner-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .courseinner-image {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .courseinner-title {
        flex: 0 0 100%;
        padding-right: 0;
        text-align: center;
    }
    
    .course-sections-container::before {
        display: none;
    }
    
    .courseinner-section {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px; /* Increased spacing between sections */
    }
    
    .courseinner-content {
        flex: 0 0 100%;
        padding-right: 0;
    }
    
    .courseinner-info {
        flex: 0 0 100%;
        margin-left: 0;
        margin-top: 20px; /* Added space between content and info box */
        max-width: 100%; /* Ensure full width */
    }
    
    .courseinner-info h4 {
        font-size: 20px;
    }
    
    .courseinner-info-box {
        width: 100%; /* Ensure full width */
        max-width: 100%; /* Ensure full width */
        margin-bottom: 20px; /* Add spacing between boxes */
    }
    
    .crsinn-slide {
        flex: 0 0 50%;
    }
}

@media screen and (max-width: 767px) {
  .courseinner-apply {
    text-align:center;
}


    .courseinner-section{
        padding: 40px 0px;
    }

    .courseinner-wrapper {
        padding: 100px 0 40px;
    }
    
    .courseinner-header {
        margin-bottom: 30px;
    }
    
    .courseinner-title h2 {
        font-size: 24px;
    }
    
    .courseinner-title p {
        font-size: 15px;
    }
    
    .courseinner-about p,
    .courseinner-for p {
        font-size: 15px;
    }
    
    .courseinner-info {
        margin-top:0px; /* Increased spacing on mobile */
    }
    
    .courseinner-info h4 {
        font-size: 20px;
        margin-bottom: 15px;
        text-align: center; /* Center headings on mobile */
    }
    
    .courseinner-about h3, 
    .courseinner-for h3 {
        font-size: 20px;
        text-align: center; /* Center headers on mobile */
    }
    
    .courseinner-info-item {
        padding: 12px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .courseinner-info-icon {
        margin-right: 10px;
    }
    
    .crsinn-title {
        font-size: 24px;
    }
    
    .crsinn-description {
        font-size: 14px;
    }
    
    .crsinn-slide {
        flex: 0 0 100%;
    }
}

@media screen and (max-width: 576px) {
    .courseinner-wrapper {
        padding: 80px 0 30px;
    }
    
    .courseinner-image img {
        height: 250px;
    }
    
    .crsinn-section {
        padding: 40px 0;
    }
    
    .courseinner-info h4 {
        font-size: 20px;
    }
    
    .courseinner-info-box {
        padding: 15px; /* Smaller padding on very small screens */
    }
    
    .courseinner-info-text h5 {
        font-size: 14px; /* Slightly smaller font for very small screens */
    }
    
    .courseinner-info-value {
        font-size: 14px; /* Slightly smaller font for very small screens */
    }
    
    /* Fix any spacing issues on very small screens */
    .courseinner-about h3, 
    .courseinner-for h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
}





.courseinner-apply {
    margin-top: 30px;
    text-align:left;
}

.apply-now-btn {
display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
}

.apply-now-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Popup Overlay Styles */
.apply-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.apply-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.apply-popup-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.apply-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.apply-popup-header h3 {
    color: #fff;
    font-size: 22px;
    margin: 0;
}

.close-popup-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
}

.close-popup-btn:hover {
    transform: rotate(90deg);
}

.apply-popup-form .form-group {
    margin-bottom: 20px;
}

.apply-popup-form label {
    display: block;
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.apply-popup-form input,
.apply-popup-form select,
.apply-popup-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.apply-popup-form input:focus,
.apply-popup-form select:focus,
.apply-popup-form textarea:focus {
    outline: none;
    border-color: #499DD2;
    box-shadow: 0 0 0 2px rgba(73, 157, 210, 0.2);
}

.apply-popup-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-application-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #499DD2 0%, #A565F2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-application-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for popup */
@media (max-width: 576px) {
    .courseinner-apply {
    text-align:center;
}

    .apply-popup-container {
        width: 95%;
        padding: 20px;
    }
    
    .apply-popup-header h3 {
        font-size: 18px;
    }
    
    .apply-popup-form input,
    .apply-popup-form select,
    .apply-popup-form textarea {
        padding: 10px 12px;
    }
}



.apply-popup-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 35px;
}

.apply-popup-form select option {
    background-color: #1a1a2e;
    color: white;
}






/* ---------------------------------------------COURSE INNER PAGE STYLE ENDS */

/* --------------------------------------------BLOGS MAIN PAGE STYLE STARTS */
.blg-main-pg {
  background: linear-gradient(to bottom, 
    #000000 0%, 
    #0a2a43 30%, 
    #0a2a43 70%, 
    #000000 100%);
  color: white;
  padding: 100px 0px;
  position: relative;
  overflow: hidden;
}






.blogmain-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.blogmain-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
  position: relative;
  z-index: 3;
}

.blogmain-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: #FFFFFFE5;
  position: relative;
  z-index: 3;
}

.blogmain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.blogmain-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  background-color: #041329;
  position: relative;
}

.blogmain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.blogmain-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blogmain-card:hover .blogmain-image {
  transform: scale(1.05);
}

.blogmain-content {
  padding: 20px 15px;
}

.blogmain-category {
  font-family: inter;
  display: inline-block;
  background: #fff;
  color: #041329;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.blogmain-post-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
  line-height: 1.4;
}

.blogmain-post-title:hover {
  color: #3b82f6;
  cursor: pointer;
}

.blogmain-excerpt {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
}

.blogmain-meta {
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(229, 231, 235, 0.2);
  font-size: 0.875rem;
  color: #fff;
}

.blogmain-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(13 110 253);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.blogmain-read-more:hover {
  transform: translateX(4px);
}

.blogmain-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blogmain-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  transition: none;
}

.blogmain-date {
  font-weight: 500;
}

/* Tablet Styles */
@media (max-width: 768px) {
  .blogmain-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .blogmain-title {
    font-size: 24px;
  }
  
  .floating-astronaut {
    width: 90px;
  }
  
  .header-astronaut {
    height: 90px;
    margin-bottom: -30px;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  .blogmain-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .blogmain-title {
    font-size: 24px;
  }
  
  .floating-astronaut {
    width: 70px;
  }
  
  .header-astronaut {
    height: 70px;
    margin-bottom: -20px;
  }
  
  .blg-main-pg {
    padding: 80px 0;
  }
}
/* ---------------------------------------------BLOG MAIN PAGE STYLE ENDS */

/* ------------------------------------------------BLOG INNER STYLE STARTS */

/* Main Section Styles */
 .blginner-section {
  padding: 150px 0px;
  background: linear-gradient(to bottom, 
  #000000 0%, 
  #0a2a43 30%, 
  #0a2a43 70%, 
  #000000 100%);
  color: white;
}

.blginner-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* Left Side - Main Content */
.blginner-main-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.blginner-featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blginner-meta {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #aaa;
}

.blginner-category {
  color:rgb(13 110 253);
  font-weight: 600;
}

.blginner-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0;
}

.blginner-content {
  line-height: 1.8;
}

.blginner-read-more {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background: #0d6efd;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.blginner-read-more:hover {
  background: #0b5ed7;
}

/* Right Side - Slider */
.blginner-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blginner-sidebar-title {
  font-size: 1.5rem;
  margin: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #444;
}

.blginner-slider-container {
  height: 600px;
  overflow: hidden;
  position: relative;
}

.blginner-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: slide 15s linear infinite;
}

@keyframes slide {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(-100% + 600px));
  }
}

.blginner-slide {
  background:#041329;
  border-radius:16px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s;
}

.blginner-slide:hover {
  transform: translateY(-5px);
}

.blginner-slide-meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: #aaa;
}

.blginner-slide-category {
  color: #0d6efd;
  font-weight: 600;
}

.blginner-slide-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
}

.blginner-slide-title {
  font-size: 1.1rem;
  margin: 0;
}

.blginner-slide-excerpt {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.5;
  margin: 5px 0;
}

.blginner-slide-read-more {
  align-self: flex-start;
  font-size: 0.9rem;
  color:rgb(13 110 253);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}

.blginner-slide-read-more:hover {
  color: #0b5ed7;
}

/* .blginner-slide-read-more::after {
  content: '→';
  margin-left: 5px;
  transition: transform 0.3s;
} */

.blginner-slide-read-more:hover::after {
  transform: translateX(3px);
}

/* Pause animation on hover */
.blginner-slider-container:hover .blginner-slider {
  animation-play-state: paused;
}

/* Tablet Size (768px - 992px) */
@media (max-width: 992px) {
  .blginner-wrapper {
    grid-template-columns: 1fr;
  }
  
  .blginner-title {
    font-size:24px;
  }
  
  .blginner-slider-container {
    height: auto;
    max-height: none;
    overflow: visible;
  }
  
  .blginner-slider {
    position: static;
    animation: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .blginner-slide {
    margin-bottom: 0;
  }

  .blginner-featured-image img {
    height: 350px;
  }
}

/* Mobile Size (576px - 767px) */
@media (max-width: 767px) {
.blginner-content{
    font-size: 14px;
    line-height: 1.3 rem;
}
    
  .blginner-section {
    padding: 100px 0;
  }
  
  .blginner-title {
    font-size:24px;
  }
  
  .blginner-slider {
    grid-template-columns: 1fr;
  }

  .blginner-featured-image img {
    height: 300px;
  }
}

/* Small Mobile Size (below 576px) */
@media (max-width: 576px) {
  .blginner-section {
    padding: 100px 0;
  }
  
  .blginner-title {
    font-size:20px;
  }

  .blginner-featured-image img {
    height: 250px;
  }

  .blginner-meta {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .blginner-section {
    padding: 100px 0;
  }
}
/* --------------------------------------------------BLOG INNER STYLE ENDS */

/* ------------------------------------------------CAREER STYLE STARTS */

.careermain-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.careermain-subtitle {
    font-family: inter;
    font-size: 18px;
    color: #FFFFFFE5;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 40px;
    justify-self: anchor-center
}
.careermain-job-title{
    font-weight: 600;
    font-size: 20px;
    color: #ffffff !important;
}

.careermain-content {
    padding: 150px 0px;
    background: url('/web/assets/images/Courses-section bg.png') no-repeat bottom;
    background-size: cover;
    min-height: 100vh;
    position: relative;
    width: 100%;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.careermain-section {
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.careermain-section-title {
    font-family: syne;
    font-size:32px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    position: relative;
}



/* Modified grid to show exactly 2 cards per row */
.careermain-jobs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.careermain-job-card {
    background:#041329;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careermain-job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.careermain-job-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.careermain-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.careermain-job-badge {
    background: #e3f2fd;
    color: #1976d2;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.careermain-job-experience {
    background: #ffffff;
    color: #041329;
}

.careermain-job-location {
    background: #ffffff;
    color:#041329;
}

.careermain-job-description {
    font-family: inter;
    font-size: 16px;
    color: #fff;
    font-weight: 300;
   
}

.careermain-job-requirements {
    margin-top: 15px;
}

.careermain-job-requirements h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.careermain-job-requirements ul {
    list-style: none;
    padding-left: 0;
}

.careermain-job-requirements li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    font-family: inter;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
}

.careermain-job-requirements li::before {
    content: '•';
    color:rgb(13 110 253);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.careermain-apply-btn {
    background:rgb(13 110 253);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.careermain-form-container {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

.careermain-form {
    display: grid;
    gap: 25px;
}

.careermain-form-group {
    display: flex;
    flex-direction: column;
}

.careermain-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.careermain-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.careermain-input,
.careermain-select,
.careermain-textarea {
    padding: 12px 15px;
border: 1px solid rgba(255, 255, 255, 0.2);    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.careermain-input:focus,
.careermain-select:focus,
.careermain-textarea:focus {
    outline: none;
    /* border-color: #667eea; */
}
.careermain-select option {
    background:#1a1a2e;
  color: #ffffff;            /* Text color */
}
.careermain-textarea {
    resize: vertical;
    min-height: 120px;
}

.careermain-file-input {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.careermain-file-input input[type="file"] {

    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.careermain-file-label {
            background-color: rgba(255, 255, 255, 0.05) !important;

    display: block;
    padding: 12px 15px;
    border: 2px dashed #667eea;
    border-radius: 8px;
    text-align: center;
    background: #f8f9ff;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.careermain-file-input:hover .careermain-file-label {
    background: #e3f2fd;
    border-color: #5a6fd8;
}

.careermain-submit-btn {
background: linear-gradient(90deg, rgb(73, 157, 210) 0%, rgb(165, 101, 242) 100%);    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    justify-self: start;
}

.careermain-submit-btn:hover {
    transform: translateY(-2px);
}

/* Mobile Responsiveness - Single column on mobile */
@media (max-width: 768px) {
    .careermain-job-title{
        font-size: 20px;
    }
    .careermain-title {
        font-size: 2.2rem;
    }

    .careermain-subtitle {
        font-size:16px;
        padding: 0 20px;
        text-align: center;
    }

    .careermain-content {
        padding: 80px 15px 20px 15px;
       
    }

    .careermain-section-title {
        font-size:24px;
    }

    /* Single column on mobile */
    .careermain-jobs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .careermain-job-card {
        padding: 20px;
    }

    .careermain-job-meta {
        flex-direction: column;
        gap: 10px;
    }

    .careermain-form-container {
        padding: 25px 20px;
        margin: 0 15px;
    }

    .careermain-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Tablet Responsiveness - Keep 2 columns on tablet */
@media (max-width: 1024px) and (min-width: 769px) {
     
.careermain-content{
    padding: 150px 0px;
    padding-left: 15px;
    padding-right: 15px;
}
    .careermain-jobs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .careermain-form-container {
        padding: 35px 30px;
    }
}

/* Popup Modal Styles */
.careermain-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
}

.careermain-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.careermain-modal-content {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.careermain-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px 20px;
    border-bottom: 1px solid #e0e6ed;
}

.careermain-modal-title {
    font-size:32px;
    font-weight: 600;
    color:#ffffff;
    margin: 0;
}

.careermain-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.careermain-close:hover {
    background: #f8f9fa;
    color: #333;
}

.careermain-modal-body {
    padding: 20px 40px 40px;
}

/* Small Mobile */
@media (max-width: 480px) {
    .careermain-title {
        font-size: 1.8rem;
    }

    .careermain-header {
        padding: 40px 0;
    }

    .careermain-job-card {
        padding: 15px;
    }

    .careermain-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .careermain-modal-header {
        padding: 20px 20px 15px;
    }

    .careermain-modal-body {
        padding: 15px 20px 25px;
    }

    .careermain-modal-title {
        font-size: 1.5rem;
    }

    .careermain-form-container {
        padding: 0;
        box-shadow: none;
        background: transparent;
    }
}  /* ----------------------------------------------------CAREER STYLE END */
