
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        /* 🌟 HERO SECTION BACKGROUND */
.hero {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8)),
    url('/assets/images/breadcrumbs-bgorg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 🎓 HERO IMAGE SECTION (Dummy Image) */
.hero-main-image {
  background: linear-gradient(
      rgba(0, 0, 0, 0.5), 
      rgba(0, 0, 0, 0.5)
    ),    url('/assets/images/breadcrumbs-bgorg.png')center/cover no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 🎯 MISSION & VISION SECTION BACKGROUND */
.mission-vision {
  background: linear-gradient(180deg, rgba(247, 250, 252, 0.95), rgba(255, 255, 255, 0.95)),
    url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* 💡 OUR LEARNING APPROACH SECTION */
.learning-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 252, 0.9)),
    url("https://images.unsplash.com/photo-1596495577886-d920f1fb7238?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

/* 🏫 GALLERY SECTION - INSPIRING ACADEMY */
.gallery-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 252, 0.95)),
    url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

/* 📰 BLOG SECTION */
.blog-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 252, 0.95)),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

/* ✨ Optional Overlay Softening Effect */
.hero,
.hero-main-image,
.mission-vision,
.learning-section,
.gallery-section,
.blog-section {
  position: relative;
}

.hero::after,
.hero-main-image::after,
.mission-vision::after,
.learning-section::after,
.gallery-section::after,
.blog-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.hero-content,
.mission-vision .mv-container,
.learning-section .learning-grid,
.gallery-section .gallery-container,
.blog-section .blog-container {
  position: relative;
  z-index: 2;
}
 .mission-vision,
