:root {
    --primary: #a33de2;
    --secondary: #FFA500;
    --light: #f8f9fa;
    --dark: #343a40;
    --gray: #6c757d;
}

@media (max-width: 480px) {
    body{
        overflow-x: hidden;
    }
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    overflow-x: hidden;
}
/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(163, 61, 226, 0.9), rgba(255, 165, 0, 0.9));
    z-index: -2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-500px) translateX(100px) scale(0);
        opacity: 0;
    }
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23FFFFFF'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23FFFFFF'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23FFFFFF'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.2s;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.4s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.6s;
}

.hero-btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.hero-btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background-color: white;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-image {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s forwards 0.8s;
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.hero-features {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    width: 280px;
    animation: float-slow 3s infinite alternate ease-in-out;
}

@keyframes float-slow {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-15px);
    }
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-text h3 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-text p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

.hero-stats {
    position: absolute;
    top: -70px;
    right: -20px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float-slow 3s infinite alternate-reverse ease-in-out;
    animation-delay: 1s;
}

.stats-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stats-items {
    display: flex;
    gap: 15px;
}

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

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.75rem;
    color: black;
}



@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
      padding: 0 40px;
      gap: 30px;
    }
  }
  
  @media (max-width: 992px) {
    .hero-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .hero-buttons {
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .hero-image {
      transform: translateX(0);
      animation: fadeInUp 0.8s forwards 1s;
      margin-top: 30px;
    }
  
    .hero-features,
    .hero-stats {
      position: static;
      margin: 20px auto 0;
      animation: none;
    }
  }
  
  @media (max-width: 768px) {
    .hero{
        height: 135vh;
    }
    .hero-text h1 {
      font-size: 2.5rem;
    }
  
    .hero-text p {
      font-size: 1rem;
    }
  
    .hero-btn {
      padding: 12px 24px;
      font-size: 0.95rem;
    }
  
    .feature-icon {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
    }
  
    .stats-title {
      font-size: 0.95rem;
    }
  
    .stat-number {
      font-size: 1rem;
    }
  
    .stat-label {
      font-size: 0.7rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-text h1 {
      font-size: 2rem;
    }
  
    .hero-text p {
      font-size: 0.95rem;
    }
  
    .hero-buttons {
      flex-direction: column;
      gap: 15px;
    }
  
    .hero-btn {
      width: 100%;
      justify-content: center;
    }
  
    .hero-wave {
      height: 80px;
    }
  }
  






.services {
    padding: 60px 100px 60px 100px;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-title p {
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.service-icon i {
    font-size: 2rem;
    color: var(--primary);
}

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

.service-card p {
    color: #777;
}

.service-card {
    position: relative;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -150%;
    left: 100%;
    width: 250%;
    height: 250%;
    background: linear-gradient(135deg, rgba(163, 61, 226, 0.05), rgba(163, 61, 226, 0.2));
    transform: translate(0, 0) rotate(45deg);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

.service-card:hover::before {
    animation: diagonalSweep 2s ease-out forwards;
    opacity: 1;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(163, 61, 226, 0.1);
}

@keyframes diagonalSweep {
    0% {
        transform: translate(0%, 0%) rotate(45deg);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translate(-150%, 150%) rotate(45deg);
        opacity: 0;
    }
}

.service-card > * {
    position: relative;
    z-index: 1;
}



/* Responsive CSS for Services Section */
@media (max-width: 1024px) {
    .services {
        padding: 50px 60px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 40px 30px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 30px 20px;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 1.2rem;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }
}

.assignment-benefits {
    padding: 50px 20px;
    text-align: center;
    overflow: hidden;
    background-color: white;
  }
  
  .benefits-header {
    margin-bottom: 40px;
  }
  
  .benefits-title {
    font-size: 2.5rem;
    color: #a33de2;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
  }
  
  .benefits-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #FFA500;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  
  .benefits-subtitle {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
  }
  
  .benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  
 
  
  .icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #a33de2, #FFA500);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  
  
  .benefit-title {
    font-size: 1.3rem;
    color: #a33de2;
    margin-bottom: 15px;
  }
  
  .benefit-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }


   
  @media (max-width: 768px) {
    .benefits-title{
        font-size: 1.2rem;
    }
    .benefits-subtitle{
        font-size: 0.8rem;
    }
}
.benefit-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1 1 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition:  0.6s ease;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
  }
  
  .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(163, 61, 226, 0.12) 50%,
      rgba(255, 165, 0, 0.12) 100%
    );
    transform: skewX(-20deg);
    transition: all 0.5s ease;
    z-index: 0;
  }
  
  .benefit-card:hover::before {
    left: 100%;
    transition: all 0.6s ease-in-out;
  }
  
  .benefit-card:hover {
    transform: translateY(-10px) scale(1.03) !important;
    box-shadow: 0 20px 40px rgba(163, 61, 226, 0.15);
    border:2px solid #a33de2
  }
  
  .benefit-card > * {
    position: relative;
    z-index: 2;
  }
  




  .country-section-container {
    padding: 40px 100px;
    margin: 0 auto;
    background: white;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

.country-section-title {
    text-align: center;
    padding: 30px 0;
    color: #a33de2;
    font-size: 2.5rem;
    font-weight: bold;
}

.country-nav-wrapper {
    display: flex;
    overflow-x: auto;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ddd;
    border-radius: 10px;
}

.country-nav-item {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    cursor: pointer;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    color: #555;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.country-nav-item.country-active {
    background-color: white;
    color: #2c3e50;
    border-bottom: 3px solid #a33de2;
}

.country-nav-item:hover:not(.country-active) {
    background-color: #e5e5e5;
}

.country-nav-item img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.country-panel {
    display: none;
    padding: 30px;
    animation: countryFadeIn 0.5s ease;
}

.country-panel.country-active {
    display: block;
}

@keyframes countryFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.country-services-block {
    margin-bottom: 25px;
}

.country-services-block h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 22px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
}

.country-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.country-service-box {
    background-color: #f9f9f9;
    padding: 12px 15px;
    border-radius: 6px;
    border-left: 3px solid #a33de2;
    transition: all 0.3s ease;
}

.country-service-box:hover {
    background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.05));
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.country-feedback-block {
    margin-bottom: 25px;
}

