  
  .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 {
    width: 40px;
    height: 40px;
    background: #1e3d6b;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }
  
  .logo-text {
    text-decoration: none;
    font-size: 20px;
    color: #161422;
  }
  
  /* Desktop Menu */
  .nav-links {
    display: flex;
    gap: 32px;
  }
  
  .nav-item {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #161422;
    cursor: pointer;
  }
  
  .nav-item.active {
    color: #1e3d6b;
  }
  
  /* Contact Button */
  .contact-btn button {
    background: #1e3d6b;
    color: white;
    padding: 8px 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;
  }

  /* contact  css*/

  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
  }
  
  /* HERO */
  .contact-hero {
    padding: 40px 0;
    color: white;
    background: linear-gradient(135deg, #1e3d6b 0%, #162447 50%, #1f3767 100%);
    text-align: center;
  }
  
  .contact-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
  }
  
  .contact-hero p {
    font-size: 20px;
    color: #bdbcb8;
  }
  
  /* INFO */
  .contact-info {
    padding: 48px 0;
    background: #f8f8f9;
    border-bottom: 1px solid #bdbcb8;
  }
  
  .info-grid {
    display: grid;
    gap: 24px;
  }
  
  @media (min-width: 768px) {
    .info-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .info-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .info-card {
    display: flex;
    gap: 16px;
    padding: 10px;
    background: white;
    border: 1px solid #bdbcb8;
    border-radius: 12px;
    text-decoration: none;
    color: #161422;
    transition: box-shadow 0.2s ease;
  }
  
  .info-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  }
  
  .icon-box {
    width: 48px;
    height: 48px;
    background: #e8e9f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon-box svg {
    width: 22px;
    height: 22px;
    stroke: #1e3d6b;
  }
  
  .info-card span {
    font-size: 14px;
    color: #9794a5;
  }
  
  .info-card strong {
    display: block;
    margin-top: 2px;
  }
  
  /* FORM */
  .contact-form-section {
    padding: 40px 0;
    background: #161422;
  }
  
  .form-wrapper {
    max-width: 720px;
    margin: auto;
  }
  
  .form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #ffffff;
  }
  
  form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #9794a5;
  }
  
  form input,
  form select,
  form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #bdbcb8;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
  }
  
  form textarea {
    resize: none;
  }
  
  .grid-2 {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
  }
  
  @media (min-width: 768px) {
    .grid-2 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  form > div {
    margin-bottom: 24px;
  }
  
  form button {
    width: 100%;
    padding: 16px;
    background: #1e3d6b;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  form button:hover {
    opacity: 0.9;
  }
  /* Our location css */
  /* LOCATION */
.location-section {
    /* padding: 10px 0; */
    background: #e4e4e6;
  }
  
  .location-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 12px;
    color: #161422;
  }
  
  .location-address {
    text-align: center;
    font-size: 16px;
    color: #161422;
    margin-bottom: 32px;
    line-height: 1.6;
  }
  
  .map-wrapper {
    max-width: 1000px;
    margin: auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }
  
  .map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
  }
  
  .map-actions {
    text-align: center;
    margin-top: 24px;
  }
  
  .directions-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #1e3d6b;
    color: #ffffff;
    border: 1px solid #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    transition: opacity 0.2s ease;
  }
  
  .directions-btn:hover {
    opacity: 0.9;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .map-wrapper iframe {
      height: 300px;
    }
  }
  
  /* footer 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) {
    .nav-links,
    .contact-btn {
      display: none;
    }
    .menu-toggle {
      display: block;
    }
    .footer-grid {
      flex-direction: column;
    }
    .footer-bottom {
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      text-align: left;
    }
}