:root {
  --sky-blue: #00C6FF;
  --aqua-white: #F0FAFF;
  --citrus-green: #7ED957;
  --bright-red: #f68b1e;
  --deep-navy: #003366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

html, body {
  width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
    line-height: 1.7;
  }



.top-bar {
  background-color: var(--sky-blue);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 1.5rem;
  font-size: 0.9rem;
  z-index: 1001;
}

.top-bar a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar img {
  height: 18px;
  width: 18px;
}

.main-header {
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  margin-top: 48px;
}

.logo img {
  height: 55px;
  max-width: 150px;
}


.top-bar {
  background-color: #00C6FF;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.top-bar a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar img {
  height: 18px;
  width: 18px;
}

/* Push header below the top bar */
.main-header {
  margin-top: 40px;
}


.nav-wrapper {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--deep-navy);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.nav-links a:hover {
  color: var(--sky-blue);
}

.book-btn {
  background-color: #f68b1e;
  color: #ffffff !important;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: bold;
}

.book-btn:hover {
  background-color: var(--deep-navy);
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  margin-left: 20px;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
 
}


/* Hero Section */
.hero-section {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}







.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  z-index: 0;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-content {
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  background-color: #00a708;
  color: #ffffff;
  padding: 12px 25px;
  margin: 0 10px;
  text-decoration: none;
  border-radius: 6px;
}

.hero-btn:hover {
  background-color: #e56a4f;
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid #66bb6a;
}

.secondary-btn:hover {
  background-color: white;
  color: #000;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 20px;
  }


  .hero-section {
    height: auto;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 10px 18px;
    font-size: 0.95rem;
  }



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

  .hamburger {
    display: block;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .logo img {
    height: 55px;
  }
}


/* ===== QUICK SERVICE HIGHLIGHTS ===== */
.highlights-section {
  background-color: var(--white);
  padding: 3rem 2rem;
}

.highlights-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 140px;
}

.highlight-item img {
  width: 50px;
  margin-bottom: 0.75rem;
}

.highlight-item p {
  color: #000000;
  font-weight: 600;
  font-size: 0.95rem;
}

.highlight-item i {
  font-size: 2.2rem;
  color: #004e9a; /* Navy Blue */
  margin-bottom: 0.75rem;
}






.about-us {
  background-color: #f9fbff;
  padding: 80px 20px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-images {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-images img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  object-fit: cover;
}

.core-values {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #444;
}




.services {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #f2f9ff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  background-color: #e0f0ff;
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 1.4rem;
  color: #003366;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
}

.service-card button {
  background-color: #0074e0;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.service-card button:hover {
  background-color: #005fa3;
}


.services-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.services-section h2 {
  color: #004e9a;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f8f9fc;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #004e9a;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 15px;
}

.book-btn {
  background-color: #f68b1e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.book-btn:hover {
  background-color: #0074e0;
}




.results-section {
  padding: 60px 20px;
  background-color: #f0f8ff; /* Soft blue */
  text-align: center;
}

.results-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #072b5c;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
}

.stat-item h3 {
  font-size: 2.2rem;
  color: #0f3d62;
  margin: 0;
}

.stat-item p {
  margin-top: 10px;
  color: #333;
  font-size: 1rem;
}





/* Testimonials Section Wrapper */
.testimonials-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff 60%, #e8f6ff);
  text-align: center;
}

/* Heading */
.testimonials-section h2 {
  font-size: 2.5rem;
  color: #0e4e85;
  margin-bottom: 50px;
  text-align: center;
}

/* List Container - vertical layout */
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

/* Individual Card */
.testimonial-card {
  width: 100%;
  max-width: 600px;
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card.hidden {
  display: none;
}

/* Client Initials Circle */
.client-initials {
  background-color: #0e4e85;
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Testimonial Text */
.testimonial-content {
  text-align: center;
}

.testimonial-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  font-style: italic;
}

.testimonial-content h4 {
  margin-top: 10px;
  color: #0e4e85;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Stars */
.stars {
  color: #ffc107; /* Professional gold/yellow */
  font-size: 1.3rem;
  animation: pulseStars 1.5s ease infinite;
}

@keyframes pulseStars {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

/* See More Button */
#seeMoreBtn {
  margin-top: 30px;
  padding: 12px 25px;
  background-color: #0e4e85;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

#seeMoreBtn:hover {
  background-color: #003366;
}

#seeMoreBtn {
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  font-size: 1rem; /* Prevent iOS zoom */
}

html, body {
  overflow-x: hidden;
}

.see-more-container {
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}




.why-choose-us-section {
  padding: 80px 20px;
  background: #f0faff;
  text-align: center;
}

.why-choose-us-section h2 {
  font-size: 2.5rem;
  color: #0e4e85;
  margin-bottom: 10px;
}

.subtext {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 40px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.reason-card {
  background: white;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-8px);
}

.reason-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.reason-card h4 {
  font-size: 1.3rem;
  color: #0e4e85;
  margin-bottom: 10px;
}

.reason-card p {
  font-size: 0.95rem;
  color: #555;
}
.reason-card i {
  font-size: 2.8rem;
  color: #0e4e85; /* Deep navy blue */
  margin-bottom: 15px;
}






.journey-section {
  background-color: #fefefe;
  padding: 100px 30px;
  text-align: center;
  position: relative;
}

.section-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #111;
  margin-bottom: 10px;
}