.country-feedback-block h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 22px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
}

.country-feedback-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
    border-left: 3px solid #a33de2;
}

.country-feedback-card p {
    font-style: italic;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.country-feedback-card .country-author {
    font-weight: bold;
    color: #333;
}

.country-promotions-block {
    margin-bottom: 20px;
}

.country-promotions-block h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 22px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
}

.country-promotion-banner {
    background: linear-gradient(135deg, #ff9966, #ff5e62);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-size: 18px;
}



/* Responsive Styles */
@media (max-width: 992px) {
    .country-section-container {
        padding: 30px 40px;
    }

    .country-nav-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .country-nav-item {
        flex-shrink: 0;
        padding: 12px 18px;
        font-size: 14px;
    }

    .country-nav-item img {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }

    .country-panel {
        padding: 20px;
    }

    .country-services-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .country-service-box {
        font-size: 14px;
        padding: 10px 12px;
    }

    .country-feedback-card {
        padding: 16px;
    }

    .country-promotion-banner {
        font-size: 16px;
        padding: 12px 15px;
    }
}

@media (max-width: 576px) {
    .country-section-title {
        font-size: 1.5rem;
        padding: 20px 0;
    }

    .country-nav-item {
        font-size: 13px;
        padding: 10px 14px;
    }

    .country-services-grid {
        grid-template-columns: 1fr;
    }

    .country-service-box,
    .country-promotion-banner,
    .country-feedback-card {
        font-size: 14px;
    }

    .country-service-box {
        padding: 10px;
    }

    .country-feedback-card {
        padding: 14px;
    }

    .country-promotion-banner {
        padding: 10px 12px;
    }
}





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

.support-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.support-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(163, 61, 226, 0.2);
}

.card-header {
    background: var(--primary);
    color: white;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 165, 0, 0.2);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.support-card:hover .card-header::before {
    transform: rotate(45deg) translateX(-20%) translateY(-20%);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
}

.card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.support-card:hover .card-icon {
    transform: rotate(360deg);
    color: var(--secondary);
}

.card-body {
    padding: 25px;
}

.service-list {
    list-style: none;
    margin-bottom: 20px;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #e1e1e1;
    display: flex;
    align-items: center;
}

.service-list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
    margin-right: 10px;
}

.card-footer {
    padding: 0 25px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
}

.btn {
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

/* Tabs Styling */
.as-tab-container {
    margin-bottom: 40px;
    padding: 0 100px;
}

.as-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 50px;
    background: white;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.as-tab-btn {
    padding: 12px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    transition: all 0.3s ease;
    border-radius: 50px;
    margin: 0 5px;
}

.as-tab-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(163, 61, 226, 0.3);
}

