/* ================== ROOT COLORS ================== */
:root {
  --ocean-blue: #0077b6;
  --deep-blue: #023e8a;
  --green-accent: #00b050;
  --text-dark: #111;
  --white: #fff;
}

/* ================== BASE STYLES ================== */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--white);
 
}

.text-oceanBlue {
  color: #1E40AF;
}

/* ================== HEADER ================== */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  background: rgba(2, 62, 138, 0.95); /* deep blue tone */
  color: var(--white);
  z-index: 999;
  padding: 10px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}

.navbar .logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1E40AF;  
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: var(--green-accent);
}

.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--white);
}

/* ================= MOBILE MENU STYLE ================= */
@media (max-width: 768px) {
    
    /* Mobile menu icon rotation */
#menuToggle {
  transition: transform 0.35s ease;
}

/* When menu is open */
#menuToggle.active {
  transform: rotate(90deg);
}

#mobileNav {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 0;
}

/* Only apply flex when NOT hidden */
#mobileNav:not(.hidden) {
  display: flex;
}

  #mobileNav a {
    width: 70%;
    text-align: center;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 16px;
    transition: 0.25s ease;
  }
  
    #mobileNav a.mobile-link {
    display: block;
    width: 70%;
    margin: 10px auto;
    padding: 14px 0;
    text-align: center;
    background: #ffffff;
    border-radius: 10px;

    /* Modal shadow */
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);

    transition: 0.25s ease;
  }

  #mobileNav a:last-child {
    border-bottom: none;
  }

  /* Hover effect */
  #mobileNav a:hover {
    transform: scale(1.05);
    font-weight: bold;
    background: #f9fafb;
  }

}


/* ---------- Newsletter Skction ---------- */
.newsletter-section {
  background: #f1f3f4; 
  text-align: center;
  padding: 60px 6%;
  color: #111;
}

.newsletter-content h2 {
  color: #1E40AF;
   
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.newsletter-content p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 999px;
  font-size: 1rem;
}

.newsletter-form button {
  background: var(--green-accent);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #28a745;
}
 
 /* ---------- Loadi ---------- */
 
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.loading-overlay.active {
  display: flex;
  opacity: 1;
}

.loading-orbit {
  position: relative;
  width: 25vw;
  height: 25vw;
  max-width: 220px;
  max-height: 220px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.6s ease forwards;
}

.orbit-center {
  width: 26px;
  height: 26px;
  background: var(--ocean-blue);
  border-radius: 50%;
  position: absolute;
  display:none;
}

/* Orbit ring that rotates around the center */
.orbit-icons {
  position: absolute;
  width: 200px;  /* radius * 2 */
  height: 200px;
  border-radius: 50%;
  animation: orbitRotate 6s linear infinite;
}

/* Each icon is fixed at a point on the orbit ring */
.orbit-icons i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 1.8rem;
  color: var(--ocean-blue);
  transform-origin: 0 0; /* stays relative to orbit circle edge */
}

/* 8 evenly spaced icons around orbit */
.orbit-icons i:nth-child(1) { transform: rotate(0deg) translate(100px) rotate(0deg); }
.orbit-icons i:nth-child(2) { transform: rotate(45deg) translate(100px) rotate(-45deg); }
.orbit-icons i:nth-child(3) { transform: rotate(90deg) translate(100px) rotate(-90deg); }
.orbit-icons i:nth-child(4) { transform: rotate(135deg) translate(100px) rotate(-135deg); }
.orbit-icons i:nth-child(5) { transform: rotate(180deg) translate(100px) rotate(-180deg); }
.orbit-icons i:nth-child(6) { transform: rotate(225deg) translate(100px) rotate(-225deg); }
.orbit-icons i:nth-child(7) { transform: rotate(270deg) translate(100px) rotate(-270deg); }
.orbit-icons i:nth-child(8) { transform: rotate(315deg) translate(100px) rotate(-315deg); }

@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}




/* ---------- Footer Section ---------- */
.site-footer {
  background: #000;
  color: #fff;
  padding: 60px 8% 30px;
  font-family: "Poppins", sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
    color: #1E40AF;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 12px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.footer-section i {
   color: #1E40AF;
  font-size: 1rem;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #1E40AF;
}

.footer-divider {
  border: 0;
  border-top: 1px solid #333;
  margin: 40px 0 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ---------- Responsive (Mobile) ---------- */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-section h3 {
    font-size: 1.2rem;
  }

  .footer-section li {
    font-size: 1rem;
  }

  .footer-bottom {
    font-size: 0.85rem;
  }
}



/* OK Button */
.ok-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
    margin-top: 10px;
}

.ok-btn:hover {
    background: #0056b3;
}


 /* REVIEW SSECTION */
#messageBox {
    z-index: 9999;
    position: fixed;
    inset: 0;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}