.section-subtext {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 60px;
}

.journey-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.journey-step {
  flex: 1 1 220px;
  background: #fff;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.journey-step:hover {
  transform: translateY(-10px);
}

.step-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #0099cc; /* Brand blue */
  display: block;
  margin-bottom: 10px;
}

.step-content h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.booking-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff, #f4f7fa);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.02);
}

.booking-container {
  max-width: 750px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.booking-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #222;
}

.booking-subtext {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 30px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row.full {
  flex-direction: column;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  flex: 1;
  padding: 14px 18px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #0079a1;
  box-shadow: 0 0 8px rgba(0, 121, 161, 0.15);
  outline: none;
}

.booking-btn {
  align-self: center;
  padding: 14px 28px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}

.booking-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0077b6, #0096c7);
}




.faq-section {
  padding: 4rem 1rem;
  background-color: #f9fbfe;
  font-family: Arial, sans-serif;
}

.faq-section h2 {
  font-size: 2.5rem;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: #fff;
  transition: background 0.3s ease;
}

.faq-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background-color: #fff;
  cursor: pointer;
  text-align: left;
  width: 100%;
  border: none;
  outline: none;
  transition: background 0.3s ease;
}

.faq-toggle:hover {
  background-color: #f9f9f9;
}

.faq-toggle span {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}

.faq-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #4a90e2; /* Replace with your brand color */
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  color: #555;
  background-color: #fff;
  transition: max-height 0.5s ease-in-out;
}

.faq-content p {
  padding: 1rem 0;
  margin: 0;
  line-height: 1.5;
}

.rotate-180 {
  transform: rotate(180deg);
}

/* Responsive */
@media (min-width: 768px) {
  .faq-section {
    padding: 4rem 3rem;
  }

  .faq-section h2 {
    font-size: 3rem;
  }
}



.contact-section {
  padding: 80px 20px;
  background-color: #f2f6fc;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 10px;
}

.fast-response {
  color: #555;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.contact-details p {
  font-size: 1rem;
  color: #444;
}

.contact-details p a {
  color: #007bff;
  text-decoration: none;
}

.contact-form {
  margin: 30px auto;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  background-color: #fff;
}

.form-group label {
  position: absolute;
  left: 12px;
  top: 14px;
  background-color: #f2f6fc;
  padding: 0 4px;
  color: #777;
  font-size: 1rem;
  transition: 0.2s ease all;
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 0.85rem;
  color: #007bff;
}

.contact-form button {
  padding: 14px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}
.privacy-note {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}


.site-footer {
  background-color: #111;
  color: #fff;
  padding: 60px 20px 20px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand .footer-logo {
  max-width: 120px;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #fff;
  line-height: 1.5;
}

.footer-brand p{
  color: #ffff;
}

.footer-nav h4{
  color: #ffff;
}

.footer-social h4{
  color: #ffff;
}


.footer-nav h4,
.footer-social h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #fff;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-nav ul li a:hover {
  color: #fff;
}

.social-icons a img {
  width: 28px;
  margin-right: 10px;
  transition: transform 0.2s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
  color: #fff;
}

.footer-bottom a {
  color: #ffff;
  text-decoration: underline;
}









.intro-overview-section {
  padding: 80px 20px;
  background-color: #f7f9fb;
  text-align: center;
}

.intro-overview-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.intro-overview-section h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 20px;
}

.intro-overview-section p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #444; /* comfortable dark grey */
  letter-spacing: 0.2px;
}




/* ===== SERVICE FEATURES SECTION ===== */
.service-features-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.service-features-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-heading {
  font-size: 2.8rem;
  color: #111;
  margin-bottom: 50px;
  font-weight: 600;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 40px;
  padding: 0 10px;
}

.service-feature-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.service-feature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}

