/* CSS Variables */
:root {
    --primary-bg: #F5EFE7;
    --header-footer: #7B3F00;
    --accent-green: #4E944F;
    --text-dark: #333333;
    --text-light: #FAF6F0;
    --highlight: #D8A35D;
    --gradient: linear-gradient(137deg, #4E944F 0%, #7B3F00 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--primary-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--text-light);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--header-footer);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--header-footer), var(--highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--header-footer), var(--highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--header-footer);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--text-light);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid var(--header-footer);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(123, 63, 0, 0.1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: var(--highlight);
    color: var(--text-light);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--header-footer), var(--highlight));
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(123, 63, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--header-footer);
    border: 2px solid var(--header-footer);
}

.btn-secondary:hover {
    background: var(--header-footer);
    color: var(--text-light);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--primary-bg);
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Side - Text Content */
.hero-content {
    position: relative;
}

.hero-text {
    position: relative;
    z-index: 3;
}

.hero-icon {
    width: 40px;
    height: 40px;
    background: var(--header-footer);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease;
}

.hero-icon i {
    color: var(--text-light);
    font-size: 1.2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-dark);
    animation: slideInUp 1s ease 0.2s both;
}

.brand-highlight {
    background: linear-gradient(135deg, var(--header-footer), var(--highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .btn {
    animation: slideInUp 1s ease 0.4s both;
}

/* Decorative Shapes */
.decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    background: var(--header-footer);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    background: var(--highlight);
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: var(--accent-green);
    bottom: 20%;
    right: 20%;
    animation-delay: 4s;
}

/* Right Side - Image */
.hero-image-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    z-index: 3;
}

.dashed-border {
    width: 400px;
    height: 400px;
    border: 3px dashed var(--header-footer);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-frame {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

/* Decorative Arc */
.decorative-arc {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border: 2px dashed var(--highlight);
    border-radius: 50%;
    border-top: none;
    border-left: none;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

/* Statistics Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #7B3F00 100%, #ffffff 0%);
    position: relative;
    overflow: hidden;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.stat-item {
    text-align: center;
    color: rgb(255, 255, 255);
    animation: slideInUp 1s ease both;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    color: white;
}

/* Transform Skills Section */
.transform-section {
    padding: 6rem 0;
    background: var(--text-light);
    position: relative;
    overflow: hidden;
}

.transform-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Side - Text Content */
.transform-content {
    position: relative;
}

.transform-text {
    position: relative;
    z-index: 3;
}

.transform-text h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    animation: slideInUp 1s ease 0.2s both;
}

.transform-highlight {
    background: linear-gradient(135deg, var(--header-footer), var(--highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.transform-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--header-footer);
    margin-bottom: 2rem;
    animation: slideInUp 1s ease 0.4s both;
}

.transform-text .btn {
    animation: slideInUp 1s ease 0.6s both;
}

/* Decorative Shapes */
.transform-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.transform-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite;
}

.transform-shape-1 {
    width: 80px;
    height: 80px;
    background: var(--header-footer);
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.transform-shape-2 {
    width: 50px;
    height: 50px;
    background: var(--highlight);
    top: 70%;
    left: 10%;
    animation-delay: 2s;
}

.transform-shape-3 {
    width: 100px;
    height: 100px;
    background: var(--accent-green);
    bottom: 10%;
    right: 25%;
    animation-delay: 4s;
}

/* Right Side - Image */
.transform-image-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.transform-image-container {
    position: relative;
    z-index: 3;
}

.transform-dashed-border {
    width: 400px;
    height: 400px;
    border: 3px dashed var(--header-footer);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.transform-gradient-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.transform-circular-frame {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.transform-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.transform-image:hover {
    transform: scale(1.05);
}

/* Featured Courses Section */
.featured-courses {
    padding: 4rem 0;
    background: #7b3f00 ;
    position: relative;
    overflow: hidden;
}

.featured-courses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.featured-courses-header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.featured-courses-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.featured-courses-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.featured-courses-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.courses-scroll-container {
    overflow: hidden;
    position: relative;
}

.courses-scroll {
    display: flex;
    gap: 2rem;
    animation: scrollLeft 30s linear infinite;
    width: max-content;
}

.courses-scroll:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.course-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: scale(1.07);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.course-logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.course-image {
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.course-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.course-category {
    margin-bottom: 0.5rem;
}

.course-category span {
    background: #4e944f;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.course-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #8B5CF6;
}

.course-rating i {
    color: #FFD700;
}

.course-title {
    margin-bottom: 0.5rem;
}

.course-title h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.course-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.course-details i {
    color: var(--accent-green);
}

.course-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

/* Carousel Navigation */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--header-footer);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-button:hover {
    background: var(--highlight);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: 0;
}

.carousel-button.next {
    right: 0;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--highlight);
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .course-card {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .featured-courses {
        padding: 60px 0;
    }
    
    .carousel-container {
        padding: 0 20px;
    }
    
    .course-card {
        min-width: 280px;
    }
    
    .course-content h3 {
        font-size: 1.2rem;
    }
    
    .course-content p {
        font-size: 0.9rem;
    }
}

/* iPhone 15 Pro breakpoint (393px width) */
@media (max-width: 393px) {
  .course-image img {
    height: 120px; /* reduce height for smaller screen */
    border-radius: 6px; /* slightly smaller radius */
  }

  .course-image {
    margin-bottom: 0.8rem; /* tighter spacing */
    text-align: center;
  }
}


/* Second Hero Section */
.hero-section-2 {
    padding: 6rem 0;
    background: var(--primary-bg);
}

.hero-2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-2-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-2-content p {
    font-size: 1.1rem;
    color: var(--header-footer);
    margin-bottom: 2rem;
}

.hero-2-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--header-footer);
    font-size: 0.9rem;
    margin: 0;
}

.hero-2-image {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--text-light);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    bottom: 0;
    right: 0;
    animation-delay: 3s;
}

.floating-card i {
    font-size: 2rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.floating-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.floating-card p {
    color: var(--header-footer);
    font-size: 0.9rem;
    margin: 0;
}

/* Explore Our Courses Section */
.explore-courses {
    padding: 6rem 0;
    background: var(--text-light);
}

.explore-courses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.explore-content {
    flex: 1;
    max-width: 500px;
}

.explore-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.courses-highlight {
    background: linear-gradient(135deg, var(--accent-green), var(--highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.explore-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.explore-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.categories-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.categories-column {
    flex: 1;
}

.category-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.category-bullet {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    flex-shrink: 0;
}

.category-item span:last-child {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.4;
}

.explore-btn {
    background: linear-gradient(135deg, var(--accent-green), var(--highlight));
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 148, 79, 0.3);
}

.explore-image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.explore-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.explore-dashed-border {
    position: relative;
    width: 100%;
    height: 500px;
    border: 3px dashed;
    border-image: linear-gradient(135deg, var(--accent-green), var(--highlight)) 1;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-green), var(--highlight));
    background-clip: padding-box;
    padding: 3px;
}

.explore-circular-frame {
    width: 100%;
    height: 100%;
    border-radius: 27px;
    overflow: hidden;
    background: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.explore-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 27px;
}

.logo-scroller-wrapper {
    margin-top: 20px;
    overflow: hidden;
    background-color: #fff;
    padding: 40px 40px;
  }
  
  .logo-scroller {
    margin-top: 20px;
    display: flex;
    width: 100%;
  }
  
  .logo-track {
    margin-top: 20px;
    display: flex;
    gap: 50px;
    animation: scrollLeft 15s linear infinite;
    width: max-content;
  }

  .logo-track:hover {
    animation-play-state: paused;
  }
  
  .logo-track img {
    height: 80px;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
  }
  
  .logo-track img:hover {
    filter: grayscale(0%);
  }
  
  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  

.logo-scroller-wrapper:hover .logo-scroller {
    animation-play-state: paused;
}
  

/* New Features Section */
.new-features {
    padding: 6rem 0;
    background: var(--text-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--header-footer);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--highlight);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), var(--highlight));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--header-footer);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.feature-link:hover {
    gap: 1rem;
}


/* Packages Section */
.packages-section {
    padding: 6rem 0;
    background: var(--header-footer);
    margin-bottom: 6rem;
}

.packages-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.packages-section .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.packages-section .section-header p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: var(--text-light);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--highlight));
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-green);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.package-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.package-duration {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--accent-green);
    font-size: 1.1rem;
    min-width: 20px;
}

