/* @import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&amp;subset=devanagari,latin-ext");
@import url("https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"); */

 /* Global Styles */
        :root {
            --primary: #007cf0;
            --secondary: #00dfd8;
            --dark: #0a192f;
            --light: #f8f9fa;
            --gray: #6c757d;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family:  Arial, sans-serif;

        }

        body {
            background-color: #f8f9fa;
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

       
        section {
            padding: 80px 0;
            position: relative;
        }

         h2, h3, h4 {
            font-weight: 700!important;
            line-height: 1.2!important;
            /* color: linear-gradient(90deg, var(--primary), var(--secondary))!important; */
        
        }
        h1 {
            font-size: 3rem!important;
            margin-bottom: 20px;
            color: var(--primary);
            /* text-align: center; */
            /* position: relative; */
            font-weight: 700!important;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: black;
            position: relative;
            /* display: inline-block; */
        }

      
        p {
            color: var(--gray);
            margin-bottom: 15px!important;
            text-align: justify;
        }
        p1 {
          color: white;
          margin-bottom: 15px!important;
          /* text-align: justify; */
      }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 4px 15px rgba(0, 124, 240, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 124, 240, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            margin-left: 15px;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 124, 240, 0.4);
        }


nav {
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
  
}

.container {
  /* max-width: 1200px; */
  margin: auto;
  padding: 0 1.5rem;
}

.menu-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  max-height: 50px;
}

.menu-wrap {
  display: flex;
  align-items: center;
  
}

.menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item a {
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  /* color: #1a1a1a; */
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.menu-item a:hover {
  background: #e3f2fd;
  transform: rotateX(10deg) rotateY(10deg) scale(1.05);
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0f0f0;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  border-color: #6c757d;
  transition: all 0.3s ease;
}

.search-bar input {
  border: none;
  background: transparent;
  outline: none;
  padding: 0.3rem;
  width: 150px;
}

.search-icon {
  color: #1d8cf8;
  cursor: pointer;
}

/* Menu Toggle - Mobile */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  width: 25px;
  height: 3px;
  margin-bottom: 5px;
  background: #1a1a1a;
  border-radius: 5px;
  transition: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
  .menu-wrap {
    width: 100%;
    display: none;
    flex-direction: column;
    background: #ffffff;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }

  .menu-wrap.active {
    display: flex;
  }

  .menu {
    flex-direction: column;
    width: 100%;
  }

  .search-bar {
    margin-top: 1rem;
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }
}




/* General Hero Section Styling */


 /* About Section */

        .container1 {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
}

        .about {
            background-color: white;
            position: relative;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .visual-box {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 30px;
            position: relative;
            transform-style: preserve-3d;
            transform: perspective(1000px) rotateY(20deg);
            box-shadow: 0 20px 50px rgba(0, 124, 240, 0.2);
            animation: rotateBox 10s infinite linear;
        }

        .visual-box::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 2px dashed rgba(255, 255, 255, 0.3);
            border-radius: 15px;
        }

        .visual-box-inner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            background: white;
            border-radius: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            padding: 20px;
            text-align: center;
        }

        .visual-box-inner h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.5rem;
        }

        .visual-box-inner p {
            font-size: 0.9rem;
              
            color: red;
            margin-bottom: 15px;
            font-weight: 150;

        
        }

        @keyframes rotateBox {
            0% {
                transform: perspective(1000px) rotateY(20deg) rotateX(0);
            }
            50% {
                transform: perspective(1000px) rotateY(20deg) rotateX(10deg);
            }
            100% {
                transform: perspective(1000px) rotateY(20deg) rotateX(0);
            }
        }