.service-feature-card h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 12px;
}

.service-feature-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-btn {
  display: inline-block;
  background-color: #f68b1e;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.service-btn:hover {
  background-color: #d97706;
}

.step-process-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
}

.step-process-section h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 40px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-5px);
}

.step-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #00a6a6; /* You can change to your brand accent */
}

.step-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}

.step-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}






/* ===== OUR VALUES SECTION ===== */
.values-section {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.values-section h2 {
  font-size: 2.8rem;
  color: #111;
  margin-bottom: 50px;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: #fff;
  border: 1px solid #ffd8af;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-card i {
  font-size: 2.7rem;
  color: #003366; /* Dark orange */
  margin-bottom: 15px;
}

.value-card h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
}

.value-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}


/* ===== RESTYLED CTA SECTION ===== */
.cta-clean-section {
  background: linear-gradient(145deg, #f0faff, #e6f4ff);
  padding: 90px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 40px auto;
  box-shadow: 0 8px 25px rgba(0, 85, 170, 0.05);
}

.cta-clean-section::before {
  content: "🧽";
  font-size: 180px;
  opacity: 0.03;
  position: absolute;
  top: 10%;
  right: 10%;
  transform: rotate(-25deg);
}

.cta-clean-content {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-clean-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1c3b5a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.cta-clean-content p {
  font-size: 1.15rem;
  color: #4a6572;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-clean-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.btn-clean-primary {
  background-color: #d8a305;
  color: #fff;
  padding: 15px 32px;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.2);
  transition: all 0.3s ease;
}

.btn-clean-primary:hover {
  background-color: #005f99;
}

.btn-clean-outline {
  background-color: transparent;
  border: 2px solid #0077b6;
  color: #d8a305;
  padding: 13px 30px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-clean-outline:hover {
  background-color: #0077b6;
  color: #fff;
}







/* ===== WHY TESTIMONIALS MATTER STYLING ===== */
.why-testimonials-section {
  padding: 80px 20px;
  background-color: #fff9f5;
  text-align: center;
}

.testimonial-container {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease-out;
}

.why-testimonials-section h2 {
  font-size: 2.8rem;
  color: #111;
  margin-bottom: 20px;
}

.why-testimonials-section p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  padding: 0 10px;
}

.testimonial-quote {
  margin-top: 50px;
  position: relative;
  background: #fff;
  border-left: 4px solid rgb(59, 121, 255);
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

.testimonial-quote blockquote {
  font-style: italic;
  color: #333;
  font-size: 1.3rem;
  margin: 0;
}

.quote-icon {
  width: 40px;
  height: 40px;
  position: absolute;
  top: -20px;
  left: -20px;
  fill: rgb(59, 121, 255);
}


.trust-badges-section {
  padding: 80px 20px;
  background: #fefefe;
  text-align: center;
}

.trust-badges-section h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 10px;
}

.trust-badges-section .intro {
  font-size: 1rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-items: center;
}

.badge-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  max-width: 250px;
}

.badge-card:hover {
  transform: translateY(-5px);
}

.badge-card .icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #0e4e85; /* deep orange */
}

.badge-card h3 {
  font-size: 1.1rem;
  color: #222;
  margin: 0;
}





/* === ANIMATION === */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.client-highlights-section {
  padding: 100px 20px;
  background: #f4f4f4;
  text-align: center;
}

.client-highlights-section .section-title {
  font-size: 2.7rem;
  color: #111;
  margin-bottom: 60px;
  font-weight: 600;
}

