/* GLOBAL RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans Display', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* MAKE IMAGES RESPONSIVE */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* FLEX CONTAINERS WRAP ON SMALL SCREENS */
.about-container,
.award-container,
.section-heading-bar,
.cards,
.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about-left,
.about-right,
.card,
.stat {
    flex: 1 1 300px;
}

.section-heading-bar {
    justify-content: space-between;
    align-items: center;
}

.section-heading {
    text-align: center;
    flex: 1 1 100%;
}

/* RESPONSIVE TEXT */
h1,
h2,
h3 {
    font-size: clamp(18px, 3vw, 36px);
}

/* BUTTONS */
.purchase-btn,
.portal-button,
.register-btn,
.btn-primary {
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 6px;
    text-align: center;
    display: inline-block;
    background: linear-gradient(to right, #f70000, #ff3c3c);
    color: white;
    border: none;
    text-decoration: none;
    transition: background 0.3s ease;
}

.purchase-btn:hover,
.portal-button:hover,
.register-btn:hover,
.btn-primary:hover {
    background: #1069e6, ;
}

/* NAV BAR */
/* header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
} */

/* DROPDOWN NAV */
/* .dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    top: 100%;
    left: 0;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-content {
    display: block;
} */

/* YOUTUBE SLIDER */
/* .youtube-scroll-container {
    max-width: 920px;
    margin: 0 auto;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
} */

/* .youtube-scroll-container::-webkit-scrollbar {
    display: none;
}

.youtube-slider {
    display: flex;
    gap: 20px;
    min-width: max-content;
} */

/* .youtube-card {
    flex: 0 0 auto;
    width: 280px;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
} */

/* STATS */
.stats-container {
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.stat h2 {
    font-size: clamp(20px, 4vw, 36px);
}

/* MOBILE MENU TOGGLE (optional) */
/* You can later add a burger menu with JS */

/* MEDIA QUERIES */
@media (max-width: 768px) {

    .about-container,
    .section-heading-bar,
    .stats-container,
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .portal-button {
        margin-top: 10px;
    }

    /* nav {
        flex-direction: column;
        align-items: flex-start;
    } */

    .banner-image img {
        width: 100%;
        height: auto;
    }

    section {
        padding: 40px 20px;
    }
}


@media (max-width: 768px) {

    /* GENERAL SECTION PADDING */
    section,
    .about-section,
    .app-section {
        padding: 40px 20px !important;
    }

    /* HEADER FIX */
    /* header {
        flex-direction: column;
        align-items: flex-start;
    } */

    /* nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    } */

    .portal-button {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }

    /* HERO IMAGE */
    .hero img {
        width: 100%;
        height: auto;
        display: block;
        image-rendering: auto;
    }


    /* AWARD SECTION */
    .award-container {
        flex-direction: column;
        align-items: center;
    }

    .section-heading-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* COURSE CARDS */
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 100%;
    }

    /* ABOUT SECTION */
    .about-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .about-left img {
        max-width: 100%;
    }

    .about-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* APP SECTION */
    .app-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .right-content ul {
        text-align: left;
    }

    .store-buttons {
        justify-content: center;
    }

    /* STATS */
    .stats-container {
        flex-direction: column;
        gap: 30px;
    }

    .divider {
        display: none;
    }

    /* YOUTUBE SLIDER – Already responsive */
    .youtube-scroll-container {
        padding: 0 10px;
    }
}






@import url("https://fonts.googleapis.com/css2?family=Khula:wght@600;700&family=Nunito+Sans:wght@300;400;600;700&display=swap");

/*-- Common Style --*/
*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
}

/* header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: linear-gradient(to right, #0325ff21, #2240ff26);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
} */

/* BASIC STYLES */
header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 36px;
    flex-wrap: wrap;
}

.logo img {
    height: 61px;
}