.learning-section,
.gallery-section,
.blog-section {
  background-attachment: fixed;
}


        /* Header - Fully Responsive */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: clamp(1.3rem, 3vw, 1.8rem);
            font-weight: 800;
            background: linear-gradient(135deg, #e4bdbd 0%, #ff0000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            z-index: 1001;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            transition: all 0.3s ease;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #e4bdbd 0%, #ff0000 100%);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-btn {
            padding: 0.7rem 1.5rem;
            background: linear-gradient(135deg, #e4bdbd 0%, #ff0000 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: clamp(0.85rem, 1.5vw, 1rem);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            white-space: nowrap;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(228, 136, 160, 0.4);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #ec8ea9;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Hero Section - Fully Responsive */
        .hero {
            margin-top: 70px;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: url('/assets/images/section-bg-org.png');

            /* background: linear-gradient(135deg, #e4bdbd 0%, #ff0000 100%); */
            position: relative;
            overflow: hidden;
            padding: 5%;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: clamp(300px, 50vw, 500px);
            height: clamp(300px, 50vw, 500px);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero-text h1 {
            font-size: clamp(1.5rem, 4.5vw, 3.3rem);
            color: rgb(243, 88, 88);
            margin-bottom: 1rem;
            line-height: 1.2;
            animation: slideUp 0.8s ease;
        }

        .hero-text h2 {
            font-size: clamp(1.2rem, 3vw, 2rem);
            color: rgba(243, 88, 88, 0.95);
            margin-bottom: 1.5rem;
            font-weight: 600;
            animation: slideUp 0.8s ease 0.1s backwards;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-text p {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: rgba(243, 88, 88, 0.95);
            margin-bottom: 2rem;
            animation: slideUp 0.8s ease 0.2s backwards;
            padding: 0 5%;
        }

        .hero-button {
            animation: slideUp 0.8s ease 0.4s backwards;
        }

        .join-btn {
            padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.8rem, 4vw, 3rem);
            background: white;
            color: #f85684;
            border: none;
            border-radius: 50px;
            font-size: clamp(1rem, 2vw, 1.2rem);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .join-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

/* ✅ HERO MAIN IMAGE (Fully Responsive) */
.hero-main-image {
  width: 100%;
  aspect-ratio: 16 / 9; /* keeps perfect proportion on all screens */
  background: url('assets/images/BI3.png') center/cover no-repeat;
  border-radius: clamp(15px, 3vw, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Optional floating icon */
.hero-main-image::before {
  content: '🎓';
  font-size: clamp(5rem, 15vw, 15rem);
  opacity: 0.25;
  position: absolute;
  z-index: 1;
}

/* ✅ Tablet view */
@media (max-width: 1024px) {
  .hero-main-image {
    aspect-ratio: 16 / 10;
    border-radius: 25px;
  }
}

/* ✅ Mobile view */
@media (max-width: 768px) {
  .hero-main-image {
    aspect-ratio: 4 / 3; /* slightly taller for mobile */
    background-position: center;
    border-radius: 20px;
  }
}

/* ✅ Small mobile view (Phones under 480px) */
@media (max-width: 480px) {
  .hero-main-image {
    aspect-ratio: 3 / 4; /* taller portrait look */
    background-position: center top;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  }
}

        /* Scrolling Text Banner */
        .scroll-banner {
            background: linear-gradient(135deg, #e4bdbd 0%, #ff0000 100%);
            padding: clamp(1.0rem, 3vw, 1.5rem) 0;
            overflow: hidden;
            position: relative;
        }

        .scroll-content {
            display: flex;
            white-space: nowrap;
            animation: scroll 15s linear infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .scroll-text {
            font-size: clamp(1.2rem, 2.5vw, 2.5rem);
            font-weight: 600;
            color: white;
            padding: 0 clamp(2rem, 4vw, 4rem);
            display: inline-block;
        }

        /* Section Padding - Universal */
        .courses-offer,
        .about,
        .mission-vision,
        .learning-section,
        .feature-section,
        .connect-section,
        .gallery-section,
        .blog-section {
            padding: clamp(3rem, 6vw, 6rem) 5%;
        }

        /* Container - Universal */
        .courses-container,
        .feature-container,
        .connect-container,
        .gallery-container,
        .blog-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Section Header - Universal */
        .section-header {
            text-align: center;
            margin-bottom: clamp(2rem, 4vw, 4rem);
        }

        .section-header h2,
        .feature-header h2 {
            font-size: clamp(1.8rem, 4vw, 3rem);
            margin-bottom: 1rem;
            color: #2d3748;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after,
        .feature-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: clamp(60px, 10vw, 100px);
            height: 4px;
            background: linear-gradient(135deg, #e4bdbd 0%, #ff0000 100%);
            border-radius: 2px;
        }

        .section-header p,
        .feature-header p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #718096;
            margin-top: 1rem;
        }

        /* Grid Systems - Responsive */
        .courses-grid,
        .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
            gap: clamp(1.5rem, 3vw, 2.5rem);
        }

        /* Course Cards */
        .course-card,
        .feature-item {
            background: white;
            border-radius: 20px;
            padding: clamp(1.5rem, 3vw, 2.5rem);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            text-align: center;
        }

        .course-card:hover,
        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
        }

        .course-icon,
        .feature-item-icon {
            width: clamp(60px, 10vw, 80px);
            height: clamp(60px, 10vw, 80px);
            background: linear-gradient(135deg, #e4bdbd 0%, #ff0000 100%);
            border-radius: clamp(12px, 2vw, 20px);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(2rem, 3vw, 2.5rem);
            margin: 0 auto 1.5rem;
        }

        .course-card h3,
        .feature-item h4 {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            margin-bottom: 1rem;
            color: #2d3748;
        }

        .course-card p,
        .feature-item p {
            color: #718096;
            line-height: 1.8;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            margin-bottom: 1.5rem;
        }

        /* Buttons - Universal */
        .course-explore-btn,
        .feature-explore-btn,
        .mv-explore-btn {
            margin-top: 1rem;
            padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(1.5rem, 3vw, 2.5rem);
            background: transparent;
            color: #ea667c;
            border: none;
            border-radius: 25px;
            font-size: clamp(0.85rem, 1.5vw, 1rem);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .course-explore-btn:hover,
        .feature-explore-btn:hover,
        .mv-explore-btn:hover {
            color: #764ba2;
            transform: translateX(5px);
        }

        .course-explore-btn::after,
        .feature-explore-btn::after,
        .mv-explore-btn::after {
            content: '→';
            font-size: 1.2rem;
        }

        /* About Section */
        .about {
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(2rem, 4vw, 4rem);
            align-items: center;
        }

        .about-text h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            margin-bottom: 1.5rem;
            color: #2d3748;
        }

        .about-text h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            color: #ea6675;
            margin-bottom: 1rem;
        }

        .about-text p {
            font-size: clamp(0.95rem, 1.8vw, 1.1rem);
            color: #4a5568;
            margin-bottom: 1.5rem;
            line-height: 1.9;
        }

.about-image {
  width: 100%;
  background: url('assets/images/BI1.png') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: clamp(10px, 3vw, 30px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
  height: clamp(300px, 35vw, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(5rem, 12vw, 10rem);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Optional glow effect when hovered */
.about-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 70px rgba(102, 126, 234, 0.4);
}

/* 🌐 Responsive Adjustments */
@media (max-width: 1024px) {
  .about-image {
    height: 400px;
    border-radius: 25px;
  }
}

@media (max-width: 768px) {
  .about-image {
    height: 300px;
    background-position: center;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .about-image {
    height: 220px;
    border-radius: 15px;
    background-position: center top;
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.25);
  }
}


        .about-image::before {
            content: '📚';
            opacity: 0.3;
        }

        /* Mission Vision Section */
        .mission-vision {
            background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
        }

        .mv-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
            gap: clamp(2rem, 4vw, 3rem);
        }

        .mv-card {
            background: white;
            border-radius: clamp(15px, 3vw, 30px);
            padding: clamp(2rem, 4vw, 3rem);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
        }

        .mv-image {
            width: 100%;
            height: clamp(200px, 30vw, 300px);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: clamp(12px, 2vw, 20px);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(5rem, 10vw, 8rem);
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        .mv-image::before {
            opacity: 0.3;
        }

        .mission-img::before {
            content: '🎯';
        }

        .vision-img::before {
            content: '🔭';
        }

        .mv-card h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: #2d3748;
            margin-bottom: 1rem;
        }

        .mv-card p {
            font-size: clamp(0.95rem, 1.8vw, 1.1rem);
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        /* Learning Section */
        .learning-section {
            background: white;
        }

        .learning-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
            gap: clamp(2rem, 4vw, 3rem);
            margin-top: clamp(2rem, 4vw, 3rem);
        }

        .learning-card {
            background: linear-gradient(135deg, #e4bdbd 0%, #ff0000 100%);
            border-radius: clamp(15px, 3vw, 30px);
            padding: clamp(2rem, 4vw, 3rem);
            color: white;
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
            transition: all 0.3s ease;
        }

        .learning-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(102, 126, 234, 0.4);
        }

        .learning-image {
            width: 100%;
            height: clamp(180px, 25vw, 250px);
            background: url('/assets/images/BI7.jpg');
            border-radius: clamp(12px, 2vw, 20px);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(4rem, 8vw, 7rem);
            margin-bottom: 2rem;
        }
         
        .learning-image1 {
            width: 100%;
            height: clamp(180px, 25vw, 250px);
            background: url('/assets/images/BI8.jpg');
            border-radius: clamp(12px, 2vw, 20px);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(4rem, 8vw, 7rem);
            margin-bottom: 2rem;
        }
        .learning-card h3 {
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            margin-bottom: 1rem;
        }

        .learning-card p {
            font-size: clamp(0.95rem, 1.8vw, 1.05rem);
            line-height: 1.8;
            opacity: 0.95;
        }

        /* Feature Sections */
        .feature-section {
            background: white;
        }

        .feature-section:nth-child(even) {
            background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
        }

        .feature-header {
            text-align: center;
            margin-bottom: clamp(2rem, 4vw, 4rem);
        }

        .feature-item {
            border-left: 5px solid transparent;
        }

        .feature-item:hover {
            transform: translateY(-10px);
            border-left-color: #ea6675;
        }

        /* Explore Button */
        .explore-btn {
            padding: clamp(0.8rem, 2vw, 1rem) clamp(2rem, 4vw, 3rem);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: clamp(0.95rem, 1.8vw, 1.1rem);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
        }

        .explore-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        }

        .explore-btn::after {
            content: '→';
            font-size: 1.3rem;
        }

        /* Connect Section */
        .connect-section {
            background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
        }

        .connect-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(2rem, 4vw, 4rem);
            margin-top: clamp(2rem, 4vw, 3rem);
        }

        .contact-form {
            background: white;
            padding: clamp(2rem, 4vw, 3rem);
            border-radius: clamp(15px, 3vw, 30px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .contact-form h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: #2d3748;
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: clamp(0.8rem, 2vw, 1rem);
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            transition: border-color 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
        }

        .submit-btn {
            width: 100%;
            padding: clamp(1rem, 2vw, 1.2rem);
            background: linear-gradient(135deg, #e4bdbd 0%, #ff0000 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: clamp(1rem, 1.8vw, 1.1rem);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: clamp(1.5rem, 3vw, 2rem);
        }

        .info-item {
            display: flex;
            gap: 1.5rem;
            padding: clamp(1.5rem, 3vw, 2rem);
            background: white;
            border-radius: clamp(12px, 2vw, 20px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .info-item:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
        }

        .info-icon {
            width: clamp(50px, 8vw, 60px);
            height: clamp(50px, 8vw, 60px);
            background: linear-gradient(135deg, #e4bdbd 0%, #ff0000 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(1.5rem, 2.5vw, 1.8rem);
            flex-shrink: 0;
        }

        .info-item h4 {
            color: #2d3748;
            margin-bottom: 0.5rem;
            font-size: clamp(1rem, 2vw, 1.2rem);
        }

        .info-item p {
            color: #718096;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
        }

        .info-item p a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-item p a:hover {
            color: #667eea;
        }
        /* Make Clickable Cards */
.info-item.clickable {
  cursor: pointer;
  transition: all 0.3s ease;
}

.info-item.clickable:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}


        .contact-list a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-list a:hover {
            color: #667eea;
        }



 /* 🌟 Section styling */
.gallery-section {
  text-align: center;
  padding: 70px 30px;
  background: #f9fafb;
}

.gallery-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.gallery-section .sub-heading {
  font-size: 1.1rem;
  color: #2563eb;
  margin-bottom: 40px;
}

/* 🖼️ Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* 📸 Gallery Card */
.gallery-card {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* 📷 Image fills the card */
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* ✨ Image zooms slightly on hover */
.gallery-card:hover img {
  transform: scale(1.05);
}

/* 🌈 Overlay Style */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* 👁️ Show overlay on hover */
.gallery-card:hover .overlay {
  opacity: 1;
}

/* 🏷️ Overlay Text */
.overlay h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(30, 64, 175, 0.8);
  padding: 10px 20px;
  border-radius: 30px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.gallery-card:hover .overlay h3 {
  transform: translateY(-5px);
  background: rgba(59, 130, 246, 0.9);
}

        /* Blog Section */
        .blog-section {
            background: white;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
            gap: clamp(2rem, 4vw, 3rem);
            margin-top: clamp(2rem, 4vw, 3rem);
        }

        .blog-card {
            background: white;
            border-radius: clamp(12px, 2vw, 20px);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
        }

        .blog-image {
            width: 100%;
            height: clamp(180px, 25vw, 250px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-image span {
            font-size: clamp(3rem, 5vw, 4rem);
        }

        .blog-content {
            padding: clamp(1.5rem, 3vw, 2rem);
        }

        .blog-date {
            color: #667eea;
            font-size: clamp(0.85rem, 1.5vw, 0.9rem);
            font-weight: 600;
        }

        .blog-content h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            color: #2d3748;
            margin: 1rem 0;
            line-height: 1.4;
        }

        .blog-content p {
            color: #718096;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
        }

        .read-more {
            color: #667eea;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
        }

        .read-more:hover {
            color: #764ba2;
        }

        /* Footer */
        footer {
            background: #1a202c;
            color: white;
        }

        .footer-main {
            padding: clamp(3rem, 5vw, 4rem) 5% clamp(1.5rem, 3vw, 2rem);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
            gap: clamp(2rem, 4vw, 3rem);
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: white;
        }

        .footer-section p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
        }

        .footer-section a:hover {
            color: #667eea;
        }

        .contact-list li {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding: clamp(1.5rem, 3vw, 2rem) 5%;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: clamp(0.85rem, 1.5vw, 0.9rem);
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            color: #667eea;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .social-links a {
            width: clamp(40px, 6vw, 45px);
            height: clamp(40px, 6vw, 45px);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #667eea;
            transform: translateY(-3px);
        }

        /* Clickable Info Cards */
       .info-item.clickable {
  cursor: pointer;
  transition: all 0.3s ease;
}

.info-item.clickable:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}
/* ✅ Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  font-size: 2rem;
  text-decoration: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 10000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    bottom: 20px;
    right: 20px;
  }
}
.whatsapp-float {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}



        /* Tablet Responsive (768px - 1024px) */
        @media (min-width: 768px) {
            .about-content {
                grid-template-columns: 1fr 1fr;
            }

            .connect-content {
                grid-template-columns: 1fr 1fr;
            }

            .courses-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        /* Large Tablet / Small Desktop (1024px+) */
        @media (min-width: 1024px) {
            .learning-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .mv-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Mobile Specific (Max 768px) */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transition: left 0.3s ease;
                overflow-y: auto;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                width: 100%;
                text-align: center;
                padding: 1rem;
                border-bottom: 1px solid #e2e8f0;
            }

            .nav-links a {
                font-size: 1.1rem;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .cta-btn {
                display: none;
            }

            .hero {
                min-height: 70vh;
                padding: 3rem 5%;
            }

            .scroll-text {
                padding: 0 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .mv-container {
                grid-template-columns: 1fr;
            }

            .learning-grid {
                grid-template-columns: 1fr;
            }

            .connect-content {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .courses-grid,
            .features-list,
            .gallery-grid,
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Small Mobile (Max 480px) */
        @media (max-width: 480px) {
            nav {
                padding: 0.8rem 4%;
            }

            .logo {
                font-size: 1.3rem;
            }

            .hero {
                margin-top: 60px;
                min-height: 60vh;
            }

            .hero-text h1 {
                font-size: 1.6rem;
            }

            .hero-text h2 {
                font-size: 1.1rem;
            }

            .hero-text p {
                font-size: 0.95rem;
            }

            .join-btn {
                padding: 0.7rem 1.8rem;
                font-size: 1rem;
            }

            .section-header h2 {
                font-size: 1.6rem;
            }

            .course-card,
            .feature-item {
                padding: 1.5rem;
            }
        }

        /* Extra Large Screens (1440px+) */
        @media (min-width: 1440px) {
            nav,
            .hero-content,
            .courses-container,
            .feature-container,
            .connect-container,
            .gallery-container,
            .blog-container,
            .footer-content {
                max-width: 1400px;
            }

            .courses-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .features-list {
                grid-template-columns: repeat(3, 1fr);
            }

            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .blog-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Print Styles */
        @media print {
            header {
                position: relative;
            }

            .mobile-menu-toggle,
            .cta-btn,
            .join-btn,
            .course-explore-btn,
            .feature-explore-btn,
            .mv-explore-btn,
            .explore-btn,
            .submit-btn {
                display: none;
            }

            .hero::before {
                display: none;
            }
        }
        