html{
  scroll-behavior: smooth;
}
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  
  .nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
  }
  

  .logo-text {
    text-decoration: none;
    font-size: 20px;
    color: #161422;
  }
  
  /* Desktop Menu */
  .nav-links {
    display: flex;
    gap: 40px;
  }
  
  .nav-item {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 500;
    color: #162447;
    cursor: pointer;
  }
  
  /* Contact Button */
  .contact-btn button {
    background: #1e3d6b;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
  }
  
  /* Mobile */
  .menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: #1e3d6b;
    cursor: pointer;
  }
  
  .mobile-menu {
    display: none;
  }
  
  .mobile-menu button {
    text-align: left;
    padding: 10px 12px;
    border-radius: 8px;
    background: none;
    border: none;
    font-size: 16px;
    color: #9794a5;
    cursor: pointer;
  }
  
  .mobile-menu button:hover {
    background: #f8f9fb;
  }
  
  .mobile-contact {
    background: #1e3d6b;
    color: white !important;
    margin-top: 10px;
  }
  .hero {
    position: relative;
    color: white;
    background: linear-gradient(
      135deg,
      #1e3d6b 0%,
      #162447 50%,
      #1f3767 100%
    );
    overflow: hidden;
  }
  
  .hero-container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 24px;
  }
  
  .hero-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
  }
  
  .badge {
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 24px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    background: rgba(138, 144, 168, 0.2);
    border: 1px solid #8a90a8;
    font-size: 14px;
    color: #bdbcb8;
  }
  
  .hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
  
  .hero p {
    font-size: 20px;
    max-width: 750px;
    margin: auto;
    margin-bottom: 40px;
    color: #bdbcb8;
  }
  
  /* Buttons */
  .hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .btn-primary {
    background: white;
    color: #1e3d6b;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.2s ease;
  }
  
  
  .btn-primary:hover {
    opacity: 0.9;
  }
  
  .arrow {
    display: inline-block;
    transition: transform 0.2s ease;
  }
  
  .btn-primary:hover .arrow {
    transform: translateX(6px);
  }
  
  .btn-outline a{
    background: transparent;
    color: white;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  
  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  /* Decorative Gradients */
  .hero-overlay {
    position: absolute;
    pointer-events: none;
  }
  
  .hero-overlay.right {
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(
      to left,
      rgba(22, 36, 71, 0.3),
      transparent
    );
  }
  
  .hero-overlay.left {
    bottom: 0;
    left: 0;
    width: 25%;
    height: 50%;
    background: linear-gradient(
      to top right,
      rgba(31, 55, 103, 0.3),
      transparent
    );
  }
  /* Countries section */
  .countries-section {
    padding: 64px 0;
    background: #f8f9fb;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
  }
  
  /* Header */
  .section-header {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-bottom: 48px;
  }
  
  .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  
  .divider span {
    width: 48px;
    height: 1px;
    background: #8a90a8;
  }
  
  .divider small {
    font-size: 12px;
    letter-spacing: 2px;
    color: #9794a5;
  }
  
  .section-header h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #161422;
  }
  
  .section-header p {
    font-size: 15px;
    line-height: 1.6;
    color: #9794a5;
  }
  
  .highlight {
    color: #1e3d6b;
    font-weight: 500;
  }
  
  /* Grid */
  .countries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }
  .country-card {
    background: #f2f2f2;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  
  .country-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  }
  
  .flag {
    height: 60px;
    margin-bottom: 12px;
  }
  
  .flag img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .country-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #161422;
  }
  
  .separator {
    width: 40px;
    height: 2px;
    background: #8a90a8;
    margin: 10px auto;
  }
  
  .country-card p {
    font-size: 12px;
    line-height: 1.5;
    color: #9794a5;
    min-height: 48px;
    margin-bottom: 12px;
  }
  
  /* Read More */
  .read-more {
    font-size: 12px;
    color: #1e3d6b;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: gap 0.2s ease;
  }
  
  .country-card:hover .read-more {
    gap: 8px;
  }
  
  
  /* CTA */
  .cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    text-align: center;
  }
  
  .cta-btn {
    background: #1e3d6b;
    color: white;
    padding: 12px 40px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.2s ease;
  }
  
  .cta-btn-second{
    background: white;
    color: #1e3d6b;
    border: 2px solid #1e3d6b;
    padding: 12px 40px;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.2s ease;
  }

  .cta-btn:hover,.cta-btn-second:hover {
    opacity: 0.9;
  }
  
  .arrow {
    transition: transform 0.2s ease;
  }
  
  .cta-btn:hover .arrow {
    transform: translateX(4px);
  }
  .cta-btn-second:hover .arrow{
    transform: translateX(4px);
  }

  /* About us css */
  .about-section {
    padding: 16px 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
  }
  /* Label */