.as-tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
@media (max-width: 768px) {
    .as-tab-container {
        padding: 0 20px; 
    }

    .as-tab-btn {
        font-size: 0.9rem; 
        padding: 10px 20px; 
        margin-bottom: 10px; 
        width: 100%; 
        text-align: center; 
    }

    .as-tab-btn.active {
        width: 100%; 
    }
}

@media (max-width: 480px) {
    .as-tab-container {
        padding: 0 10px; 
    }

    .as-tab-btn {
        font-size: 0.85rem; 
        padding: 8px 15px; 
    }
}




/* Base responsive styles */
:root {
    --primary-color: #5e60ce;
    --secondary-color: #6930c3;
    --accent-color: #48bfe3;
    --text-color: #2b2d42;
    --light-text: #8d99ae;
    --background: #f8f9fa;
    --card-bg: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 16px;
}

/* Responsive container */
.testimonial-container {
    max-width: 1400px;
    width: 100%;
    margin: 3rem auto;
    padding: 0 5%;
    box-sizing: border-box;
}

/* Responsive section header */
.testimonial-section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding: 0 20px;
}

.testimonial-section-header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background-color: white;
    -webkit-background-clip: text;
    background-clip: text;
    color: #a33de2;
    display: inline-block;
    letter-spacing: -0.5px;
}

.testimonial-section-header p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: black;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive testimonials container */
.testimonials-container {
    display: flex;
    gap: 2rem;
    position: relative;
    flex-direction: row;
}

/* Main testimonial area */
.testimonial-main {
    flex: 1;
    position: relative;
    min-height: 500px;
}

.testimonial-card {
    padding: clamp(1.5rem, 5vw, 2.5rem);
    border-radius: var(--border-radius);
    background: var(--card-bg);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    transition: var(--transition);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Testimonial header */
.testimonial-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
    gap: 1rem;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box, #a33de2 border-box;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
    min-width: 200px;
}

.testimonial-info h3 {
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #a33de2;
}

.testimonial-course {
    font-size: clamp(0.9rem, 3vw, 1rem);
    color: var(--light-text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.testimonial-outcome {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    background-color: #a33de2;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(105, 48, 195, 0.2);
}

.testimonial-rating {
    position: relative;
    color: #FFA500;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-top: 0.5rem;
}

/* Testimonial content */
.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
    font-size: clamp(1rem, 3vw, 1.15rem);
    line-height: 1.8;
    color: var(--text-color);
}

/* Testimonial list */
.testimonial-list {
    width: 350px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.05);
}

.testimonial-list::-webkit-scrollbar {
    width: 6px;
}

.testimonial-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.testimonial-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.testimonial-list-item {
    padding: 1.2rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border-left: 4px solid transparent;
    display: flex;
    align-items: center;
    position: relative;
}

.testimonial-list-item:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-3px);
}

.testimonial-list-item.active {
    border-left: 4px solid #a33de2;
    background: linear-gradient(to right, rgba(94, 96, 206, 0.05), transparent);
}

.list-item-image {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, #a33de2 border-box;
}

.list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-item-info {
    flex: 1;
}

.list-item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--text-color);
}

.list-item-course {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-bottom: 0.2rem;
}

.list-item-rating {
    color: #FFA500;
    font-size: 0.8rem;
}

/* Navigation dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 10px;
    display: none;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(105, 48, 195, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: #a33de2;
    transform: scale(1.2);
}

/* Navigation buttons */
.testimonial-nav {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
    z-index: 10;
    display: none;
}

.testimonial-nav-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.testimonial-nav-button:hover {
    background: #a33de2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(105, 48, 195, 0.3);
}

/* Mobile Tabs (Hidden by default) */
.mobile-tabs-container {
    display: none;
    width: 100%;
    overflow-x: auto;
    margin-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    position: relative;
    top: 700px;
}

.mobile-tabs-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.mobile-tabs {
    display: flex;
    min-width: max-content;
    gap: 0.5rem;
}

