/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #0a1d33; /* Deep Navy */
  background-color: #f7f9fc;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === HEADER & NAVIGATION === */
header {
  background-color: #0a1d33;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
    position: relative;
  height: 60px; /* lock header height */
  overflow: visible;
}

.logo {
  top: -20px; /* adjust how high it overflows */
}

.logo img {
  height: 133px; /* big logo */
  display: block;
}

nav {
  display: flex;
  align-items: center;
  
}
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0b1b2a;
  padding: 1rem;
  display: none;
   width: 250px;  
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 1000;
  flex-direction: column;
  border-radius: 6px;
}
.dropdown:hover .dropdown-menu {
  display: flex;
}
.dropdown-menu li {
  list-style: none;
  margin-bottom: 0.5rem;
}
.dropdown-menu li:last-child {
  margin-bottom: 0;
}
.dropdown-menu a {
  color: white;
  font-weight: 600;
  padding: 0.3rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem; /* spacing between icon and text */
  transition: background 0.2s ease;
}

.dropdown-menu a img {
  width: 18px;
  height: 18px;
}
.dropdown-menu a:hover {
  background-color: #f26522;
  color: white;
}

.dropdown-section {
  margin-right: 40px;
  min-width: 200px;
}

.dropdown-section h4 {
  color: #f26522;
  margin-bottom: 0.5rem;
}

.dropdown-section ul {
  list-style: none;
  padding: 0;
}

.dropdown-section ul li {
  margin-bottom: 0.5rem;
}

.dropdown-section ul li a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.dropdown-section ul li a i {
  margin-right: 0.5rem;
}



.hamburger {
  font-size: 2rem;
  color: white;
  cursor: pointer;
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  font-weight: 600;
}

.nav-links a.active {
  color: #f26522;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #0a1d33;
    position: absolute;
    top: 80px;
    left: 0;
    padding: 1rem;
  }
  
  .nav-links.show {
    display: flex;
  }
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(to right, #e6eef5, #ffffff);
  padding: 5rem 2rem;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}

.hero-left {
  flex: 1;
  text-align: center;
}

.hero-left h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.highlight-blue {
  color: #0a1d33;
}

.highlight-orange {
  color: #f26522;
}

.hero-left p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero-right {
  flex: 1;
  text-align: center;
}

.hero-right video {
  width: 100%;
  max-width: 550px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-buttons {
  justify-content: center;
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* === BUTTONS === */
.btn-primary,
.btn-secondary {
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #f26522;
  color: white;
}

.btn-primary:hover {
  background-color: #e15b1d;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #f26522;
  border: 2px solid #f26522;
}

.btn-secondary:hover {
  background-color: #f26522;
  color: white;
  transform: translateY(-2px);
}

/* === GENERAL SECTION STYLES === */
section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.section-gap {
  margin-top: 5rem;
}

/* Headings with Highlight */
.highlight-heading {
  font-size: 2rem;
  background: linear-gradient(to right, #0a1d33, #f26522);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Backgrounds */
.bg-lightblue {
  background-color: #e6eef5;
}

.bg-lightgrey {
  background-color: #f7f9fc;
}

/* === FLEX LAYOUT FOR SECTIONS === */
.section-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.section-flex.reverse {
  flex-direction: row-reverse;
}

.section-img img {
  width: 100px;
}

.section-text {
  flex: 1;
  text-align: left;
}

/* === GRIDS === */
.approach-grid,
.different-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* === CARDS === */
.approach-card,
.different-card,
.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.approach-card:hover,
.different-card:hover,
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* Card Icons */
.card-icon {
  width: 100px;
  margin-bottom: 1rem;
}
.quality-section {
  margin-bottom: 5rem; /* Adds nice gap below Commitment to Quality section */
}


/* Service Images */
.service-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* === CTA SECTION === */
.cta {
  background: #e6eef5;
  padding: 4rem 2rem;
  text-align: center;
}

.cta h2 {
  margin-bottom: 2rem;
}

/* === FOOTER === */
.footer {
  background-color: #0a1d33;
  color: white;
  text-align: center;
  padding: 2rem 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  height: 150px;
  margin-bottom: 1rem;
}

.footer-content a {
  color: #f26522;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: #ffaa80;
}

.social-icons {
  margin: 1rem 0;
}

.social-icons a {
  margin: 0 0.5rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* === FADE IN ANIMATION === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0px);
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 768px) {
.hero-content {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-left, .hero-right {
  width: 100%;
  padding: 0 1rem;
}

.hero-right img {
  width: 100%;
  height: auto;
  max-width: 100%;
}


  .section-flex,
  .section-flex.reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-img img {
    width: 80px; /* Adjust icon size for small screens */
    margin-bottom: 1rem;
  }

  .section-text {
    padding: 0 1rem;
  }

  .hero-left h1 {
    font-size: 1.8rem;
  }

  .hero-left p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

  .btn-primary {
    width: 100%;
    max-width: 300px;
  }
}


/* === ABOUT PAGE SPECIAL STYLES === */

/* Hero Banner */
.hero-banner {
  background: linear-gradient(to right, #e6f0f8, #ffffff);
  text-align: center;
  padding: 5rem 2rem;
}
.hero-banner-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-banner-text p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: #555;
}

/* Our Story Section */
.story-section {
  max-width: 1100px;
  margin: auto;
  padding: 4rem 2rem;
}
.story-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.story-text {
  flex: 1;
}
.story-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.story-text p {
  color: #444;
}
.story-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Values Section */
.values-section {
  background: #eef2f3;
  text-align: center;
  padding: 4rem 2rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.value-card {
  background: #ffffff;
  padding: 2rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: background 0.3s;
}
.value-card:hover {
  background: #f7f9fa;
}
.value-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.spaced-list li {
  margin-bottom: 12px;
}

/* Team Section */
.team-section {
  max-width: 1100px;
  margin: auto;
  padding: 4rem 2rem;
  text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.team-member {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.team-member:hover {
  transform: translateY(-5px);
}
.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.team-member h4 {
  margin-bottom: 0.25rem;
}
.team-member p {
  color: #555;
  font-size: 0.95rem;
}
.team-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .story-content {
    flex-direction: column;
    text-align: center;
  }
}


/* === SERVICES PAGE SPECIAL STYLES === */

/* Services Section */
.services-section {
  max-width: 1200px;
  margin: auto;
  padding: 4rem 2rem;
  text-align: center;
}
.services-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.service-card img {
  width: 100%;
}
.service-card h3 {
  font-size: 1.3rem;
  margin: 1rem 1rem 0.5rem;
  color: #002b45;
}
.service-card p {
  padding: 0 1rem 1.5rem;
  color: #555;
}

/* Optional Video Section */
.optional-video {
  background: #eef2f3;
  padding: 4rem 2rem;
  text-align: center;
}
.optional-video h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.optional-video video {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .optional-video video {
    width: 100%;
  }
}


/* === CONTACT PAGE SPECIAL STYLES === */

/* Contact Section */
.contact-section {
  max-width: 1200px;
  margin: auto;
  padding: 4rem 2rem;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
  justify-content: center;
}
.contact-form, .contact-details {
  flex: 1 1 400px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form,
.contact-info {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.contact-form h2,
.contact-info h2 {
  margin-bottom: 1rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form button {
  margin-top: 1rem;
}

/* Contact Info */
.contact-info p {
  margin: 0.75rem 0;
}
.contact-info a {
  color: #002b45;
  text-decoration: underline;
}

/* Map Section */
.map-section {
  padding: 4rem 2rem;
  text-align: center;
  background: #eef2f3;
}
.map-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
