:root {
  --primary-blue: #1976D2;
  --accent-blue: #0D47A1;
  --soft-white: #F4F6F9;
  --dark-gray: #444B54;
  --royal-blue: #005CB2;
  --ocean-depth: #2B2B2B;
  --soft-white-alt: #FAFBFC;
  --charcoal: #2B2B2B;
  --font-script: 'Kaushan Script', cursive;
  --font-body: 'Lato', sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--soft-white);
  color: var(--dark-gray);
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  color: var(--dark-gray);
  margin-top: 0;
}

.site-logo {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--primary-blue);
  text-decoration: none;
}

.hero-tagline {
  font-family: var(--font-script);
  margin-top:5rem;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  background: var(--primary-blue);
  color: var(--soft-white-alt);
  padding: 4rem 0;
  text-align: center;
}

/* Ripple Effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-circle {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.6);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Simple responsive */
@media (min-width: 768px) {
	.hero { 
	padding: 6rem 0; 
	}
}

.section-hero { 
	background-color: #1976D2; /* your primary blue */ 
}

.btn {
	padding: .75rem 1.5rem; border-radius: .375rem; text-decoration: none; 
}

.btn-primary { 
	background-color: #FFFFFF; color: #1976D2; 
}

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

.grid {
	display: grid;
}

.grid-cols-2 {
	grid-template-columns: repeat(2,1fr);
}

/* …and so on for md:grid-cols-5, gap-6, py-16, etc. (or define your own) */
/* ensure container flex rules are applied */

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* style the nav list as a horizontal menu */
.site-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-menu li a {
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  display: block;
}

/* spacing between items (you can tweak the gap value) */
.site-menu.flex {
  gap: 1.5rem;
}
/*–– Force the nav list to sit side-by-side ––*/
.site-nav ul {
  display: flex !important;
  flex-direction: row !important;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav ul li {
  margin: .5rem .01rem; /* space between items */
}

.site-nav ul li a {
  display: block;   /* so padding hits the whole link area */
  padding: 0.5rem 0;
}

.section-hero {
  min-height: 80vh;  
  /* plus the flex/center rules above */
}

.section-hero {
  position: relative;
  overflow: hidden;
  padding-top:10rem;
  /* your existing min-height, centering, etc. */
}

/* SVG wave container */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;   /* you can tweak this */
  overflow: hidden;
  pointer-events: none;
}

.waves {
  position: absolute;
  display: block;
  width: 200%;
  height: 100%;
}

/* keep your keyframes as-is */
/* shared keyframes */
@keyframes waveAnim {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* wave1 – standard */
.wave1 {
  animation: waveAnim 15s ease-in-out infinite alternate;
  fill: rgba(255,255,255,0.7);
}

/* wave2 – same duration but phase-shifted by half the cycle */
.wave2 {
  animation: waveAnim 30s ease-in-out infinite alternate;
  animation-delay: -15s;    /* negative half of 30s */
  fill: rgba(255,255,255,0.5);
}

/* wave3 – you can mirror wave1 or shift differently */
.wave3 {
  animation: waveAnim 45s ease-in-out infinite alternate;
  animation-delay: -30s;    /* e.g. half of 40s */
  fill: rgba(255,255,255,0.3);
}

.text-white h1{
	color: var(--soft-white);
}

/* Button base */
.btn {
  display: flex;
  margin:1rem;
  flex-direction: column;
  padding: 0.75rem 2rem 1.5rem 2rem;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  background-color: #1976D2; /* pool water blue */
  color: white;
  border-radius: 0.5em;
  box-sizing:border-box;
  float:right;
  width: 15vw;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.75em 1.5em;
  border-radius: 0.5em;
}

/* Light button on blue background */
.btn-light {
  background-color: #ffffff;
  color: #1976D2;
}

.btn-light:hover {
  background-color: #f0f0f0;
}

/* Outline button on blue background */
.btn-outline-light {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline-light:hover {
  background-color: rgba(255,255,255,0.1);
}

/* Large size */
.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}

/* Hero tagline under H1 */
.hero-tagline {
  font-size: 2rem;             /* adjust as needed */
  color: rgba(255, 255, 255, 0.9); /* slightly transparent white */
  text-align: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.services-section {
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  animation: floatUp 1s ease-out both;
}

.service-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 50%;
  background-color: #f0f4f8;
  color: #1e2a38;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: background 0.3s, transform 0.3s;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: floatUp 0.8s ease forwards;
}

.service-circle:nth-child(1) { animation-delay: 0.1s; }
.service-circle:nth-child(2) { animation-delay: 0.2s; }
.service-circle:nth-child(3) { animation-delay: 0.3s; }
.service-circle:nth-child(4) { animation-delay: 0.4s; }
.service-circle:nth-child(5) { animation-delay: 0.5s; }

.service-circle:hover {
  background-color: #e0ecf3;
  transform: translateY(-4px);
}

@keyframes floatUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive: stack at smaller screen sizes */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  }

  .service-circle {
    width: 10rem;
    height: 10rem;
    font-size: 1rem;
  }
}


