/* =========================================
   GLOBAL RESET & BODY STYLING
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f4f7fb;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =========================================
   FLOATING WHATSAPP BUTTON
========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 5000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}


/* =========================================
   HEADER (BALANCED FONT SIZE + CLEANER SPACING)
========================================= */
header {
  background-color: #013c74;
  color: #fff;
  padding: 16px 42px; /* slightly reduced padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Left: Logo + Text */
.logo-area {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* --- Logo --- */
.logo-area img {
  height: 150px; /* slightly smaller for balance */
  width: 150px;
  object-fit: contain;
  background: transparent;
  border-radius: 50%;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
}

/* --- Logo Text --- */
.logo-text h1 {
  font-size: 1.5em; /* was 1.8em */
  font-weight: 700;
  margin-bottom: 3px;
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.logo-text p {
  font-size: 0.9em; /* was 1em */
  color: #d3e1f6;
  line-height: 1.4;
  margin: 0;
}

/* Right: Contact Info */
.contact-info {
  text-align: right;
  font-size: 0.9em; /* was 0.95em */
  line-height: 1.5;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9em;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info span {
  margin-right: 5px;
  font-style: normal;
}

/* =========================================
   RESPONSIVE HEADER
========================================= */
@media (max-width: 992px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 12px;
  }

  .contact-info {
    text-align: center;
    margin-top: 8px;
    font-size: 0.85em;
  }

  .logo-area img {
    height: 95px;
    width: 95px;
  }

  .logo-text h1 {
    font-size: 1.25em;
  }

  .logo-text p {
    font-size: 0.8em;
  }
}

@media (max-width: 600px) {
  .logo-area {
    flex-direction: column;
    text-align: center;
  }

  .logo-area img {
    height: 85px;
    width: 85px;
  }

  .logo-text h1 {
    font-size: 1.1em;
  }

  .logo-text p {
    font-size: 0.78em;
  }

  .contact-info {
    font-size: 0.8em;
  }
}


/* =========================================
   NAVBAR — Sticky, Elegant & Professional
========================================= */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: linear-gradient(90deg, #014b8e, #0254a2);
  color: #fff;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;

  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px); /* subtle modern glass effect */
}

/* Navigation Container */
nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  align-items: center;
}

/* Individual Items */
nav li {
  position: relative;
  display: inline-block;
}

/* Links */
nav li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  padding: 10px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* Hover Animation */
nav li a:hover,
nav li a.active {
  color: #ffd700;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: inset 0 -2px 0 #ffd700;
}

/* Smooth Dropdown */
nav ul li ul {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  background: #0254a2;
  border-radius: 8px;
  padding: 10px 0;
  flex-direction: column;
  min-width: 200px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  animation: dropdownFade 0.3s ease forwards;
}

/* Dropdown Fade Animation */
@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

nav ul li:hover > ul {
  display: flex;
}

nav ul li ul li {
  padding: 0;
}

nav ul li ul li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  border-radius: 0;
  transition: all 0.25s ease;
}

nav ul li ul li a:hover {
  background: #013c74;
  color: #ffd700;
  transform: translateX(4px);
}

/* ===========================
   NAVIGATION DROPDOWN FIX
=========================== */

