/* Reset */
    * {margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth;}

    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      background: #ffffff;
      color: #ffffff;
    }

    
    /* Hero */
    
    .eyebrow {
      display: inline-block;
      background: #d4af37;
      color: #071d3a;
      padding: 6px 12px;
      border-radius: 999px;
      font-weight: bold;  
      font-size: 12px;
      position: inherit;
    }

    h2 {font-size: 28px; margin: 14px 0; color: #0e1623;}
    p.lead {color: #6b7280; margin-bottom: 18px;}

    .cta-row {display: flex; gap: 12px; margin-top: 12px;}
    .btn {
      padding: 12px 16px;
      border-radius: 8px;
      font-weight: bold;
      text-decoration: none;
    }
    .btn-primary {background: #0b2d5e; color: white;}
    .btn-outline {border: 1px solid #0b2d5e; color: #0b2d5e;}

    .stat-grid {display: flex; gap: 12px; margin-top: 20px;}
    .stat {background:#d4af37; padding: 10px 14px; border-radius: 8px; text-align: center;}

    /* Contact side */
    .aside {display: flex; flex-direction: column; gap: 16px;}
    .contact {
      background: linear-gradient(180deg, #0b2d5e, #071d3a);
      color: white;
      padding: 18px;
      border-radius: 12px;
    }

    .business-card {
      background: linear-gradient(180deg, #0b2d5e, #071d3a);
      border-radius: 12px;
      padding: 14px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }

    /* Sections */
    section {padding: 87px 20px;}
    .content-section h2 {text-align: center; margin-bottom: 20px; font-size: 2rem; color: #0e1623;}
    .content-section h1 {font-size: 1.6rem; margin-top: 20px;}

/* Header styling */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  color: white;
  position: relative;
  background: linear-gradient(180deg, #0b2d5e, #071d3a);
  border-radius: 8px;

}

/* Logo */
.logo img {
  height: 68px;
  border-radius: 6px;
}


/* Nav container */
.nav {
  display: flex;
  align-items: center;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: color 0.3s ease;
}

/* Underline effect */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffd700;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #ffd700;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  cursor: pointer;
  margin-left: 16px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .nav-links {
    width: 206px;
    display: none;
    flex-direction: column;
    background: linear-gradient(180deg, #0b2d5e, #071d3a);
    position: absolute;
    top: 103px;
    right: 11px;
    padding: 16px;
    border-radius: 8px;
    z-index: 10;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}


/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 350px;
  grid-template-columns: 2fr 1fr; /* card + aside */
  gap: 28px;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('images/auditing.jpg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  margin-top: -108px;
  align-items: start;
  padding: 127px 20px;
  border-radius: 8px;
}

/* Hero Card */
.hero-card {
  background: rgb(255, 255, 255);
  padding: 30px;
  border-radius: 12px;    
  max-width: 700px;
}

.hero-card h2 {
  font-size: clamp(24px, 3vw, 38px);
  margin: 10px 0;
}

.hero-card .lead {
  font-size: 16px;
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.btn {
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}


/* Stats */
.stat-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat b {
  font-size: 20px;
  display: block;
}

/* Aside */
.aside {
  background: rgba(0,0,0,0.6);
  padding: 25px;
  border-radius: 12px;
  color: #fff;
}

.contact h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.phone {
  font-size: 18px;
  margin-top: 10px;
  font-weight: bold;
}

.business-card {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr; /* stack hero + aside */
    text-align: center;
  }

  .cta-row {
    flex-direction: column;
    align-items: center;
  }

  .stat-grid {
    justify-content: center;
  }

  .aside {
    margin-top: 30px;
  }
}

/* Services */
    .services-section {
      text-align: center;
      padding: 2px 0px;
      border-radius: 12px;
      background-color: #e6eff7;

    }
   
    .services-container {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url(images/bookkeeping.jpg) center/cover no-repeat !important;
      
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 19px;
      padding: 60px 20px; 
      border-radius: 12px;

    }
    .services-container div:hover {
      transform: translateY(-5px);

    }

    .service-box {
      background: linear-gradient(180deg, #0b2d5e, #071d3a);
      color: white;
      border-radius: 10px;
      padding: 20px;
      width: 300px;
      text-align: left;
      box-shadow: 0 3px 6px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }
    .service-box h3 {margin-bottom: 10px;}
    .service-box p {color: #bbb;}
    .read-more {color: #d4af37;}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebd5a;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* Callme Floating Button */
.callme-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

callme-float-float:hover {
  background-color: #1ebd5a;
}

callme-float-float img {
  width: 30px;
  height: 30px;
}


/* Floating Contact Buttons Container */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Each Button */
.float-btn {
  width: 50px;
  height: 50px;
  background-color: #00468c;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, background-color 0.3s;
}

.float-btn img {
  width: 28px;
  height: 28px;
}

/* Hover Effect */
.float-btn:hover {
  transform: scale(1.1);
}

.hover-text {
  color: white(255, 227, 227);
  font-size: 16px;
  transition: color 0.3s ease, font-size 0.3s ease; 
}

.hover-text:hover{
  text-decoration: none;
  color: #FFD700;  
  font-size: 20px;
  text-decoration: underline;
  text-underline-offset: 0.9em;
  padding-bottom: 2px; /* Adds space between text and line */
}
    
.underline-hover {
  text-decoration: none;
  color: #FFD700;
  transition: all 0.2s ease-in-out;
}

/* Method 1: Modern simple spacing */
.underline-hover:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

a.underline-hover {
  text-decoration: none;
  border-bottom: 1px solid currentColor; /* Use current text color */
  padding-bottom: 2px; /* Adds space between text and line */
  display: inline-block; /* Ensures the border fits the text width */
}
a.underline-hover:hover {
  border-bottom-style: solid;
}


/* CSS */
.contact-section {  
  border-radius: 12px;
  padding: 83px 1px;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url(images/services.jpg) center/cover no-repeat;
  color: #00468c;
}

.contact-container {
  display: flex;
  max-width: 1000px;
  margin: auto;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.contact-info {
  flex: 1;
  padding: 40px;
  background: linear-gradient(180deg, #0b2d5e, #071d3a);
  color: white;
}

.contact-info h3 {
  flex: 1;
  padding: 40px;
  background: linear-gradient(180deg, #0b2d5e, #071d3a);
  color: white;
  border-radius: 8px;
}

.contact-form {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.contact-form select,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.contact-form select,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.contact-form button {
  padding: 15px;
  background: #d4af37;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: linear-gradient(180deg, #0b2d5e, #071d3a);
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}


 /* Footer */
    footer {
      background: linear-gradient(180deg, #0b2d5e, #071d3a);
      padding: 30px 20px;
      margin-top: 1px;
      border-radius: 8px;
    }
    .footer-container {display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 20px;}
    .footer-logo {height: 113px;}
    .footer-column h4 {margin-bottom: 10px;}
    .footer-column ul {list-style: none; padding: 0;}
    .footer-column li {margin-bottom: 8px;}
    .footer-column a {text-decoration: none; color:white;}
    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      font-size: 0.9rem;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      margin-top: 20px;
    }

    footer a {
      position: relative;
      display: inline-block; /* Ensure proper underline sizing */
      color: white;
      text-decoration: none;
    }

    footer a::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #ffd700;
      transition: width 0.3s ease;
    }

    footer a:hover::after {
      width: 100%;
    }

    footer a:hover {
      color: #ffd700;
    }
    
    
    footer a.underline-hover:hover,
    footer a.hover-text:hover {
      all: unset;color: white;
  text-decoration: none;
  cursor: pointer;
}
    

    #map {width: 212px; height: 200px; border-radius: 8px; margin-top: 21px;}

    /* Floating buttons */
    .floating-buttons {
      position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 10px;
    }
    .float-btn img {width: 40px; height: 40px; border-radius: 50%;}
