@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
        a{
            text-decoration: none;
        }
        :root {
            --primary-50: #f0f9ff;
            --primary-100: #e0f2fe;
            --primary-200: #bae6fd;
            --primary-300: #7dd3fc;
            --primary-400: #38bdf8;
            --primary-500: #0ea5e9;
            --primary-600: #0284c7;
            --primary-700: #0369a1;
            --primary-800: #075985;
            --primary-900: #0c4a6e;
            
            --secondary-50: #fdf4ff;
            --secondary-100: #fae8ff;
            --secondary-200: #f5d0fe;
            --secondary-300: #f0abfc;
            --secondary-400: #e879f9;
            --secondary-500: #d946ef;
            --secondary-600: #FD3230;
            --secondary-700: #a21caf;
            --secondary-800: #86198f;
            --secondary-900: #701a75;
            
            --accent-50: #fff7ed;
            --accent-100: #ffedd5;
            --accent-200: #fed7aa;
            --accent-300: #fdba74;
            --accent-400: #fb923c;
            --accent-500: #f97316;
            --accent-600: #ea580c;
            --accent-700: #c2410c;
            --accent-800: #9a3412;
            --accent-900: #7c2d12;
            
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1e293b;
            --gray-900: #0f172a;
            
            --success-500: #22c55e;
            --warning-500: #eab308;
            --error-500: #ef4444;
            
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
            
            /* --gradient-primary: linear-gradient(135deg, var(--primary-600) 0%, var(--secondary-600) 100%);
            --gradient-secondary: linear-gradient(135deg, var(--accent-500) 0%, var(--primary-500) 100%); */
            /* --gradient-tertiary: linear-gradient(135deg, var(--secondary-500) 0%, var(--primary-600) 100%); */
            --gradient-primary: linear-gradient(135deg, #000000 0%, #434343 100%);
            --gradient-secondary: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);

        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        *, *::before, *::after {
  box-sizing: border-box;
}


        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            font-size: 16px;
        }

        body {
           font-family: "Montserrat", sans-serif;
            line-height: 1.6;
            color: var(--gray-800);
            background: var(--gray-50);
            overflow-x: hidden;
        }

        /* Popup Styles */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .popup-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background: transparent;
            border-radius: 20px;
            max-width: fit-content;
            width: auto;
            max-height: 90vh;
            overflow: visible;
            box-shadow: var(--shadow-2xl);
            transform: scale(0.8) translateY(50px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .popup-overlay.show .popup-content {
            transform: scale(1) translateY(0);
        }

        .popup-close {
            position: absolute;
            top: -15px;
            right: -15px;
            background: white;
            border: 2px solid var(--gray-300);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 1.5rem;
            color: var(--gray-600);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
        }

        .popup-close:hover {
            background: var(--gray-100);
            color: var(--gray-800);
            transform: scale(1.1);
        }

        .popup-image {
            position: relative;
            display: inline-block;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-2xl);
        }

        .popup-career-img {
            display: block;
            max-width: 90vw;
            max-height: 80vh;
            width: auto;
            height: auto;
            border-radius: 20px;
        }

        .popup-bottom-section {
            background: linear-gradient(135deg, rgb(5, 50, 115) 0%, rgb(226, 4, 3) 100%);
            padding: 20px;
            border-radius: 0 0 20px 20px;
            text-align: center;
        }

        .popup-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 15px;
            margin-top: 0;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        .popup-buttons {
            display: flex;
            flex-direction: row;
            gap: 15px;
            justify-content: center;
            z-index: 1000;
        }

        .popup-call-btn, .popup-whatsapp-btn {
            padding: 14px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            min-width: 140px;
            justify-content: center;
            border: 2px solid rgba(255, 255, 255, 0.3);
            white-space: nowrap;
        }

        .popup-call-btn {
            background: rgba(255, 255, 255, 0.9);
            color: rgb(5, 50, 115);
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .popup-whatsapp-btn {
            background: #25D366;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .popup-call-btn:hover, .popup-whatsapp-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .popup-call-btn:hover {
            background: white;
            color: rgb(5, 50, 115);
        }

        .popup-whatsapp-btn:hover {
            background: #128C7E;
        }

        .popup-body {
            padding: 2rem;
            text-align: center;
            border-radius: 0 0 20px 20px;
        }

        .popup-body p {
            color: var(--gray-600);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .popup-body p:first-child {
            font-weight: 600;
            color: var(--gray-800);
            font-size: 1.2rem;
        }

        .popup-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .popup-btn {
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            min-width: 140px;
            justify-content: center;
        }

        .popup-btn.primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--shadow-lg);
        }

        .popup-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-2xl);
        }

        .popup-btn.secondary {
            background: transparent;
            color: var(--primary-600);
            border: 2px solid var(--primary-600);
        }

        .popup-btn.secondary:hover {
            background: var(--primary-600);
            color: white;
            transform: translateY(-3px);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .popup-content {
                width: 95%;
                margin: 1rem;
            }

            .popup-career-img {
                max-width: 95vw;
                max-height: 70vh;
            }

            .popup-bottom-section {
                padding: 15px;
            }

            .popup-text {
                font-size: 1rem;
                margin-bottom: 12px;
            }

            .popup-buttons {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }

            .popup-call-btn, .popup-whatsapp-btn {
                padding: 12px 18px;
                font-size: 0.85rem;
                min-width: 120px;
            }

            .popup-close {
                top: -10px;
                right: -10px;
                width: 35px;
                height: 35px;
                font-size: 1.2rem;
            }

            .popup-body {
                padding: 1.5rem;
            }

            .popup-actions {
                justify-content: center;
            }

            .popup-btn {
                width: 100%;
                max-width: 250px;
            }
        }

        

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--gray-200);
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-lg);
            transform: translateY(0);
        }

        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--gray-900);
            transition: transform 0.3s ease;
        }

        .nav-brand:hover {
            transform: scale(1.05);
        }

        .nav-logo {
            /* height: 50px; */
            width: 180px;
            border-radius: 100%;
            /* box-shadow: var(--shadow-md); */
            object-fit: contain;
            object-position: center;
        }

        .nav-brand-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }
        .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: black;
    text-transform: uppercase;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
}
        .nav-link {
            text-decoration: none;
            color: var(--gray-700);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
            transition: 0.3s ease-in-out;
        }

        .nav-link:hover {
            color: var(--primary-900);
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-primary);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-lg);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-cta:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-2xl);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--gray-700);
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn:hover {
            background: var(--gray-100);
        }

     /* Hero Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-image: url("images/new_banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    
}

/* Add overlay for mobile view only */
@media (max-width: 768px) {
    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.4); /* Adjust opacity here (0.4 = 40% black) */
        z-index: 1;
    }

    .hero > * {
        position: relative;
        z-index: 2;
    }
}
  
        
        .hero-slider {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding-left: 8%;
        }

        .hero-slide {
            position: relative;
            width: 50%;
            height: 100%;
            opacity: 1;
            background: none;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide:nth-child(1) {
            background: none;
        }

        .hero-slide:nth-child(2) {
            background: none;
            display: none;
        }

        .hero-slide:nth-child(3) {
            background: none;
            display: none;
        }        .hero-content {
            position: relative;
            text-align: left;
            color: white;
            max-width: 600px;
            width: 100%;
            z-index: 2;
            padding-left: 0;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 1rem;
            margin-top: 100px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            opacity: 0.95;
            font-weight: 300;
            animation: fadeInUp 1s ease 0.6s both;
        }        .hero-actions {
            display: flex;
            gap: 1rem;
            justify-content: flex-start;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.8s both;
        }

        .btn-primary {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            background: white;
            color: var(--primary-600);
            transform: translateY(-3px);
            box-shadow: var(--shadow-2xl);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transform: translateY(-3px);
        }        .hero-nav {
            display: none;
        }

        .hero-nav-btn {
            display: none;
        }

        .hero-nav-btn:hover {
            display: none;
        }

        .hero-indicators {
            display: none;
        }

        .hero-indicator {
            display: none;
        }

        .hero-indicator.active {
            display: none;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section Styles */
        .section {
            padding: 6rem 0;
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
.section-about{
padding-top: 70px;
}
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--primary-100);
            color: var(--primary-700);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .section-description {
            font-size: 1.2rem;
            color: var(--gray-600);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 300;
        }

        /* About Section */
        .about {
            background: white;
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            right: -50%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0.05;
            border-radius: 50%;
            transform: scale(1.5);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-text {
            space-y: 1.5rem;
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--gray-50);
            border-radius: 16px;
            transition: all 0.3s ease;
            border: 1px solid var(--gray-200);
        }

        .feature-item:hover {
            background: white;
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .feature-content h4 {
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .feature-content p {
            font-size: 0.9rem;
            color: var(--gray-600);
            margin: 0;
            line-height: 1.5;
        }

        .about-visual {
            position: relative;
        }

        .about-image {
            width: 100%;
            height: 500px;
            /* background-image: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(168, 85, 247, 0.1)), url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80'); */
            /* background-image: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(168, 85, 247, 0.1)), url('images/hitech2.jpeg'); */
            background-image: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(168, 85, 247, 0.1)), url('images/hi9.jpeg');
            background-size: cover;
            background-position: center;
            border-radius: 24px;
            box-shadow: var(--shadow-2xl);
            position: relative;
            overflow: hidden;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0.1;
        }

        /* Courses Section */
        .courses {
            background: var(--gray-50);
            position: relative;
        }

        .courses-grid {
             display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 3rem;
        }

        .course-card {
            background: white;
            border-radius: 20px;
            width: 400px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--gray-200);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-2xl);
        }

        .course-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .course-card:nth-child(1) .course-image {
            background-image:  url('https://media.istockphoto.com/id/1197620624/photo/hospital-administrators-discussion-panoramic.jpg?s=612x612&w=0&k=20&c=5z8i-l6yUX34xeT2xMreUW8q6iPYgcluvLgVxHPgXJQ=');
        }

        .course-card:nth-child(2) .course-image{
            background-image:  url('https://images.unsplash.com/photo-1649209979970-f01d950cc5ed?q=80&w=1941&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
        }

        .course-card:nth-child(3) .course-image{
            background-image:  url('https://images.unsplash.com/photo-1565022536102-f7645c84354a?q=80&w=2073&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
        }

        .course-card:nth-child(4) .course-image{
            background-image:  url('https://images.unsplash.com/photo-1627556704314-1f7aee38ec57?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MjI3fHxEaXBsb21hJTIwaW4lMjBMb2dpc3RpY3N8ZW58MHx8MHx8fDA%3D');
        }
        .course-card:nth-child(5) .course-image {
            background-image:  url('https://img.freepik.com/free-photo/closeup-hands-using-computer-laptop-with-screen-showing-analysis-data_53876-23014.jpg?ga=GA1.1.493407185.1733208822&semt=ais_hybrid&w=740');
        }

        .course-card:nth-child(6) .course-image {
            background-image:  url('https://img.freepik.com/free-photo/human-robot-interaction-digital-world_23-2151966708.jpg?ga=GA1.1.493407185.1733208822&semt=ais_hybrid&w=740');
        }
        .course-card:nth-child(7) .course-image {
            background-image:  url('https://img.freepik.com/free-vector/ai-technology-microchip-background-vector-digital-transformation-concept_53876-112222.jpg?ga=GA1.1.493407185.1733208822&semt=ais_hybrid&w=740');
        }
        .course-card:nth-child(8) .course-image {
            background-image:  url('https://img.freepik.com/free-photo/pharmacist-nurse-with-stethoscope-analyzing-healthcare-treatment_482257-19380.jpg?ga=GA1.1.493407185.1733208822&semt=ais_hybrid&w=740');
        }

        .course-overlay {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(0, 0, 0, 0.219);
            backdrop-filter: blur(10px);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .course-icon {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .course-content {
            padding: 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .course-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .course-duration {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray-500);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .course-level {
            background: var(--primary-100);
            color: var(--primary-700);
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .course-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--gray-900);
            line-height: 1.3;
        }

        .course-description {
            color: var(--gray-600);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex: 1;
            font-size: 0.95rem;
        }

        .course-description.truncated {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more-btn {
            background: none;
            border: none;
            color: var(--primary-600);
            font-weight: 500;
            cursor: pointer;
            font-size: 0.9rem;
            /* margin-top: 10px; */
            transition: color 0.3s ease;
            padding-bottom: 10px;
        }

        .read-more-btn:hover {
            color: var(--primary-700);
        }

        .course-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .course-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray-600);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .course-features li i {
            color: var(--success-500);
            font-size: 0.8rem;
        }

        .course-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid var(--gray-200);
        }

        .course-price {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-600);
        }

        .course-cta {
            background: var(--gradient-primary);
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .course-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }


        .hos-featured-section {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            margin-bottom: 3rem;
        }

        .hos-section-badge {
            display: inline-block;
            background: var(--gradient-primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hos-section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hos-section-subtitle {
            font-size: 1.2rem;
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto 3rem;
            line-height: 1.6;
        }

        .hos-course-highlight {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            overflow: hidden; 
            box-shadow: var(--shadow-xl);
            position: relative;
            transform: translateY(0);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hos-course-highlight:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .hos-course-highlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-primary);
            z-index: 5; 
        }

        .hos-featured-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #ff6b6b;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 10; 
        }

        .hos-course-image {
            width: 100%;
            height: 250px; 
            object-fit: cover; 
            display: block;
        }

        .hos-course-content {
            padding: 2.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .hos-course-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .hos-course-duration {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray-500);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .hos-course-level {
            background: var(--primary-100);
            color: var(--primary-700);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .hos-course-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--gray-900);
            line-height: 1.3;
        }

        .hos-course-description {
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            flex: 1;
            font-size: 1rem;
        }

        .hos-course-description.hos-truncated {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hos-read-more-btn {
            background: none;
            border: none;
            color: var(--primary-600);
            font-weight: 600;
            cursor: pointer;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            padding-bottom: 1rem;
            text-align: left;
        }

        .hos-read-more-btn:hover {
            color: var(--primary-700);
        }

        .hos-course-features {
            list-style: none;
            margin-bottom: 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .hos-course-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--gray-600);
            font-size: 0.95rem;
            padding: 0.75rem;
            background: #f8fafc;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .hos-course-features li:hover {
            background: var(--primary-50);
            transform: translateX(5px);
        }

        .hos-course-features li i {
            color: var(--success-500);
            font-size: 1rem;
            width: 20px;
            text-align: center;
        }

        .hos-course-footer {
            display: flex;
            justify-content: center;
            align-items: center;
            padding-top: 2rem;
            border-top: 2px solid var(--gray-200);
        }

        .hos-course-cta {
            background: var(--gradient-primary);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hos-course-cta:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .hos-course-cta i {
            font-size: 1.1rem;
        }

        /* Responsive Design */
       @media (min-width: 1024px) {
  .hos-course-highlight {
    width: 90%;
    max-width: 1000px;
  }
}

/* ✅ Fix layout for small screens below 768px - already mostly fine, but adjust padding */
@media (max-width: 768px) {
  .hos-course-highlight {
    width: 100%;
    margin-bottom: 2rem;
  }

            .hos-section-title {
                font-size: 2rem;
            }

            .hos-course-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


            .hos-course-content {
                padding: 1.5rem;
            }

            .hos-course-title {
                font-size: 1.5rem;
            }

            .hos-course-features {
                grid-template-columns: 1fr;
            }

            .hos-course-meta {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }
        }

        /* Animation for page load */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hos-course-highlight {
            animation: fadeInUp 0.8s ease-out;
        }
        /* Gallery Section */
        .gallery {
  width: 100%;
  background: white;
  position: relative;
  padding: 2rem 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
  gap: 1.5rem;
  justify-content: center;  /* ✅ THIS centers the entire grid horizontally */
  margin-top: 3rem;
}

.gallery-item {
     position: relative;
    height: 350px;
    cursor: pointer;
    background-size: cover;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-position: center center;
}

       /* @media (max-width: 1024px) {
  .gallery-item {
    left: 50%;
    
  }
}

@media (max-width: 768px) {
  .gallery-item {
    left: 50%;
    
  }
} */

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item:nth-child(1) {
            background-image:url('images/img6.jpeg');
        }

        /* .gallery-item:nth-child(2) {
            background-image:url('images/hitech3.jpeg');
        } */

        .gallery-item:nth-child(2) {
            background-image:url('images/hitech1.jpeg');
        }
        .gallery-item:nth-child(3) {
            /* background-image:url('images/gimg7.jpeg'); */
                        background-image:url('images/gimg11.jpeg');

        }
        .gallery-item:nth-child(4) {
            /* background-image:url('images/gimg8.jpeg'); */
                        background-image:url('images/gimg12.jpeg');

        }
        .gallery-item:nth-child(5) {
                        background-image:url('images/gimg13.jpeg');

        }
        .gallery-item:nth-child(6) {
                        background-image:url('images/gimg14.jpeg');

        }
    
        .gallery-item:nth-child(7) {
            background-image:url('images/change image.jpg');
        }
        .gallery-item:nth-child(8) {
            background-image:url('images/hi7.jpeg');
        }
    
        .gallery-item:nth-child(9) {
            /* background-image:url('images/gimg11.jpeg'); */
                        background-image:url('images/gimg7.jpeg');

        }
        
    
    
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            /* background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)); */
            color: white;
            padding: 2rem;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .gallery-description {
            font-size: 0.9rem;
            opacity: 0.9;
            line-height: 1.5;
        }        /* Contact Section */
.contact-section {
  background: var(--gray-900);
  color: white;
  padding: 5rem 0;
  position: relative;
  width: 100%;
  
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .contact-container {
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}

.contact-content {
  padding: 2rem 0;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
  line-height: 1.2;
  position: relative;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--secondary-600) 100%);
  border-radius: 2px;
}

.contact-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-200);
  margin-bottom: 2rem;
}

.contact-address {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.address-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-300);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left; 
}

