/* =============================
   Base Reset & Typography
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f8fc;
  color: #002244;
  line-height: 1.6;
  overflow-x: hidden;
}

/* =============================
   Navbar
============================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo img {
  height: 60px;
  margin-right: 10px;
}

.nav-menu {
  display: flex;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-menu ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar li.active a,
.nav-menu ul li a:hover {
  color: #25d366; /* WhatsApp green */
}

/* Menu toggle for mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
}

/* =============================
   Hero Section
============================= */
.hero {
  padding: 4rem 2rem;
  background-color: #e6f0fa;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.hero-text {
  flex: 1 1 300px;
}

.hero-text h1 {
  color: #004080;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: #333;
}

.hero-image {
  flex: 1 1 300px;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
}

/* =============================
   CTA Button
============================= */
.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 12px 24px;
  background-color: #0077cc;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #0eafbb;
  transform: scale(1.05);
}

/* =============================
   About Section
============================= */
.about-section {
  background-color: #f4f8fc;
  color: #333;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeInUp 1s ease-in-out both;
}

/* Fade-In Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease-out forwards;
}

/* Intro Heading */
.about-intro {
  text-align: center;
  margin-bottom: 40px;
}

.about-intro h1 {
  font-size: 2.5rem;
  color: #004080;
  margin-bottom: 10px;
}

.about-intro p {
  font-size: 1.2rem;
  color: #555;
}

/* Content Layout */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
  justify-content: space-between;
}

/* Text Section */
.about-text {
  flex: 1 1 600px;
  font-size: 1.05rem;
  line-height: 1.8;
  padding: 10px;
  animation: fadeInUp 1.3s ease forwards;
}

.about-text h2 {
  margin-top: 30px;
  color: #004080;
  font-size: 1.5rem;
}

.about-text ul {
  margin-top: 10px;
  padding-left: 20px;
}

.about-text ul li {
  margin-bottom: 12px;
}

.about-text i.fas {
  color: #0077cc;
  margin-right: 8px;
}

/* Image Section */
.about-image {
  flex: 1 1 400px;
  width: 100%;
  animation: fadeInUp 1.4s ease forwards;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  .nav-menu ul {
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.nav-menu ul li {
  text-align: center;
  width: 100%;
}

.nav-menu ul li a {
  display: block;
  width: 100%;
  padding: 10px 0;
}

  .about-text,
  .about-image {
    flex: 1 1 100%;
  }
}
/* =============================
   Services Section 
============================= */
.services-section {
  background-color: #f4f8fc;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeInUp 1.5s ease-in-out both;
  max-width: 1200px;
  margin: auto;
}

.services-section .intro {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-in-out both;
}

.services-section .intro h1 {
  font-size: 2.5rem;
  color: #004080;
}

.services-section .intro h2 {
  font-size: 1.3rem;
  color: #333;
  margin-top: 1rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 1.2s ease-out both;
}

.service-card i {
  font-size: 2rem;
  color: #0077cc;
  margin-bottom: 0.8rem;
}

.service-card h2 {
  color: #004080;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-weight: normal;
  color: #333;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.service-images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.service-images img {
  width: 32%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  max-width: 100%;
}

/* CTA below services */
.cta-center {
  text-align: center;
  margin-top: 3rem;
}
/* =============================
   Contact Section
============================= */
.contact-section {
  background-color: #f4f8fc;
  padding: 4rem 2rem;
}

.contact-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.contact-form, .contact-info {
  flex: 1 1 45%;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin: 1rem 0 0.3rem;
  color: #004080;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0077cc;
  outline: none;
}

.contact-info p {
  margin: 1rem 0;
  font-size: 1rem;
}

.contact-info i {
  margin-right: 0.5rem;
  color: #0077cc;
}

.contact-info a {
  color: #25d366;
  text-decoration: none;
}

/* =============================
   Gallery Section
============================= */
.gallery-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.gallery-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* =============================
   WhatsApp Floating Button
============================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 15px;
  font-size: 24px;
  border-radius: 50%;
  z-index: 1000;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}


/* =============================
   Responsive Design
============================= */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #000;
    padding: 1rem;
  }

  .nav-menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content,
  .about-content,
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .service-images {
    flex-direction: column;
    
  }
}