/* Base Container */
.container {

  width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Course Section */
.courses-section {
  padding: 3rem 1rem;
}

/* Header Styles */
.course-navigation {
  margin-bottom: 2rem;
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
}

.course-tabs {
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.course-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.course-list a {
  display: block;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border-radius: 30px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.course-list a:hover,
.course-list a.active {
  background: #0078d4;
  color: white;
  border-color: #0078d4;
}

/* Section Title */
.section-title {
  text-align: center;
  margin: 2rem 0 3rem;
}

.section-title h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: 600;
  text-align: center;

}

.section-title h2 span {
  color: #0078d4;
}

.title-bar {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0078d4, #00a4ef);
  margin: 0 auto;
  border-radius: 2px;
}

/* Main Content Layout */
.main-content {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

/* Sidebar */
.sidebar {
  flex: 0 0 250px;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  height: fit-content;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.sidebar h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  font-size: 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

#sidebar-links li {
  margin-bottom: 0.5rem;
}

#sidebar-links a {
  display: block;
  padding: 0.75rem 1rem;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 6px;
  font-size: 0.95rem;
}

#sidebar-links a:hover,
#sidebar-links a.active {
  background-color: #e6f2fa;
  color: #0078d4;
  padding-left: 1.25rem;
}

.content-area {
  flex: 1;
}

/* Course Grid */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.course-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: #2c3e50;
  height: 100%;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.course-header {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.course-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.tech-stack {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
}

.tech-icon {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.tech-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

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

.course-title {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  color: #2c3e50;
  font-weight: 600;
  line-height: 1.4;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: #7f8c8d;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.meta-item i {
  color: #0078d4;
  font-size: 0.9rem;
}

.course-desc {
  margin: 0 0 1.5rem 0;
  color: #555;
  line-height: 1.5;
  font-size: 0.95rem;
  flex-grow: 1;
}

.course-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.course-btn {
  display: inline-block!important;
  padding: 0.75rem 1.5rem!important;
  background: #0078d4!important;
  color: white!important;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500!important;
  transition: all 0.3s ease;
text-align: center!important;
  border: none!important;
  cursor: pointer;
  width: 100%!important;
}

.course-btn:hover {
  background: #106ebe;
  transform: translateY(-2px);
}

/* View All Button */
.view-all-container {
  text-align: center;
  margin-top: 3rem;
}

.view-all-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: #0078d4;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,120,212,0.2);
}

.view-all-btn:hover {
  background: #106ebe;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,120,212,0.25);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .main-content {
    flex-direction: column;
  }
  
  .sidebar {
    margin-bottom: 2rem;
    width: 100%;
  }
  
  .course-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .course-header {
    height: 160px;
  }
  
  .course-list a {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .courses-section {
    padding: 2rem 0.5rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .course-grid {
    grid-template-columns: 1fr;
  }
  
  .course-list {
    gap: 0.5rem;
  }
}


       
      


       
.how-it-works-section {
  padding: 60px 20px;
  background: #f9fbff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
   color: var(--primary);
}

.steps-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
   background:  linear-gradient(to bottom, #4e54c8, #8f94fb);;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  flex: 1 1 30%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.circle-icon {
  width: 60px;
  height: 60px;
  background: #4a90e2;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.step-text h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.step-text p {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
    gap: 25px;
  }

  .step {
    flex: 1 1 100%;
  }
}

        /* Features Section */
     


/* Gradient Light Theme Colors */
.light-theme-1 {
  background: linear-gradient(135deg, #b2ebf2 0%, #e0f7fa 100%); /* Light Teal Gradient */
}

.light-theme-2 {
  background: linear-gradient(135deg, #fffde7 0%, #fff9c4 100%); /* Light Yellow Gradient */
}

.light-theme-3 {
  background: linear-gradient(135deg, #d1c4e9 0%, #e1bee7 100%); /* Light Purple Gradient */
}
.light-theme-5{
  background: linear-gradient(135deg, #b39ddb 0%, #d1c4e9 100%); /* Lavender Gradient */
}

.light-theme-4 {
  background: linear-gradient(135deg, #ffcc80 0%, #ffe0b2 100%); /* Light Orange Gradient */
}

.light-theme-6 {
  background: linear-gradient(135deg, #a5d6a7 0%, #c8e6c9 100%); /* Light Green Gradient */
}




        /* Testimonials Section */
       /* ========== TESTIMONIALS SECTION ========== */

.testimonials-glass {
  padding: 100px 20px;
  background: linear-gradient(to bottom right, #f4f7fa, #e2ecf3);
  text-align: center;
  font-family:  Arial, sans-serif;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 60px;
 color: linear-gradient(to bottom, #4e54c8, #8f94fb);
}

.testimonial-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.testimonial-glass {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 40px 30px;
  width: 100%;
  max-width: 500px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.testimonial-glass:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-4deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.avatar {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 4px solid #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.testimonial-glass:hover .avatar {
  transform: scale(1.1);
}

.testimonial-content .quote {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  text-align: left;
}

.testimonial-content .author {
  font-weight: 600;
  font-size: 1.1rem;
  color: #111;
}

.testimonial-content .role {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-wrapper {
    flex-direction: column;
    align-items: center;
  }
}




    
    /* Animations */
    @keyframes float {
      0% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(5deg);
      }
      100% {
        transform: translateY(0) rotate(0deg);
      }
    }
    
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    .fade-left {
      animation: fadeInLeft 1s ease forwards;
    }
    
    .fade-right {
      animation: fadeInRight 1s ease forwards;
    }



    


     .clients-section {
    overflow: hidden;
    padding: 40px 0;
    text-align: center;
     max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.clients-container {
   
    overflow: hidden;
    position: relative;
}

.clients-grid {
    display: flex;
    animation: scroll 20s linear infinite;
    width: calc(250px * 18); /* Adjust based on number of items and their width */
}

.client-box {
    flex: 0 0 250px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-box img {
    max-width: 100%;
    max-height: 100px;
    /* filter: grayscale(100%); */
    transition: filter 0.3s ease;
}

.client-box img:hover {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 9)); /* Move by half the width */
    }
}

@media (max-width: 768px) {
    .clients-grid {
        animation: scroll 15s linear infinite;
    }
    
    .client-box {
        flex: 0 0 150px;
    }
}



     
   

       

        
     



    


   
     /* Footer */
        footer {
            background: linear-gradient(135deg, var(--dark), #162a47);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .footer-col p {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
        }

        .footer-links a::before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: var(--transition);
            color: var(--secondary);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 20px;
        }

        .footer-links a:hover::before {
            opacity: 1;
            left: 0;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            transition: var(--transition);
        }

        .social-link:hover {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
  /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            box-shadow: 0 5px 20px rgba(0, 124, 240, 0.3);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .contact-container {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: linear-gradient(135deg, var(--dark), #162a47);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: var(--transition);
                z-index: 999;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .hamburger {
                display: block;
            }
            
            .hamburger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .hamburger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn-outline {
                margin-left: 0;
                margin-top: 15px;
            }
            
            h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .course-card {
                max-width: 100%;
            }
            
            .feature-card {
                padding: 20px;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeIn 1s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        .delay-4 {
            animation-delay: 0.8s;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--primary), var(--secondary));
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }





/* 
        .logo-carousel-section {
          background-color: #ffffff;
          padding: 60px 20px;
          text-align: center;
          font-family: sans-serif;
        }
        
        .logo-carousel-section h2 {
          font-size: 36px;
          font-weight: 700;
          margin-bottom: 40px;
          color: #111827;
        }
        
        .logo-carousel {
          overflow: hidden;
          position: relative;
          width: 100%;
        }
        
        .logo-track {
          display: flex;
          width: fit-content;
          animation: scroll 15s linear infinite; 
        }
        
        .logo-track img {
          height: 100px;           
          margin: 0 50px;          
          object-fit: contain;
          transition: transform 0.3s ease;
        }
        
        .logo-track img:hover {
          transform: scale(1.1);
        }
        
        @keyframes scroll {
          0% {
            transform: translateX(0);
          }
          100% {
            transform: translateX(-50%);
          }
        } */
        



        .logo-carousel-section {
          padding: 80px 20px;
          background: linear-gradient(145deg, #eef2f3, #d9e3f0);
          text-align: center;
          font-family: "Segoe UI", sans-serif;
        }
        
        .logo-carousel-section h2 {
          font-size: 42px;
          font-weight: 800;
          color: #222;
          margin-bottom: 50px;
          /* text-transform: uppercase; */
          letter-spacing: 1px;
        }
        
        .logo-carousel {
          overflow: hidden;
          position: relative;
          width: 100%;
        }
        
        .logo-track {
          display: flex;
          align-items: center;
          gap: 100px;
          animation: scroll 18s linear infinite;
          width: max-content;
        }
        
        .logo-track img {
          height: 140px;
          object-fit: contain;
          transition: transform 0.4s ease, box-shadow 0.4s ease;
          filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.08));
          padding: 0;               /* removed padding */
          background: none;         /* removed white background */
          border-radius: 0;         /* remove rounded corners */
        }
        
        .logo-track img:hover {
          transform: scale(1.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }
        
        @keyframes scroll {
          0% {
            transform: translateX(0%);
          }
          100% {
            transform: translateX(-50%);
          }
        }
        
        @media (max-width: 768px) {
          .logo-track {
            gap: 50px;
            animation-duration: 25s;
          }
        
          .logo-track img {
            height: 90px;
          }
        
          .logo-carousel-section h2 {
            font-size: 28px;
          }
        }
        