/* Dropdown Arrow */
nav ul li > a::after {
  content: " ▼";
  font-size: 0.6em;              /* ⬇️ Smaller arrow */
  opacity: 0.7;
  margin-left: 4px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

nav ul li:hover > a::after {
  transform: rotate(180deg);
  opacity: 1;
}

/* Remove arrow if no submenu */
nav ul li:not(:has(ul)) > a::after {
  content: "";
}

/* ===========================
   ELEGANT DARK DROPDOWN MENU
=========================== */

/* Dropdown Arrow */
nav ul li > a::after {
  content: " ▼";
  font-size: 0.55em;          /* smaller arrow */
  opacity: 0.8;
  margin-left: 4px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

nav ul li:hover > a::after {
  transform: rotate(180deg);
  opacity: 1;
}

/* Remove arrow if no submenu */
nav ul li:not(:has(ul)) > a::after {
  content: "";
}

/* ===========================
   CLEAN BLUE NAVBAR + DROPDOWN
=========================== */

/* NAVIGATION BAR */
nav {
  background: #0254a2;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  font-family: 'Poppins', sans-serif;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  position: relative;
  margin: 0;
  padding: 0;
}

nav li {
  position: relative;
}

nav li a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 12px;
  transition: 0.3s;
}

nav li a:hover {
  color: #ffd700;
}

/* ▼ Small arrow for dropdown items */
nav ul li > a::after {
  content: " ▼";
  font-size: 0.55em;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

nav ul li:hover > a::after {
  transform: rotate(180deg);
  opacity: 1;
}

nav ul li:not(:has(ul)) > a::after {
  content: "";
}

/* DROPDOWN MENU */
nav ul li ul {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background: #013c74; /* ✅ darker shade for dropdown */
  border-radius: 8px;
  padding: 6px 0; /* ✅ compact height */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-width: 160px; /* ✅ smaller box */
  z-index: 999;
}

/* Show dropdown with fade effect */
nav ul li:hover > ul {
  display: block;
  animation: dropdownFade 0.25s ease forwards;
}

/* Dropdown items */
nav ul li ul li {
  padding: 6px 14px; /* ✅ smaller line height */
  white-space: nowrap;
}

nav ul li ul li a {
  color: #f8f9fa;
  font-size: 0.9rem;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

nav ul li ul li a:hover {
  background: #ffd700;
  color: #013c74;
  border-radius: 4px;
  transform: translateX(3px);
}

/* Animation */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   RESPONSIVE NAVBAR (Mobile)
========================================= */
@media (max-width: 992px) {
  nav {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  nav li a {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  nav ul li ul {
    position: static;
    box-shadow: none;
    background: #0254a2;
  }

  nav ul li:hover > ul {
    display: none; /* prevent hover flickers on mobile */
  }
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 12px;
  }

  nav li a {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* =========================================
   PROFESSIONAL FOOTER STYLE
========================================= */
.site-footer {
  background: linear-gradient(180deg, #013c74, #012a56);
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding-top: 45px;
  position: relative;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
}

/* Layout Grid */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 0 50px 45px;
}

/* Section Titles */
.footer-about h3,
.footer-links h3,
.footer-newsletter h3 {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 12px;
  position: relative;
}

.footer-about h3::after,
.footer-links h3::after,
.footer-newsletter h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #ffd700;
  margin-top: 6px;
  border-radius: 4px;
}

/* About Section */
.footer-about p {
  color: #e6edf5;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer-about i {
  color: #ffd700;
  margin-right: 8px;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 7px;
}
.footer-links a {
  color: #dfe6ee;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-links a:hover {
  color: #ffd700;
  margin-left: 3px;
}

/* Newsletter */
.footer-newsletter p {
  font-size: 0.95rem;
  color: #e6edf5;
  margin-bottom: 10px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}
.newsletter-form input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  outline: none;
}
.newsletter-form button {
  background: #ffd700;
  color: #013c74;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.newsletter-form button:hover {
  background: #fff;
}

/* Map */
.footer-map {
  margin-top: 15px;
}
.footer-map h3 {
  color: #ffd700;
  margin-bottom: 8px;
}

/* Social Links */
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  background: #ffd700;
  color: #013c74;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: #fff;
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  background: #012a56;
  text-align: center;
  padding: 15px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-bottom p {
  font-size: 0.9rem;
  color: #dbe3ef;
  margin: 0;
}
.footer-bottom a {
  color: #ffd700;
  text-decoration: none;
  margin: 0 6px;
}
.footer-bottom a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    padding: 0 20px 35px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form button {
    width: 100%;
  }
}

/* =========================================
   RESPONSIVE FOOTER
========================================= */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section h3 {
    margin-top: 20px;
  }

  .footer-map iframe {
    height: 200px;
  }
}


/* =========================================
   UTILITY CLASSES
========================================= */
.container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.btn {
  background: #ffd700;
  color: #013c74;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #fff;
  color: #013c74;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 992px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact-info {
    text-align: left;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .logo-text h1 {
    font-size: 1.1em;
  }

  .logo-text p {
    font-size: 0.8em;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-links ul {
    flex-direction: column;
    align-items: center;
  }
}