/* NAVIGATION */
nav {
    display: flex;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

nav a.active {
    color: #1069e6;
    border-radius: 6px;
    font-weight: bold;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    border-radius: 5px;
    z-index: 10;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #333;
}

.dropdown-content a:hover {
    background-color: #f2f2f2;
}

.arrow {
    font-size: 15px;
    margin-left: 8px;
}

/* PORTAL BUTTON */
.portal-button {
    background: linear-gradient(to right, #1069e6, #1a75bb);
    color: white;
    padding: 10px 18px;
    border: 2px solid #58749f;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 46, 255, 0.6);
    border-radius: 8px;
    white-space: nowrap;
}

/* HAMBURGER MENU BUTTON */
/* .menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
} */

/* MOBILE VIEW */


/* @media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

    nav a,
    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background: #f9f9f9;
        border-radius: 0;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    

    nav.show {
        display: flex;
    }
} */



/* .hero img {
    width: 100%;
    height: 673px;
    display: block;
} */



.menu-toggle {
    display: none;
    padding: 10px 15px;
    background-color: #333;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    nav.show {
        display: flex;
        gap: 0px;
    }

    nav a,
    .dropdown {
        width: 100%;
        padding: 10px;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background: #f9f9f9;
    }

    .dropdown:hover .dropdown-content {
        display: none;
        /* disable hover for mobile */
    }

    .dropdown.open .dropdown-content {
        display: block;
    }
}
















.social-icons {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icons img {
    width: 32px;
    height: 32px;
}


.award-section {
    /* background-image: url('assets/images/background/awardbackground.png'); */
    background: linear-gradient(to bottom, #ffffff 0%, #bfd9ff 30%, #bfd9ff 70%, #ffffff 100%);
    /* 🔁 Replace with your background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* padding: 34px 20px; */
    text-align: center;
    position: relative;
}

.award-container {
    max-width: 1481px;
    /* margin: 0 auto; */
    /* background: rgba(255, 255, 255, 0.9); */
    padding: 40px 20px;
    /* border-radius: 24px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading .line {
    height: 2px;
    background-color: #003a8c;
    width: 80px;
    /* 🎯 reduce this value for smaller line */
    margin: 0 auto 10px auto;
}

.section-heading h3 {
    font-size: 28px;
    color: #003a8c;
    font-weight: 500;
}


/* .award-image-wrapper {
    border-radius: 20px;
    padding: 10px;
    overflow: hidden;
} */


.award-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* horizontally center */
    justify-content: center;
    /* optional: vertical center */
    text-align: center;
}

.award-image-wrapper img {
    max-width: 100%;
    height: auto;
}

/* .award-image-wrapper img {
    width: 100%;
    border-radius: 12px;
    display: block;
} */


.course-materials-section {
    background: linear-gradient(to bottom, #ffffff, #dceeff);
    padding: 0px 31px;
    font-family: 'Segoe UI', sans-serif;
}

.section-heading-bar {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* flex: 1; */
}

.section-heading .line {
    width: 60px;
    height: 2px;
    background-color: #003a8c;
    margin-bottom: 6px;
}

.section-heading h3 {
    font-size: 30px;
    color: #003a8c;
    font-weight: 600;
    margin: 0;
}

.purchase-btn {
    background: linear-gradient(to right, #f70000, #ff3c3c);
    color: white;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.banner-image img {
    width: 100%;
    height: auto;
    /* border-radius: 12px; */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}


.about-section {
    padding: 60px 20px;
    background: #f4f8ff;
    font-family: 'Segoe UI', sans-serif;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    /* margin: 0 auto; */
    gap: 40px;
    flex-wrap: wrap;
}

.about-left img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); */
}

.about-right {
    flex: 1;
    min-width: 300px;
}

.about-right h2 {
    font-size: 28px;
    color: #003a8c;
    margin-bottom: 20px;
}

.about-right p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
    text-align: justify;
}

.about-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 14px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-primary {
    background: linear-gradient(to right, #1069e6, #1a75bb);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(to right, #1a75bb, #1069e6);
}

.btn-secondary {
    background: white;
    color: #003a8c;
    border: 2px solid #003a8c;
}

.btn-secondary:hover {
    background: #003a8c;
    color: white;
}




h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

/* h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #2563eb;
    margin: 8px auto 0;
} */

.view-all-btn {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 9999px;
    font-weight: 500;
    margin-top: 20px;
    cursor: pointer;
}



@keyframes bling {
    0% {
        box-shadow: 0 0 5px #EDCE00;
    }

    50% {
        box-shadow: 0 0 20px #EDCE00, 0 0 40px #DE9000;
    }

    100% {
        box-shadow: 0 0 5px #EDCE00;
    }
}

.card:hover {
    animation: bling 1.2s infinite;
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 0 20px 60px;
}

.card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 300px;
    width: 100%;
}

.card-header {
    background: linear-gradient(to right, #1e40af, #1e3a8a);
    color: white;
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Align image and text vertically */
    text-align: center;
    padding: 16px;
    gap: 10px;
    /* Space between image and title */
}

.card-header img {
    width: 56px;
    height: 56px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
}


.card-body {
    padding: 16px;
}

.card-body p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.register-btn {
    background: linear-gradient(to right, #EDCE00, #DE9000);
    color: white;
    border: none;
    padding: 16px;
    width: 100%;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(237, 206, 0, 0.5);
}

.register-btn::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #EDCE00, #DE9000, #EDCE00);
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 8px;
}

.register-btn:hover::after {
    opacity: 1;
}

.register-btn:hover {
    background-color: linear-gradient(to right, #EDCE00, #DE9000);
}

.cards {
    background: linear-gradient(to bottom, #d9ecff17, #D9ECFF);
}


.youtube-section {
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading .line {
    width: 80px;
    height: 2px;
    background-color: #003a8c;
    margin: 0 auto 10px;
}

.section-heading h3 {
    font-size: 24px;
    color: #003a8c;
    margin: 0;
}

/* Scrollable Container */
.youtube-scroll-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.youtube-slider {
    display: flex;
    gap: 40px;
    padding: 0 20px;
    scroll-snap-type: x mandatory;
    scroll-padding: 20px;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
}

/* Individual Card */
.youtube-card {
    flex: 0 0 auto;
    width: 432px;
    height: auto;
    scroll-snap-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #fff;
}

.youtube-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Optional Hover Effect */
.youtube-card:hover {
    transform: scale(1.02);
}

/* Hide scrollbar (optional) */
.youtube-scroll-container::-webkit-scrollbar {
    display: none;
}

/* Responsive Behavior */
@media (max-width: 1024px) {
    .youtube-card {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .youtube-slider {
        justify-content: flex-start;
    }
}









.youtube-section1 {
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

.section-heading1 {
    margin-bottom: 40px;
}

.section-heading1 .line {
    width: 80px;
    height: 2px;
    background-color: #ffffff;
    margin: 0 auto 10px;
}

.section-heading1 h3 {
    font-size: 24px;
    color: #ffffff;
    margin: 0;
}

/* Scrollable Container */
.youtube-scroll-container1 {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.youtube-slider1 {
    display: flex;
    gap: 40px;
    padding: 0 20px;
    scroll-snap-type: x mandatory;
    scroll-padding: 20px;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
}

/* Individual Card */
.youtube-card1 {
    flex: 0 0 auto;
    width: 596px;
    height: auto;
    scroll-snap-align: center;
    border-radius: 12px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
    /* background-color: #fff; */
}

.youtube-card1 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Optional Hover Effect */
.youtube-card1:hover {
    transform: scale(1.02);
}

/* Hide scrollbar (optional) */
.youtube-scroll-container1::-webkit-scrollbar {
    display: none;
}

/* Responsive Behavior */
@media (max-width: 1024px) {
    .youtube-card1 {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .youtube-slider1 {
        justify-content: flex-start;
    }
}




.stats-container {
    display: flex;
    /* gap: 167px; */
    /* border: 1px solid #eee; */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    flex-direction: row;
    justify-content: center;
}

.stat {
    text-align: center;
    padding: 0 20px;
}

.icon-circle {
    background-color: #1e60f1;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
    font-size: 24px;
}

.stat h2 {
    margin: 5px 0;
    font-size: 30px;
    font-weight: bold;
    color: #000;
}

.stat p {
    margin: 0;
    color: #666;
    font-size: 18px;
}

.divider {
    width: 2px;
    background: #B3B3B3;
    height: 98px;
    align-self: center;
}




/* .container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: white;
    flex-wrap: wrap;
} */


/* 
.wifi-wave-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
} */

.wifi-wave-button i {
    position: relative;
    z-index: 2;
}

.wifi-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    animation: wave 2s infinite ease-out;
    pointer-events: none;
}


.wifi-wave:nth-child(1) {
    width: 60px;
    height: 60px;
}

/* .wifi-wave:nth-child(2) {
    width: 80px;
    height: 80px;
    animation-delay: 0.4s;
}

.wifi-wave:nth-child(3) {
    width: 100px;
    height: 100px;
    animation-delay: 0.8s;
} */


.wifi-wave:nth-child(2) {
    animation-delay: 0.5s;
}

.wifi-wave:nth-child(3) {
    animation-delay: 1s;
}

@keyframes wave {
    0% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}




.left-image {
    flex: 1 1 300px;
    text-align: center;
}

.left-image img {
    max-width: 250px;
    height: auto;
}

.right-content {
    flex: 1 1 400px;
    padding: 20px;
    text-align: left;
}

.right-content h1 {
    font-size: 32px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 20px;
}

.right-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.right-content ul li {
    font-size: 18px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.right-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 20px;
}

.store-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.store-buttons img {
    height: 50px;
    border-radius: 12px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); */
    cursor: pointer;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .right-content {
        text-align: center;
    }
}

.app-section {
    background-image: url('../images/background/app-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    color: white;
}







.mentors-section {
    /* background: #003a8c; */
    /* background-image: url('assets/images/background/mentors-bg.png'); */
    /* Optional background shape */
    background-size: cover;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.section-heading .line {
    height: 2px;
    width: 152px;
    background: white;
    margin: 0 auto 10px;
}

.section-heading h3 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #2053A6;
}

.mentor-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.mentor-card {
    /* background: white; */
    padding: 8px;
    border-radius: 4px;
    width: 177px;
    text-align: center;
    overflow: hidden;
}

.mentor-card img {
    width: 100%;
    height: auto;
    display: block;
}

.mentor-logo {
    background: white;
    padding: 5px;
}

.mentor-logo img {
    height: 30px;
}

/* Buttons */
.mentor-buttons {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mentor-btn {
    background: #FCD721;
    padding: 10px 37px;
    border-radius: 8px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

.callout-right {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 260px;
    font-size: 16px;
    position: relative;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    text-align: left;
    margin-left: auto;
    /* ✅ aligns to the right */
}

/* Right side speech bubble */
.callout-right::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 30px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.1);
    /* bubble color */
}

/* Call Now button */
.call-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    color: white;
    text-decoration: none;
    margin-top: 15px;
    font-size: 16px;
}

.call-btn img {
    width: 32px;
    height: 32px;
}



/* Responsive */
@media (max-width: 600px) {
    .callout-right {
        margin: 0 auto;
    }

    .callout-right::after {
        right: 50%;
        transform: translateX(50%);
    }
}


.app-promo-section {
    background-image: url('assets/images/background/grey-bg.png');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    font-family: 'Noto Sans', sans-serif;
}

.app-promo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 995px;
    margin: auto;
    flex-wrap: wrap;
}

.app-promo-left img {
    max-width: 331px;
    height: auto;
}

.app-promo-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.text-block {
    text-align: left;
    /* ✅ Exact alignment as in image */
    max-width: 500px;
}

.tagline {
    color: #d8a503;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.app-title {
    color: #003a8c;
    font-size: 28px;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: baseline;
}

.store-buttons img {
    height: 55px;
    transition: transform 0.3s;
}

.store-buttons img:hover {
    transform: scale(1.05);
}

.download-wrapper {
    text-align: center;
    margin: 20px 0;
}

.download-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(to right, #0b5be0, #1a75bb);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.2s ease;
}

.download-btn:hover {
    background: #094fc7;
    transform: translateY(-2px);
}





/* Responsive */
@media (max-width: 768px) {
    .app-promo-container {
        flex-direction: column;
        text-align: center;
    }

    .app-promo-right {
        justify-content: center;
    }

    .text-block {
        text-align: center;
    }
}


.events-section {
    padding: 60px 20px;
    background: #fff;
    font-family: 'Segoe UI', sans-serif;
    max-width: 1200px;
    margin: auto;
}



.events-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.section-heading {
    text-align: center;
    margin-bottom: 10px;
}

.section-heading .line {
    width: 60px;
    height: 2px;
    background: #003a8c;
    margin: 0 auto 10px;
}

.section-heading h2 {
    font-size: 28px;
    color: #003a8c;
    font-weight: 700;
}

.view-all-btn {
    background: #1069e6;
    color: white;
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 68, 255, 0.3);
    transition: 0.3s ease;
}

.view-all-btn:hover {
    background: #0050c7;
}

/* Cards grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.event-card img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1); */
}





.events-grid01 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.event-card01 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card01 img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.event-card01:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.event-card01:hover img {
    transform: scale(1.03);
}

.view-all-btn01 {
    display: inline-block;
    padding: 12px 30px;
    background: #007bff;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.4);
    transition: background 0.3s ease, transform 0.3s ease;
}

.view-all-btn01:hover {
    background: #0056b3;
    transform: scale(1.05);
}




.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #2f9756;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.wa-icon {
    width: 24px;
    height: 24px;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
}








.testimonial-section1 {
    background: linear-gradient(to right, #f4f9fd, #ffffff);
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-heading1 .line {
    width: 60px;
    height: 3px;
    background-color: #1a75bb;
    margin: 0 auto 10px;
}

.testimonial-heading1 h3 {
    font-size: 32px;
    font-weight: bold;
    color: #1a237e;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* Slider */
.testimonial-slider1 {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Testimonial Card */
.testimonial-card1 {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    width: 300px;
    padding: 30px 20px 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out;
    border: 1px solid #e1e1e1;
    text-align: left;
    position: relative;
}

.testimonial-card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Top Section */
.card-top1 {
    background-color: #1a75bb;
    color: white;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.card-top1 h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.card-top1 img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

/* Stars */
.stars1 {
    margin: 15px 0 10px;
    font-size: 18px;
    color: #f9a825;
}

/* Text */
.testimonial-card1 p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    padding-left: 10px;
    border-left: 3px solid #1a75bb;
    margin-top: 10px;
}

/* Pagination */
.testimonial-pagination1 {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.arrow1 {
    font-size: 24px;
    cursor: pointer;
    color: #1a75bb;
    transition: transform 0.3s ease;
}

.arrow1:hover {
    transform: scale(1.2);
}

.dot1 {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s ease;
}

.dot1.active {
    background: #1a75bb;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-slider1 {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card1 {
        width: 90%;
    }
}










.youtube-gallery {
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
}

.section-heading {
    margin-bottom: -38px;
}

.section-heading .line {
    width: 60px;
    height: 2px;
    background: #003a8c;
    margin: 0 auto 10px;
}

.section-heading h2 {
    font-size: 24px;
    color: #003a8c;
    font-weight: 600;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 videos per row */
    gap: 20px;
    justify-items: center;
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 per row on tablets */
    }
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
        /* 1 per row on small mobile */
    }
}


.video-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.video-card img {
    width: 100%;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: red;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn i {
    color: white;
    font-size: 20px;
}

.youtube-channel-btn {
    margin-top: 40px;
}

.youtube-channel-btn a {
    background: linear-gradient(to right, #EC1C24, #CA1F26);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0px 0px 20px rgb(255 0 0 / 73%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.youtube-channel-btn a:hover {
    background: #cc0000;
}



.join-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

input,
select {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: white;
    color: black;
}

.form-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.full {
    width: 100%;
}

.half {
    flex: 1;
    min-width: 48%;
}

.quarter {
    flex: 1;
    min-width: 100px;
}

.three-quarter {
    flex: 3;
    min-width: 200px;
}

/* Submit Button */
/* Center the submit button */
.form-group.center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

/* Small, clean button */
button {
    background: linear-gradient(to right, #0b5be0, #1a75bb);
    /*color: white;*/
    padding: 8px 22px;
    /* smaller size */
    font-size: 20px;
    /* smaller text */
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    min-width: 50px;
    /* controlled button width */
    text-align: center;
}

button:hover {
    background: #094fc7;
}


.partner-section {
    background-color: #0d4cb4;
    /* or #003a8c */
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.partner-title {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #fff;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 29px;
    flex-wrap: wrap;

}

.partner-card {
    /* background-color: white; */
    /* border-radius: 15px; */
    padding: 20px;
    width: 221px;
    /* height: 140px; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); */
}

.partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer {
    background: linear-gradient(135deg, #0b1629, #0e1c35);
    color: white;
    padding: 60px 80px 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.logo-column {
    max-width: 300px;
}

.footer-logo {
    width: 207px;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-column p,
.footer-column a,
.footer-column li {
    font-size: 14px;
    line-height: 1.7;
    color: #cfcfcf;
    text-decoration: none;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 14px;
}

.footer-column ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: white;
}

.footer-column i {
    margin-right: 8px;
    color: #000000;
}

/* Social Media Icons with Circle Background */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    background-color: white;
    color: #0b1629;
    font-size: 17px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: flex-end;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
    flex-direction: column-reverse;
    justify-content: space-around;
}

.footer-social a:hover {
    background-color: #116ae3;
    color: #0b1629;
}

/* Copyright centered */
.footer-bottom {
    text-align: left;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 15px;
    color: #aaa;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}



.testimonials-section {
    padding: 60px 20px;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2rem;
    color: #204ecf;
    margin-bottom: 40px;
    position: relative;
}

.testimonials-wrapper {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 20px;
    scroll-snap-type: x mandatory;
    padding-bottom: 40px;
    -webkit-overflow-scrolling: touch;
    /* For smooth scrolling on iOS */
    scrollbar-width: thin;
    /* Hide scrollbar in Firefox */
}

.testimonials-wrapper::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar in WebKit browsers */
}

.testimonial-card {
    background: white;
    flex: 0 0 auto;
    width: 300px;
    border-radius: 20px;
    padding: 20px;
    scroll-snap-align: start;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
    /* position: relative; */
    /* background-image: url('https://www.transparenttextures.com/patterns/cubes.png'); */
    /* optional */
}

.testimonial-card .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
    border: 2px solid #fff;
}

.testimonial-card .name {
    font-weight: bold;
    margin: 5px 0;
}

.testimonial-card .date {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.testimonial-card .message {
    font-style: italic;
    color: #2c2c2c;
}

.nav-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
}

.dot.active {
    background: #204ecf;
}

@media (max-width: 768px) {
    /* Remove this:
    .testimonials-wrapper {
        flex-direction: column;
        align-items: center;
    }
    */

    .testimonial-card {
        flex: 0 0 80%;
    }
}





.floating-social-bar {
    position: fixed;
    top: 30%;
    right: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 8px 5px;
    /* background-color: #094b9d; */
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: transform 0.3s ease;
}

/* Social icon buttons */
.social-icon {
    width: 50px;
    height: 50px;
    margin: 7px 0;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #000;
    transition: all 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

/* Brand colors */
.facebook {
    color: #3b5998;
}

.instagram {
    color: #e1306c;
}

.youtube {
    color: #ff0000;
}

.whatsapp {
    color: #25d366;
}

.phone {
    color: #007bff;
}

.twitter {
    color: #000000;
}

.linkedin {
    color: #0077b5;
}

/* Hide on scroll down */
.floating-social-bar.hide {
    transform: translateX(100%);
}





.blog-header-section {
    /* background-image: url('assets/images/background/blog-header-bg.png'); */
    /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    text-align: center;
}

.blog-header h2 {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    letter-spacing: 1px;
}

.blog-header .highlight {
    color: #ffd700;
    /* Optional: change highlight color */
    font-style: italic;
}


.blog-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}

.blog-post {
    display: flex;
    flex-direction: row;
    gap: 15px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.blog-post img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 230px;
    /* Increase this if you want taller images */
    border-radius: 10px;
}

.blog-content {
    padding: 15px 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 24px;
    border-radius: 8px;
    color: white;
    margin-bottom: 5px;
}

.badge .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    background: white;
}

.badge.red {
    background-color: #D6293E;
}

.badge.blue {
    background-color: #3498db;
}

.badge.green {
    background-color: #34db60;
}

.badge.yellow {
    background-color: #f9e400;
}

.blog-content h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 5px 0;
}

.blog-content p {
    font-size: 14px;
    color: #333;
}

.view-details {
    font-size: 12px;
    color: #0047a3;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination button {
    padding: 6px 12px;
    border-radius: 6px;
    border: none;
    background: #f0f0f0;
    cursor: pointer;
    font-weight: 500;
}

.pagination button.active {
    background: #0047a3;
    color: white;
}

.pagination button.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.pagination span {
    color: #555;
}




/* Responsive Layout for Tablets and Mobiles */
@media (max-width: 768px) {
    .blog-post {
        flex-direction: column;
        align-items: center;
    }

    .blog-post img {
        width: 100%;
        height: auto;
        max-height: 220px;
        border-radius: 12px 12px 0 0;
    }

    .blog-content {
        padding: 15px;
        text-align: left;
    }

    .blog-content h4 {
        font-size: 15px;
    }

    .blog-content p {
        font-size: 13px;
    }

    .view-details {
        font-size: 12px;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 6px;
    }

    .pagination button {
        padding: 5px 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .blog-header h2 {
        font-size: 28px;
    }

    .blog-content h4 {
        font-size: 14px;
    }

    .blog-content p {
        font-size: 12px;
    }

    .badge {
        font-size: 10px;
        padding: 4px 16px;
    }

    .badge .dot {
        width: 8px;
        height: 8px;
    }
}



.features-section {
    background: url('assets/images/background/offer-bg.png') no-repeat center;
    background-size: cover;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.section-title {
    margin-bottom: 40px;
}

.section-title .line {
    width: 60px;
    height: 2px;
    background: #fff;
    margin: 0 auto 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Force 2 columns */
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    /* background: linear-gradient(to bottom right, #fff, #f8f8f8); */
    color: #000;
    padding: 30px 20px;
    border-radius: 12px;
    /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); */
    text-align: left;
}

.feature-card .icon {
    font-size: 28px;
    color: #004AAD;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 18px;
    margin: 10px 0;
    font-weight: bold;
}

.feature-card p {
    font-size: 14px;
    color: #555;
}

/* Optional: make it stack on mobile */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}




/* .vision-mission-section {
    background: url('assets/images/background/vm-bg.png') no-repeat center;
    background-size: cover;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
} */

.vision-mission-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.vision-mission-block {
    flex: 1;
    max-width: 500px;
}

.vision-mission-block .icon-circle {
    background: linear-gradient(to bottom right, #1D54A5, #001B47);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-mission-block .icon-circle img {
    width: 55px;
    height: 55px;
}

.vision-mission-block h3 {
    color: #003a8c;
    font-weight: 500;
    margin-bottom: 15px;
}

.vision-mission-block p {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    padding: 0 15px;
}

.divider-line {
    width: 1px;
    background: #003a8c;
    height: 220px;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .vision-mission-container {
        flex-direction: column;
        align-items: center;
    }

    .divider-line {
        display: none;
    }

    .vision-mission-block {
        max-width: 90%;
    }
}



.projects-section {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #cae8f717, #ceecfa);
    text-align: center;
    position: relative;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
}

.section-title .line {
    width: 75px;
    height: 2px;
    background-color: #ffffff;
    margin: 0 auto 10px;
}

.section-title h2 {
    font-size: 24px;
    color: #1a4ca4;
    font-weight: 600;
}

.projects-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* .project-card {
    background: linear-gradient(to bottom, #1D54A5, #001B47);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    color: #000;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
} */

/* .project-card img {
    height: 156px;
    margin: 0 auto 20px auto;
    display: block;
} */


.project-card {
    background: linear-gradient(to bottom, #063472d4, #01244d);
    border-radius: 16px;
    padding: 40px 20px 20px 20px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    flex: 1 1 200px;
    max-width: 240px;
    /* min-height: 340px; */
    /* Make all cards same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-card img {
    height: 156px;
    margin: 0 auto 20px auto;
}

.project-card p {
    background: #fff;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}



/* .card-text {
    background: #fff;
    border-radius: 10px;
    padding: 12px 10px;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    line-height: 1.4;
} */


.card-text {
    background: #fff;
    border-radius: 10px;
    padding: 12px 10px;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    line-height: 1.4;
    /* min-height: 60px; */
    /* You already have this – increase if needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* height: 60px; */
    /* <- Add this to force equal height */
}


.project-card:hover {
    transform: translateY(-5px);
}

/* Optional: dotted vertical line at the center (for large screens only) */
@media (min-width: 1024px) {
    .projects-wrapper::before {
        /* content: ""; */
        position: absolute;
        left: 50%;
        top: -20px;
        bottom: -20px;
        border-left: 2px dotted #1a4ca4;
        transform: translateX(-50%);
        z-index: 0;
    }
}



.certification-section {
    background: linear-gradient(to bottom, #e0f4ff, #ffffff);
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 24px;
    color: #1a4ca4;
    margin-bottom: 40px;
    position: relative;
}

/* .section-title::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #1a4ca4;
    display: block;
    margin: 10px auto 0;
} */

.certificates-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.certificate-box {
    max-width: 300px;
    /* background: #fff; */
    border-radius: 12px;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    padding: 10px;
}

.certificate-box img {
    width: 100%;
    height: auto;
    display: block;
}










.sslc-form-section {
    background-color: #f6f9fc;
    padding: 40px;
    font-family: 'Segoe UI', sans-serif;
}

.form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
}

.form-left img {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
}

.form-right {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
}

.banner-tag {
    background: linear-gradient(to right, #ffe000, #ff1e00);
    color: white;
    padding: 8px 20px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 6px;
    font-style: italic;
    text-transform: uppercase;
}

.booking-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* .form-group {
    width: 100%;
} */

.form-group.half {
    width: calc(50% - 8px);
}

.booking-form input,
.booking-form select {
    /* width: 100%; */
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
}

/* .recaptcha-row {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.recaptcha-row img {
    height: 40px;
} */

/* .g-recaptcha {
    margin-top: 15px;
    margin-bottom: 15px;
    transform: scale(0.95);
    transform-origin: 0 0;
} */

.recaptcha-submit-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    flex-direction: row;
    /* allows it to stack on small screens */
}

.recaptcha-box {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #F4F4F4;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    max-width: 203px;
    flex-grow: 1;
}

.recaptcha-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    gap: 8px;
}

.recaptcha-box input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.recaptcha-box img {
    height: 38px;
}



.submit-btn {
    background-color: #003a8c;
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    width: 160px;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    background-color: #002f6c;
}




.team-section {
    padding: 60px 20px;
    background-color: #f7f9fc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-items: center;
}

.team-card {
    background-color: #10449a;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 220px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.profile-pic {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 12px;
    border: 4px solid white;
}

.team-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.department {
    font-size: 14px;
    color: #cccaf5;
    margin-bottom: 10px;
}

.team-logo {
    height: 20px;
}




.events-grid1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns */
    gap: 20px;
    padding: 40px;
    justify-items: center;
}

.event-card1 img {
    width: 100%;
    max-width: 250px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.event-card1 img:hover {
    transform: scale(1.05);
}



.features-section {
    background: linear-gradient(to bottom, #f2f6fb, #ffffff);
    padding: 50px 20px;
}

/* .features-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
} */


.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* .features-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-width: 280px;
} */

.features-column {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    display: flex;
    gap: 15px;
    background: #D8E0E9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    align-items: flex-start;
}

.feature-box img {
    width: 40px;
    height: 40px;
}

.feature-box h4 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
}

.feature-box p {
    margin: 0;
    font-size: 14px;
    color: #444;
}

/* .features-phone {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.features-phone {
    flex: 1 1 300px;
    text-align: center;
}

.features-phone img {
    max-width: 100%;
    height: auto;
}


.blog-header-section {
    /* background-image: url('assets/images/background/blog-header-bg.png'); */
    /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    text-align: center;
}

.blog-header h2 {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    letter-spacing: 1px;
}

.blog-header .highlight {
    color: #ffd700;
    /* Optional: change highlight color */
    font-style: italic;
}


.blog-container1 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}

.blog-post1 {
    display: flex;
    flex-direction: row;
    gap: 15px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.blog-post1 img {
    width: 376px;
    height: auto;
    object-fit: cover;
    max-height: 230px;
    /* Increase this if you want taller images */
    border-radius: 10px;
}

.blog-content1 {
    padding: 15px 20px;
}

.badge1 {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 24px;
    border-radius: 8px;
    color: white;
    margin-bottom: 5px;
}

.badge1 .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    background: white;
}

.badge1.red {
    background-color: #D6293E;
}

.badge1.blue {
    background-color: #3498db;
}

.badge1.green {
    background-color: #34db60;
}

.badge1.yellow {
    background-color: #f9e400;
}

.blog-content1 h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 5px 0;
}

.blog-content1 p {
    font-size: 14px;
    color: #333;
}

.view-details1 {
    font-size: 12px;
    color: #0047a3;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
}



@media (max-width: 768px) {
    .blog-post1 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .blog-post1 img {
        width: 100%;
        max-height: none;
        border-radius: 10px 10px 0 0;
    }

    .blog-content1 {
        padding: 15px;
    }
}



.career-fair-section {
    max-width: 960px;
    margin: 50px auto;
    padding: 40px;
    font-family: "Segoe UI", sans-serif;
    color: #333;
    background: #fff;
}

.career-fair-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}


.career-fair-banner img {
    max-width: 320px;
    height: auto;
}

.career-fair-content h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #000;
}

.career-fair-details {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    line-height: 1.8;
}

.career-fair-details li {
    margin-bottom: 8px;
    font-size: 15px;
}

.career-fair-overview p {
    margin-bottom: 10px;
    font-size: 15px;
}





/* Special rule for the last centered card */
.center-card1 {
    grid-column: 1 / -1;
    max-width: 300px;
    margin: 0 auto;
}





/* 
.courses-section {
    background-image: url('assets/images/background/courses-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
} */

/* Grid Layout */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1000px;
    width: 100%;
    gap: 20px;
}

/* Individual Card */
.course-card {
    background-color: #0070C9;
    color: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 230px;
}

.course-card h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
}

.course-card p {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 16px;
}

.join-btn {
    background-color: white;
    color: #0070C9;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background 0.3s ease;
}

.join-btn:hover {
    background-color: #e6e6e6;
}



.neet-section {
    max-width: 1000px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    padding: 30px;
    box-sizing: border-box;
}

.neet-container {
    display: flex;
    flex-wrap: wrap;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
}

.neet-video {
    flex: 1 1 320px;
    position: relative;
    padding: 20px;
}

.neet-video img {
    width: 100%;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.play-button img {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.4));
}

.neet-content {
    flex: 1 1 300px;
    padding: 30px;
    box-sizing: border-box;
}

.neet-content h4 {
    margin-top: 0;
    font-size: 18px;
}

.neet-content ul {
    padding-left: 20px;
    margin: 15px 0;
    line-height: 1.8;
}

.join-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2A83C8;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.neet-description {
    margin-top: 25px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    font-family: "Poppins", sans-serif;
    /* font-weight: 100; */
    font-style: normal;
}



.pg-programs-section {
    padding: 60px 20px;
    background-color: #f7f9fc;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

.pg-heading {
    font-size: 2.2rem;
    color: #01204f;
    margin-bottom: 40px;
}

.pg-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pg-card {
    background: linear-gradient(324deg, #cbf1ff9e, #ffffff54);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    width: 300px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.pg-card:hover {
    transform: translateY(-5px);
}

.pg-card-header img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pg-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pg-card-body p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

.join-btn {
    background: linear-gradient(324deg, #1A75BB, #3AA6FA);
    color: #fff;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.join-btn:hover {
    background-color: #09336f;
}





.promo-section {
    padding: 50px 20px;
    background-color: #001e3c;
    font-family: 'Segoe UI', sans-serif;
}

.promo-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    background: url('assets/images/chevron-pattern.png') no-repeat center;
    background-size: cover;
    border-radius: 12px;
    padding: 30px;
    color: #fff;
}

.promo-image img {
    max-width: 100%;
    width: 400px;
    border-radius: 12px;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); */
}

.promo-content {
    max-width: 550px;
    font-size: 1rem;
    line-height: 1.7;
}

.join-now-btn {
    display: inline-block;
    margin-top: 20px;
    background: linear-gradient(259deg, #1A75BB, #3AA6FA);
    color: #fff;
    padding: 12px 60px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.join-now-btn:hover {
    background: linear-gradient(135deg, #1c70db, #135abf);
}




/* .course-details-section {*/
/*    min-height: 100vh;*/
/*    padding: 60px 20px;*/
/*    background: #fff;*/
/*    font-family: 'Segoe UI', sans-serif;*/
/*    background-image: url('assets/images/wave-bg.png');*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.course-container {*/
/*    max-width: 1200px;*/
/*    width: 100%;*/
/*    color: #1a1a1a;*/
/*    font-size: 1rem;*/
/*    line-height: 1.7;*/
/*}*/


/*.course-title {*/
/*    text-align: center;*/
/*    font-size: 2rem;*/
/*    color: #2079BD;*/
/*    margin-bottom: 10px;*/
/*}*/

/*.course-divider {*/
/*    width: 80px;*/
/*    height: 2px;*/
/*    background-color: #0d3c78;*/
/*    margin: 0 auto 30px;*/
/*    border: none;*/
/*}*/

/*.course-subtitle {*/
/*    font-size: 1.2rem;*/
/*    font-weight: 600;*/
/*    margin-bottom: 20px;*/
/*}*/

/*ul {*/
/*    margin-left: 20px;*/
/*    list-style-type: disc;*/
/*}*/

/*ol {*/
/*    margin-left: 20px;*/
/*} */









.programs-section {
    background: #f4f9fd url('assets/images/waves-light.png') no-repeat;
    background-size: cover;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.program-card {
    background: #1A75BB;
    border-radius: 47px;
    padding: 25px 20px;
    color: #fff;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.program-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.join-btn1 {
    display: inline-block;
    background-color: #fff;
    color: #1A75BB;
    font-weight: bold;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.join-btn1:hover {
    background-color: #e3e3e3;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    /* space between image and text */
    /* font-size: 1.1rem;
    margin-bottom: 10px; */
    justify-content: center;
}

.icon-img {
    width: 46px;
    height: 46px;
}










.events-section1 {
    padding: 60px 100px;
    background: #fff;
    font-family: 'Segoe UI', sans-serif;
    max-width: 1617px;
    margin: auto;
}



.job-listing {
    background: linear-gradient(to right, #FCFEFF, #1a75bb66);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 21px 149px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}



.job-icon {
    width: 50px;
    margin-right: 15px;
}

.job-info {
    display: flex;
    align-items: center;
    /* flex: 2; */
}

.job-details {
    line-height: 1.5;
}

.job-title {
    font-weight: bold;
    color: #0056b3;
}

.job-meta {
    font-size: 14px;
    color: #1C56A5;
}

.apply-button1 {
    background-color: #ffffff;
    color: rgb(255, 255, 255);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.apply-button:hover {
    background-color: #0056b3;
}




/* ---------------- Responsive Design ---------------- */
@media (max-width: 1024px) {
    .events-section1 {
        padding: 40px 40px;
    }

    .job-listing {
        flex-direction: column;
        align-items: flex-start;
        margin: 20px;
        padding: 20px;
    }

    .job-info {
        margin-bottom: 15px;
    }

    .apply-button1 {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .programs-section {
        padding: 40px 20px;
        align-items: flex-start;
    }

    .programs-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    /* .program-card {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    } */

    .card-title {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 18px;
    }

    .icon-img {
        width: 28px;
        height: 28px;
    }

    .program-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .join-btn1 {
        display: inline-block;
        margin-top: 10px;
        /* background-color: #1C56A5; */
        color: #1C56A5;
        padding: 8px 16px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 14px;
    }

    .events-section1 {
        padding: 30px 20px;
    }

    .job-listing {
        padding: 15px;
    }

    .job-title {
        font-size: 16px;
    }

    .job-meta {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .card-title span {
        font-size: 16px;
    }

    .join-btn1 {
        /* width: 100%; */
        /* text-align: center; */
        font-size: 13px;
    }

    .job-title {
        font-size: 15px;
    }

    .job-meta {
        font-size: 12px;
    }

    .job-listing {
        padding: 10px;
    }
}












/* .contact-info-box {
    background: #0a2e611f;
    border-radius: 21px;
    padding: 30px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 75%);
    text-align: center;
    height: 100%;
}

.contact-info-box i {
    font-size: 30px;
    margin-bottom: 10px;
    color: #2053a6;
}

.map-section iframe {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    border: none;
}

.contact-label {
    font-weight: 600;
    margin-top: 10px;
    font-size: 18px;
}

.contact-detail {
    color: #555;
    font-size: 16px;
}

@media (min-width: 768px) {
    .row.g-4 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .row.g-4>div {
        flex: 0 0 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
    }
} */















.contact-wrapper,
.social-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.contact-card,
.social-card {
    background: #2053a6;
    color: white;
    padding: 30px 20px;
    border-radius: 12px;
    width: 362px;
    box-shadow: 0 6px 12px rgb(0 0 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}




.social-card {
    background: #fff;
    border: 1px solid #0667b1;
    width: 302px;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}




.contact-card i,
.social-card i {
    font-size: 30px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-title {
    font-weight: bold;
    margin: 10px 0 5px;
}

.contact-desc {
    font-size: 14px;
}

.social-button {
    display: inline-block;
    margin-top: 10px;
    background-color: #035db5;
    color: white;
    padding: 10px 83px;
    border-radius: 6px;
    text-decoration: none;
}

.social-card i {
    color: #035db5;
}

.social-card.youtube i {
    color: red;
}

.social-card.whatsapp i {
    color: #25d366;
}

.social-card.facebook i {
    color: #3b5998;
}

.social-card.instagram i {
    color: #e1306c;
}

.social-card.phone i {
    color: #28a745;
}










.help-section {
    text-align: center;
    padding: 50px 20px;
    background: #cfe6fa;
}

.help-section h2 {
    color: #064a99;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.help-box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.help-box {
    background-color: #1976d2;
    color: white;
    padding: 40px 20px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.help-box-icon {
    background-color: #ffffff;
    color: #1976d2;
    font-size: 40px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}




/* .modal01 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal01.show {
    opacity: 1;
    visibility: visible;
}

.modal01-content {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    padding: 30px;
    width: 550px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.4s ease-in-out;
    position: relative;
    animation: bounceIn 0.5s ease-out;
}

.modal01.show .modal1-content {
    transform: scale(1);
}

@keyframes bounceIn {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    80% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff4444;
    transform: scale(1.2);
}

h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 24px;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

input{
    width: 90%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    background: rgb(255 255 255);
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
}


select {
    width: 90%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    background: rgb(113, 107, 107);
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
}

input:focus,
select:focus {
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
}

select {
    cursor: pointer;
    color: #fff;
}

option {
    background: #2a94c7;
    color: white;
}

.submit-btn1 {
    background: linear-gradient(135deg, #0064fe, #1a75bb);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.submit-btn1:hover {
    background: linear-gradient(135deg, #0064fe, #1a75bb);
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

.submit-btn1:active {
    transform: scale(0.98);
} */














.modal01 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal01.show {
    opacity: 1;
    visibility: visible;
}

.modal01-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 40px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.4);
    animation: bounceIn 0.5s ease-out;
    position: relative;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    70% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: #ff4444;
    transform: scale(1.2);
}

h2 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

input,
select {
    width: 100%;
    padding: 12px 18px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    outline: none;
    transition: 0.3s ease;
    text-align: left;
}

input::placeholder,
select {
    color: #666;
}

input:focus,
select:focus {
    background: #fff;
    border: 2px solid #0064fe;
    box-shadow: 0 0 12px rgba(0, 100, 254, 0.3);
}

option {
    background: #fff;
    color: #000;
}

.submit-btn1 {
    background: linear-gradient(135deg, #0064fe, #1a75bb);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.submit-btn1:hover {
    background-position: right center;
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}










.faq-section {
    /* max-width: 900px; */
    margin: auto;
    padding: 50px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #2e2e2e;
    border-left: 6px solid #6a1b9a;
    padding-left: 12px;
}

.faq-container {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item {
    border-top: 1px solid #ddd;
}

.faq-item:first-child {
    border-top: none;
}

.faq-question {
    width: 100%;
    background: #f9f9f9;
    color: #333;
    text-align: left;
    padding: 30px 42px;
    font-size: 18px;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;

}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 24px;
    color: #1a75bb;
    transition: transform 0.3s;
}

.faq-question.active::after {
    content: "−";
    transform: rotate(180deg);
    color: #1f52a5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding: 16px 0;
    margin: 0;
    font-size: 16px;
    color: #444;
}

.buttons {
    background: #094fc7;
}