

  /* navbar css */
  .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-box img {
    width: 200px;
    height: 200px;
    
    background: #1e3d6b;
    color: white;
    border-radius: 8px;
  }
  
  .logo-text {
    font-size: 20px;
    text-decoration: none;
    color: #161422;
  }
  
  /* Desktop Menu */
  .nav-links {
    display: flex;
    gap: 32px;
  }
  
  .nav-item {
    background: none;
    border: none;
    font-size: 16px;
    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;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid #e5e7eb;
  }
  
  .mobile-menu button {
    text-align: left;
    padding: 10px 12px;
    border-radius: 8px;
    background: none;
    border: none;
    font-size: 16px;
    color: #161422;
    cursor: pointer;
  }
  
  .mobile-menu button:hover {
    background: #f8f9fb;
  }
  
  .mobile-contact {
    background: #1e3d6b;
    color: white !important;
    margin-top: 10px;
  }
  @media (max-width: 769px) {
    .nav-links,
    .contact-btn {
      display: none;
    }
    .menu-toggle {
      display: block;
    }
  }
  /* navbar css finish */
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
  }
  
  /* HERO */
  .hero {
    padding: 20px 0;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #162447 0%, #1e3d6b 50%, #1f3767 100%);
  }
  
  .hero-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
  }
  
  .hero p {
    font-size: 20px;
    color: #bdbcb8;
  }
  
  /* COUNTRIES */
  .countries-section {
    padding: 10px 0;
    background: #f8f9fb;
  }
  
  .section-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 48px;
  }
  
  .section-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #161422;
  }
  
  .section-header p {
    font-size: 18px;
    color: #9794a5;
  }
  
  /* GRID */
  .countries-grid {
    display: grid;
    gap: 16px;
    max-width: 1100px;
    margin: auto;
  }
  
  @media (min-width: 480px) {
    .countries-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (min-width: 640px) {
    .countries-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (min-width: 768px) {
    .countries-grid { grid-template-columns: repeat(4, 1fr); }
  }
  @media (min-width: 1024px) {
    .countries-grid { grid-template-columns: repeat(5, 1fr); }
  }
  @media (min-width: 1280px) {
    .countries-grid { grid-template-columns: repeat(6, 1fr); }
  }
  
  /* CARD */
  .country-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  
  .country-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  .country-card img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    margin-bottom: 8px;
  }
  
  .country-card h4 {
    font-size: 12px;
    font-weight: 600;
    color: #161422;
  }
  
  /* CTA */
  .countries-cta {
    background-color: #1e3d6b;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 1px;
  }
  
  .countries-cta h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #ffffff;
  }
  
  .countries-cta p {
    font-size: 18px;
    color: #9794a5;
    max-width: 700px;
    margin: auto;
    margin-bottom: 32px;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .btn-primary {
    background: #161422;
    color: #ffffff;
    border: 1px solid;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .btn-primary:hover {
    opacity: 0.9;
  }
  
  .btn-outline {
    background: #ffffff;
    color: #161422;
    border: 1px solid #e5e7eb;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .btn-outline:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  /* 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;
  }
  @media (max-width: 768px){
    .footer-grid {
      flex-direction: column;
    }
    .footer-bottom {
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      text-align: left;
    }
  }