/* Review Section */
.reviews-section {
  background-color: #e6f3fb;
  padding: 4rem 1rem;
  overflow-x: hidden;
}

.reviews-container {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  animation: slideInLeft 0.8s ease forwards;
}

.review-card {
  background-color: #fff;
  color: #1e2a38;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex: 1 1 22%;
  min-width: 180px;
  max-width: 240px;
  transition: transform 0.3s ease;
}

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

.stars {
  font-size: 1.2rem;
  color: #f6b500; /* Gold */
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.review-author {
  font-size: 0.9rem;
  color: #555;
  font-style: italic;
}

@keyframes slideInLeft {
  from {
    transform: translateX(60px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Mobile Carousel Style */
@media (max-width: 768px) {
  .reviews-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 1rem;
    margin-left: 0; /* Ensure alignment */
  }

  .review-card {
    flex: 0 0 calc(100% - 2rem); /* Full width minus visible sliver */
    margin-right: 10px;
    scroll-snap-align: start;
  }

  /* Hide scrollbar for WebKit browsers */
  .reviews-container::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for Firefox */
  .reviews-container {
    scrollbar-width: none; /* Firefox */
  }
}

.about-section {
  background-color: #f4f6f9;
  padding: 4rem 1rem;
  color: #1e2a38;
}

.about-container {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-container p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Add this to your base styles */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

/* Keyframes for fade */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer {
	display:flex;
  background-color: var(--ocean-depth); /* dark background (optional) */
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
	  justify-content: center;
  align-items: center;
  text-align: center;
}

footer a {
  color: #f0f4f8;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer{justify-content: center;
  align-items: center;
  text-align: center;}

.site-footer {
  color: #fff;
  padding: 2rem 1rem;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-container a {
  color: #f0f4f8;
  text-decoration: none;
}

.footer-container a:hover {
  text-decoration: underline;
}

.cta {
  background-color: #69aaf5;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.cta h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.call-now {
  max-width: 1000px;
  margin: 0 auto;
}

.cta-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  gap: 2rem;
}

.cta-left,
.cta-right {
  flex: 1 1 45%;
}

.cta a {
  color: #fff;
  text-decoration: underline;
}

.cta .button {
  background-color: #0D47A1;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
  border-radius: 6px;
  color: #fff;
}
.cta .button:hover {
  background-color: #1565C0;
}

/* Mobile layout */
@media (max-width: 768px) {
  .cta-columns {
    flex-direction: column;
    text-align: center;
    align-items: center;
	display:space-between
  }

  .cta-left,
  .cta-right {
    flex: 1 1 100%;
  }
}

.cta .button {
  background-color: #0D47A1;
  border: box;
  padding: 1rem 2rem;
  font-size: 1rem;
  display: grid;
  margin: 1rem;
  text-decoration: none;
  border-radius: 6px;
  color: #fff;
  transition: background 0.3s ease;
  width:20vw;
  text-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  .cta-columns {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cta-left,
  .cta-right {
    flex: 1 1 90%;
  }

  .cta-right .button {
    width: 100%;
    max-width: 300px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}

.site-logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1976D2;
  text-decoration: none;
}

/* Menu button */
.menu-button {
  background: #1976D2;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1001;
}

/* Default hidden */
.mobile-menu {
  display: none;
}

.mobile-menu ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #1e2a38;
  font-weight: 500;
  padding: 0.5rem;
}

/* Mobile only */
@media (max-width: 768px) {
  .nav-container {
    position: relative;
  }

  .mobile-menu {
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 6px;
    display: none; /* override base display */
    z-index: 1000;
  }

  .mobile-menu.open {
    display: block;
  }

 .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .mobile-menu ul li a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    color: #1e2a38;
    text-decoration: none;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    padding: 1rem 1.5rem;
    max-width: 200px;
    margin: 0 auto;
    border-radius: 6px;
  }
}

.mobile-menu ul li a:hover {
  background: #f1f5fa;
}

@media (max-width: 768px) {
  .section-hero {
    padding: 6rem 1rem 3rem;
  }

  .section-hero h1 {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 300px;
  }

  .hero-tagline {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: flex !important;
    position: static !important;
    flex-direction: row;
    background: none;
    box-shadow: none;
    width: auto;
    margin-left: auto;
  }

  .mobile-menu ul {
    display: flex;
    gap: 2rem;
  }

  .mobile-menu ul li a {
    border: none;
    padding: 0.5rem 0;
    color: #1e2a38;
  }

  .menu-button {
    display: none;
  }
}
.about-container h2{padding-bottom:2rem;}
/*debugging
body {
  border: 1px dashed pink !important;
}
* {
  outline: 1px dashed hotpink !important;
}
debugging-done*/

.section-hero h1{
	margin-top:4rem;
}