
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #bab6ff;
    /* background-color: #bfb9ff; */
    color: #000000;
    /* background-color: #a28efc; */
    line-height: 1.6;
}

.hero, .visa-eligibility, .visa-types, .process, .document-checklist {
    position: relative;
    margin-bottom: 40px; /* Add space for the separator */
  }
  
  .hero::after, .visa-eligibility::after, .visa-types::after, .process::after, .document-checklist::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #cccccc;
  }
  
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* .container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 0 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
} */
a {
    text-decoration: none;
    color: #33cc9e;
}

button {
    cursor: pointer;
    border: none;
    border-radius: 4px;
    font-weight: 600;
}

h1, h2, h3, h4 {
    color: #222;
}
/* Header Styles */
/* Base header styles */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #9089f7;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 80px;
    padding: 0;
    margin: 0;
  }
  .logo a{
    font-size: 1.4em;
    display: flex;
    color: #0a9722;
    text-align: center;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .contact {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #5648ce;
    color: #ffffff;
    border-radius: 8px;
    padding: 4px 16px;
  }
  .name{
    font-size: 1.4em;
    font-weight: bold;
    display: flex;
    color: #0a9722;
  }
  @media screen and (max-width: 768px) {
    .header-container {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 0;
      margin: 0;
    }
  
    .logo {
      margin: 0;
      padding: 0;
    }
  
    .logo img {
      height: 70px;
    }
  
    .header-actions {
      position: absolute;
      top: 5px; /* Slight spacing from top */
      right: 10px; /* Avoid touching screen edge */
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 6px;
      padding: 0;
      margin: 0;
    }
  
    .contact {
      white-space: nowrap;
      font-size: 0.85rem;
      padding: 3px 10px;
      border-radius: 6px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .logo img {
      height: 70px;
    }
  
    .contact i {
      font-size: 1rem;
    }
  
    /* Optional: Hide text, keep only icons */
    /*
    .contact span {
      display: none;
    }
    */
  }
  .sticky-nav {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 80px; /* Adjusted to account for header height */
    z-index: 999; /* Just below header's z-index */
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: center;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #333;
    display: block;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: #0066cc;
    background-color: rgba(0, 102, 204, 0.05);
}

@media screen and (max-width: 768px) {
    .sticky-nav {
        top: 70px; /* Adjust based on mobile header height */
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        padding: 10px 12px;
        font-size: 14px;
    }
}
/* Hero Section */
.hero {
    padding: 40px 0;
    /* background-color: #dce0fa; */
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.action-banner {
    background-color: #5648ce;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-text h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #222;
}

.recent-applications {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.avatars {
    display: flex;
    margin-right: 10px;
}

.avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

.recent-text {
    color: #666;
    font-size: 0.9em;
}

.signup-card {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.signup-card h3 {
    margin-bottom: 15px;
    font-size: 1.2em;
}

.phone-input {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.country-code {
    padding: 12px 15px;
    background-color: #f0f0f0;
    color: #555;
    font-weight: 500;
    border-right: 1px solid #ddd;
}

.phone-input input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    outline: none;
}

.signup-btn {
    background-color: #33cc9e;
    color: white;
    padding: 12px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.signup-btn i {
    margin-left: 5px;
}

.signup-btn:hover {
    background-color:  #5648ce;;
}

.stats {
    display: flex;
    gap: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.percentage {
    font-size: 1.8em;
    font-weight: 700;
    color: #0a9722;
}

.stat-text {
    color: #666;
    font-size: 0.9em;
}

/* .hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial {
    position: absolute;
    bottom: -20px;
    left: 220px;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    max-width: 80%;
}

.testimonial img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: none;
}

.testimonial p {
    font-size: 0.9em;
    color: #555;
} */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial {
    position: absolute;
    bottom: -20px;
    left: 220px; /* This keeps it where you want on desktop */
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    max-width: 80%;
}

.testimonial img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: none;
}

.testimonial p {
    font-size: 0.9em;
    color: #555;
}

/* Mobile View */
@media (max-width: 768px) {
    .testimonial {
        position: absolute;
        left: 12px;
        right: -200px;
        bottom: -50px;
        padding: 10px;
        max-width: 100%;
        font-size: 1.2rem;
        transform: none;
    }

    .testimonial img {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }

    .testimonial p {
        font-size: 0.75em;
    }
}

/* @media (max-width: 768px) {
    .testimonial {
        bottom: -60px; /
        max-width: 100%; 
        left: 80%;
        transform: translateX(-80%);
    }
} */
/* Navigation */
.main-nav {
    /* background-color: #fff; */
    /* background-color: #dce0fa; */
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav li a {
    display: block;
    padding: 15px 0;
    color: #555;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.main-nav li a:hover {
    color: #33cc9e;
}

.main-nav li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #33cc9e;
    transition: width 0.3s;
}

.main-nav li a:hover:after {
    width: 100%;
}

/* Visa Types Section */
 /* Additional styling to enhance the visa cards */
 .visa-types {
    padding: 40px 0;
    /* background-color: #e7fde7; */
    /* background-color: #dce0fa; */
}

.visa-types h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.visa-card {
    display: flex;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.visa-info {
    display: flex;
    flex: 3;
    padding: 20px;
}

.visa-type {
    min-width: 180px;
    padding-right: 20px;
    border-right: 1px solid #eee;
}

.visa-type .heading {
    color: #33cc9e;
    font-weight: 600;
    font-size: 1.1rem;
}

.visa-type h3 {
    margin: 8px 0;
    font-size: 1.4rem;
}

.visa-type p {
    color: #666;
    font-size: 0.9rem;
}

.visa-details {
    display: flex;
    flex-wrap: wrap;
    padding-left: 20px;
    flex: 1;
}

.detail {
    width: 50%;
    padding: 10px 15px;
}

.detail i {
    color: #33cc9e;
    margin-right: 8px;
}

.detail span {
    display: block;
    color: #777;
    font-size: 0.85rem;
    margin-top: 5px;
}

.detail strong {
    display: block;
    font-size: 1rem;
    margin-top: 3px;
}

.visa-action {
    background-color: #f8f9fa;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-width: 220px;
    border-left: 1px solid #eee;
}

.price {
    text-align: center;
}

.price p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.price h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #333;
}

.price small {
    display: block;
    color: #777;
    margin-top: 5px;
    font-size: 0.8rem;
}

.price a {
    display: inline-block;
    margin-top: 10px;
    color: #33cc9e;
    text-decoration: none;
    font-size: 0.9rem;
}
/* changed width to 0% by Suresh on 23 july 25*/
.start-btn {
    background-color: #33cc9e;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    /*width: 100%;*/
}

.start-btn:hover {
    background-color:  #2e9225;
}

.visa-card.business .visa-type .heading {
    color: #34a853;
}

.contact-expert {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-expert p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.callback-btn {
    /* background-color: #34a853; */
    background-color: #5648ce;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.callback-btn:hover {
    background-color: #2e8b57;
}

.callback-btn i {
    margin-right: 8px;
}

/* Styling for the appointment section */
.next-appointment {
    /* background-color: white; */
    /* background-color: #dce0fa; */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.appointment-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.appointment-info h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.appointment-date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #33cc9e;
}

/* Media queries for responsive design */
@media screen and (max-width: 992px) {
    .visa-info {
        flex-direction: column;
    }
    
    .visa-type {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-right: 0;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    .visa-details {
        padding-left: 0;
    }
}

@media screen and (max-width: 768px) {
    .visa-card {
        flex-direction: column;
    }
    
    .visa-action {
        border-left: none;
        border-top: 1px solid #eee;
    }
    
    .detail {
        width: 50%;
    }
}

@media screen and (max-width: 576px) {
    .detail {
        width: 100%;
    }
}
/* Process Section */
  /* Process Timeline Styling */
  .process {
    padding: 50px 0;
    /* background-color: #e8fff1; */
    /* background-color: #ccd2f8; */
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    /* background-color: #7480ec; */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.process-timeline h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
    font-size: 1.6rem;
}

.process-selector {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.process-selector span {
    font-weight: 600;
    color:  #5648ce;;
}

.process-steps {
    position: relative;
    padding-left: 30px;
}

.timeline-line {
    position: absolute;
    left: 15px;
    top: 25px;
    bottom: 25px;
    width: 2px;
    background-color: #e0e0e0;
}

.step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-icon {
    position: absolute;
    left: -40px;
    width: 30px;
    height: 30px;
    background-color:  #5648ce;;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 1;
}

.step-icon.date {
    background-color: #fbbc05;
}

.step-icon.result {
    background-color: #34a853;
}

.step-content {
    padding-left: 20px;
}

.step-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.step-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    text-align: left;
}

.step-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.step-content.result h3 {
    color: #34a853;
}

.highlight {
    color:  #5648ce;;
    font-weight: 600;
}

.step-date {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-top: 8px;
    font-style: italic;
}

.process-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    justify-content: center;
}

.badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge.secure {
    background-color: #e8f0fe;
    color:  #5648ce;;
}

.badge.experts {
    background-color: #e6f4ea;
    color: #34a853;
}

.badge.assistance {
    background-color: #fef7e0;
    color: #fbbc05;
}

.badge.updates {
    background-color: #fce8e6;
    color: #ea4335;
}

/* Media queries for responsive design */
@media screen and (max-width: 768px) {
    .process-timeline {
        padding: 20px 15px;
    }
    
    .process-steps {
        padding-left: 20px;
    }
    
    .step-icon {
        left: -30px;
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .process-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 576px) {
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .process-timeline h3 {
        font-size: 1.4rem;
    }
}
/* Document checklist styles */
.document-checklist {
    margin: 30px 0;
}

.document-checklist .container {
    max-width: 1000px;
    margin: 0 auto;
    /* background: white; */
    padding: 30px;
    background-color: #9089f7;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Dropdown styles */
.dropdown-container {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.dropdown-group {
    flex: 1;
    min-width: 250px;
}

.dropdown-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #030303;
}
.document-checklist h2 {
    text-align: center;
    margin-bottom: 30px;
    color: black;
    font-size: 24px;
}

.label-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* allows wrapping */
}
.label-container a{
    color: #1400cc;
    font-size: 1.2em;
    padding-bottom: 25px;
}


/* Mobile view adjustment */
@media (max-width: 768px) {
    .label-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .document-checklist h2 {
        order: -1; /* ensures heading comes first if in the same flex container */
        text-align: left;
        margin-bottom: 10px;
    }

    .label-container a {
        padding-bottom: 10px;
    }
}

select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-size: 16px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

select:focus {
    outline: none;
    border-color: #594ae2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

/* Checklist section styles */
.checklist-selector {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
    border: 1px solid #eee;
    display: none; /* Hide all selectors by default */
}

.checklist-selector p {
    margin: 0;
    color: #111111;
}

.checklist-selector span {
    font-weight: bold;
    color: #111111;
}

.checklist-selector:hover {
    background-color: #f0f0f0;
}

.active-selector {
    background-color: #e6f2ff;
    border-color: #b3d7ff;
}

.active-selector span {
    color: #1400cc;
}

.checklist-section {
    display: none;
    margin-top: 20px;
    border: 1px solid #45198d;
    border-radius: 6px;
    padding: 20px;
}

.table-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.checklist-column {
    flex: 1;
    min-width: 280px;
}

.checklist-column h4 {
    margin-bottom: 15px;
    padding-bottom: 8px;
    /* border-bottom: 2px solid #424242; */
    color: #000000;
}

.checklist-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #000000;
}

.checklist-item i {
    margin-right: 10px;
    color: #4c23e0;
    width: 20px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dropdown-container {
        flex-direction: column;
    }
    
    .table-layout {
        flex-direction: column;
    }
} 
/* Testimonials Section */
.testimonials {
    padding: 50px 0;
    background-color: #f7f7f7;
}

.rating {
    text-align: center;
    margin-bottom: 40px;
}

.stars {
    color: #ffc107;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.rating h2 {
    margin-bottom: 10px;
    font-size: 1.8em;
}

.rating p {
    color: #666;
}

.google {
    font-weight: bold;
    color: #33cc9e;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.user-info h4 {
    margin-bottom: 5px;
}

.testimonial-text {
    color: #555;
    font-size: 0.95em;
    line-height: 1.5;
}

.cta {
    text-align: center;
}

.cta p {
    color: #666;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.apply-btn {
    display: inline-block;
    background-color: #33cc9e;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.apply-btn:hover {
    background-color:  #5648ce;;
}

/* Info Cards Section */
.info-cards {
    padding: 50px 0;
}

.info-cards h2 {
    margin-bottom: 10px;
    font-size: 1.8em;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.info-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.info-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.card-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9em;
}

.read-more {
    color: #33cc9e;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    font-size: 0.8em;
}
.hidden-content {
    display: none;
}

.read-more {
    cursor: pointer;
    display: inline-block;
}

.read-more i {
    margin-left: 5px;
}
/* Related Countries Section */
.related-countries {
    padding: 50px 0;
    background-color: #f7f7f7;
}

.related-countries h2 {
    margin-bottom: 10px;
    font-size: 1.8em;
    text-align: center;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.country-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.country-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s;
}

.country-card:hover img {
    transform: scale(1.05);
}

.issuance {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
}
/* Next Appointment Section Styling */
.next-appointment {
    background-color: #f8f9fa;
    padding: 30px 0;
    margin-top: 20px;
}

.appointment-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.appointment-info h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.appointment-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
    font-size: 1.1rem;
}

.appointment-info p i {
    color: #33cc9e;
}

.appointment-date {
    font-weight: 500;
}

.appointment-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-slot {
    padding: 8px 16px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot:hover {
    background-color: #f0f7ff;
    border-color: #33cc9e;
}

.time-slot.selected {
    background-color: #33cc9e;
    color: white;
    border-color: #33cc9e;
}

.confirm-btn {
    background-color: #33cc9e;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    align-self: flex-end;
}

.confirm-btn:hover {
    background-color:  #5648ce;;
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* Media query for responsive behavior */
@media screen and (max-width: 768px) {
    .appointment-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .appointment-actions {
        width: 100%;
    }
    
    .confirm-btn {
        align-self: center;
        width: 100%;
    }
}

/* For very small screens */
@media screen and (max-width: 480px) {
    .time-slots {
        justify-content: center;
    }
    
    .time-slot {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .appointment-info h2 {
        font-size: 1.5rem;
    }
}
/* Visa Eligibility Section Styling */
.visa-eligibility {
    /* background-color: #e3fdeb; */
    background-color: #bab6ff;
    padding: 40px 0;
    text-align: center;
}

.eligibility-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.eligibility-content {
    /* background-color: white; */
    background-color: #958afd;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.eligibility-content h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 600;
}

.eligibility-content p {
    color: #faf0f0;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.check-btn {
    background-color: #19ac51cc;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.check-btn:hover {
    background-color: #14974f;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

/* Media query for responsive behavior */
@media screen and (max-width: 768px) {
    .eligibility-content {
        padding: 25px 20px;
    }
    
    .eligibility-content h2 {
        font-size: 1.6rem;
    }
}

/* For very small screens */
@media screen and (max-width: 480px) {
    .eligibility-content h2 {
        font-size: 1.4rem;
    }
    
    .eligibility-content p {
        font-size: 1rem;
    }
    
    .check-btn {
        padding: 10px 24px;
        width: 100%;
        font-size: 1rem;
    }
}
/* FAQ Section */
.faq {
    padding: 50px 0;
}

.faq h2 {
    margin-bottom: 30px;
    font-size: 1.8em;
    text-align: center;
}

.faq-list {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1em;
    font-weight: 500;
}

.faq-question i {
    color: #33cc9e;
}

/* Footer */
/* Footer */
footer {
    /* background-color:#001b44;; */
    /* background-color: #f5f5f5; */
    background-color: #9089f7;
    padding: 50px 0 30px;
    color: #000000;
    border-top: 1px solid #f0f0f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    /* color: #333; */
    color: antiquewhite;
}

.address p {
    font-size: 14px;
    /* color: #666; */
    color: #e4f0c2;
    margin-bottom: 15px;
}

.address p i {
    color: #f44336;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #5f47e4;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
}

.footer-col ul li {
    margin-bottom: 12px;
    list-style-type: none; 
}

.footer-col ul li a {
    font-size: 14px;
    /* color: #666; */
    color: #f5f5f5;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #e4f0c2;
}

.footer-countries h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    /* color: #333; */
    color: #f5f5f5;
}

.country-links {
    font-size: 14px;
    /* color: #666; */
    color: #e0e0e0;
    line-height: 2;
}

.country-links a {
    /* color: #666; */
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.country-links a:hover {
    color: #e9f5cc;
}
.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}
/* Media queries for responsive design */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-links {
        justify-content: space-between;
    }
    
    .link-group {
        flex: 0 0 45%;
    }
}

@media screen and (max-width: 576px) {
    .footer-links {
        flex-direction: column;
    }
    
    .link-group {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .link-group:last-child {
        margin-bottom: 0;
    }
    
    .link-group h4 {
        text-align: center;
    }
    
    .link-group h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .link-group ul {
        text-align: center;
    }
    
    .link-group ul li a {
        justify-content: center;
    }
}
/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .visa-card {
        flex-direction: column;
    }
    
    .visa-action {
        border-left: none;
        border-top: 1px solid #eee;
        margin-left: 0;
        padding-left: 0;
        padding-top: 20px;
        margin-top: 20px;
        width: 100%;
    }
    
    .checklist-item.status {
        width: calc(33.33% - 10px);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-expert {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .expert-avatars {
        justify-content: center;
    }
    
    .detail {
        width: calc(50% - 10px);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .country-selector {
        width: 100%;
        justify-content: center;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .checklist-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .checklist-item.status {
        width: 100%;
    }
    
    .testimonial {
        left: 50%;
        transform: translateX(-50%);
    }
}