/* Fonts */
    @import url('https://fonts.googleapis.com/css2?family=Yeseva+One&family=Montserrat:wght@400;500;600&display=swap');

    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
    }

    .floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.floating-buttons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.floating-buttons a:hover,
.floating-buttons a:focus {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.35);
}
.floating-buttons a .fab-label {
  display: none;
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%);
  background: #023e8a;
  color: #fff;
  padding: 7px 18px;
  border-radius: 7px;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0 2px 8px #0077b633;
  z-index: 10001;
}
.floating-buttons a:hover .fab-label,
.floating-buttons a:focus .fab-label {
  display: block;
}
.whatsapp-btn {
  background-color: #25D366;
}
.call-btn {
  background-color: #0A84FF;
}
/* Show label below icon on mobile */
@media (max-width: 600px) {
  .floating-buttons a .fab-label {
    right: auto;
    left: 50%;
    top: 110%;
    transform: translateX(-50%);
    font-size: 0.98rem;
    padding: 7px 14px;
  }
}

    /* Header */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      background: transparent;
      transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      transition: padding 0.4s;
    }

    header.scrolled {
      background: #0284c7; /* sea blue */
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      padding: 12px 30px;
    }

    /* Logo */
    .logo {
      font-family: 'Yeseva One', cursive;
      font-size: 32px;
      font-weight: bold;
      color: white;
      text-align: center;
      flex-shrink: 0;
      transition: font-size 0.3s;
    }

    header.scrolled .logo {
      font-size: 28px;
    }

    /* Navbar items */
    .nav-left,
    .nav-right {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .nav-left a,
    .nav-right a {
      text-decoration: none;
      color: white;
      font-weight: 500;
      font-size: 15px;
      position: relative;
      transition: color 0.3s;
    }

    .nav-left a::after,
    .nav-right a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 0%;
      height: 2px;
      background: white;
      transition: width 0.3s;
    }

    .nav-left a:hover::after,
    .nav-right a:hover::after {
      width: 100%;
    }

    /* Dropdown */
    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      min-width: 180px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.15);
      border-radius: 4px;
      overflow: hidden;
    }

    .dropdown-content a {
      display: block;
      padding: 10px 15px;
      color: #333 !important;
    }

    .dropdown-content a:hover {
      background: #f3f3f3;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    /* Mobile */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: white;
    }

    @media (max-width: 768px) {
      .nav-left,
      .nav-right {
        display: none;
        flex-direction: column;
        background: #0284c7;
        width: 100%;
        padding: 10px 0;
      }

      .nav-left.show,
      .nav-right.show {
        display: flex;
      }

      .navbar {
        flex-wrap: wrap;
      }

      .menu-toggle {
        display: flex;
      }

      .logo {
        order: -1;
        flex: 1;
        text-align: left;
        font-size: 26px;
      }
    }

    /* Hero Section */
    .hero {
      height: 100vh;
      background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
      padding: 0 20px;
    }

    .hero h1 {
      font-family: 'Yeseva One', cursive;
      font-size: 50px;
      margin-bottom: 15px;
    }

    .hero p {
      font-size: 20px;
      margin-bottom: 30px;
    }

    .hero .btns a {
      display: inline-block;
      padding: 12px 25px;
      margin: 5px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn-primary {
      background: #0284c7;
      color: white;
    }

    .btn-primary:hover {
      background: #0369a1;
    }

    .btn-outline {
      border: 2px solid white;
      color: white;
    }

    .btn-outline:hover {
      background: white;
      color: #0284c7;
    }




.services-section {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.services-section .section-title {
  font-family: 'Yeseva One', serif;
  font-size: 40px;
  margin-bottom: 10px;
  color: #073044;
}

.services-section .section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  margin-bottom: 40px;
  color: #444;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: all 0.4s ease-in-out;
  text-align: left;
  position: relative;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card h3 {
  font-family: 'Yeseva One', serif;
  font-size: 22px;
  margin: 15px;
  color: #06a475;
}

.service-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  margin: 0 15px 20px;
  color: #333;
}

/* Hover effect */
.service-card:hover {
  background: linear-gradient(135deg, #e6fdf7, #f9fffc);
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.service-card:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card img {
    height: 200px;
  }
}





/* ...existing code... */

/* Enhanced Contact Section */
.contact-section {
  background: linear-gradient(120deg, #e0f7fa 60%, #b9e6fb 100%);
  padding: 2.5rem 1rem 2rem 1rem;
  border-top: 2px solid #bde0fe;
  border-bottom: 2px solid #bde0fe;
}
.contact-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.contact-info {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: #073044;
  line-height: 1.7;
}
.contact-link {
  color: #0284c7;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-link:hover {
  color: #03506f;
  text-decoration: none;
}

/* Enhanced Contact Button */
.btn-primary.stylish-btn {
  margin-top: 1.2rem;
  background: linear-gradient(90deg, #0284c7 0%, #06a475 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 18px rgba(2,132,199,0.13);
  font-size: 1.18rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 0.95rem 2.5rem;
  border-radius: 32px;
  transition: background 0.25s, box-shadow 0.25s, transform 0.18s;
}
.btn-primary.stylish-btn:hover,
.btn-primary.stylish-btn:focus {
  background: linear-gradient(90deg, #06a475 0%, #0284c7 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(6,164,117,0.18);
  transform: translateY(-2px) scale(1.04);
  text-decoration: none;
}

/* Enhanced Footer */
.footer {
  background: linear-gradient(90deg, #0a2540 70%, #0284c7 100%);
  color: #fff;
  text-align: center;
  padding: 1.5rem 0 0.7rem 0;
  margin-top: 2.5rem;
  font-size: 1.08rem;
  letter-spacing: 0.2px;
  border-top: 2px solid #bde0fe;
}
.footer-credit {
  font-size: 0.98em;
  color: #bde0fe;
  margin-top: 0.3rem;
  display: inline-block;
}
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 2px solid #bde0fe;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 4px 0;
  z-index: 9999;
  box-shadow: 0 -2px 12px rgba(2,132,199,0.08);
}
.mobile-bottom-bar a {
  flex: 1;
  text-align: center;
  color: #0284c7;
  font-size: 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: color 0.2s, transform 0.2s;
  padding: 2px 0;
}
.mobile-bottom-bar a:hover,
.mobile-bottom-bar a:focus {
  color: #06a475;
  transform: scale(1.12);
}
.mobile-bottom-bar .bar-label {
  font-size: 0.85rem;
  margin-top: 2px;
  color: #073044;
  letter-spacing: 0.2px;
}
.mobile-bottom-bar i.fa-whatsapp {
  color: #25D366;
}
.mobile-bottom-bar i.fa-phone {
  color: #0284c7;
}
.mobile-bottom-bar i.fa-house {
  color: #073044;
}
.mobile-bottom-bar i.fa-image {
  color: #0369a1;
}
@media (min-width: 900px) {
  .mobile-bottom-bar {
    display: none;
  }
}

/* ...keep the rest of your existing CSS... */