
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #28a745;
            --dark-green: #1e7e34;
            --light-green: #34ce57;
            --dark-bg: #2c3e50;
            --darker-bg: #1a252f;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --border-color: #e9ecef;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

         /* Popup Modal Styles */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .modal-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .modal-container {
        display: flex;
        max-width: 1000px;
        width: 100%;
        max-height: 90vh;
    }

    .modal-image {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .modal-image img {
        width: 100%;
        height: auto;
        max-height: 90vh;
        object-fit: cover;
        border-radius: 10px 0 0 10px;
    }

    .modal-content {
        flex: 1;
        background: white;
        border-radius: 0 10px 10px 0;
        overflow-y: auto;
        position: relative;
        transform: scale(0.7);
        transition: transform 0.3s ease;
    }

    .modal-overlay.show .modal-content {
        transform: scale(1);
    }

    .modal-header {
        padding: 30px 30px 0;
        text-align: center;
    }

    .modal-header h2 {
        font-size: 28px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 15px;
    }

    .modal-divider {
        width: 200px;
        height: 4px;
        background: var(--primary-green);
        margin: 0 auto 20px;
        border-radius: 2px;
    }

    .modal-body {
        padding: 30px;
    }

    .close-btn {
        position: absolute;
        top: 15px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        color: #999;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .close-btn:hover {
        color: var(--primary-green);
    }

    @media (max-width: 768px) {
        .modal-container {
            flex-direction: column;
        }

        .modal-image img {
            display: none;
        }

        .modal-content {
            border-radius: 0;
        }

    }


          /* discount banner */
        .discount-banner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 5px 30px;
      background-color: #28a745;
      border-bottom: 2px solid #ddd;
      font-family: 'Segoe UI', sans-serif;
      position: sticky;
      top: 0;
      z-index: 999;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .discount-message {
      font-size: 15px;
      color: #ffffff;
    }

    .countdown {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .time{
        display: flex;
        gap: 20px;
    }

    .time-box {
      background-color: #ffffff;
      color: #fff;
      padding: 1px -1px;
      text-align: center;
      border-radius: 4px;
      min-width: 50px;
    }

    .time-box span {
      display: block;
      font-size: 16px;
      font-weight: bold;
      color: #000000;
    }

    .time-label {
      font-size: 10px;
      color: #000000;
      margin-top: -2px;
    }

    .cta-text {
      font-size: 15px;
      color: #ffffff;
      margin-left: 15px;
      font-weight: 500;
    }

    .contact-icons {
      display: flex;
      gap: 18px;
    }

    .contact-icons i {
      font-size: 22px;
      color: #333;
      cursor: pointer;
      transition: color 0.2s ease;
    }

    @media (max-width: 768px) {
     .time{
        display: flex;
        gap: 10px;
     }
        .countdown{
        flex-direction: column;
     }
    }


    /* Header */
        .header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            width: 100%;
            /* height: 75px; */
            top: 50px;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-green);
        }

        .logo i {
            font-size: 28px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--primary-green);
        }

        .cta-button {
            background: var(--primary-green);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: var(--dark-green);
            transform: translateY(-2px);
        }

        /* Responsive Header */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}

/* Hide nav-menu on mobile */
@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: white;
    padding: 15px 0;
    margin: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .cta-button {
    width: 100%;
    margin-top: 10px;
  }
}