.highlight-quote {
  background: white;
  padding: 50px 30px;
  margin-bottom: 40px;
  border-left: 5px solid #ff8c42;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-quote.alt {
  background: linear-gradient(to right, #fff5ee, #ffffff);
  border-left-color: #0e4e85;;
}

.highlight-quote .quote {
  font-size: 1.3rem;
  font-style: italic;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.highlight-quote .quote-meta {
  font-size: 1rem;
  color: #777;
}

.highlight-quote .client-name {
  font-weight: bold;
  display: block;
  color: #111;
}

.highlight-quote .service-tag {
  font-size: 0.9rem;
  color: #888;
  margin-top: 4px;
  display: block;
}



.refresh-cta {
  background: linear-gradient(to right, #f0f8ff);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.refresh-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.refresh-heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.refresh-subtext {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.refresh-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.refresh-btn {
  text-decoration: none;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.refresh-btn.primary-clean {
  background-color: #f68b1e;
  color: #ffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.refresh-btn.primary-clean:hover {
  background-color: #0064e7;
}

.refresh-btn.secondary-clean {
  border: 2px solid #0064e7;
  color: #f68b1e;
  background-color: #ffffff;
}

.refresh-btn.secondary-clean:hover {
  background-color: #0064e7;
}
.refresh-heading,
.refresh-subtext {
  color: #111; /* dark text */
}




contact

.contact-details-section {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
 
}

.contact-header-section {
  padding: 60px 20px;
  background-color: #fff;
 
}



.contact-details-title {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.contact-details-subtitle {
  color: #666;
  margin-bottom: 50px;
  font-size: 1rem;
}

.contact-details-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.contact-details-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.contact-details-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.contact-details-card .icon {
  margin-bottom: 15px;
  color: #0e4e85; /* Dark orange or your brand color */
}

.contact-details-card svg {
  width: 36px;
  height: 36px;
  stroke: #0e4e85;
}

.contact-details-card h3 {
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 5px;
  text-align: center;
}

.contact-details-card p {
  color: #555;
  font-size: 0.95rem;
  text-align: center;
}

.contact-details-card a {
  color: #D35400;
  text-decoration: none;
}

.contact-details-card a:hover {
  text-decoration: underline;
}


button:hover {
  background-color: #e55050;
}






/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== TOP HEADER ===== */
.top-header {
  background-color: #f7f7f7;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-contact a,
.header-social a {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  font-size: 0.9rem;
  color: #333;
}

.header-contact img,
.header-social img {
  width: 20px;
  margin-right: 8px;
}

/* ===== NAVIGATION BAR ===== */
.site-navbar {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo img {
  width: 140px;
}

.main-nav a {
  margin-left: 20px;
  font-weight: 600;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #2ec4b6;
}

.nav-cta {
  background-color: #2ec4b6;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  margin-left: 30px;
}

/* ===== HERO BANNER ===== */
.hero-banner {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.banner-overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.banner-content {
  color: #fff;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.hero-btn {
  background-color: #66bb6a
  color: #111;
  font-weight: 600;
  padding: 12px 20px;
  margin: 10px;
  border-radius: 5px;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #2ec4b6;
  color: #fff;
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

/* ===== CONTAINER SECTION ===== */
.container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.policy-section h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #111;
}

.policy-section h2 {
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #2ec4b6;
}

.policy-section p,
.policy-section ul {
  margin-bottom: 20px;
  font-size: 1rem;
}

.policy-section ul {
  padding-left: 20px;
  list-style: disc;
}

/* ===== FOOTER ===== */
.main-footer {
  background-color: #f9f9f9;
  padding: 40px 20px;
  margin-top: 40px;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand,
.footer-links,
.footer-social {
  flex: 1 1 250px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #555;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 10px;
  color: #111;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #444;
  font-size: 0.95rem;
}

.footer-links ul li a:hover {
  color: #2ec4b6;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  width: 24px;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
  margin-top: 20px;
  color: #666;
}

.footer-bottom a {
  color: #2ec4b6;
  margin: 0 5px;
}



/* Tablet view: max-width 992px */
@media (max-width: 992px) {
  .hero-section {
    padding: 60px 20px;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section p {
    font-size: 1.1rem;
  }

  .hero-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Mobile view: max-width 600px */
@media (max-width: 600px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .hero-btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }

  .cta-section {
    padding: 50px 15px;
  }

  .why-choose-us-section h2,
  .cta-section h2 {
    font-size: 1.8rem;
  }

  .reason-card,
  .testimonial-card {
    padding: 20px;
  }

  .testimonial-section h2,
  .contact-section h2 {
    font-size: 1.7rem;
  }
}


@media (max-width: 768px) {
  .nav-wrapper {
    flex-direction: column;
    align-items: flex-end;
    position: relative;
  }

  .nav-links {
    top: 100%;
    right: 0;
    width: 100%;
  }
}



@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
    padding: 0 15px;
  }

  .hero-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .nav-links {
    display: none; /* Hide desktop menu */
  }

  .menu-toggle {
    display: block; /* Show hamburger menu */
  }
}


/* HEADER STYLES */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo img {
  height: 65px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  margin-left: 20px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: none;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }

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

  .hamburger {
    display: block;
  }
}


@media (max-width: 600px) {
  .testimonial-carousel {
    gap: 20px;
    padding: 5px;
  }

  .testimonial-card {
    flex: 0 0 85%;
    padding: 20px;
  }

  .testimonial-content p {
    font-size: 0.95rem;
  }

  .testimonial-content h4 {
    font-size: 0.9rem;
  }

  .client-initials {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

body, html {
  max-width: 100%;
  overflow-x: hidden;
}