.about-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  
  .line {
    width: 48px;
    height: 1px;
    background: #8a90a8;
  }
  
  .label-text {
    font-size: 12px;
    letter-spacing: 2px;
    color: #9794a5;
  }
  
  /* Text */
  .about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #161422;
  }
  
  .about-content p {
    font-size: 18px;
    color: #9794a5;
    margin-bottom: 24px;
    line-height: 1.6;
  }
  
  /* Stats */
  .stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 16px;
  }
  
  .stat {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #e8e9f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }
  .stat-link{
    text-decoration: none;
  }
  .stat-number {
    font-size: 24px;
    text-decoration: none;
    color: #161422;
    font-weight: 600;
  }
  
  .stat-label {
    font-size: 14px;
    color: #9794a5;
  }
  
  /* Image */
  .about-image {
    border-radius: 16px;
    overflow: hidden;
  }
  
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* Features */
  .features-section {
    padding: 80px 0;
    background: #f8f9fb;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
  }
  
  /* Header */
  .features-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .features-header h2 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #161422;
  }
  
  .features-header p {
    font-size: 20px;
    color: #9794a5;
  }
  
  /* Image */
  .features-image {
    max-width: 900px;
    margin: auto;
    margin-bottom: 48px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .features-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
  }
  
  /* Slider */
  .slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: auto;
  }
  
  .slider-window {
    overflow: hidden;
  }
  
  .slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
  }
  
  /* Card */
  .feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  
  .feature-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transform: translateY(-4px);
  }
  
  .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f0f0f2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
  }
  
  .icon svg {
    width: 28px;
    height: 28px;
    stroke: #1e3d6b;
    stroke-width: 2;
  }
  
  .feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #161422;
  }
  
  .feature-card p {
    font-size: 14px;
    color: #9794a5;
  }
  
  /* Nav Buttons */
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    font-size: 22px;
    color: #1e3d6b;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  
  .nav-btn.left { left: -16px; }
  .nav-btn.right { right: -16px; }
  
  /* Dots */
  .dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }
  
  .dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #bdbcb8;
    cursor: pointer;
  }
  
  .dots button.active {
    background: #1e3d6b;
  }
  /* TEam member section css */
  .team-section {
    padding: 80px 24px;
    background: #f0eff3;
  }
  
  .team-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .team-header h2 {
    font-size: 36px;
    color: #161422;
    margin-bottom: 8px;
  }
  
  .team-header p {
    font-size: 18px;
    color: #9794a5;
  }
  
  .team-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 10px;
  }
  
  /* Card */
  .team-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  }
  
  /* CEO highlight */
  .team-card {
    border: 2px solid #161422;
  }
  
  /* Avatar */
  .avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e8e9f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
  }
  
  .avatar i {
    width: 32px;
    height: 32px;
    stroke: #161422;
  }
  
  /* Name */
  .team-card h3 {
    font-size: 20px;
    color: #161422;
    margin-bottom: 6px;
  }
  
  /* Role */
  .role {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #1e3d6b;
    margin-bottom: 16px;
  }
  
  /* Contacts */
  .contacts p {
    font-size: 14px;
    color: #1e3d6b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  
  .contacts i {
    width: 16px;
    height: 16px;
  }
  
  /* Why Choose us */
  .why-section {
    padding: 80px 0;
    background: linear-gradient(
      135deg,
      #1e3d6b 0%,
      #162447 50%,
      #1f3767 100%
    );
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
  }
  
  /* Header */
  .why-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
  }
  
  .why-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #ffffff;
  }
  
  .why-header p {
    font-size: 20px;
    color: #bdbcb8;
  }
  
  /* Image */
  .why-image {
    max-width: 900px;
    margin: auto;
    margin-bottom: 64px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  .why-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
  }
  
  /* Grid */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 32px;
  }
  /* Card */
