:root {
  --primary: #0077b6;
  --primary-dark: #03045e;
  --secondary: #90e0ef;
  --accent: #00b4d8;
  --text: #17252a;
  --text-light: #5a6c75;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
}
/* NAVIGATION */
nav {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1001;
}

.nav-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
}

.services {
  display: flex;
  position: relative;
  width: fit-content;
  color: black;
  align-items: center;
}

#servicesText {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.services img {
  height: fit-content;
  width: fit-content;
  margin: 0 5px;
  transform: translateY(2px);
  transition: transform .2s ease;
}

.services:hover img {
  transform: rotate(180deg);
}

.ourServices {
  background-color: white;
  display: none;
  position: absolute;
  padding: 1em .5em;
  width: 150px;
  top: 90%;
  left: -10px;
}
.services-mobile {
  display: none;
}

.ourServices li {
  margin-top: 10px;
  list-style: none;
}

.services:hover .ourServices{
  display: block;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-left: auto;
}

a {
  text-decoration: none;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  width: fit-content;
  margin-left: auto;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../Images/droplets.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: var(--shadow-lg);
}

/* CONTACT BANNER */
.contact-banner {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 2rem;
}

.contact-banner h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.phone-number {
  font-size: 2rem;
  font-weight: bold;
}

.phone-number a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s;
}

/* SECTION STYLING */
section {
  padding: 80px 20px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}
.swiper-mobile-only {
  display: none !important;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text);
}

/* ABOUT SECTION - GRID LAYOUT */
#about {
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  display: block;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
}
.services-grid a {
  display: flex;         
  text-decoration: none; 
  color: inherit;        
}
.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  text-align: center;
  border: 2px solid transparent;
  flex: 1;
  width: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* WHY CHOOSE US SECTION */
#why-choose {
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
}

.feature-box h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature-box p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* GALLERY SECTION */
#gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

/* CONTACT SECTION */
#contact {
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.contact-info p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-item-text strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.contact-item-text a {
  color: var(--primary);
  text-decoration: none;
}

form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
}

button {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s;
}

#form-message {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}

/* FOOTER */
footer {
  background: var(--text);
  color: var(--white);
  padding: 3rem 2rem 1.5rem;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--secondary);
}

.footer-section p, .footer-section a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}

/* HONEYPOT */
#bot-field {
  display: none;
}

/* RESPONSIVE DESIGN */
@media (min-width: 768px) {
  .nav-links a:hover {
    color: var(--primary); 
  }
  .cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  }
  .phone-number a:hover {
    opacity: 0.9;
    text-decoration: underline;
  }
}
@media (max-width: 1024px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  .nav-container {
    padding: 1rem 1rem;
  }

  .logo {
    white-space: nowrap;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: .5rem 0;
    box-shadow: var(--shadow-lg);
    gap: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.active {
    display: flex;
    max-height: 500px;
    opacity: 1;
  }

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

  .nav-links a {
    display: block;
    padding: .5rem .5rem;
    border-bottom: 1px solid var(--bg-light);
  }

  .nav-links a:hover {
    background: var(--bg-light);
  }

  .mobile-menu-toggle {
    display: block;
  }
  .services-mobile {
    display: block;
    border-bottom: 1px solid var(--bg-light);
  }
  .a-mobile {
    margin-left: 2rem;
    list-style: none;
  }
  .li-mobile {
    display: block;
    padding: .5rem .5rem;
  }
  .a-mobile a {
    border-bottom: none;
  }
  .nav-links > li:last-child a {
    border-bottom: none;
  }

  /* Hero Section */
  .hero h1 {
    font-size: 2.5rem;
  }

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

  #serviceTab {
    display: none;
  }

  /* General */
  .section-title {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .phone-number {
    font-size: 1.5rem;
  }

  .swiper-mobile-only {
    display: block !important;
    width: 100%;
    padding: 0 15px 40px;
  }
  .swiper-slide {
    border-radius: 8px;
    overflow: hidden;
    padding: 0 5px;
  }
  .swiper {
    padding-bottom: 40px !important;
  }
  #gallery .container {
    display: none;
  }

  #gallery {
    padding: 40px 10px;
  }

  /* Swiper slide images */
  .swiper {
    width: 100%;
    padding-bottom: 40px; /* room for pagination dots */
  }

  .swiper-slide img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px; /* match your existing gallery-item style if any */
    display: block;
  }

  /* Pagination dot color — change to match your brand */
  .swiper-pagination-bullet-active {
    background: #2563eb;
  }

  /* Footer */
  .footer-bottom {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

@media (max-width: 500px) {
  .contact-banner h2 {
    font-size: 1.2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }

  
  .phone-number {
    font-size: 1.3rem;
  }

  /* Even smaller footer text if needed */
  .footer-bottom {
    font-size: 0.8rem;
  }
}

@media (min-width: 768px) {
  button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
  }
}