.mobile-tab {
    padding: 0.8rem 1.2rem;
    background: var(--card-bg);
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.mobile-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-tab.active {
    border-color: #a33de2;
    background-color: rgba(163, 61, 226, 0.05);
}

.mobile-tab-image {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, #a33de2 border-box;
}

.mobile-tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-tab-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Animation styles */
@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-out {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}

.fade-in {
    animation: fade-in 0.5s forwards;
}

.fade-out {
    animation: fade-out 0.3s forwards;
}

/* Media queries */
@media screen and (max-width: 1200px) {
    .testimonial-container {
        padding: 0 4%;
    }
}

@media screen and (max-width: 992px) {
    /* Show mobile tabs */
    .mobile-tabs-container {
        display: block;
        order: 1;
        padding-left: 70px;
    }
    
    .testimonials-container {
        flex-direction: column;
    }
    
    .testimonial-list {
        display: none; /* Hide the sidebar list on mobile */
    }
    
    .testimonial-main {
        order: 2;
        margin-bottom: 2rem;
    }
    
    .testimonial-card {
        position: absolute;
        height: auto;
        min-height: auto;
    }
    
    .testimonial-header {
        flex-wrap: wrap;
    }
    
    .testimonial-rating {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .testimonial-container {
        padding: 0 20px 60px 20px;
        margin: 2rem auto;
    }
    
    .testimonial-section-header::after {
        width: 60px;
    }
    
    .testimonial-main {
        min-height: 450px;
    }
    
    .testimonial-header {
        margin-bottom: 1.5rem;
    }
    
    .testimonial-info {
        flex: 100%;
        margin-top: 0.5rem;
    }
    
    .mobile-tabs {
        gap: 0.4rem;
    }
    
    .mobile-tab {
        padding: 0.7rem 1rem;
    }
}

@media screen and (max-width: 576px) {
    .testimonial-section-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-section-header p {
        font-size: 0.9rem;
    }
    
    .testimonial-image {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .testimonial-main {
        min-height: auto;
    }
    
    .testimonial-nav {
        bottom: -50px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .mobile-tab {
        padding: 0.6rem 0.8rem;
    }
    
    .mobile-tab-image {
        width: 25px;
        height: 25px;
        min-width: 25px;
    }
    
    .mobile-tab-name {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .testimonial-image {
        margin: 0 auto 1rem auto;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-info {
        text-align: center;
    }
    
    .testimonial-course {
        justify-content: center;
    }
    
    .testimonial-rating {
        margin: 1rem auto 0 auto;
    }
    
    .mobile-tab-name {
        display: none; /* Hide names on very small screens, just show images */
    }
    
    .mobile-tab {
        padding: 0.5rem;
    }
    
    .mobile-tab-image {
        margin: 0;
        border-width: 2px;
    }
}





/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin: 30px 100px 90px 100px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/cn.webp') center/cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-text {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.primary-btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
    .cta-section {
        margin: 30px 40px 70px 40px;
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    .cta-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        margin: 20px 20px 60px 20px;
        padding: 30px 15px;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

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

@media (max-width: 480px) {
    .cta-section {
        margin: 780px 10px 50px 10px;
        padding: 25px 10px;
    }

    .cta-title {
        font-size: 1.4rem;
    }

    .cta-text {
        font-size: 0.9rem;
    }

    .cta-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}




/* Country cards section */
.countries-container {
    margin-bottom: 60px;
    padding: 50px 100px;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(236px, 1fr));
    gap: 30px;
}

.country-card {
    position: relative;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.country-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(163, 61, 226, 0.3);
}

.country-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.country-card:hover .country-bg {
    transform: scale(1.1);
}

.country-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.country-card:hover .country-overlay {
    background: linear-gradient(to top, rgba(163, 61, 226, 0.9), transparent);
}

.country-title {
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 600;
}

.country-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
}

.country-info {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.country-card:hover .country-info {
    max-height: 100px;
}

@media (max-width: 1024px) {
    .countries-container {
        padding: 40px 60px;
    }

    .support-card {
        flex: 1 1 calc(50% - 20px);
    }

    .card-body ul.service-list li {
        font-size: 0.95rem;
    }

    .card-footer .price {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .countries-container {
        padding: 30px 30px;
    }

    .support-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .support-card {
        width: 100%;
    }

    .card-header h3 {
        font-size: 1.1rem;
    }

    .card-icon {
        font-size: 1.5rem;
    }

    .card-body ul.service-list li {
        font-size: 0.9rem;
    }

    .card-body p {
        font-size: 0.9rem;
    }

    .card-footer .price {
        font-size: 0.9rem;
    }

    .tab-btn {
        padding: 8px 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .countries-container {
        padding: 20px 15px;
    }

    .section-title h2 {
        font-size: 1.4rem;
        text-align: center;
    }

    .section-title p {
        font-size: 0.9rem;
        text-align: center;
    }

    .tab-container {
        padding: 0 10px;
    }

    .tabs {
        display: flex;
        flex-direction: row;
        gap: 10px;
        margin-bottom: 20px;
    }

    .tab-btn {
        width: 33%;
        text-align: center;
        padding: 10px;
        font-size: 0.95rem;
    }

    .support-card {
        width: 100%;
    }

    .card-header h3 {
        font-size: 1rem;
    }

    .card-body ul.service-list li {
        font-size: 0.85rem;
    }

    .card-body p {
        font-size: 0.85rem;
    }

    .card-footer .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .card-footer .price {
        font-size: 0.85rem;
    }
}




        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0px 100px;
        }

        .contact-section {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin: 40px 0;
        }

        .section-header {
            background-color: #a33de2;
            color: #fff;
            padding: 20px;
            text-align: center;
        }

        .section-header h2 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .section-header p {
            font-size: 16px;
            opacity: 0.9;
        }

        .contact-content {
            display: flex;
            flex-wrap: wrap;
        }

        .contact-form-column {
            flex: 1;
            padding: 30px;
            min-width: 300px;
        }

        .info-column {
            flex: 1;
            padding: 30px;
            background-color: #fdf6eb;
            min-width: 300px;
            border-left: 2px solid #ffebd6;
        }

        .form-group {
            position: relative;
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #a33de2;
        }
        select#assignment {
            appearance: none; 
            -webkit-appearance: none;
            -moz-appearance: none;
            background: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%225%22%20viewBox%3D%220%200%2010%205%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0%200l5%205%205-5z%22%20fill%3D%22%23333%22/%3E%3C/svg%3E") no-repeat right 1rem center;
            background-color: #fff;
            padding: 0.5rem 2rem 0.5rem 1rem; 
            cursor: pointer;
          }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #e1e1e1;
            border-radius: 4px;
            font-size: 16px;
            transition: border 0.3s;
        }

        input:focus, textarea:focus, select:focus {
            border-color: #a33de2;
            outline: none;
            box-shadow: 0 0 5px rgba(163, 61, 226, 0.2);
        }

        textarea {
            min-height: 120px;
            resize: vertical;
        }

        .file-upload {
            border: 1px dashed #d9a9f3;
            padding: 20px;
            text-align: center;
            border-radius: 4px;
            cursor: pointer;
            margin-bottom: 15px;
            transition: background-color 0.3s;
        }

        .file-upload:hover {
            background-color: #f9f0ff;
        }

        .file-upload p {
            margin-top: 10px;
            color: #777;
        }

        .submit-btn {
            background-color: #FFA500;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .submit-btn:hover {
            background-color: #ff8c00;
        }

        .captcha-box {
            background-color: #f9f0ff;
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 20px;
            text-align: center;
            border: 1px solid #e6d0f9;
        }

        .faq-section h3 {
            margin-bottom: 20px;
            color: #a33de2;
            font-size: 22px;
        }

        .faq-item {
            margin-bottom: 20px;
        }

        .faq-question {
            font-weight: 600;
            color: #FFA500;
            margin-bottom: 8px;
        }

        .faq-answer {
            color: #555;
        }

        .qr-section {
            margin-top: 40px;
            text-align: center;
        }

        .qr-section h3 {
            margin-bottom: 15px;
            color: #a33de2;
        }

        .qr-code {
            width: 180px;
            height: 180px;
            background-color: #fff;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #FFA500;
        }

        .qr-code img {
            max-width: 100%;
        }

        .qr-instruction {
            color: #555;
            margin-bottom: 5px;
        }

        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #a33de2;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(163, 61, 226, 0.3);
            cursor: pointer;
            z-index: 999;
            transition: transform 0.3s;
        }

        .floating-whatsapp:hover {
            transform: scale(1.1);
        }

        .floating-whatsapp svg {
            font-size: 28px;
        }

        .live-chat {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background-color: #FFA500;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            box-shadow: 0 4px 10px rgba(255, 165, 0, 0.3);
            cursor: pointer;
            z-index: 999;
            transition: transform 0.3s;
            width: 60px;
            height: 60px;
        }

        .live-chat svg{
            position: relative;
            top: 5px;
            font-size: 28px;
            left:-3px;
        }

        .live-chat:hover {
            transform: scale(1.05);
        }

        .alternate-contact {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e6d0f9;
        }

        .alternate-contact h4 {
            margin-bottom: 15px;
            color: #a33de2;
        }

        .contact-method {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: #FFA500;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-info h5 {
            margin-bottom: 5px;
            color: #a33de2;
        }

        .contact-info p {
            color: #555;
        }

        @media (max-width: 992px) {
            .contact-container {
                padding: 0 40px;
            }
        
            .contact-content {
                flex-direction: column;
            }
        
            .contact-form-column, .info-column {
                padding: 20px;
                border-left: none;
            }
        
            .qr-code {
                width: 140px;
                height: 140px;
            }
        }
        
        @media (max-width: 768px) {
            .contact-container {
                padding: 0 20px;
            }
        
            .section-header h2 {
                font-size: 24px;
            }
        
            .section-header p {
                font-size: 14px;
            }
        
            .faq-section h3,
            .qr-section h3,
            .alternate-contact h4 {
                font-size: 20px;
            }
        
            .form-group label {
                font-size: 14px;
            }
        
            input, textarea, select {
                font-size: 14px;
                padding: 10px;
            }
        
            .submit-btn {
                font-size: 14px;
                padding: 10px 24px;
            }
        
            .qr-instruction {
                font-size: 14px;
            }
        
            .floating-whatsapp,
            .live-chat {
                width: 50px;
                height: 50px;
                font-size: 22px;
                padding: 0;
            }

            .live-chat-text{
                display: none;
            }
        
            

            .live-chat svg {
                position: relative;
                top: 11px;
                left: 11px;
            }
        }
        
        @media (max-width: 480px) {
            .qr-code {
                width: 120px;
                height: 120px;
            }
        
            .contact-icon {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
        
            .contact-info h5 {
                font-size: 15px;
            }
        
            .contact-info p {
                font-size: 14px;
            }
        
            .faq-question {
                font-size: 15px;
            }
        
            .faq-answer {
                font-size: 14px;
            }
        
            .floating-whatsapp i,
            .live-chat i {
                font-size: 20px;
            }

            .live-chat{
                bottom: 15px;
                left: 8px;
            }
            .floating-whatsapp{
                bottom: 15px;
                right: 15px;
            }
        }
        




        .footer {
            background-color: #f8f5ff;
            color: #444;
            padding: 60px 0 30px;
            border-top: 1px solid #e5d9ff;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

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

        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 30px;
            padding-right: 20px;
        }

        .footer-column h3 {
            color: #a33de2;
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #FFA500;
        }

        .footer-about p {
            margin-bottom: 15px;
            color: #555;
            font-size: 14px;
            line-height: 1.8;
        }

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

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

        .footer-links a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: #FFA500;
        }

        .footer-links a::before {
            content: '›';
            color: #FFA500;
            margin-right: 8px;
            font-size: 18px;
        }

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

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: #a33de2;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
            color: #fff;
            text-decoration: none;
        }

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

        .footer-divider {
            height: 1px;
            background: linear-gradient(to right, #a33de2, #FFA500);
            margin: 20px 0;
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-top: 30px;
        }

        .legal-links {
            display: flex;
            flex-wrap: wrap;
        }

        .legal-links a {
            color: #555;
            text-decoration: none;
            margin-right: 20px;
            font-size: 13px;
            transition: color 0.3s;
        }

        .legal-links a:hover {
            color: #a33de2;
        }

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

        .payment-icon {
            background-color: #fff;
            border-radius: 4px;
            padding: 5px 10px;
            margin-left: 10px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 30px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .payment-icon img {
            height: 100%;
        }

        .copyright {
            width: 100%;
            text-align: center;
            margin-top: 30px;
            color: #666;
            font-size: 13px;
        }

        .highlight {
            color: #FFA500;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .contact-icon {
            width: 24px;
            height: 24px;
            background-color: #f0e6ff;
            color: #a33de2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
        }

        @media (max-width: 768px) {
            .footer-top {
                flex-direction: column;
            }
            
            .footer-column {
                width: 100%;
                padding-right: 0;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .legal-links, .payment-methods {
                justify-content: center;
                margin: 15px 0;
            }
            
            .legal-links a {
                margin: 5px 10px;
            }
            
            .payment-icon {
                margin: 5px;
            }
        }



        .header {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-icon {
           height: 40px;
        }

        .logo-icon img{
            width: 170px;
            height: 80px;
            position: relative;
            top: -16px;
        }

        .logo-text {
            font-size: 22px;
            font-weight: 700;
            color: #333;
        }

        .logo-text span {
            color: #a33de2;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 25px;
            position: relative;
            top: 7px;
            left: -25px;
        }

        .nav-menu a {
            color: #444;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            padding: 5px 0;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover {
            color: #a33de2;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #FFA500;
            left: 0;
            bottom: -2px;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after, 
        .nav-menu .active a::after {
            width: 100%;
        }

       

      
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 24px;
            color: #333;
        }

        .close-menu {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 24px;
            color: #333;
            position: absolute;
            top: 20px;
            right: 20px;
        }

       
       
        /* Mobile styles */
        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 350px;
                height: 100vh;
                background: #fff;
                flex-direction: column;
                padding: 60px 20px 30px;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease;
                z-index: 1001;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                margin: 15px 0;
                left: 0;
            }

            .mobile-menu-btn, .close-menu {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .whatsapp-btn {
                display: none;
            }

            .header-container {
                padding: 12px 20px;
            }

            .logo-text {
                font-size: 18px;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
        }

       


       
            /* Modal Styles with unique class names */
            .hero-modal {
                display: none;
                position: fixed;
                z-index: 1000;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                overflow: auto;
                background-color: rgba(0,0,0,0.5);
            }
            
            .hero-modal-content {
                background-color: #fff;
                margin: 5% auto;
                padding: 30px;
                border-radius: 8px;
                box-shadow: 0 4px 20px rgba(0,0,0,0.2);
                width: 90%;
                max-width: 700px;
                max-height: 90vh;
                overflow-y: auto;
                position: relative;
                animation: heroModalFadeIn 0.3s ease;
            }
            
            @keyframes heroModalFadeIn {
                from {
                    opacity: 0;
                    transform: translateY(-20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            .hero-close-modal {
                position: absolute;
                top: 15px;
                right: 20px;
                font-size: 30px;
                font-weight: bold;
                color: #aaa;
                cursor: pointer;
                transition: color 0.2s ease;
            }
            
            .hero-close-modal:hover {
                color: #333;
            }
            
            #hero-form-title {
                margin-top: 0;
                margin-bottom: 25px;
                color: #333;
                border-bottom: 2px solid #f0f0f0;
                padding-bottom: 15px;
                font-size: 24px;
            }
            
            /* Form Styles with unique class names */
            .hero-form-group {
                margin-bottom: 20px;
            }
            
            .hero-form-group label {
                display: block;
                margin-bottom: 5px;
                font-weight: 600;
                color: #555;
            }
            
            .hero-form-group input[type="text"],
            .hero-form-group input[type="email"],
            .hero-form-group select,
            .hero-form-group textarea {
                width: 100%;
                padding: 12px;
                border: 1px solid #ddd;
                border-radius: 4px;
                font-size: 16px;
                transition: border-color 0.3s ease;
            }
            
            .hero-form-group input[type="text"]:focus,
            .hero-form-group input[type="email"]:focus,
            .hero-form-group select:focus,
            .hero-form-group textarea:focus {
                border-color: #4CAF50;
                outline: none;
                box-shadow: 0 0 5px rgba(76, 175, 80, 0.2);
            }
            
            .hero-form-group input[type="date"] {
                width: 100%;
                padding: 10px 12px;
                border: 1px solid #ddd;
                border-radius: 4px;
                font-size: 16px;
            }
            
            .hero-form-group textarea {
                resize: vertical;
                min-height: 100px;
            }
            
            .hero-upload-area {
                border: 2px dashed #ddd;
                border-radius: 4px;
                padding: 30px;
                text-align: center;
                color: #777;
                position: relative;
                margin-bottom: 10px;
                transition: all 0.3s ease;
                background-color: #f9f9f9;
            }
            
            .hero-upload-area:hover {
                border-color: #a33de2;
                background-color: #f5f5f5;
            }
            
            .hero-upload-area input[type="file"] {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                cursor: pointer;
            }
            
            #hero-file-name {
                font-size: 14px;
                color: #555;
                margin-top: 5px;
                padding: 5px 0;
            }
            
            .hero-captcha-container {
                display: flex;
                align-items: center;
                gap: 10px;
                background-color: #f9f9f9;
                padding: 10px;
                border-radius: 4px;
                border: 1px solid #ddd;
            }
            
            .hero-captcha-container input[type="checkbox"] {
                width: 20px;
                height: 20px;
                cursor: pointer;
            }
            
            .hero-submit-button {
                background-color: #a33de2;
                color: white;
                border: none;
                padding: 14px 25px;
                border-radius: 4px;
                font-size: 16px;
                font-weight: 600;
                cursor: pointer;
                transition: background-color 0.6s ease;
                width: 100%;
                margin-top: 10px;
                text-transform: uppercase;
                letter-spacing: 1px;
            }
            
            .hero-submit-button:hover {
                background-color: white;
                box-shadow: 0 4px 8px rgba(0,0,0,0.1);
                color: #a33de2;
                border:2px solid #a33de2;
            }
            
            /* Responsive adjustments */
            @media (max-width: 768px) {
                .hero-modal-content {
                    padding: 20px;
                    margin: 10% auto;
                    width: 95%;
                }
                
                #hero-form-title {
                    font-size: 20px;
                }
                
                .hero-upload-area {
                    padding: 20px;
                }
            }





.modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.5);
    }
    
    .modal-content {
        background-color: #fff;
        margin: 5% auto;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        width: 90%;
        max-width: 700px;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
    }
    
    .close-modal {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 30px;
        font-weight: bold;
        color: #aaa;
        cursor: pointer;
    }
    
    .close-modal:hover {
        color: #333;
    }
    
    #service-form-title {
        margin-top: 0;
        margin-bottom: 25px;
        color: #333;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 15px;
    }
    
   
    .form-group {
        margin-bottom: 20px;
    }
    
    label {
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
        color: #555;
        text-align:left;
    }
    
    input[type="text"],
    input[type="email"],
    select,
    textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
    }
    
    input[type="date"] {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
    }
    
    textarea {
        resize: vertical;
        min-height: 100px;
    }
    
    .upload-area {
        border: 2px dashed #ddd;
        border-radius: 4px;
        padding: 3rem;
        text-align: center;
        color: #777;
        position: relative;
        margin-bottom: 10px;
        transition: all 0.3s ease;
    }
    
    .upload-area:hover {
        border-color: #a33de2;
        background-color: #f0f0f0;
    }
    
    .upload-area input[type="file"] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }
    
    #file-name {
        font-size: 14px;
        color: #555;
        margin-top: 5px;
    }
    
    .captcha-container {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .captcha-container input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }
    
    .submit-button {
        background-color: #a33de2;
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 4px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.6s ease;
        width: 100%;
        margin-top: 10px;
    }
    
    .submit-button:hover {
        background-color: white;
        color: #a33de2;
        border: 2px solid #a33de2;
    }

 

    /* Modal Styles */
.assignmentForm-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Modal Content */
.assignmentForm-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    border-radius: 12px;
    max-width: 700px;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: auto;
}