.address-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-200);
  text-align: left; 
  padding-left: 30px;
  
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.contact-item i {
  color: var(--primary-400);
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.contact-item a {
  color: var(--gray-200);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-300);
}

.contact-links {
  padding: 2rem 0;
}

.links-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: white;
  position: relative;
}

.links-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--secondary-600) 100%);
  border-radius: 2px;
}

.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quick-links li {
  margin: 0;
}

.quick-links a {
  text-decoration: none;
  color: var(--gray-200);
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.quick-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-500);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.quick-links a i {
  margin-right: 1rem;
  color: var(--primary-400);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  transition: color 0.3s ease;
}

.quick-links a:hover i {
  color: var(--primary-300);
}

/* Footer/Copyright Section */
.footer-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--gray-300);
  padding: 3rem 0 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  width: 100%;
  
  margin-top: -39px;

  
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%; 
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 1rem;
  color: var(--gray-400);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--primary-500);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.copyright-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.copyright-text {
  font-size: 0.9rem;
  color: var(--gray-400);
  text-align: center;
}

.copyright-heart {
  color: var(--secondary-600);
  font-size: 1.1rem;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-container {
    padding: 0 1rem;
    gap: 3rem;
  }
  
  .contact-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-description {
    font-size: 1rem;
  }
  
  .contact-address {
    padding: 1.5rem;
  }
  
  .quick-links a {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  .footer-section {
    padding: 2rem 0 1.5rem;
  }
  
  .footer-container {
    padding: 0 1rem;
  }
  
  .footer-logo {
    font-size: 1.5rem;
  }
  
  .footer-tagline {
    font-size: 0.9rem;
  }
  
  .footer-social {
    gap: 0.75rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}



        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .courses-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            }
        }        @media (max-width: 1024px) {
            
           .hero {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("images/new_banner.jpg");
    background-size: cover;
    background-position: center;
    color: #ffffff; /* Ensure text is white for better contrast */
}

/* Reduce opacity in mobile view */
@media (max-width: 768px) {
    .hero {
        background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("images/new_banner.jpg");
    }
}

            
            .hero-slider {
                padding-left: 5%;
            }
            
            .hero-slide {
                width: 60%;
            }
            
            .hero-content {
                max-width: 500px;
            }
            
            .hero-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }            
            
            .hero {
    height: auto;
    min-height: 100vh;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url("images/new_banner.jpg");
    background-position: center right;
    background-size: cover;
    color: #fff; /* ensures text is white for contrast */
    display: flex;
    justify-content: center;
    align-items: center;
    
}