.package-features span {
    color: var(--text-dark);
    font-size: 1rem;
}

.package-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-green), var(--highlight));
    color: var(--text-light);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(78, 148, 79, 0.3);
    background: linear-gradient(135deg, var(--highlight), var(--accent-green));
}

.package-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-green), var(--highlight));
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-container {
    position: relative;
    max-width: 1000px;
    margin: 50px auto;
    background: var(--accent-green);
    padding: 60px 60px 60px 60px;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
  }
  
  .testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px 20px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: none;
    position: relative;
  }
  
  .testimonial-card.active {
    display: block;
  }
  
  .testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #d28cf1;
    margin-top: -80px;
    background: #fff;
  }
  
  h3 {
    color: var(--accent-green);
    margin: 10px 0 5px;
    font-size: 1.2rem;
  }
  
  .location {
    color: #555;
    font-size: 0.95rem;
  }
  
  .stars {
    color: gold;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .message {
    font-size: 1.05rem;
    font-weight: 500;
    color: #333;
    padding: 0 10px;
    line-height: 1.6;
    position: relative;
  }
  
  .message::before,
  .message::after {
    content: "❝";
    font-size: 2.5rem;
    color: #ddd;
    position: absolute;
  }
  
  .message::before {
    top: -10px;
    left: 10px;
  }
  
  .message::after {
    bottom: -10px;
    right: 10px;
    content: "❞";
  }
  
  .testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--highlight);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
  }
  
  .testimonial-btn.left {
    left: 10px;
  }
  
  .testimonial-btn.right {
    right: 10px;
  }
  

  /* Outer Section with curved gradient */
