@media (max-width: 400px) 
{
  body {
    font-size: 13px;
  }
  .navbar {
    padding: 0 2px;
  }
  .logo {
    font-size: 0.95rem;
    gap: 3px;
  }
  .logo img {
    width: 36px;
    max-height: 36px;
  }
  .hamburger {
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
  }
  .service-row {
    gap: 14px;
    margin-bottom: 28px;
  }
  .service-img-wrap {
    min-height: 110px;
    max-width: 95vw;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .service-img-wrap img {
    min-height: 110px;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
  }
  .service-content {
    padding: 0 1vw;
  }
  .service-title {
  .service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1vw;
  }
  .service-body {
    margin-top: 6px;
    margin-bottom: 10px;
    line-height: 1.6;
  }
    font-size: 1.05rem;
    margin-bottom: 8px;
  }
  .service-body {
    font-size: 0.92rem;
    margin-bottom: 10px;
  }
  .badge-row {
    gap: 3px;
  }
  .badge {
    font-size: 0.7rem;
    padding: 2px 6px;
  }
  .section-header {
    padding: 0 1vw;
  }
  .section-title {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) 
{
  body {
    font-size: 15px;
    padding: 0;
  }
  .navbar {
    flex-direction: column;
    padding: 0 8px;
    align-items: flex-start;
    position: relative;
  }

  .hamburger {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1100;
  }
  .logo {
    font-size: 1.1rem;
    gap: 6px;
  }
  .logo img {
    width: 48px;
    max-height: 48px;
  }
  .service-row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }
  .service-row.reverse {
    direction: ltr;
  }
  .service-img-wrap {
    aspect-ratio: 1/1;
    min-height: 180px;
    max-width: 100vw;
    margin: 0 auto;
  }
  .service-img-wrap img {
    width: 100vw;
    max-width: 100vw;
    min-height: 180px;
    height: auto;
    object-fit: cover;
    display: block;
  }
  .service-content {
    padding: 0 2vw;
  }
  .service-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  .service-body {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  .badge-row {
    gap: 6px;
  }
  .badge {
    font-size: 0.85rem;
    padding: 4px 10px;
  }
  .section-header {
    padding: 0 2vw;
    text-align: left;
  }
  .section-title {
    font-size: 1.5rem;
  }
}
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body
{
    min-height: 100dvh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0efea;
    color: black
}
.navbar 
{
    background-color: white;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}
.navbar .logo 
{
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    gap: 12px;
}
.logo img 
{
    width: 58px;
    height: auto;
    max-height: 58px;
}
.logo span 
{
    color: #0080b8;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
}
.navbar .nav-links,
.navbar .nav-links-mobile 
{
    display: flex;
    list-style: none;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
}
.nav-links li,
.nav-links-mobile li 
{
    height: 50px;
}
.nav-links li a,
.nav-links-mobile li a 
{
    text-decoration: none;
    display: flex;
    height: 100%;
    padding: 0 30px;
    align-items: center;
    color: black;
}
.navbar a:hover 
{
    color: black;
    transition: 0.3s ease-in-out;
    background-color: #1285b6;
    border-radius: 35px 0 0 0;
    /*
     background-color: #f0f0f0; 
    
    border-radius: 4px;
    */
}   

/*Hamburger Menu button */

.hamburger 
{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;


}

.hamburger span 
{
    width: 28px;
    height: 3px;
    background-color: #0080b8;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s ease;
}

.nav-links-mobile
{
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100vh;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.544);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: right 0.3s ease;
}

.nav-links-mobile.active
{
    right: 0;
}

.nav-links-mobile li
{
    
    width: 100%;
    
}
.nav-links-mobile a
{
    width: 100%;

    
}

 /* ══ SECTION HEADER ══ */
  #services 
  {
    padding: 96px 80px 80px;
    max-width: 1400px;
    margin: 0 auto;
  }
 
  .section-header 
  {
    text-align: center;
    margin-bottom: 72px;
  }
  .section-tag 
  {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #0c83b7;
    margin-bottom: 14px;
  }
  .section-title 
  {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    color: #06090c;
    line-height: 1.15;
  }

  .section-title .gold 
  {
    color: #0080b8;
    font-style: italic;
  }

  /* ══ SERVICE ROWS ══ */
  .service-row 
  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 96px;
  }

   /* Alternate: image right on even rows */
  .service-row.reverse 
  {
    direction: rtl;
  }
  .service-row.reverse > * {
    direction: ltr;
  }

  /* Image */
  .service-img-wrap 
  {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: #ccc;
  }

  .service-img-wrap img 
  {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .service-img-wrap:hover img 
   {
    transform: scale(1.04);
   }

   /* Text content */
  .service-content 
  {
    padding: 8px 0;
  }

  .service-title 
  {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.25;
  }

  .service-body 
  {
    font-size: 16px;
    line-height: 1.85;
    color: rgb(5, 9, 10);
    font-weight: 400;
    margin-bottom: 32px;
  }

   /* Badges */
  .badge-row 
  {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
 
  .badge 
  {
    background: #1a2f4a;
    color: white;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 999px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
    cursor: default;
  }
 
  .badge:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
  }
 
 
 
 
 
 
 
 
 
 




/* Responsive styles */
@media (max-width: 768px) 
{
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    
}


/* Show hamburger on mobile */
@media (max-width: 900px) 
{
    .hamburger {
        display: flex;
    }
    .navbar .nav-links {
        display: none;
    }
}

/* Desktop only */
@media (min-width: 901px) 
{
    .hamburger {
        display: none;
    }
    .navbar .nav-links-mobile {
        display: none;
    }
}