.why-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #bdbcb8;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  }
  
  .icon-box {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #e8e9f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  
  .icon-box svg {
    width: 28px;
    height: 28px;
    stroke: #1e3d6b;
    stroke-width: 2;
  }
  
  .why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #161422;
  }
  
  .why-card p {
    font-size: 15px;
    color: #9794a5;
    line-height: 1.6;
  }
  /* Cliets Section */
  .clients-section {
    padding: 80px 0;
    background: #f8f9fb;
    border-top: 1px solid #e5e7eb;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
  }
  
  /* Header */
  .clients-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
  }
  
  .clients-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #161422;
  }
  
  .clients-header p {
    font-size: 20px;
    color: #9794a5;
  }
  
  /* Marquee */
  .marquee-container {
    position: relative;
    overflow: hidden;
  }
  
  .fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 128px;
    z-index: 10;
    pointer-events: none;
  }
  
  .fade.left {
    left: 0;
    background: linear-gradient(to right, #f8f9fb, transparent);
  }
  
  .fade.right {
    right: 0;
    background: linear-gradient(to left, #f8f9fb, transparent);
  }
  
  .marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  
  .marquee-content {
    display: flex;
    animation: marquee 35s linear infinite;
    will-change: transform;
    width: max-content;
  }
  
  .marquee-content:hover {
    animation-play-state: paused;
  }
  
  /* Card */
  .client-card {
    width: 280px;
    margin: 0 12px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
  }
  
  .client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }
  
  .client-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: box-shadow 0.2s ease;
  }
  
  .client-card:hover .client-icon {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .client-icon svg {
    width: 32px;
    height: 32px;
    stroke: #1e3d6b;
    stroke-width: 2;
  }
  
  .client-card h3 {
    text-align: center;
    font-size: 16px;
    margin-bottom: 4px;
    color: #161422;
  }
  
  .client-card p {
    text-align: center;
    font-size: 14px;
    color: #9794a5;
  }
  
  /* Footer */
  .clients-footer {
    text-align: center;
    margin-top: 48px;
  }
  
  .clients-footer p {
    font-size: 18px;
    color: #9794a5;
  }
  
  .clients-footer span {
    color: #1e3d6b;
    font-weight: 600;
  }
  
  /* Animation */
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .cta-section {
    padding: 80px 0;
    color: white;
    background: linear-gradient(
      135deg,
      #162447 0%,
      #1e3d6b 50%,
      #1f3767 100%
    );
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
  }
  
  .cta-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
  }
  
  .cta-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
  }
  
  .cta-subtext {
    font-size: 20px;
    color: #bdbcb8;
    margin-bottom: 40px;
  }
  
  /* Buttons */
  .cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .btn-primary {
    background: white;
    color: #1e3d6b;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.2s ease;
  }
  
  .btn-primary:hover {
    opacity: 0.9;
  }
  
  .btn-primary svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: transform 0.2s ease;
  }
  
  .btn-primary:hover svg {
    transform: translateX(4px);
  }
  
  .btn-outline {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    border: 2px solid #8a90a8;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s ease;
  }
  
  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  /* Footer text */
  .cta-footer {
    margin-top: 24px;
    font-size: 14px;
    color: #9794a5;
  }

  /* Footer section css */
  .footer {
    background-color: #161422; /* DBS background */
    color: #bdbcb8;
  }
  
  /* CONTAINER */
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 24px 30px;
  }
  
  /* GRID LAYOUT (Kavso-style) */
  .footer-grid {
    display: flex;
    justify-content: space-around;
    /* align-items: flex-start; */
    gap: 40px;
  }

  .footer-col h4 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 20px; /* Tailwind: text-xl */
    font-weight: 600;
  }
  
  /* LINKS */
  .footer-col ul {
    list-style: none;
  }
  
  .footer-col ul li {
    margin-bottom: 12px;
  }
  
  .footer-col a {
    text-decoration: none;
    color: #9794a5;
    font-size: 16px; /* Tailwind: text-base */
    transition: opacity 0.2s ease;
  }
  
  .footer-col a:hover {
    opacity: 0.8;
  }
  
  /* CONTACT ITEMS */
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px; /* Tailwind: text-sm */
    color: #bdbcb8;
  }
  
  .contact-item svg {
    width: 18px;
    height: 18px;
    color: #8a90a8;
    margin-top: 2px;
    flex-shrink: 0;
  }
  
  /* SOCIAL ICONS */
  .social-icons {
    display: flex;
    gap: 14px;
  }
  
  .social-icons a {
    width: 36px;
    height: 36px;
    background-color: #1e3d6b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #ffffff;
    transition: opacity 0.2s ease;
  }
  
  .social-icons a:hover {
    opacity: 0.8;
  }
  
  .social-icons svg {
    width: 18px;
    height: 18px;
  }
  
  /* DIVIDER */
  .footer-divider {
    height: 1px;
    background-color: #1e3d6b;
    margin: 40px 0 20px;
  }
  
  /* BOTTOM BAR */
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px; /* Tailwind: text-sm */
    color: #9794a5;
    text-align: center;
  }
  
  .footer-bottom span {
    color: #ffffff;
    font-weight: 600;
  }
  /* whatsapp Chat css */
  /* CHAT POPUP */