.cta-section {
    background: var(--highlight);
    padding: 100px 20px;
    border-radius: 150px 0 150px 0;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
  }
  
  /* Inner Card */
  .cta-box {
    background: var(--header-footer);
    color: white;
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }
  
  .cta-box h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
  }
  
  /* CTA Button */
  .cta-button {
    background: white;
    color: black;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .cta-button:hover {
    background: var(--accent-green);
    color: white;
  }
  

/* Footer */
.footer {
    background: var(--header-footer);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    color: var(--highlight);
}

.footer-section p {
    color: var(--highlight);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--highlight);
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--highlight);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid var(--highlight);
    padding-top: 2rem;
    text-align: center;
    color: var(--highlight);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--text-light);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .dashed-border {
        width: 300px;
        height: 300px;
    }

    .circular-frame {
        width: 250px;
        height: 250px;
    }

    .decorative-arc {
        display: none;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .transform-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .transform-text h2 {
        font-size: 2.5rem;
    }

    .transform-dashed-border {
        width: 300px;
        height: 300px;
    }

    .transform-gradient-circle {
        width: 250px;
        height: 250px;
    }

    .transform-circular-frame {
        width: 220px;
        height: 220px;
    }

    .hero-2-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-2-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Featured Courses Mobile Styles */
    .featured-courses-header h2 {
        font-size: 2rem;
    }

    .featured-courses-header p {
        font-size: 1rem;
    }

    .courses-scroll {
        gap: 1rem;
    }

    .course-card {
        min-width: 250px;
        padding: 1rem;
    }

        .course-image img {
        height: 120px;
    }
    
    /* Explore Courses Mobile Styles */
    .explore-courses-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .explore-content {
        max-width: 100%;
    }
    
    .explore-content h2 {
        font-size: 2.5rem;
    }
    
    .categories-grid {
        justify-content: center;
    }
    
    .explore-image-container {
        max-width: 350px;
    }
    
    .explore-dashed-border {
        height: 400px;
    }
    
    .nav-buttons {
        display: none;
    }
    
    /* Mobile dropdown styles */
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        display: none;
        padding-left: 1rem;
    }
    
    .dropdown-item {
        color: var(--text-dark) !important;
        border-bottom: none !important;
    }
    
    .dropdown-item:hover {
        background-color: transparent !important;
        color: var(--header-footer) !important;
    }
    
    /* Success Stories and Packages responsive for tablet */
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .success-stories .section-header h2,
    .packages-section .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .dashed-border {
        width: 250px;
        height: 250px;
    }

    .circular-frame {
        width: 200px;
        height: 200px;
    }

    .transform-text h2 {
        font-size: 2rem;
    }

    .transform-dashed-border {
        width: 250px;
        height: 250px;
    }

    .transform-gradient-circle {
        width: 200px;
        height: 200px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .transform-circular-frame {
        width: 180px;
        height: 180px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-2-content h2 {
        font-size: 2rem;
    }
    
    .explore-content h2 {
        font-size: 2rem;
    }
    
    .explore-dashed-border {
        height: 350px;
    }
    
    .categories-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Success Stories and Packages responsive for mobile */
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .success-stories .section-header h2,
    .packages-section .section-header h2 {
        font-size: 2rem;
    }
    
    .story-card,
    .package-card {
        padding: 1.5rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
} 

/* Custom Footer Styles */
.custom-footer {
    background: var(--header-footer);
    color: #fff;
    padding: 60px 0 0 0;
    font-family: 'Inter', sans-serif;
}
.custom-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 32px;
}
.custom-footer-section {
    flex: 1 1 180px;
    min-width: 180px;
    margin-bottom: 24px;
}
.custom-footer-section.brand {
    flex: 2 1 320px;
    min-width: 280px;
    max-width: 350px;
}
.custom-footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    gap: 0.5rem;
}
.custom-footer-logo img {
    height: 32px;
    width: auto;
    margin-right: 0.5rem;
}
.custom-footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}
.custom-footer-section ul {
    list-style: none;
    padding: 0;
}
.custom-footer-section ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.custom-footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.custom-footer-section ul li a:hover {
    color: var(--highlight);
}
.custom-footer-section p {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0;
    opacity: 0.95;
}
.custom-footer-section.contact p {
    margin-top: 8px;
    font-size: 1rem;
    opacity: 0.9;
}
.custom-footer-section.follow ul li i {
    width: 22px;
    text-align: center;
    font-size: 1.1rem;
    color: #fff;
    margin-right: 6px;
}
.custom-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 32px 18px 32px;
    font-size: 1rem;
    color: #fff;
    opacity: 0.95;
}
@media (max-width: 1024px) {
    .custom-footer-container {
        flex-wrap: wrap;
        gap: 24px;
    }
    .custom-footer-section {
        min-width: 160px;
    }
}
@media (max-width: 768px) {
    .custom-footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 0 16px 24px 16px;
    }
    .custom-footer-section {
        min-width: 0;
        width: 100%;
        margin-bottom: 12px;
    }
    .custom-footer-section.brand {
        max-width: 100%;
    }
    .custom-footer-bottom {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
        font-size: 0.95rem;
    }
} 

