/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}
body {
  color: #333;
  background: #f5f8fc;
  line-height: 1.6;
}

/* Navbar */

header {
  background: linear-gradient(90deg, #004080, #0066cc);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

/* Logo container aligned to the left */
.logo-container {
  margin-left: 0rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo image */
.logo-img {
  height: 70px;  /* Adjust logo size */
  width: auto;
  display: block;
}

/* Company name next to logo */
.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;  /* White text */
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffdd57;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}



/* Hero */
.hero, .page-hero {
  position: relative;
  background: center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  min-height: 70vh;
}
.hero .overlay, .page-hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,50,0.5);
  z-index: 1;
}
.hero-content, .page-hero h1 {
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
}
.hero-buttons {
  margin-top: 1.5rem;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin: 0 0.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn {
  background: #0066cc;
  color: #fff;
}
.btn:hover {
  background: #004080;
}
.btn-alt {
  background: #ffdd57;
  color: #004080;
}
.btn-alt:hover {
  background: #ffc107;
  color: #fff;
}

/* Stats */
.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 2rem 1rem;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.stat {
  flex: 1;
  text-align: center;
  margin: 1rem 0;
}
.stat h2 {
  font-size: 2rem;
  color: #004080;
}
.stat p {
  font-size: 1rem;
}

/* Featured Services */
.featured {
  padding: 3rem 2rem;
  text-align: center;
}

.featured h2 {
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 columns side by side */
  gap: 1.5rem;
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card i {
  font-size: 2rem;
  color: #0066cc;
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
  background: #e6f0ff;
  padding: 3rem 2rem;
  text-align: center;
}
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-style: italic;
}
.testimonial span {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #004080;
}

/* Footer */
footer {
  background: #004080;
  color: #fff;
  padding: 2rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.footer-section h3 {
  margin-bottom: 1rem;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section ul a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-section ul a:hover {
  color: #ffdd57;
}
.socials a {
  color: #fff;
  margin-right: 0.8rem;
  font-size: 1.2rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* About */
/* ---------- ABOUT PAGE ---------- */
.about-hero {
  background: linear-gradient(rgba(0, 40, 80, 0.6), rgba(0, 40, 80, 0.6)),
              url('images/about-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.about-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.about-content {
  padding: 80px 10%;
  background-color: #f8f9fc;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.about-text {
  flex: 1 1 400px;
}
.about-text h2 {
  color: #004080;
  margin-bottom: 10px;
}
.about-text p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #333;
}
.about-text ul {
  list-style: none;
  padding: 0;
}
.about-text ul li {
  margin-bottom: 10px;
  color: #333;
}
.about-text ul li i {
  color: #0066cc;
  margin-right: 10px;
}
.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Values Section */
.values {
  text-align: center;
  padding: 80px 10%;
  background: linear-gradient(90deg, #004080, #0066cc);
  color: #fff;
}
.values h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}
.value-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.value-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}
.value-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}
.value-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffdd57;
}
.value-card h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}
.value-card p {
  font-size: 0.95rem;
  color: #f1f1f1;
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2rem;
  }
  .about-hero p {
    font-size: 1rem;
  }
  .about-content {
    padding: 50px 5%;
    gap: 30px;
  }
  .about-image img {
    max-width: 100%;
  }
  .value-cards {
    flex-direction: column;
    gap: 20px;
  }
  .value-card {
    width: 100%;
  }
}


/* Services page */
.services {
  padding: 3rem 2rem;
  background: #f5f8fc;
}

