@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

    body {
        font-family: 'Poppins', sans-serif;
        background: #ffffff;
    }

    p {
        font-size: 13px;
    }

    @media (min-width: 1400px) {
        .container {
            max-width: 1290px;
        }
    }
    /* Navbar */
    .header-logo {
        height: 85px;
        object-fit: contain;
    }

    /* Desktop Nav Links */
    .nav-link-custom {
        font-size: 14px;
        font-weight: 500;
        color: #1f2937;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .nav-link-custom:hover {
        color: #00b3b3;
    }

    /* Mobile Nav Links */
    .nav-link-mobile {
        font-size: 15px;
        font-weight: 500;
        color: #1f2937;
        text-decoration: none;
        padding-bottom: 10px;
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-link-mobile:hover {
        color: #00b3b3;
    }

    /* CTA Button */
    .btn-header-cta {
        background-color: #00b3b3;
        color: #ffffff;
        padding: 10px 24px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(0, 179, 179, 0.25);
    }

    .btn-header-cta:hover {
        background-color: #009999;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(0, 179, 179, 0.35);
    }

    @media (max-width: 768px) {
        .header-logo {
            height: 55px;
        }
    }

    @media (max-width: 991px) {
        #global-header .btn {
            padding: 6px 10px;
        }

        #global-header .fa-bars {
            font-size: 26px;
        }

        .btn-header-cta {
            width: 100%;
            text-align: center;
            padding: 12px;
            font-size: 15px;
        }
    }

    /* Hero Section */
    .hero-section {
        padding: 80px 0;
        position: relative;
    }

    .badge-pill {
        background: linear-gradient(90deg, #2ecdc4, #0fb9b1);
        color: #ffffff;
        padding: 10px 18px;
        border-radius: 30px;
        font-size: 12px;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 26px;
        box-shadow: 0 8px 20px rgba(46, 205, 196, 0.35);
    }

    .hero-title {
        font-size: 44px;
        font-weight: 800;
        line-height: 1.15;
        color: #0f172a; /* dark heading */
    }

    .hero-title .inline-highlight {
        color: #12b5b0; /* teal */
        font-weight: 800;
    }

    .hero-title .block-highlight {
        display: block;
        color: #12b5b0; /* teal */
        font-weight: 800;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 34px;
        }
    }

    .hero-subtitle {
        font-size: 18px;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 18px;
    }

    .hero-text {
        color: #6b7280;
        font-size: 14px;
        line-height: 1.8;
        max-width: 520px;
        margin-bottom: 32px;
    }

    .hero-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .btn-primary-custom {
        background: #0fb9b1;
        color: #ffffff;
        padding: 14px 28px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        box-shadow: 0 12px 25px rgba(15, 185, 177, 0.35);
    }

    .btn-outline-custom {
        background: linear-gradient(90deg, #ffcc00, #ff7a18);
        color: #ffffff;
        padding: 14px 28px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        border: none;
        box-shadow: 0 12px 25px rgba(255, 122, 24, 0.35);
    }


    .btn-outline-custom {
        border: none;
        background: linear-gradient(90deg, #ffcc00, #ff7a18);
        color: #fff;
    }

    /* Image Card */
    .hero-image-wrapper {
        position: relative;
    }

    .hero-image {
        border-radius: 18px;
        width: 100%;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .students-badge {
        position: absolute;
        bottom: -20px;
        left: 20px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: #ffffff;
        padding: 14px 20px;
        border-radius: 14px;
        border: 2px solid #38cfc5;
        box-shadow: 0 18px 35px rgba(0,0,0,0.15);
        z-index: 2;
    }

    /* Icon circle */
    .badge-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #38cfc5;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

    /* Text */
    .badge-number {
        font-size: 22px;
        font-weight: 700;
        color: #38cfc5;
        line-height: 1;
    }

    .badge-label {
        font-size: 13px;
        color: #6b7280;
        font-weight: 500;
    }


    .badge-experience {
        /* top: 20px; */
        right: -25px;
        border: 2px solid #ff7a18;
        color: #ff7a18;
        font-size: 14px;
    }

    .badge-experience i {
        background: #ff7a18;
        color: #fff;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .badge-students {
        bottom: -20px;
        left: 20px;
        color: #00b3b3;
        border-left: 4px solid #00b3b3;
    }

    .info-badge {
        position: absolute;
        background: #ffffff;
        padding: 14px 20px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-weight: 600;
        box-shadow: 0 18px 35px rgba(0,0,0,0.15);
        z-index: 2;
    }


    /* Bottom Points */
    .hero-points {
        margin-top: 30px;
        display: flex;
        gap: 28px;
        font-size: 14px;
        color: #374151;
    }

    .hero-points span::before {
        content: "✔";
        background: #14b8b4;
        color: #ffffff;
        font-size: 11px;
        padding: 3px 6px;
        border-radius: 50%;
        margin-right: 8px;
    }

    @media(max-width: 768px) {
        .badge-experience {
            right: 10px;
            top: 10px;
            padding: 10px 14px;
        }

        .students-badge {
            bottom: 10px;
            left: 10px;
            padding: 10px 14px;
        }
    }

    /* Smooth vertical floating */
    @keyframes floatY {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-14px);
        }
        100% {
            transform: translateY(0);
        }
    }

    /* Badge pill */
    .badge-pill {
        animation: floatY 4s ease-in-out infinite;
    }

    /* Experience badge */
    .info-badge {
        animation: floatY 4.8s ease-in-out infinite;
    }

    /* Students badge */
    .students-badge {
        animation: floatY 5.5s ease-in-out infinite;
    }

    /* Performance boost */
    .badge-pill,
    .info-badge,
    .students-badge {
        will-change: transform;
    }

    /* Hero background wrapper */
    .hero-section {
        position: relative;
        overflow: hidden;
        background: linear-gradient(180deg, #ffffff 0%, #f8fdff 100%);
    }

    /* Effect container */
    .hero-bg-effects {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
    }

    /* Base blob */
    .bg-blob {
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.55;
        animation: blobFloat 18s ease-in-out infinite;
    }

    /* Blob colors & positions */
    .blob-1 {
        background: #2ecdc4;
        top: -120px;
        left: -120px;
        animation-duration: 22s;
    }

    .blob-2 {
        background: #ffd166;
        top: 20%;
        right: -140px;
        animation-duration: 26s;
    }

    .blob-3 {
        background: #ff9f68;
        bottom: -160px;
        left: 35%;
        animation-duration: 30s;
    }

    /* Floating motion */
    @keyframes blobFloat {
        0%   { transform: translateY(0) translateX(0); }
        50%  { transform: translateY(-40px) translateX(30px); }
        100% { transform: translateY(0) translateX(0); }
    }

    @media (max-width: 768px) {

        /* Section spacing */
        .hero-section {
            padding: 50px 0;
        }

        /* Badge pill */
        .badge-pill {
            font-size: 11px;
            padding: 8px 14px;
            margin-bottom: 18px;
        }

        /* Main heading */
        .hero-title {
            font-size: 26px;
            line-height: 1.25;
        }

        .hero-title .inline-highlight,
        .hero-title .block-highlight {
            font-size: 26px;
        }

        /* Subtitle */
        .hero-subtitle {
            font-size: 15px;
            margin-bottom: 12px;
        }

        /* Description text */
        .hero-text {
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 22px;
        }

        /* Buttons */
        .hero-buttons {
            gap: 12px;
        }

        .btn-primary-custom,
        .btn-outline-custom {
            width: 100%;
            padding: 12px 18px;
            font-size: 13px;
            text-align: center;
        }

        /* Bullet points */
        .hero-points {
            margin-top: 16px;
            font-size: 12px;
            gap: 10px;
            flex-wrap: wrap;
        }

        /* Image */
        .hero-image {
            border-radius: 14px;
        }

        /* Floating badges on image */
        .info-badge,
        .students-badge {
            display: none;
        }

        /* Reduce background effects */
        .bg-blob {
            width: 260px;
            height: 260px;
            filter: blur(60px);
            opacity: 0.35;
        }
    }

    /* career */
    .text-color {
        color: #00b3b3;
        --bs-text-opacity: 1;
    }

    .icon-box {
        width: 55px;
        height: 55px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 22px;
    }

    .card {
        border: 1px solid transparent;
        transition: all 0.35s ease;
    }

    .card:hover {
        border-color: #00b3b3;
        box-shadow: 0 18px 40px rgba(0, 179, 179, 0.18);
        transform: translateY(-6px);
    }

    .card p {
        font-size: 15px;
        line-height: 1.7;
    }

    @media(max-width: 768px) {
        .card p {
            font-size: 13px;
            line-height: 1.7;
        }

        .card a {
            font-size: 13px;
            line-height: 1.7;
        }
    }

    .career-bg {
        background: linear-gradient(
            120deg,
            #f2fbfd 0%,
            #f9fdff 40%,
            #fff8ee 100%
        );
    }

    /* Icon box subtle glow on hover */
    .card:hover .icon-box {
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    }

    /* Arrow slight move on hover */
    .card a i {
        transition: transform 0.3s ease;
    }

    .card:hover a i {
        transform: translateX(4px);
    }

    .card:hover .bg-info {
        box-shadow: 0 12px 25px rgba(0, 179, 179, 0.35);
    }

    .card:hover .bg-warning {
        box-shadow: 0 12px 25px rgba(255, 193, 7, 0.35);
    }

    /* why-bg */
    /* Images transition */
    .why-bg img {
        position: relative;
        z-index: 1;
        transition: transform 0.45s ease, box-shadow 0.45s ease;
    }

    /* Image hover effect */
    .why-bg img:hover {
        transform: translateY(-4px) scale(1.015);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    }

    .why-bg .position-relative {
        overflow: hidden;
    }

    .why-bg {
        background: linear-gradient(
            120deg,
            #f3fbfd 0%,
            #ffffff 45%,
            #fff7eb 100%
        );
    }

    /* Feature Cards */
    .feature-card {
        display: flex;
        gap: 15px;
        background: #ffffff;
        padding: 18px;
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        border: 1px solid transparent;
    }

    .feature-card {
        display: flex;
        gap: 15px;
        background: #ffffff;
        padding: 18px;
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        border: 1px solid transparent;
    }

    .feature-card:hover {
        box-shadow:
            inset 0 0 0 2px #00b3b3,
            0 20px 45px rgba(0, 179, 179, 0.2);
    }

    /* Icons */
    .feature-icon {
        min-width: 50px;
        height: 50px;
        border-radius: 12px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.08);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
    }

    /* navigate */
    .btn-outline-primary-custom {
        padding: 10px 24px;              /* same as primary */
        border-radius: 10px;             /* same rounding */
        font-size: 14px;
        font-weight: 600;
        border: 2px solid #00b3b3;
        color: #00b3b3;
        background: transparent;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(0, 179, 179, 0.15);
    }

    .btn-outline-primary-custom:hover {
        background-color: #00b3b3;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(0, 179, 179, 0.3);
    }

    .career-process .position-relative {
        overflow: hidden;
    }

    .step-card {
        background: #f8fdff;
        padding: 24px 26px;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        border: 1px solid transparent;
    }

    .step-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(25, 195, 193, 0.18);
        border-color: #19c3c1;
    }


    .step-header {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 12px;
    }

    .step-number {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #1bbec3;
        color: #fff;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .step-text {
        color: #6b7280;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .career-cta-section {
        background: linear-gradient(180deg, #0fa5b8, #1b8db5);
        padding: 90px 0;
        color: #ffffff;
    }

    .career-cta-section h2 {
        font-weight: 700;
        margin-bottom: 15px;
    }

    .career-cta-section h2 span {
        color: #facc15;
    }

    .cta-desc {
        max-width: 650px;
        margin: auto;
        font-size: 16px;
        opacity: 0.9;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
        background: rgba(255,255,255,0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        font-size: 26px;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .cta-btn-primary {
        color: #0fa5b8;
        font-weight: 600;
        padding: 12px 24px;
        border-radius: 10px;
    }

    .cta-btn-primary:hover {
        color: #009999;
        background-color: white;
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(0, 179, 179, 0.35);
    }

    .cta-btn-secondary {
        padding: 12px 24px;
        border-radius: 10px;
        font-weight: 600;
    }

    .cta-btn-secondary:hover {
        color: #009999;
        background-color: white;
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(0, 179, 179, 0.35);
    }

    .cta-features i {
        font-size: 26px;
        color: #facc15;
        margin-bottom: 8px;
    }

    .cta-features p {
        margin: 0;
        font-size: 14px;
    }

    .cta-foot {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        font-size: 13px;
        opacity: 0.9;
    }

    .site-footer {
        background: #ffffff;
        padding: 60px 0 30px;
        color: #000;
        font-size: 15px;
    }

    .footer-logo {
        max-width: 160px;
    }

    .footer-text {
        color: #333;
        line-height: 1.7;
    }

    .footer-title {
        font-weight: 600;
        margin-bottom: 20px;
    }

    .footer-links,
    .footer-contact {
        list-style: none;
        padding: 0;
    }

    .footer-links li,
    .footer-contact li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #000;
        text-decoration: none;
    }

    .footer-links a:hover {
        color: #00b3b3;
    }

    .footer-contact i {
        margin-right: 10px;
        color: #00b3b3;
    }

    .footer-social {
        display: flex;
        gap: 12px;
        margin-top: 20px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #f2f2f2;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        transition: 0.3s;
    }

    .footer-social a:hover {
        background: #00b3b3;
        color: #fff;
    }

    .site-footer hr {
        margin: 40px 0 20px;
        border-color: #ddd;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 14px;
    }

    .footer-bottom-links a {
        margin-left: 15px;
        color: #000;
        text-decoration: none;
    }

    .footer-bottom-links a:hover {
        color: #00b3b3;
    }

    /* Mobile */
    @media (max-width: 768px) {
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .footer-bottom-links a {
            margin: 0 8px;
        }

        .footer-logo {
            max-width: 100px;
        }
    }

    .partners-bg {
        background: #f9fafb;
    }

    /* Slider container */
    .partners-slider {
        overflow: hidden;
        position: relative;
    }

    /* Moving track */
    .partners-track {
        display: flex;
        gap: 30px;
        width: max-content;
        animation: scrollPartners 25s linear infinite;
    }

    /* Pause on hover */
    .partners-slider:hover .partners-track {
        animation-play-state: paused;
    }

    /* Partner card */
    .partner-card {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        height: 150px;
        min-width: 220px;

        display: flex;
        align-items: center;
        justify-content: center;

        box-shadow: 0 8px 24px rgba(0,0,0,0.06);
        transition: all 0.3s ease;
    }

    .partner-card img {
        max-height: 110px;
        max-width: 100%;
        object-fit: contain;
        transition: all 0.3s ease;
    }

    .partner-card:hover img {
        transform: scale(1.05);
    }

    /* Animation */
    @keyframes scrollPartners {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }


    /* about page */

    .about-hero {
        position: relative;

        height: 75vh;        /* 👈 reduced height */
        min-height: 520px;

        background-image: url('/images/about-us-banner.jpg');
        background-size: cover;
        background-position: right center;
        background-repeat: no-repeat;

        display: flex;
        align-items: center;
        color: #fff;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;

        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.65) 40%,
            rgba(0, 0, 0, 0.25) 70%,
            rgba(0, 0, 0, 0.05) 100%
        );

        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 850px;
        margin: auto;
    }
    .trust-badge {
        background: linear-gradient(90deg, #2ecdc4, #0fb9b1);
        color: #ffffff;
        padding: 10px 18px;
        border-radius: 30px;
        font-size: 12px;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 26px;
        /* box-shadow: 0 8px 20px rgba(46, 205, 196, 0.35); */
    }

    .hero-heading {
        font-size: 44px;
        font-weight: 800;
        line-height: 1.15;
    }

    .hero-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 18px 0 26px;
    }

    .hero-divider span {
        width: 70px;
        height: 1px;
        background: rgba(255,255,255,0.4);
    }

    .hero-divider .dot {
        width: 6px;
        height: 6px;
        background: #f4a261;
        border-radius: 50%;
    }
    .hero-para {
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .hero-para.muted {
        font-size: 15.5px;
        opacity: 0.85;
    }

    .hero-actions {
        margin-top: 28px;
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: #0fb9b1;
        color: #ffffff;
        padding: 14px 28px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        /* box-shadow: 0 12px 25px rgba(15, 185, 177, 0.35); */
    }

    .btn-outline {
        border: 1px solid rgba(255,255,255,0.6);
        padding: 12px 24px;
        border-radius: 6px;
        color: #fff;
        text-decoration: none;
    }

    @media (max-width: 768px) {

        .hero-para {
            font-size: 13px;
            line-height: 1.7;
            margin-bottom: 13px;
        }
        .about-hero {
            height: auto;
            min-height: 420px;
            padding: 80px 0;
            background-position: center;
        }
        .hero-heading {
            font-size: 26px;
        }
        .trust-badge {
            background: linear-gradient(90deg, #2ecdc4, #0fb9b1);
            color: #ffffff;
            padding: 10px 18px;
            border-radius: 30px;
            font-size: 11px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 26px;
            margin-top: 26px;
            /* box-shadow: 0 8px 20px rgba(46, 205, 196, 0.35); */
        }
    }

    .founder-section {
        background: #f8fbfb;
    }

    /* LEFT CARD */
    .founder-card {
        background: linear-gradient(135deg, #139ca6, #1fb7c4);
        border-radius: 18px;
        padding: 160px 20px;
        height: 100%;
    }

    .founder-icon {
        width: 90px;
        height: 90px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        color: #fff;
    }

    /* RIGHT CARD */
    .quote-card {
        background: #ffffff;
        border-radius: 18px;
        padding: 40px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        position: relative;
    }

    .quote-icon {
        font-size: 50px;
        color: #ffb199;
        position: absolute;
        top: 20px;
        left: 25px;
    }

    .quote-icon.end {
        bottom: 20px;
        right: 25px;
        left: auto;
        top: auto;
    }

    .quote-card p {
        font-size: 15px;
        color: #555;
        line-height: 1.7;
    }

    .purpose-section {
        padding: 80px 0;
        background: #ffffff;
    }

    .section-title {
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 50px;
        color: #1f2933;
    }

    .purpose-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Common Card Style */
    .purpose-card {
        border-radius: 18px;
        padding: 40px 36px;
        color: #ffffff;
        position: relative;
        overflow: hidden;
    }

    .purpose-card::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        top: -60px;
        right: -60px;
        background: rgba(255,255,255,0.12);
    }

    /* Mission */
    .purpose-card.mission {
        background: linear-gradient(135deg, #00b3a4, #089e97);
    }

    /* Vision */
    .purpose-card.vision {
        background: linear-gradient(135deg, #ff9a4d, #f57c33);
    }

    /* Icon */
    .icon-circle {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        margin-bottom: 22px;
    }

    /* Headings */
    .purpose-card h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .underline {
        display: inline-block;
        width: 40px;
        height: 3px;
        background: rgba(255,255,255,0.6);
        margin-bottom: 18px;
        border-radius: 2px;
    }

    /* Text */
    .purpose-card p {
        font-size: 15.5px;
        line-height: 1.7;
        margin-bottom: 22px;
        opacity: 0.95;
    }

    /* Lists */
    .purpose-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .purpose-card ul li {
        font-size: 14px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Check icons */
    .purpose-card.mission ul li::before {
        content: "✔";
        font-size: 12px;
    }

    /* Star icons */
    .purpose-card.vision ul li::before {
        content: "★";
        font-size: 12px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .purpose-grid {
            grid-template-columns: 1fr;
        }

        .section-title {
            font-size: 26px;
        }
        .quote-card p {
            font-size: 13px;
            color: #555;
            line-height: 1.7;
        }
        .purpose-card p {
            font-size: 13px;
            line-height: 1.7;
            margin-bottom: 22px;
            opacity: 0.95;
        }
    }

    .counsellor-profile {
        background: #ffffff;
    }

    .profile-image {
        background: #f3f4f6;
        border-radius: 8px;
        padding: 20px;
    }

    .profile-image img {
        width: 100%;
        border-radius: 6px;
        object-fit: cover;
    }

    .profile-name {
        font-weight: 800;
        margin-bottom: 16px;
        color: #00b3a4;
    }

    .profile-content p {
        font-size: 15.5px;
        line-height: 1.7;
        margin-bottom: 22px;
        opacity: 0.95;
    }

    /* Lists */
    .profile-content ul {
        list-style: none;
        padding: 0;
        margin: 0;
        margin-bottom: 24px;
    }

    .profile-content ul li {
        font-size: 14px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Check icons */
    .profile-content ul li::before {
        content: "✔";
        font-size: 12px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .profile-content p {
            font-size: 13px;
            line-height: 1.7;
            margin-bottom: 22px;
            opacity: 0.95;
        }
        .profile-content ul li {
            font-size: 13px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
    }

    /* Contact Us */

    .free-session-section {
        background: #f9fafb;
    }

    .session-info {
        padding: 30px;
    }

    .session-info h2 {
        font-size: 34px;
    }

    .info-item {
        display: flex;
        gap: 16px;
        margin-bottom: 22px;
    }

    .info-item .icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 1px solid #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #f97316;
    }

    .info-item h6 {
        margin-bottom: 4px;
        font-weight: 600;
    }

    .info-item p {
        margin: 0;
        color: #555;
        font-size: 15px;
    }

    .session-form {
        background: #ffffff;
        border-radius: 14px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .form-control {
        height: 46px;
        border-radius: 8px;
    }

    textarea.form-control {
        height: auto;
    }

    .btn-submit {
        background: #f97316;
        color: #fff;
        padding: 12px 26px;
        border-radius: 8px;
        border: none;
        font-weight: 600;
        transition: 0.3s ease;
    }

    .btn-submit:hover {
        background: #ea580c;
    }

    .form-label {
        font-weight: 600;
        margin-bottom: 6px;
    }

    .form-control {
        border: none;
        border-bottom: 2px solid #e5e7eb;
        border-radius: 0;
        padding-left: 0;
        box-shadow: none;
    }

    .form-control:focus {
        border-bottom-color: #f97316;
        box-shadow: none;
    }

    .btn-submit {
        background: #0fb9b1;
        color: #fff;
        padding: 14px;
        border-radius: 8px;
        border: none;
        font-weight: 600;
    }