/* Reduce opacity in mobile view */
@media (max-width: 768px) {
    .hero {
        background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("images/new_banner.jpg");
        background-position: center; /* Center it better for smaller screens */
    }
}



            .hero-slider {
                padding-left: 0;
                padding: 2rem;
                text-align: center;
            }
            
            .hero-slide {
                width: 100%;
                justify-content: center;
            }
            
            .hero-content {
                max-width: 100%;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-description {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .hero-actions .btn-primary,
            .hero-actions .btn-secondary {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .courses-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .course-footer {
                flex-direction: column;
                gap: 1rem;
                align-items: stretch;
            }

            .course-cta {
                justify-content: center;
            }

            .nav-cta{
                display: none;
            }
        }        @media (max-width: 480px) {
            .nav-container {
                padding: 0 1rem;
            }

            .container {
                padding: 0 1rem;
            }            .hero {
                min-height: 90vh;
                background-image:  url('images/new_banner.jpg');
                background-position: center;
            }
            
            .hero-slider {
                padding: 1.5rem;
            }
            
            .hero-badge {
                font-size: 0.8rem;
                padding: 0.5rem 1rem;
                margin-bottom: 2rem;
            }

            .hero-title {
                font-size: 2rem;
                line-height: 1.2;
                margin-bottom: 1rem;
            }
            
            .hero-description {
                font-size: 1rem;
                line-height: 1.5;
                margin-bottom: 1.5rem;
            }
            
            .hero-actions {
                gap: 0.8rem;
            }
            
            .hero-actions .btn-primary,
            .hero-actions .btn-secondary {
                padding: 0.9rem 1.5rem;
                font-size: 0.9rem;
                max-width: 100%;
            }

            .section-title {
                font-size: 2rem;
            }

            .section {
                padding: 4rem 0;
            }

            .course-content {
                padding: 1.5rem;
            }

            .contact-form {
                padding: 2rem;
            }

            .nav-cta{
                display: none;
            }
        }

.nav-menu {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  list-style: none;
}

.menu-toggle {
  display: none;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;   
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 60px;                
    width: 100%;
    height: 50vh;        
    padding: 0;              
    margin: 0;
    gap: 0.8rem;              
    z-index: 999;
  }

  .menu-toggle:checked + .mobile-menu-btn + .nav-menu {
    display: flex;
  }

  .nav-menu li {
    margin: 0;               
  }

  .nav-menu a {
    font-size: 1rem;        
    padding: 0.3rem 0.5rem;   
    color: #333;
  }

  .mobile-menu-btn {
    display: block;
    color: #333;
  }

  .nav-cta {
    display: none;
  }
}





.about-content-new {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  margin-top: 2rem;
  min-height: 600px;
}

.about-text-new {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  

}

.about-subtitle {
  text-align: center;       
  font-size: 2rem;
  font-weight: 600;
  color: #000;                
  margin-bottom: 1rem;
  position: relative;
}

/* .about-subtitle::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #4f46e5;  /* Underline color stays same (can change if you want) */
  /* margin: 0.4rem auto 0;      /* 👈 Centers the underline */
  /* border-radius: 2px; */



.about-text-body p {
    margin-bottom: 0.5rem;  
  font-size: 1rem;      
  line-height: 1.7;       
  color: #333;
}



.about-features-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item-new {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;           
  padding: 0.2rem;          
  background: var(--gray-50, #f9fafb);
  border-radius: 16px;
  border: 1px solid var(--gray-200, #e5e7eb);
  transition: all 0.3s ease;
  margin-top: 20px;
  font-size: 1.03rem;     
}


.feature-item-new:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.feature-icon-new {
  width: 50px;
  height: 40px;
  background: linear-gradient(45deg, #09090a, #06060b);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-sizing: border-box;
}

.feature-content-new h4 {
  font-weight: 600;
  color: #111827; 
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.feature-content-new p {
  font-size: 0.9rem;
  color: #6b7280; 
  margin: 0;
  line-height: 1.5;
}

.about-visual-new {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.about-visual-new img {
  width: 100%;
  height: auto;          
  object-fit: contain;     
  display: block;
  position: relative;      
}



@media (max-width: 900px) {
  .about-content-new {
    flex-direction: column;
    min-height: auto;
  }

  .about-visual-new img {
    position: relative;
    width: 100%;
    height: auto;
  }

  .about-features-new {
    grid-template-columns: 1fr;
  }
}
.about-text-new {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;    
  gap: 1.5rem;                    
}
@media (min-width: 1300px){
  .about-text-new{
    gap: 40px;
    

  }
}
@media (min-width: 1300px){ 
.feature-item-new{
    display: flex;
  align-items: flex-start;
  gap: 1.7rem;           
  padding: 1.8rem;          
  background: var(--gray-50, #f9fafb);
  border-radius: 16px;
  border: 1px solid var(--gray-200, #e5e7eb);
  transition: all 0.3s ease;
  margin-top: 70px;
  height: 310px;
  font-size: 1.09rem;  


}

}
@media (min-width: 1300px){
   .feature-content-new p{
     font-size: 1.2rem;
  color: #6b7280; 
  margin: 0;
  line-height: 1.8;

   }
 }
.about-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
  flex-wrap: wrap;
  max-width: 1200px;       
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;           
}


.stat-item {
  background-color: #f3f4f6;
  padding: 1.5rem;
  border-radius: 12px;
  width: 180px;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  
}

.stat-item:hover {
  background-color: #eae0e0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.stat-item h3 {
  font-size: 2rem;
  color: #111827;
  margin-bottom: 0.5rem;
}


.stat-item p {
  font-size: 0.95rem;
  color: #6b7280;
}


.section-emblem img {
  height: 70px;            
  width: auto;
  display: block;
  margin: -40px auto 1rem;     
}
.counselling-section {
  background: #f9fafb;
  padding: 4rem 1rem;
  text-align: center;
   z-index: 10;
}

.counselling-container {
  max-width: 600px;
  margin: 0 auto;
}

.counselling-heading {
  font-size: 2rem;
  color: #111827;
  margin-bottom: 1rem;
}

.counselling-description {
  color: #555;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.counselling-form .form-group {
  margin-bottom: 1rem;
   z-index: 20;
}

.counselling-form input,
.counselling-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background: #fff;
   z-index: 20;
}

.counselling-btn {
  background: #4f46e5;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.counselling-btn:hover {
  background: #3730a3;
}

#contact-about{
  background: var(--gray-900, #111827);
  width: 100%;
}
#footer-new{
  margin-top: -100px;
  margin-bottom: -100px;
  
}
@media (max-width: 768px) {
  #footer-new {
    margin-bottom: -65px;
   
  }
}
