/* ==========================================
   1. GLOBAL STYLES & RESET
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}

/* ==========================================
   2. NAVIGATION HEADER
   ========================================== */
nav {
  background: #08306b;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}

nav li {
  padding: 15px;
}

nav a {
  color: white;
  text-decoration: none;
}

#languageBtn {
  background: #fff;
  color: #08306b;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

#languageBtn:hover {
  opacity: 0.9;
}

/* ==========================================
   3. HERO BANNER
   ========================================== */
header {
  background: url("/Images/image1.jpeg") no-repeat center;
  background-size: cover;
  color: rgb(7, 15, 85);
  padding: 80px 20px;
  text-align: center;
}

header h1,
header p {
  width: fit-content;
  margin: 15px auto;
  background-color: #e7dfdf7e;
  padding: 10px;
  border-radius: 4px;
}

header h1 {
  font-size: 2rem;
}

header p {
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  background: white;
  color: #0d47a1;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* ==========================================
   4. LAYOUT STRUCTURE
   ========================================== */
section {
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
}

.center {
  text-align: center;
  margin-bottom: 20px;
}

/* ==========================================
   5. SERVICES BLOCK (Text Below Images)
   ========================================== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  font-weight: bolder;
}

.card1,
.card2,
.card3,
.card4 {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.card1 img,
.card2 img,
.card3 img,
.card4 img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
  color: #333333;
}

/* ==========================================
   6. BENEFITS & GALLERY
   ========================================== */
.benefits li {
  margin-bottom: 10px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* ==========================================
   7. FOOTER, MAP, & CONTACT INFO
   ========================================== */
iframe {
  width: 100%;
  border: none;
  border-radius: 8px;
}

.contact {
  text-align: center;
}

.contact p {
  margin: 10px 0;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
}

/* ==========================================
   8. FIXED FLOATING ACTION BUTTONS
   ========================================== */
.floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 101;
}

.floating a {
  color: white;
  text-decoration: none;
  padding: 12px 15px;
  border-radius: 50px;
  text-align: center;
}

.call {
  background: #0d47a1;
}
.text {
  background: #444;
}
.whatsapp {
  background: #25d366;
}

/* ==========================================
   9. RESPONSIVE DESIGN (Mobile & Tablet)
   ========================================== */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }

  nav li {
    padding: 8px;
  }

  header h1 {
    font-size: 1.8rem;
  }

  .services {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card1 img,
  .card2 img,
  .card3 img,
  .card4 img {
    height: 150px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: 180px;
  }
}