.chat-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 300px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  overflow: hidden;
  display: none;
  z-index: 9999;
  animation: slideUp 0.4s ease;
}

/* Header */
.chat-header {
  background: #1e3d6b;
  color: white;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

.chat-header button {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

/* Body */
.chat-body {
  padding: 16px;
  font-size: 14px;
  color: #161422;
}

.chat-body p {
  margin-bottom: 8px;
}

/* Footer */
.chat-footer {
  padding: 16px;
  text-align: center;
}

.chat-btn {
  display: inline-block;
  width: 100%;
  padding: 12px;
  background: #25d366; /* WhatsApp green */
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 15px;
  transition: opacity 0.2s ease;
}

.chat-btn:hover {
  opacity: 0.9;
}

/* Animation */
@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .chat-popup {
    width: 50%;
    right: 5%;
  }
}

  
  /* Responsive */
  @media (max-width: 500px){
    .cta{
      flex-direction: column;
      align-items: center;
    }
    .features-section{
      padding: 40px 0;
    }
    .features-header{
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .why-card{
      padding: 16px;
      width: 100%;
    }
    .why-grid{
      place-items: center;
      gap: 15px;
      grid-template-columns: repeat(1, 1fr);
    }
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nav-links,
    .contact-btn {
      display: none;
    }
    .menu-toggle {
      display: block;
    }
    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 12px;
      padding: 16px;
      overflow: hidden;
      border-top: 1px solid #e5e7eb;

      transition:
        max-height .1s ease-in-out,
        opacity 0.3s ease;
    }
    .mobile-menu button{
      color: #161422;
    }
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    .about-content h2 {
        font-size: 28px;
    }
    
    .about-content p {
        font-size: 16px;
    }

    /* .marquee-content {
        animation-duration: 25s;
    } */
    .cta-content h2 {
        font-size: 30px;
    }
    
    /* .cta-subtext {
        font-size: 18px;
    } */

    .footer-grid {
      flex-direction: column;
    }
    .team-grid{
      grid-template-columns: repeat(1,1fr);
    }


  }
  @media(min-width: 501px) and (max-width: 769px) {
    .nav-links,
    .contact-btn {
      display: none;
    }
    .menu-toggle {
      display: block;
    }
    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 12px;
      padding: 16px;
      overflow: hidden;
      border-top: 1px solid #e5e7eb;

      transition:
        max-height .1s ease-in-out,
        opacity 0.3s ease;
    }
    .mobile-menu button{
      color: #161422;
    }
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-content h2 {
        font-size: 28px;
    }
    
    .about-content p {
        font-size: 16px;
    }
    .why-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .why-card{
      padding: 20px;
    }
    /* .marquee-content {
        animation-duration: 25s;
    } */
    .cta-content h2 {
        font-size: 30px;
    }
    
    .cta-subtext {
        font-size: 18px;
    }

    .footer-grid {
      flex-direction: column;
    }
    .footer-bottom {
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      text-align: left;
    }
    
  }
  @media(min-width: 501px) and (max-width:958px){
    .team-grid{
      grid-template-columns: repeat(2,1fr);
    }
  }
  @media (min-width: 1024px) {
    .countries-grid {
      grid-template-columns: repeat(5, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}
  
/*  */