/* Global Styles */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
    }

    :root {
      --primary-color: #2563eb;
      --secondary-color: #1d4ed8;
      --dark-color: #1e293b;
      --light-color: #f8fafc;
      --gray-color: #666;
      --light-gray: #eaeaea;
      --danger-color: #dc3545;
      --success-color: #28a745;
      --text-color: #334155;
      --border-color: #e2e8f0;
    }

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

    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: #fff;
    }

    a {
      text-decoration: none;
      color: var(--dark-color);
    }

    ul {
      list-style: none;
    }


    header {
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .top-header {
      border-bottom: 1px solid var(--light-gray);
    }

    .top-header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
    }

    .logo img {
      height: auto;
      max-height: 70px;
      width: auto;
      display: block;
    }

    .main-nav ul {
      display: flex;
      align-items: center;
    }

    .main-nav ul li {
      margin-left: 25px;
      position: relative;
    }

    .main-nav ul li a {
      position: relative;
      padding: 10px;
      font-weight: 500;
      transition: color 0.3s;
      display: flex;
      align-items: center;
      margin-top: 5px;
    }

    .main-nav ul li a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 5px;
      width: 0;
      height: 2px;
      background-color: var(--primary-color);
      transition: width 0.3s ease;
    }

    .main-nav ul li a:hover::after,
    .main-nav ul li a.active::after {
      width: 100%;
    }

    .main-nav ul li a i {
      font-size: 12px;
      margin-left: 5px;
    }

    .main-nav ul li a:hover,
    .main-nav ul li a.active {
      color: var(--primary-color);
    }

    .dropdown {
      position: relative;
    }

    .dropdown-content {
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #fff;
      min-width: 200px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      border-radius: 4px;
      padding: 15px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 10;
    }

    .dropdown:hover .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .mega-menu {
      display: flex;
      width: 500px;
      padding: 20px;
      max-width: 100vw;
    }

    .menu-column {
      flex: 1;
      padding: 0 15px;
      min-width: 200px;
    }

    .menu-column:first-child {
      border-right: 1px solid var(--light-gray);
    }

    .menu-column h3 {
      font-size: 16px;
      margin-bottom: 15px;
      color: var(--primary-color);
      padding-bottom: 8px;
      border-bottom: 1px solid var(--light-gray);
    }

    .menu-column ul {
      display: flex;
      flex-direction: column;
    }

    .menu-column ul li {
      margin-bottom: 10px;
    }

    .menu-column ul li a {
      padding: 5px 0;
      font-size: 14px;
      display: block;
    }

    .menu-column ul li a:hover {
      background-color: transparent;
      color: var(--primary-color);
      padding-left: 5px;
    }

    .hamburger {
      display: none;
      font-size: 24px;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--dark-color);
    }

    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }

      .main-nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        display: none;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
      }

      .main-nav.active {
        display: block;
      }

      .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
      }

      .main-nav ul li {
        margin: 10px 0;
      }

      .dropdown-content {
        display: none;
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
      }

      .dropdown.open .dropdown-content {
        display: block;
        padding-top: 10px;
      }

      .mega-menu {
        flex-direction: column;
        padding: 0;
      }

      .menu-column {
        border: none;
        padding: 0;
      }

      .dropdown > a i {
        transition: transform 0.3s;
      }

      .dropdown.open > a i {
        transform: rotate(180deg);
      }
    }




/* Hero Section */
#hero {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-color); /* Make sure this variable is defined */
    margin-bottom: 20px;
    max-width: 700px;
}

/* Responsive line breaks shown only on screens > 520px */
.pc-break {
    display: none;
}

@media (min-width: 521px) {
    .pc-break {
        display: inline;
    }
}



.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 20px;
    color: var(--primary-color);
}

.stat-item span {
    font-size: 14px;
    color: var(--gray-color);
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Partners Section */
#partners {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

#partners h2 {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.partner-logo {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-header p {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Courses Tabs */
.courses-tabs {
    margin-top: 30px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.tab-button {
    background: transparent;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-color);
    cursor: pointer;
    margin: 0 5px;
    position: relative;
    transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    color: var(--primary-color);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Courses Section */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.course-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.course-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.course-card p {
    color: var(--text-color);
    margin-bottom: 20px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #64748b;
}

.course-details {
    padding: 60px 0;
}

.course-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.info-card ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.course-button {
    display: block;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.course-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Testimonials Section */
#testimonials {
    background-color: #f8f9fa;
    text-align: center;
}

.ratings {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
}

.rating-item {
    text-align: center;
}

.rating-item h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.rating-item p {
    color: var(--gray-color);
    font-size: 14px;
}

.testimonial-header {
    margin: 40px 0 30px;
}

.testimonial-header h2 {
    font-size: 36px;
    color: var(--dark-color);
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.stat-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 180px;
}

.stat-box h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--gray-color);
    font-size: 14px;
}

/* Benefits Section */
#benefits {
    background-color: #fff;
}

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

.benefit-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(74, 107, 220, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray-color);
}



/*floating-btn*/
.whtsap-floating-btn {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 15px;
    right: 15px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}



/*Our team*/







/* About Section */
#about {
    background-color: #f8f9fa;
}

.about-content {
    display: flex;
    gap: 50px;
    margin-top: 30px;
}

.about-cloudatlas {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    background: #f9fafe;
    border-radius: 16px;
}

.abt-heading {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-top: 20px;
}

