/* ---------------- Reset & Base ---------------- */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  padding-top: 100px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #003366;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---------------- Header ---------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #003366;
  padding: 0.8rem 1rem;
  color: white;
  height: auto;
}

.logo-img {
  height: 60px;
  width: auto;
  border-radius: 50%;
}

/* Desktop Menu */
.menu {
 display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 0 50px;
}

.menu ul {
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.menu ul li a {
  color: white;
  font-weight: bold;
  font-size: 1rem;
  padding: 8px 12px;
  transition: all 0.3s ease;
  border-radius: 5px;
  white-space: nowrap;
}

.menu ul li a:hover {
  background-color: yellow;
  color: #003366;
}



/* ---------------- Hamburger Menu ---------------- */
.hamburger {
    display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  margin-left: auto;   
  margin-right: 10px; 
  z-index: 1001;
    right: 10px;   
  position: relative;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Dropdown */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #003366;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu ul {
  flex-direction: column;
  padding: 0;
}

.mobile-menu ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li:last-child {
  border-bottom: none;
}

.mobile-menu ul li a {
  display: block;
  padding: 15px 20px;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.mobile-menu ul li a:hover {
  background-color: rgba(255, 215, 0, 0.2);
  color: yellow;
  padding-left: 30px;
}

/* ---------------- Responsive Styles ---------------- */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .menu {
    display: none;
  }

  .navbar {
    padding: 0.8rem 1rem;
  }

  .logo-img {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.6rem 0.8rem;
  }

  .logo-img {
    height: 45px;
  }

  .mobile-menu ul li a {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
}

/* ---------------- Banner ---------------- */
.background {
  position: relative;
  width: 100%;
  min-height: 500px;
  background-image: url('/images/background.jpeg');
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.background-text {
  color: white;
  text-align: center;
  max-width: 900px;
}

.background-text h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.background-text p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.background-text .btn {
  padding: 0.8rem 1.6rem;
  background-color: #0056b3;
  color: white;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.3s;
}

.background-text .btn:hover {
  background-color: #004a99;
  color: yellow;
}

/* ---------------- Why Choose Us ---------------- */
.why-choose-container {
  background: #f0f0f0;
  border: 2px solid #555;
  outline: 3px solid #003366;
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem auto;
  width: 95%;
  max-width: 1200px;
  box-sizing: border-box;
}

.why-choose h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
  text-align: center;
}

.why-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.why-columns li {
  background: rgba(0, 0, 0, 0.05);
  padding: 1.2rem;
  border-radius: 10px;
  font-size: 1rem;
  line-height: 1.5;
  transition: transform 0.2s ease;
}

.why-columns li:hover {
  transform: translateY(-5px);
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
  .why-choose-container {
    padding: 1.5rem;
    margin: 1.5rem auto;
  }

  .why-choose h2 {
    font-size: 1.6rem;
  }

  .why-columns {
    grid-template-columns: 1fr; 
    gap: 15px;
  }

  .why-columns li {
    font-size: 0.95rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .why-choose-container {
    padding: 1rem;
    margin: 1rem auto;
  }

  .why-choose h2 {
    font-size: 1.4rem;
  }

  .why-columns li {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
}


/* ---------------- Services ---------------- */
.services-preview {
  padding: 3rem 1rem;
  text-align: center;
}

.services-preview h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  flex: 1 1 300px;
  max-width: 500px;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.5;
}

.card-btn {
  align-items: center;
  padding: 0.6rem 1.2rem;
  background: #003366;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.card-btn:hover {
  background: #d4af37;
}

/* ---------------- Get Started ---------------- */
.get-started {
  background: url('/images/banner.jpeg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
}

.get-started-container {
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: flex-start;
}

.text-content {
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  max-width: 500px;
  transition: 0.3s;
}

.text-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.text-content p {
  font-size: clamp(1rem, 2vw, 1.5rem);
}

.text-content:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.btn.primary {
  background: #007bff;
  padding: 0.8rem 2rem; 
  border-radius: 6px;
  display: block;        
  width: 200px;         
  text-align: center;    
  margin: 1.5rem auto 0; 
  font-size: 1.1rem;    
  transition: background 0.3s ease, color 0.3s ease;
}

.btn.primary:hover {
  background: #0056b3;
  color: yellow;
}

/* ---------------- FAQ ---------------- */
.faq {
  padding: 3rem 1rem;
  text-align: center;
}

.faq h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
}

.faq details {
  margin: 1rem auto;
  max-width: 700px;
  background: #eef2f5;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  text-align: left;
  overflow: hidden; 
  transition: max-height 0.8s ease;
}

.faq summary {
  cursor: pointer;
  font-weight: bold;
  outline: none;
}

.faq details[open] {
  max-height: 500px; 
}

.faq details:not([open]) {
  max-height: 40px; 
}
/* ---------------- Footer ---------------- */
.footer {
  background: #003366;
  color: white;
  padding: 2rem 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: auto;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.4rem;
}

.footer-section a {
  color: #ccc;
  font-size: 1rem;
  margin: 0.3rem 0;
  display: block;
  transition: 0.3s;
}

.footer-section a:hover {
  color: yellow;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid #ccc;
  margin-top: 1.5rem;
  padding-top: 1rem;
}