/* ===== base ===== */
* { box-sizing: border-box; }
html,body { margin:0; padding:0; font-family: "Segoe UI", Arial, sans-serif; color:#222; }

/* ===== NAVBAR ===== */
header {
  background: linear-gradient(90deg,#004080,#0066cc);
  position: sticky; top:0; z-index:1000;
}
.navbar {
  max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between;
  padding:1rem 1.5rem;
}
.logo-container { display:flex; align-items:center; gap:10px; }
.logo-img { height:44px; width:auto; display:block; }
.logo-text { color:#fff; font-weight:700; font-size:1.4rem; letter-spacing:0.2px; }
.nav-links { list-style:none; display:flex; gap:1.25rem; margin:0; padding:0; align-items:center; }
.nav-links a { color:#fff; text-decoration:none; font-weight:600; padding:6px 8px; border-radius:6px; transition:all .18s; }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.06); color:#ffdd57; }
.menu-toggle { display:none; width:34px; height:28px; cursor:pointer; align-items:center; justify-content:center; }

/* hamburger lines */
.menu-toggle span{ display:block; height:3px; background:#fff; margin:4px 0; border-radius:2px; transition:transform .25s, opacity .25s; }

/* ===== HERO ===== */
.contact-hero { background: linear-gradient(180deg, rgba(0,64,128,0.12), rgba(0,102,204,0.06)); text-align:center; padding:3.25rem 1rem; }
.contact-hero .hero-inner { max-width:900px; margin:0 auto; }
.contact-hero h1 { margin:0 0 0.5rem; color:#003055; font-size:2rem; }
.contact-hero p { margin:0; color:#234; max-width:700px; margin-left:auto; margin-right:auto; }

/* ===== CONTACT SECTION ===== */
.contact-section { padding:2.5rem 1rem; background:#f7fbff; }
.contact-container { max-width:1100px; margin:0 auto; display:flex; gap:2rem; align-items:flex-start; flex-wrap:wrap; }
.contact-info, .contact-form { background:#fff; border-radius:12px; padding:1.5rem; box-shadow:0 10px 30px rgba(0,0,0,0.06); }
.contact-info { flex:1 1 320px; color:#004080; }
.contact-form { flex:1 1 420px; }
.contact-form h2{ margin-top:0; color:#004080; }
.contact-form input, .contact-form textarea { width:100%; padding:0.75rem; margin:0.6rem 0; border-radius:8px; border:1px solid #d8e6fb; background:#fbfdff; }
.small { color:#556; font-size:0.95rem; margin-top:0.75rem; }

/* button */
.btn { background:#004080; color:#fff; border:none; padding:0.8rem 1.2rem; border-radius:8px; cursor:pointer; font-weight:700; }
.btn:hover { background:#0066cc; transform:translateY(-2px); }

/* ===== REVIEW SECTION ===== */
.review-section { padding:2.5rem 1rem; background:#fff; }
.reviews-inner { max-width:1000px; margin:0 auto; text-align:center; }
.review-section h2 { color:#004080; margin-bottom:0.25rem; }
.review-section .lead { color:#445; margin-bottom:0.8rem; }
.review-form { display:grid; gap:0.6rem; justify-items:center; margin-bottom:1rem; }
.review-form input, .review-form textarea, .review-form select { width:100%; max-width:720px; padding:0.8rem; border-radius:8px; border:1px solid #e6eefc; }
.review-actions { display:flex; gap:1rem; align-items:center; justify-content:center; width:100%; max-width:720px; }
.rating-label { color:#004080; font-weight:600; display:flex; gap:0.5rem; align-items:center; }
#submitReviewBtn { padding:0.7rem 1rem; }

/* review list */
.review-list { margin-top:1rem; display:flex; flex-direction:column; gap:0.9rem; align-items:center; }
.review-item { width:100%; max-width:900px; text-align:left; background:#f6faff; border-left:4px solid #0066cc; padding:12px 14px; border-radius:8px; box-shadow:0 6px 16px rgba(2,39,94,0.04); }
.review-item .meta { color:#004080; font-weight:700; margin-bottom:6px; }

/* ===== FOOTER ===== */
footer { background:linear-gradient(90deg,#003366,#004d99); color:#fff; padding:2rem 1rem; margin-top:2rem; }
.footer-content { max-width:1100px; margin:0 auto; display:flex; gap:1.5rem; flex-wrap:wrap; justify-content:space-between; }
.footer-section { min-width:200px; }
.footer-section h3 { color:#ffdd57; margin-bottom:0.6rem; }
.footer-bottom { text-align:center; margin-top:1rem; opacity:0.85; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-form, .contact-info { flex:1 1 100%; }
  .menu-toggle { display:flex; }
  .nav-links { display:none; position:absolute; top:64px; right:0; background:linear-gradient(180deg,#004080,#0066cc); width:220px; padding:12px; flex-direction:column; gap:0.6rem; border-radius:0 0 0 8px; }
  .nav-links.show { display:flex; }
  .nav-links a { color:#fff; padding:10px; text-align:right; }
  .menu-toggle.open span:nth-child(1){ transform: rotate(45deg) translate(5px,5px); }
  .menu-toggle.open span:nth-child(2){ opacity:0; }
  .menu-toggle.open span:nth-child(3){ transform: rotate(-45deg) translate(5px,-5px); }
}


/* ===================== */
/* Service Card Sliders  */
/* ===================== */
/* Service Cards */
/* ===========================
   Basic layout + site styles
   =========================== */

/* Global reset + base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; }
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f5f8fc;
  color: #333;
  line-height: 1.6;
}

/* Header / Navbar */
header {
  background: linear-gradient(90deg, #004080, #0066cc);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logo { color: #fff; font-weight: 700; font-size: 1.3rem; }
.nav-links { list-style: none; display: flex; gap: 1rem; }
.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
}
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.06); color: #ffdd57; }
.menu-toggle { display: none; color: #fff; font-size: 1.25rem; cursor: pointer; }



/* ===========================
   Services Section + cards
   =========================== */
.services {
  padding: 2.5rem 1rem;
  background: #f5f8fc;
  /* background-image is set inline in HTML so we keep readability */
}
.services-inner { max-width: 1200px; margin: 0 auto; }

.services h2 {
  text-align: center;
  font-size: 2rem;
  color: #004080;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: stretch;
}

/* Card basics */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0.9rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%; /* stretch to equal height within the grid */
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.card h3 {
  margin: 0.9rem 0 0.45rem;
  font-size: 1.25rem;
  color: #003366;
  font-weight: 700;
}
.card p {
  color: #555;
  font-size: 0.98rem;
  margin-bottom: 0.8rem;
  flex-grow: 1;
}

/* Button in card */
.btn-card {
  display: inline-block;
  align-self: start;
  margin-top: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  background: linear-gradient(135deg,#0066cc,#003366);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform .18s ease, box-shadow .18s;
}
.btn-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }

/* ===========================
   Swiper specific styles
   =========================== */
.mySwiper {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.9rem;
  background: #eee; /* placeholder while images load */
}
.mySwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* make navigation buttons visible on any background */
.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
  background: rgba(0,0,0,0.35);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 14px; }

/* pagination bullets */
.swiper-pagination-bullet { background: rgba(255,255,255,0.85); opacity: 1; border: 1px solid rgba(0,0,0,0.08); }
.swiper-pagination-bullet-active { background: #0066cc; }

/* ===========================
   Testimonials & Footer
   =========================== */
.testimonials { padding: 2rem 1rem; background: #e9f1ff; margin-top: 2rem; }
.testimonials h2 { text-align: center; color: #004080; margin-bottom: 1rem; font-weight:700; }
.testimonial-cards { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); max-width:1200px; margin:0 auto; }
.testimonial { background:#fff; padding:1rem; border-radius:8px; box-shadow:0 4px 12px rgba(0,0,0,0.06); font-style: italic; }
.testimonial span { display:block; margin-top:0.6rem; font-weight:700; color:#004080; }

/* Footer */
footer { color:#fff; padding:2rem 1rem; background:#004080; }
.footer-content { max-width:1200px; margin:0 auto; display:grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap:1rem; }
.footer-section h3 { margin-bottom:0.6rem; }
.footer-section a { color:#fff; text-decoration:none; }
.footer-bottom { text-align:center; margin-top:1rem; font-size:0.9rem; }

/* ===========================
   Responsive adjustments
   =========================== */
@media (max-width: 900px) {
  .mySwiper { height: 200px; }
  .page-header h1 { font-size:1.6rem; }
}
@media (max-width: 600px) {
  .mySwiper { height: 170px; }
  .menu-toggle { display:block; }
  .nav-links { display:none; position:absolute; right:0; top:64px; background:#004080; flex-direction:column; padding:0.75rem; width:220px; }
  .nav-links.active { display:flex; }
}


/* Hamburger menu styling */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* When active - turn into an "X" */
.nav-links.active ~ .menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-links.active ~ .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-links.active ~ .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Show hamburger only on small screens */
@media (max-width: 500px) {
  .menu-toggle {
    display: flex;
  }
}



/* Navbar */
header {
  background: linear-gradient(90deg, #004080, #0066cc);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img { height: 45px; width: auto; }
.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}
.nav-links {
  display: flex;
  list-style: none;
  margin-left: auto;  /* THIS pushes the links all the way to the right */
  gap: 1.5rem;       /* spacing between items */
}

.nav-links li { margin-left: 1.5rem; }
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: #ffdd57; }
.menu-toggle {
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  margin-left: auto; /* push to far right */
  display: none; /* hide by default on desktop */
}

/* Responsive */
/* Mobile nav hidden by default */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #004080;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    text-align: right;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    margin-left: 0; 
    text-align: right; 
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links li { margin: 0.5rem 0; }
  .menu-toggle { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
}



/* Hamburger animation */
.menu-toggle span {
  display: block;
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