.highlight {
    color: #333;
}

.feature-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-points li {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    display: flex;
    align-items: flex-start;
}

.feature-points li i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 20px;
    color: var(--primary-color);
}




/* Free Courses Section */
#free-courses {
    background-color: #fff;
    text-align: center;
}

.free-courses-content {
    max-width: 700px;
    margin: 0 auto;
}

.free-course-text p {
    margin-bottom: 30px;
    font-size: 18px;
    color: var(--gray-color);
}

/* Contact Section */




/* Footer */
footer {
    background: var(--dark-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    min-width: 180px;
    margin-bottom: 30px;
}

.footer-logo h2 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 24px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

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

.footer-column ul li a {
    color: #bbb;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 14px;
    color: #bbb;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #bbb;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
    padding: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-image {
        order: -1;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-stats,
    .ratings {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stat-box {
        width: 100%;
        max-width: 300px;
    }

    .footer-top {
        gap: 30px;
    }

    .footer-column {
        min-width: 45%;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        order: 1;
    }

    .logo {
        order: 0;
    }

    .header-buttons {
        order: 2;
    }

    .top-header .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul li {
        margin: 5px 0;
        width: 100%;
    }

    .main-nav ul li a {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding: 0;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .mega-menu {
        flex-direction: column;
        width: 100%;
        padding: 10px 0 0 15px;
        border-top: 1px solid var(--light-gray);
        margin-top: 10px;
    }

    .menu-column {
        margin-bottom: 20px;
        padding: 0;
        width: 100%;
    }

    .menu-column:first-child {
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
        padding-bottom: 15px;
    }

    .menu-column h3 {
        margin-bottom: 10px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .tabs-nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .tab-button {
        white-space: nowrap;
    }

    .about-content,
    .contact-content {
        flex-direction: column;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-column {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .partners-grid {
        gap: 15px;
    }

    .partner-logo {
        width: 120px;
        height: 60px;
    }
}

/* Course Page Styles */
.course-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.course-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.course-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.course-details {
    padding: 60px 0;
}

.course-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.course-features {
    background: var(--light-color);
    padding: 60px 0;
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.duration-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Reviews Page  */

.testimonial-carousel-container {
    position: relative;
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

.testimonial-review-card {
    min-width: 350px;
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 16px;
}

.testimonial-user-details h3 {
    margin: 0;
    font-size: 18px;
}

.testimonial-user-details p {
    margin: 4px 0 0;
    color: #666;
}

.testimonial-star-rating {
    font-size: 20px;
    color: #f5a623;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #333;
}

.testimonial-social-links {
    margin-bottom: 16px;
}

.testimonial-social-links a {
    margin-right: 10px;
    font-size: 18px;
    color: #0077b5;
    transition: color 0.3s;
}

.testimonial-social-links a:hover {
    color: #005582;
}

.testimonial-video {
    width: 100%;
    border-radius: 12px;
    margin-top: 10px;
}


.testimonial-slider {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 550px;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 1.5rem;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    pointer-events: none;
    transition: transform 0.5s;
}

.testimonial-card.visible {
    pointer-events: auto;
}

.testimonial-card.animate-out {
    animation: cardSwap 1.3s ease-out forwards;
}

@keyframes cardSwap {
    30% {
        transform: translate(-300px, -50%) scale(0.8) rotateY(60deg);
    }

    100% {
        transform: translate(-100px, -50%) scale(0.5);
        z-index: -1;
    }
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: gray;
}

.testimonial-stars {
    color: #f4c150;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 10px 0;
    flex-grow: 1;
}

.testimonial-links a {
    color: #0e76a8;
    margin-right: 15px;
    font-size: 1.2rem;
}

.testimonial-video {
    width: 100%;
    border-radius: 1rem;
    height: 200px;
    background: #000;
}

/* Card stacking effect */
.testimonial-card:nth-last-child(n + 5) {
    --x: calc(-50% + 90px);
    transform: translate(var(--x), -50%) scale(0.85);
}

.testimonial-card:nth-last-child(4) {
    --x: calc(-50% + 60px);
    transform: translate(var(--x), -50%) scale(0.9);
}

.testimonial-card:nth-last-child(3) {
    --x: calc(-50% + 30px);
    transform: translate(var(--x), -50%) scale(0.95);
}

.testimonial-card:nth-last-child(2) {
    --x: -50%;
    transform: translate(var(--x), -50%) scale(1);
}

.testimonial-card:nth-last-child(1) {
    --x: calc(-50% - 30px);
    transform: translate(var(--x), -50%) scale(1.05);
    z-index: 2;
}





/*logo-carousel*/
.partner-carousel {
    width: 100%;
    background: #fff;
    padding: 2rem 0;
}

.carousel-row {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 80px;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

.carousel-row:hover .carousel-track {
    animation-play-state: paused;
}

.logo-strip {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.logo-block {
    flex: 0 0 auto;
    width: 120px;
    margin: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-block img {
    width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-block img:hover {
    filter: grayscale(0%);
}

.fade-overlay {
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-block {
        width: 90px;
        margin: 0 0.5rem;
    }

    .fade-overlay {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .logo-block {
        width: 70px;
    }
}





/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
    background: var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Responsive Styles */
@media (max-width: 768px) {

    .course-grid,
    .reviews-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

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

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

/* Common Components */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: var(--dark-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

/* Duration Badge */
.duration-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}