/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

/* ===== STICKY NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #004aad;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: #003a8c;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  padding: 8px 30px;
}

/* ===== LOGO + BUSINESS NAME ===== */
.logo-container {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.nav-logo {
  width: 42px;
  height: auto;
  margin-right: 10px;
  border-radius: 6px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ===== NAV LINKS ===== */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #ffd700;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #004aad;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 15px 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== HOME SECTION ===== */
#home {
  background: linear-gradient(to bottom, #e8f1ff, #ffffff);
  text-align: center;
  padding: 130px 20px 80px; /* top padding avoids navbar overlap */
}

.home-content {
  max-width: 800px;
  margin: 40px auto;
}

#home h1 {
  font-size: 2.5rem;
  color: #003a8c;
  margin-bottom: 20px;
}

#home h2 {
  font-size: 1.4rem;
  color: #004aad;
  margin-bottom: 20px;
}

#home p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 20px;
}

.home-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.home-points li {
  margin: 6px 0;
  font-size: 1rem;
  color: #222;
}

/* ===== HOME BUTTONS ===== */
.home-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.home-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.home-btn.primary {
  background: #002d89;
  color: #fff;
}

.home-btn.primary:hover {
  background: #001f5a;
}

.home-btn.secondary {
  background: #25d366;
  color: #fff;
}

.home-btn.secondary:hover {
  background: #1da955;
}


/* ===== ABOUT SECTION (Image Left + Content Right) ===== */
#about {
  background: #ffffff;
  padding: 60px 20px;
  color: #333;
}

#about h2 {
  color: #004aad;
  text-align: center;
  margin-bottom: 25px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px; /* Space between image and text */
  flex-wrap: wrap;
}

#about img {
  width: 350px;
  max-width: 100%;
  border-radius: 10px;
  flex: 1 1 40%;
}

#about p {
  flex: 1 1 55%;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.7;
  text-align: justify;
}

/* Responsive (Image Top + Text Below) */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  #about img {
    width: 80%;
    margin-bottom: 15px;
  }

  #about p {
    text-align: justify;
  }
}

/* ===== OUR SERVICES (Modern Clickable Cards) ===== */
#service {
  background: #f8fbff;
  padding: 60px 20px;
  text-align: center;
}

#service h2 {
  color: #004aad;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.service-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* Grid Layout */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: stretch;
}

/* Clickable Card Styling */
.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 20px 15px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

/* Image */
.service-card img {
  width: 100%;
  max-width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Titles & Text */
.service-card h3 {
  font-size: 1.2rem;
  color: #003366;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button Style (Visual only) */
.service-btn {
  display: inline-block;
  background: #004aad;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.service-card:hover .service-btn {
  background: #003a8c;
}

/* Responsive Design */
@media (max-width: 768px) {
  #service {
    padding: 45px 15px;
  }

  .service-card img {
    max-width: 90%;
    height: 160px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}




/* ===== WHY CHOOSE US ===== */
#why {
  background: #f1f5ff;
  padding: 60px 20px;
  text-align: center;
}

#why h2 {
  color: #004aad;
  margin-bottom: 15px;
}

#why .intro {
  max-width: 850px;
  margin: 0 auto 30px;
  font-size: 0.95rem;
  color: #333;
}

/* ===== WHY CHOOSE US - Animated Cards ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.why-item {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  cursor: pointer;
  transform: translateY(0);
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  background: linear-gradient(180deg, #ffffff 0%, #f1f6ff 100%);
}

.why-item img {
  width: 60px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.why-item:hover img {
  transform: scale(1.1);
}


.why-item h3 {
  color: #003366;
  font-size: 1rem;
  margin-bottom: 5px;
}

.why-item p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

/* ===== REVIEWS ===== */
#reviews {
  background: #f1f5ff;
  padding: 60px 20px;
  text-align: center;
}


#reviews h2 {
  color: #004aad;
  margin-bottom: 15px;
}

.review-intro {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 25px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-box {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.review-text {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.5;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-author img {
  width: 40px;
  border-radius: 50%;
}

/* ===== CONTACT ===== */
#contact {
  background: #f8fbff;
  padding: 60px 20px;
  text-align: center;
}

#contact h2 {
  color: #004aad;
  margin-bottom: 15px;
}

.contact-intro {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px; /* gives good spacing between boxes */
  margin-bottom: 25px;
}
/* ===== CONTACT BOX ANIMATION ===== */
.contact-box {
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
}

.contact-box:active {
  transform: scale(0.98);
}

.contact-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 18px 15px;
}

.contact-box h3 {
  font-size: 1rem;
  color: #003366;
  margin-bottom: 5px;
}

.contact-box p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}


/* CTA Buttons */
.contact-cta {
  margin-top: 15px;
}

.contact-btn {
  display: inline-block;
  margin: 5px 10px;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
}

.contact-btn {
  background: #004aad;
}

.contact-btn.whatsapp {
  background: #25d366;
}

.contact-btn.whatsapp:hover {
  background: #1eb954;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-box {
    text-align: center;
  }
  .contact-box h3 {
    padding-left: 0;
  }
  .contact-box h3::before {
    display: none; /* hide icons on very small screens if misaligned */
  }
}
/* ===== FOOTER ===== */
#footer {
  background: #002b5c;
  color: #fff;
  padding: 35px 15px 20px;
  font-size: 0.9rem;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 20px;
}

.footer-nav h3,
.footer-address h3 {
  font-size: 1rem;
  color: #ffd700;
  margin-bottom: 8px;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  list-style: none;
  padding: 0;
}

.footer-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-nav ul li a:hover {
  color: #ffd700;
}

.footer-address p {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #ffffff;
  margin: 3px 0;
}
/* ===== FOOTER CONTACT INFO COLOR FIX ===== */
.footer-address p a,
.footer-top .footer-address a,
.footer-bottom a {
  color: #ffffff !important;  /* White text for better visibility */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Hover color for links in footer */
.footer-address p a:hover,
.footer-top .footer-address a:hover,
.footer-bottom a:hover {
  color: #ffd700 !important;  /* Gold on hover for contrast */
  text-decoration: underline;
}


/* ===== FLOATING BUTTONS ===== */
.call-btn,
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  font-size: 1.3rem;
  color: #fff;
  z-index: 1000;
}

.call-btn {
  right: 75px;
  background: #004aad;
}

.whatsapp-btn {
  right: 20px;
  background: #25d366;
}

.call-btn:hover,
.whatsapp-btn:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

/* ===== MOBILE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  #home {
    min-height: 55vh;
    padding: 40px 15px;
  }

  #about, #service, #why, #reviews, #contact {
    padding: 40px 15px;
  }

  .home-content h1 {
    font-size: 1.8rem;
  }

  .home-content h2 {
    font-size: 1.05rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav ul {
    justify-content: center;
  }
}
