/* General Reset & Fonts */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #002f5c;
  line-height: 1.6;
}

/* === NAVIGATION === */
nav {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 10px 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #002f5c;
  font-size: 1.1em;
}

.nav-logo-img {
  width: 40px;
  margin-right: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #002f5c;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.cta-nav {
  color: #00b4ff;
}

.nav-links a.active {
  background-color: #00b4ff;
  color: white;
}

/* Header Section */
header {
  background-color: #002f5c;
  color: #fff;
  text-align: center;
  padding: 60px 20px 40px;
}

.logo {
  width: 140px;
  margin-bottom: 20px;
}

h1 {
  margin: 0;
  font-size: 2.2em;
}

header p {
  font-size: 1.1em;
  margin: 10px 0 25px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background-color: #00b4ff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0090cc;
}

/* Main Section Styling */
section {
  padding: 50px 20px;
  max-width: 800px;
  margin: auto;
}

h2 {
  color: #002f5c;
  margin-bottom: 20px;
  font-size: 1.8em;
}

/* About Section */
ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

#about ul {
  margin-top: 10px;
}

#about .cta-button {
  margin-top: 20px;
}

/* Package Cards */
.package-card {
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-left: 5px solid #008fd1;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.07);
}

.package-card h3 {
  margin-top: 0;
  font-size: 1.5em;
  color: #008fd1;
}

.package-card ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
}

.package-card ul li {
  padding: 5px 0;
}

.package-card .price {
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 15px;
}

/* Clients Section */
.clients {
  padding: 60px 20px;
  text-align: left;            /* left align section */
}

.clients .container {
  max-width: 1100px;
  margin: 0 auto;
}

.clients h2 {
  font-size: 2em;
  color: #002f5c;
  margin-bottom: 40px;
}

.client-logos {
  display: flex;
  justify-content: flex-start;   /* left align like About Us */
  align-items: center;
  gap: 40px;                     /* space between cards */
  flex-wrap: wrap;               /* responsive */
}

.logo-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  
  width: 200px;                  /* fixed equal size */
  height: 120px;                 /* fixed equal size */
  display: flex;
  justify-content: center;       /* center image inside */
  align-items: center;
}

.logo-card img {
  max-width: 100%;
  max-height: 80px;              /* logos same height */
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-card img:hover {
  transform: scale(1.08);
}







/* ✅ Conversational Enquiry Styles */
#enquiry {
  padding: 60px 20px;
  text-align: center;
}

#enquiry h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #002f5c;
}

.chat-box {
  max-width: 400px;
  margin: 30px auto;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  text-align: left;
}

.chat-message {
  margin: 10px 0;
  padding: 12px 15px;
  border-radius: 8px;
  max-width: 80%;
  font-size: 0.95em;
  line-height: 1.4;
}

.chat-message.bot {
  background: #f0f4f8;
  color: #002f5c;
}

.chat-message.user {
  background: #00b4ff;
  color: #fff;
  margin-left: auto;
}

.chat-input-container {
  display: flex;
  margin-top: 15px;
}

#chat-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}

#chat-next {
  background: #002f5c;
  color: white;
  border: none;
  padding: 10px 18px;
  margin-left: 8px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

#chat-next:hover {
  background: #004080;
}

/* FAQs */
#faqs {
  margin-bottom: 25px;
  padding-left: 15px;
}

.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  font-weight: bold;
  font-size: 1em;
  padding: 12px 0;
  color: #002f5c;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.3em;
  font-weight: bold;
  color: #00b4ff;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "–";
  color: #00b4ff;
}

.faq-answer {
  display: none;
  padding-left: 16px;
  padding-bottom: 10px;
  color: #333;
}

.faq-item.active .faq-answer {
  display: block;
}



/* Footer */
footer {
  text-align: center;
  padding: 25px;
  background-color: #002f5c;
  color: white;
  margin-top: 50px;
}

/* Responsive Nav */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links a {
    padding: 10px 0;
  }
}
