/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #3d00cc;
    color: white;
}

.btn-secondary {
    background-color: #003366;
    color: white;
    border: 1px solid #e0e0e0;
}

.btn:hover {
    opacity: 0.9;
}

/* 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;
    }
    */
  }
/* Visa Eligibility Section Styling */
.visa-eligibility {
    /* background-color: #e3fdeb; */
    background-color: white;
    padding: 40px 0;
    text-align: center;
}

.eligibility-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.eligibility-content {
    background-color: rgb(230, 222, 253);
    /* background-color:
    #E6EAED; */
    border-radius: 8px;
    padding: 30px;
    /* box-shadow: 0 4px 12px rgba(255, 255, 255, 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: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.check-btn {
    background-color: #22e673;
    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: #19e668;
    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;
    }
}
/* Styling for the button */
.order {
    display: flex;           /* Use flexbox for horizontal layout */
    align-items: center;     /* Vertically center the items */
    justify-content: space-between; /* Space out the items if needed */
}

.order h3 {
    margin: 0;               /* Remove default margin */
}

.order button {
    margin-left: 10px;       /* Add some space between the text and the button */
}
.order button {
    background-color: #003366;  /* Dark blue background */
    color: white;               /* White text color */
    padding: 8px 20px;         /* Padding inside the button */
    font-size: 16px;            /* Font size */
    border: none;               /* Remove default border */
    border-radius: 5px;         /* Rounded corners */
    cursor: pointer;           /* Change cursor to pointer when hovering */
    transition: background-color 0.3s, transform 0.2s;  /* Smooth transition for hover effects */
}

/* Button hover effect */
.order button:hover {
    background-color: #005bb5;  /* Lighter blue when hovered */
    transform: translateY(-3px);  /* Slightly lift the button */
}

/* Optional: Focus state */
.order button:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 5px rgba(0, 59, 103, 0.7); /* Add a subtle glow when focused */
}

/* Hero Section */
.hero-section {
    background-color: #f5f9ff;
    padding: 60px 0 40px;
    position: relative;
}

.hero-content {
    max-width: 800px; /* Limit the width of the content */
    margin-left: 0;  /* Align to the left */
    padding: 20px;  /* Optional: Adds padding for better spacing */
}

.hero-content h2 {
    font-size: 1.8em;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2; /* Adjust line height for better spacing */
}

.hero-content h3 {
    font-size: 1.2em;
    font-weight: 400;
    color: #3a3a3a;
    margin-bottom: 30px;
    line-height: 1.4; /* More line height for readability */
}

.hero-content .left {
    text-align: left; /* Aligns the text inside the left section to the left */
}

.heart-icon {
    color: #f44336;
}

.highlight {
    color: #4CAF50;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Search Bar */
.search-container {
    margin: 30px 0;
}

.search-bar {
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    border-radius: 30px;
    padding: 5px 5px 5px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-bar i {
    color: #0052cc;
    margin-right: 10px;
}

.search-bar input {
    flex: 1;
    padding: 12px 0;
    border: none;
    outline: none;
    font-size: 16px;
}

.search-button {
    background-color: #0052cc;
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Filter Pills */
.quick-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.filter-pill {
    padding: 8px 16px;
    background-color: white;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    color: #555;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-pill.active, .filter-pill:hover {
    background-color: #0052cc;
    border-color: #0052cc;
    color: white;
}

/* Featured Destinations */
.featured-destinations {
    padding: 50px 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* .destination-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
} */

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}
.destination-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.destination-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 196, 0, 0.9);
    border-radius: 100px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #664500;
}

.destination-info {
    padding: 1.25rem;
}

.destination-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.visa-type {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background-color: #E3F2FD;
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

/* .destination-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
} */

/* .destination-info {
    padding: 15px;
}

.destination-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
} */

/* .visa-type {
    display: inline-block;
    background-color: #e6f0ff;
    color: #0052cc;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
} */

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.tax {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.visa-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #555;
    margin-top: 5px;
}

.visa-time i {
    color: #ff9800;
}

.load-more {
    text-align: center;
    margin-top: 20px;
}

/* Featured Press */
.featured-press {
    background-color: #f5f9ff;
    padding: 30px 0;
    text-align: center;
}

.featured-press h3 {
    font-size: 14px;
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.press-logos img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.press-logos img:hover {
    opacity: 1;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.rating {
    margin-bottom: 15px;
}

.rating i {
    color: #ffb400;
    font-size: 24px;
    margin: 0 2px;
}

.testimonials h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.testimonials h3 {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-icon {
    height: 24px;
    margin: 0 5px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
}

.testimonial-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Visa Process */
.visa-process {
    padding: 60px 0;
    background-color: #ffffff;
}

.visa-process h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.visa-process h3 {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.process-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.process-image {
    flex: 1;
}

.process-image img {
    width: 50%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-steps {
    flex: 1;
}

.step {
    display: flex;
    margin-bottom: 25px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #0052cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 14px;
    color: #666;
}

/* Experts */
.experts {
    padding: 60px 0;
}

.experts h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.expert-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.expert-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 25px;
}

.expert-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.expert-info p {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.expert-info p i {
    color: #ffb400;
}

.trusted-for {
    font-size: 12px;
    color: #888;
    font-weight: 600;
}

.country-flags {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.country-flags img {
    width: 24px;
    height: 16px;
    object-fit: cover;
}

/* CTA Banner */
/* .cta-banner {
    padding: 50px 0;
    background-color: #f5f5f5; 
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-left {
    flex: 1;
    padding-right: 30px;
}

.cta-left h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cta-left p {
    font-size: 16px;
    margin-bottom: 20px;
}

.search-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.search-bar {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding:0  10px;
    margin: 0px;
    font-size: 1.4rem;
    border-radius: 10px;
 
}

.search-bar i {
    margin-right: 10px;
}

.search-bar input {
    border: none;
    padding: 5px 10px;
    width: 600px;
}

.search-button {
    background-color: #ffffff;
    border: none;
    padding: 8px 15px;
    font-size: 1.2rem;
    color: rgb(22, 6, 240);
    border-radius: 5px;
    cursor: pointer;
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.benefit-box {
    background-color: #dfeefd;
    color: rgb(0, 0, 0);
    padding: 20px;
    width: 200px;
    height: 200px;
    border-radius: 8px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.benefit-box span {
    font-size: 16px;
} */

.cta-banner {
    background-color: #f5f9ff;
    padding: 60px 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.benefit {
    background-color: #e6f0ff;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    color: #0052cc;
}
.bg-footer-bg {
    background-color: var(--footer-bg);
} 

/* 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;
}

.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);
}
/* Responsive Design */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    /* .mobile-menu-toggle {
        display: block;
    } */
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-container {
        flex-direction: column;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-filters {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .filter-pill {
        flex-shrink: 0;
    }
    
    .expert-card {
        flex-direction: column;
        text-align: center;
    }
    
    .expert-photo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .benefits {
        flex-direction: column;
        gap: 10px;
    }
}