* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #f2f5f9;
}
body {
  padding-top: 80px; /* adjust if your header height changes */
}


/* HEADER */
header {
  background: #fff;
  padding: 15px 0;
  color: #003366;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.youtube-btn {
  display: inline-flex;
  align-items: center;
  background: #FF0000;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s ease;
}

.youtube-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.youtube-btn:hover {
  background: #cc0000;
}



.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header img.logo {
  max-height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  color: #003366;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #007BFF;
}

/* HERO */
.hero {
  background: linear-gradient(to right, #007BFF, #0056b3);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.btn-primary {
  background: #00baff;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #0091da;
}

/* SERVICES */
.services {
  background: #f9f9f9;
  padding: 80px 20px;
}

.services h2 {
  text-align: center;
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 50px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.service-card h3 {
  color: #007BFF;
  margin-bottom: 10px;
  font-size: 1.4em;
}

.service-card p {
  color: #666;
}

/* TESTIMONIALS */
.testimonials {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 40px;
}

.testimonial-item {
  background: #f1f7ff;
  color: #333;
  border-radius: 10px;
  padding: 30px;
  margin: 0 auto 40px;
  max-width: 700px;
  font-style: italic;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
}

.testimonial-item::before {
  content: "“";
  font-size: 60px;
  color: #007BFF;
  position: absolute;
  top: -20px;
  left: 20px;
}

/* TEAM */
.team {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.team h2 {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 40px;
}

.team-card {
  background: #fff;
  display: inline-block;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.team-card img {
  max-width: 150px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-card h3 {
  color: #007BFF;
  margin-bottom: 10px;
  font-size: 1.5em;
}

.team-card p {
  color: #666;
}

/* CONTACT */
.contact {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 40px;
}

.contact div.form {
  max-width: 600px;
  margin: 0 auto 30px;
  display: grid;
  gap: 20px;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.contact button {
  background: #007BFF;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact button:hover {
  background: #0056b3;
}

.contact p a {
  color: #007BFF;
  text-decoration: none;
}

.contact p a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  background: #00224d;
  color: #fff;
  text-align: center;
  padding: 25px;
  font-size: 0.9em;
}
/* Hamburger hidden on desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
   body {
    padding-top: 100px;
  }
  nav ul {
    flex-direction: column;
    background: #003366;
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    display: none;
    padding: 20px;
    border-radius: 0 0 8px 8px;
  }

  nav ul.show {
    display: flex;
  }

  nav li {
    margin-bottom: 15px;
  }

  .menu-toggle {
    display: block;
    color: #fff;
  }

  header .header-flex {
    flex-wrap: wrap;
  }
}
/* Always hide hamburger by default */
.menu-toggle {
  display: none;
}

/* Mobile only */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    color: #003366;
  }

  nav ul {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    display: none;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }

  nav ul.show {
    display: flex;
  }

  nav li {
    margin-bottom: 15px;
  }

  nav a {
    color: #003366;
  }

  nav a:hover {
    color: #007BFF;
  }

  header .header-flex {
    flex-wrap: wrap;
  }
}
.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-carousel button {
  background: #007BFF;
  border: none;
  color: #fff;
  font-size: 24px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-carousel button:hover {
  background: #0056b3;
}

.testimonial-slide {
  overflow: hidden;
  max-width: 700px;
}

.testimonial-item {
  min-width: 100%;
  transition: transform 0.8s ease, opacity 0.8s ease;
  opacity: 0;
  position: absolute;
  left: 0;
}

.testimonial-item.active {
  opacity: 1;
  position: relative;
}
.service-card i {
  display: block;
  margin: 0 auto 15px auto;
  font-size: 40px;
  color: #007BFF;
  text-align: center;
}
.sent-message, .loading{
    display:none;
}


.experience-suite {
  background: linear-gradient(135deg, #eaf4ff, #f9fbff);
  padding: 80px 20px;
  text-align: center;
}

.experience-suite h2 {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 10px;
}

.btn-explore {
  display: inline-block;
  background: #007BFF;
  color: #fff;
  padding: 12px 30px;
  font-size: 1em;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-explore:hover {
  background: #0056b3;
}

.card-desc {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 30px auto;
  text-align: left;
}
.card-desc ul li {
    color: #555;
    margin-bottom: 8px;
    list-style-type: disc;
    font-size: 16px;
}
.card-desc p{
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}
.card-desc ul {
    margin-bottom: 20px;
    padding-left: 20px;
}
.center-button {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}


.newsletter {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.newsletter h2 {
  font-size: 2em;
  color: #003366;
  margin-bottom: 15px;
}

.newsletter p {
  color: #555;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.newsletter-form button {
  background: #007BFF;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #0056b3;
}

.message {
  margin-top: 15px;
  font-weight: 600;
  display: none;
}