/* Course Detail Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--text-light);
    margin: 2% auto;
    padding: 0;
    border: none;
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: var(--gradient);
    color: var(--text-light);
    border-radius: 12px 12px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: var(--text-light);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: var(--highlight);
}

.modal-body {
    padding: 30px;
}

.course-detail-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: start;
}

.course-detail-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.course-package {
    background: var(--accent-green);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--highlight);
    font-weight: 600;
}

.course-rating i {
    color: #ffc107;
}

.course-detail-info h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.course-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--primary-bg);
    border-radius: 8px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.stat-item i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

.course-description,
.course-features {
    margin-bottom: 25px;
}

.course-description h4,
.course-features h4 {
    color: var(--header-footer);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.course-description p {
    line-height: 1.6;
    color: var(--text-dark);
}

.course-features ul {
    list-style: none;
    padding: 0;
}

.course-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.course-features li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.course-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.course-actions .btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.course-actions .btn-primary {
    background: var(--gradient);
    color: var(--text-light);
}

.course-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 148, 79, 0.3);
}

.course-actions .btn-secondary {
    background: #6c757d;
    color: white;
}

.course-actions .btn-secondary:hover {
    background: #5a6268;
}

.course-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.course-card.featured {
    border: 2px solid var(--accent-green);
    position: relative;
}

.course-card.featured::before {
    content: "FEATURED";
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-green);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 1;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .course-detail-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .course-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .course-actions {
        flex-direction: column;
    }
    
    .course-actions .btn {
        text-align: center;
    }
}

/* Course Recommendations Slider Bars */
.course-recommendations {
    margin: 40px 0;
    padding: 30px;
    background: var(--primary-bg);
    border-radius: 16px;
    border: 2px solid var(--accent-green);
}

.course-recommendations h3 {
    color: var(--header-footer);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.recommendation-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommendation-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.course-info {
    flex: 1;
    min-width: 200px;
}

.course-name {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 4px;
}

.completion-rate {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-green);
    font-weight: 500;
}

.progress-bar {
    flex: 2;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-green) 0%, var(--highlight) 100%);
    border-radius: 6px;
    transition: width 1s ease-in-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.rating {
    font-weight: 600;
    color: var(--highlight);
    font-size: 1rem;
    min-width: 60px;
    text-align: center;
}

/* Responsive design for recommendations */
@media (max-width: 768px) {
    .recommendation-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .course-info {
        min-width: auto;
        width: 100%;
    }
    
    .progress-bar {
        width: 100%;
        order: 2;
    }
    
    .rating {
        order: 3;
        min-width: auto;
    }
    
    .course-recommendations {
        padding: 20px;
        margin: 30px 0;
    }
}