/* Responsive Discount Banner */
@media (max-width: 768px) {
  .discount-banner {
    flex-direction: column;
    gap: 10px;
    padding: 10px 15px;
    text-align: center;
  }

.header{
    top: 96px;
}
  .countdown {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-text {
    margin-left: 0;
  }

  .contact-icons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../images/quran-near-lamp-mat.jpg');
            background-size: cover;
            opacity: 0.6;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--primary-green);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: var(--dark-green);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 15px 30px;
            border: 2px solid white;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--text-dark);
        }

        .hero-image {
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }

          /* Hero Form Styles */
        .hero-form {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-form-wrapper {
            background: rgba(255, 255, 255, 0.103);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px 35px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 450px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-form-wrapper h3 {
            color: white;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            text-align: center;
        }

        .hero-form-wrapper > p {
            color: white;
            text-align: center;
            margin-bottom: 25px;
            font-size: 14px;
        }

        .hero-contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .hero-form-group {
            position: relative;
        }

        .hero-input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .hero-input-wrapper:focus-within {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
            transform: translateY(-2px);
        }

        .hero-input-wrapper i {
            color: var(--primary-green);
            font-size: 16px;
            padding: 15px;
            /* background: #f8f9fa; */
            border-right: 2px solid #e9ecef;
            min-width: 50px;
            display: flex;
            justify-content: center;
        }

        .hero-input-wrapper input,
        .hero-input-wrapper select {
            flex: 1;
            border: none;
            outline: none;
            padding: 15px;
            font-size: 14px;
            color: var(--text-dark);
            background: transparent;
            font-family: inherit;
        }

        .hero-input-wrapper input::placeholder {
            color: #999;
        }

        .hero-input-wrapper select {
            cursor: pointer;
        }

        .hero-input-wrapper select option {
            padding: 10px;
        }

        .hero-submit-btn {
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            color: white;
            padding: 16px 30px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }

        .hero-submit-btn:hover {
            background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
        }

        .hero-submit-btn:active {
            transform: translateY(-1px);
        }

        .hero-form-note {
            text-align: center;
            font-size: 12px;
            color: var(--text-light);
            margin-top: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .hero-form-note i {
            color: var(--primary-green);
            font-size: 14px;
        }

        /* Responsive adjustments for hero form */
        @media (max-width: 768px) {
            .hero-form-wrapper {
                padding: 30px 25px;
                margin: 0 10px;
            }
            
            .hero-form-wrapper h3 {
                font-size: 20px;
            }
            
            .hero-input-wrapper i {
                padding: 12px;
                min-width: 45px;
            }
            
            .hero-input-wrapper input,
            .hero-input-wrapper select {
                padding: 12px;
                font-size: 13px;
            }
            
            .hero-submit-btn {
                padding: 14px 25px;
                font-size: 14px;
            }
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 16px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .section-title img {
            width: 280px;
            margin-bottom: 20px;
        }

        /* Why Choose Section */
        .why-choose {
            background: var(--light-gray);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 30px;
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Course Tabs Section */
        .course-tabs-section {
            background: var(--darker-bg);
            color: white;
            position: relative;
        }

        .course-tabs-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="course-pattern" patternUnits="userSpaceOnUse" width="50" height="50"><circle cx="25" cy="25" r="20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23course-pattern)"/></svg>');
            background-size: 100px 100px;
        }

        .course-tabs-container {
            position: relative;
            z-index: 2;
        }

        .tabs-nav {
            display: flex;
            justify-content: center;
            gap: 0;
            margin-bottom: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 5px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 50px;
        }

        .tab-button {
            flex: 1;
            padding: 15px 25px;
            background: transparent;
            color: rgba(255,255,255,0.7);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .tab-button.active {
            background: var(--primary-green);
            color: white;
        }

        .tab-content {
            display: none;
            text-align: center;
        }

        .tab-content.active {
            display: block;
        }

        .tab-content h3 {
            font-size: 32px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .tab-content p {
            font-size: 16px;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }

        /* Individual Course Section */
        .course-section {
            background: white;
        }

        .course-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .course-content h3 {
            font-size: 32px;
            color: var(--primary-green);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .course-content p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .course-features {
            list-style: none;
            margin: 30px 0;
        }

        .course-features li {
            padding: 8px 0;
            color: var(--text-light);
            position: relative;
            padding-left: 25px;
        }

        .course-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-green);
            font-weight: bold;
        }

        .course-image {
            text-align: center;
        }

        .course-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }

        @media (max-width: 425px) {
           .course-image{
            display: none;
           }
        }

        /* Steps Section */
        .steps-section {
            background: var(--light-gray);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .step-card {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
        }

        .step-card:hover {
            transform: translateY(-5px);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 32px;
            font-weight: 700;
        }

        .step-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .step-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Pricing Section */
        .pricing-section {
            background: var(--light-gray);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
            align-items: end;
        }

        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid transparent;
        }

        .pricing-card.featured {
            background: var(--primary-green);
            color: white;
            transform: scale(1.1);
            border-color: var(--dark-green);
            box-shadow: 0 15px 40px rgba(40, 167, 69, 0.3);
        }

        .pricing-card:hover {
            transform: translateY(-5px);
        }

        .pricing-card.featured:hover {
            transform: scale(1.1) translateY(-5px);
        }

        .pricing-header {
            margin-bottom: 30px;
        }

        .pricing-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .pricing-card.featured h3 {
            color: white;
        }

        .price {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary-green);
            margin: 20px 0;
        }

        .pricing-card.featured .price {
            color: white;
        }

        .price span {
            font-size: 16px;
            font-weight: 400;
            opacity: 0.7;
        }

        .pricing-features {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }

        .pricing-features li {
            padding: 8px 0;
            color: var(--text-light);
            font-size: 14px;
            position: relative;
            padding-left: 20px;
        }

        .pricing-card.featured .pricing-features li {
            color: rgba(255,255,255,0.9);
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-green);
            font-weight: bold;
        }

        .pricing-card.featured .pricing-features li::before {
            color: white;
        }

        .pricing-btn {
            background: var(--primary-green);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-decoration: none;
            display: inline-block;
        }

        .pricing-card.featured .pricing-btn {
            background: white;
            color: var(--primary-green);
        }

        .pricing-btn:hover {
            transform: translateY(-2px);
        }

.with-bg {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Pseudo-elements for left and right background images */
.with-bg::before,.with-bg::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: url('pricing-side.webp') no-repeat;
    background-size: cover; /* or '100px 100%' if vertical stripe look */
    z-index: 1;
    opacity: 0.5; /* Adjust opacity for subtle background */
}

.with-bg::before {
    left: 0;
}

.with-bg::after {
    right: 0;
}

/* Make sure actual content appears above the background images */
.with-bg > .container {
    position: relative;
    z-index: 2;
}


        /* Vision Mission Section */
        .vision-mission {
            background: var(--darker-bg);
            color: white;
            position: relative;
        }

        .vision-mission::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="vision-pattern" patternUnits="userSpaceOnUse" width="60" height="60"><polygon points="30,5 50,20 50,40 30,55 10,40 10,20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23vision-pattern)"/></svg>');
            background-size: 120px 120px;
        }

        .vision-mission .container {
            position: relative;
            z-index: 2;
        }

        /* Stats Section */
        .stats-section {
            background: var(--darker-bg);
            color: white;
            padding: 60px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 10px;
        }

        .stat-item p {
            font-size: 16px;
            opacity: 0.9;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .testimonial-card {
            background: var(--light-gray);
            padding: 30px;
            border-radius: 10px;
            position: relative;
                width: 87% !important;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 60px;
            color: var(--primary-green);
            font-family: serif;
        }

        .testimonial-text {
            margin-bottom: 20px;
            font-style: italic;
            color: var(--text-light);
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-green);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }

        .author-info h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 14px;
            color: var(--text-light);
        }

        /* Contact Form Section */
        .contact-form-section {
            background: white;
            padding: 80px 0;
        }

        .decorative-divider {
            display: flex;
            justify-content: center;
            margin: 20px 0 30px;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-top: 60px;
            align-items: start;
        }

        .contact-form-wrapper {
            background: #f8f9fa;
            padding: 0;
            border-radius: 0;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            position: relative;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 5px;
            padding: 0;
            transition: all 0.3s ease;
        }

        .input-wrapper:focus-within {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
        }

        .input-wrapper i {
            color: var(--primary-green);
            font-size: 16px;
            padding: 15px;
            background: #f8f9fa;
            border-right: 2px solid #e9ecef;
        }

        .input-wrapper input,
        .input-wrapper textarea {
            flex: 1;
            border: none;
            outline: none;
            padding: 15px;
            font-size: 14px;
            color: var(--text-dark);
            background: transparent;
        }

        .input-wrapper input::placeholder,
        .input-wrapper textarea::placeholder {
            color: #999;
        }

        .phone-wrapper {
            display: flex;
            align-items: center;
        }

        .country-code {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 15px;
            background: #f8f9fa;
            border-right: 2px solid #e9ecef;
            cursor: pointer;
            min-width: 80px;
        }

        .country-code img {
            border-radius: 2px;
        }

        .country-code span {
            font-size: 14px;
            color: var(--text-dark);
            font-weight: 500;
        }

        .country-code i {
            font-size: 12px;
            color: #999;
            padding: 0;
            background: none;
            border: none;
        }

        .input-wrapper textarea {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }

        .submit-btn {
            background: var(--primary-green);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            align-self: flex-start;
        }

        .submit-btn:hover {
            background: var(--dark-green);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
        }

        .contact-info {
            padding-left: 20px;
        }

        .contact-info h3 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .contact-info > p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 40px;
            font-size: 16px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-item i {
            color: var(--primary-green);
            font-size: 16px;
            margin-top: 2px;
            min-width: 16px;
        }

        .contact-item span {
            color: var(--text-light);
            line-height: 1.5;
            font-size: 14px;
        }

        .contact-item strong {
            color: var(--text-dark);
            font-weight: 600;
        }

        /* Responsive Design for Contact Form */
        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .contact-info {
                padding-left: 0;
            }
            
            .contact-info h3 {
                font-size: 24px;
            }
            
            .submit-btn {
                align-self: stretch;
            }
        }

        @media (max-width: 480px) {
            .country-code {
                min-width: 70px;
                padding: 12px;
            }
            
            .input-wrapper i {
                padding: 12px;
            }
            
            .input-wrapper input,
            .input-wrapper textarea {
                padding: 12px;
            }
        }

        /* Footer */
        .footer {
            background: var(--darker-bg);
            color: white;
            padding: 60px 0 30px;
            position: relative;
        }


        .footer-content {
            position: relative;
            z-index: 2;
            margin-top: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: var(--primary-green);
            margin-bottom: 20px;
            font-size: 18px;
            font-weight: 600;
        }

        .footer-section p,
        .footer-section li {
            color: rgba(255,255,255,0.8);
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-green);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255,255,255,0.6);
        }

          /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .course-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .pricing-card.featured {
                transform: none;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .tabs-nav {
                flex-direction: column;
                max-width: 300px;
            }

            .section-title h2 {
                font-size: 28px;
            }

        }

        /* Animations */
        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .scroll-animate.animate {
            opacity: 1;
            transform: translateY(0);
        }