/* Close Button */
.assignmentForm-close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
}

.assignmentForm-close-modal:hover,
.assignmentForm-close-modal:focus {
    color: #000;
}

/* Form Styling */
#assignmentFormRequirementForm h3,
.assignmentForm-modal-content h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
}

.assignmentForm-form-group {
    margin-bottom: 15px;
}

.assignmentForm-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
}

.assignmentForm-form-group input,
.assignmentForm-form-group select,
.assignmentForm-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.assignmentForm-form-group input:focus,
.assignmentForm-form-group select:focus,
.assignmentForm-form-group textarea:focus {
    border-color: #4CAF50;
    outline: none;
}

/* File Upload */
.assignmentForm-file-upload {
    margin-top: 20px;
}

.assignmentForm-upload-area {
    border: 2px dashed #ddd;
    border-radius: 6px;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.assignmentForm-upload-area:hover {
    background-color: #f0f0f0;
    border-color: #a33de2;
}

.assignmentForm-upload-area input[type="file"] {
    display: none;
}

#assignmentForm-file-name {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

/* Captcha Style */
.assignmentForm-captcha-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.assignmentForm-captcha input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

/* Submit Button */
.assignmentForm-submit-button {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color:#a33de2;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.assignmentForm-submit-button:hover {
    background-color: white;
    color: #a33de2;
    border: 2px solid #a33de2;
}

/* Responsive Design */
@media (max-width: 480px) {
    .assignmentForm-modal-content {
        padding: 20px;
    }

    .assignmentForm-form-group input,
    .assignmentForm-form-group select,
    .assignmentForm-form-group textarea {
        font-size: 15px;
    }

    .assignmentForm-submit-button {
        font-size: 15px;
    }
}





.as-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.as-modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.as-close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.as-modal-content label {
  display: block;
  margin-top: 5px;
  font-weight: 600;
}

.as-modal-content input[type="text"],
.as-modal-content input[type="email"],
.as-modal-content input[type="date"],
.as-modal-content textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.as-modal-content textarea {
  resize: vertical;
}

.as-file-drop {
  border: 2px dashed #ccc;
  padding: 3rem;
  text-align: center;
  border-radius: 8px;
  margin-top: 0.5rem;
  transition: 0.6s ease;
}

.as-file-drop input[type="file"] {
  display: none;
}

.as-file-drop:hover {
  background-color: #f5f5f5;
  border-color: #a33de2;
  cursor: pointer;
}


.as-captcha {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.as-submit-btn {
  background:#a33de2;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1.5rem;
  width: 100%;
  font-size:16px;
}

.as-submit-btn:hover {
  background: white;
  color: #a33de2;
  border: 2px solid #a33de2;
}


