/* ---------- Reset & Base ---------- */

/* --- Global Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;600;700&display=swap');

/* --- Global Reset & Base Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #223043;
  background: #f7f9fb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* Optional — Ensures all major text elements use Lato */
h1, h2, h3, h4, h5, h6, p, a, button {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}


/* * { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #223043;
  background: #f7f9fb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
} */

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e6eef6;
  position: sticky;
  top: 0;
  z-index: 60;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 14px 0;
}
.logo img { height: 52px; display: block; }

/* Nav */
.site-nav ul { list-style: none; display: flex; gap: 20px; align-items: center; }
.site-nav a { color: #223043; font-weight: 600; padding: 8px 10px; border-radius: 6px; }
.site-nav a:hover, .site-nav a.active { background: rgba(0,123,255,0.08); color: #0056b3; }

/* header actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone { font-weight: 700; color: #0056b3; text-decoration: none; }
.nav-toggle { display: none; background: none; border: 0; font-size: 20px; cursor: pointer; }

.fullform-premium {
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  animation: fadeUp 1.8s ease;
}

.fullform-premium::before,
.fullform-premium::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255,215,0,0), rgba(255,215,0,0.7), rgba(255,215,0,0));
}

.fullform-premium span {
  padding: 4px 16px;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: #dbe9ff;  /* soft light blue */
  text-shadow: 0 0 6px rgba(219,233,255,0.25);
}

.fullform-premium::before,
.fullform-premium::after {
  background: linear-gradient(to right, rgba(219,233,255,0), rgba(219,233,255,0.7), rgba(219,233,255,0));
}


/* ---------- Hero ---------- */
/* About Hero Section */
.about-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-image: url('../assets/images/1.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* Dark overlay for contrast */
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

/* Left Text Section */
.hero-left {
  flex: 1;
  min-width: 300px;
  text-align: center; /* Center text like McGill */
}

.hero-left h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}

.hero-left p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f0f0f0;
  line-height: 1.6;
}

/* CTA Buttons */
.hero-left .btn {
  margin: 0 10px 10px 10px;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background-color: #ff6600;
  color: #fff;
}

.btn-outline {
  border: 2px solid #ff6600;
  color: #ff6600;
  background: none;
}

.btn:hover {
  opacity: 0.9;
}

/* Right Image Section */
.hero-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-right img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(11,35,60,0.2);
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .hero-left h1 {
    font-size: 2.4rem;
  }
  .hero-left p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-inner {
    flex-direction: column-reverse;
  }
  .hero-left, .hero-right {
    text-align: center;
  }
  .hero-right img {
    max-width: 80%;
  }
}


/* hero trust */
.trust-row { display:flex; gap: 14px; margin-top: 18px; }
.trust-item { background: #fff; padding: 10px 14px; border-radius: 8px; box-shadow: 0 6px 18px rgba(11,35,60,0.04); font-weight:600; color:#223043; }

/* Buttons */
.btn { display:inline-block; padding:10px 16px; border-radius:8px; font-weight:700; border:0; cursor:pointer; }
.btn-primary { background: #007bff; color: #fff; }
.btn-outline { background: transparent; border: 2px solid #dbe9ff; color:#0056b3; padding:8px 14px; }

/* ---------- Sections ---------- */
.section { padding: 60px 0; }
.section-title { font-size:1.6rem; color:#0f1720; margin-bottom:8px; }
.section-sub { color:#64748b; margin-bottom:24px; text-align:center; }

/* cards grid */
.cards-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap:18px; margin-top:28px; }
.card { background:#fff; border-radius:10px; padding:22px; box-shadow: 0 8px 24px rgba(11,35,60,0.04); text-align:center; transition:transform .28s; }
.card:hover{ transform: translateY(-6px); }
.card .card-icon { font-size:28px; color:#0069d9; margin-bottom:12px; }

/* Projects grid */
.projects-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap:18px; margin-top:18px; }
.project-card { display:block; background:#fff; border-radius:10px; overflow:hidden; text-decoration:none; color:inherit; box-shadow: 0 8px 30px rgba(11,35,60,0.04); }
.project-card img { width:100%; height:190px; object-fit:cover; display:block; }
.project-meta { padding:14px; }
.project-meta h4 { margin-bottom:8px; }

/* Why Section */
.why-inner { display:flex; gap:20px; align-items:center; flex-wrap:wrap; }
.why-left { flex:1 1 420px; }
.why-right { flex:1 1 420px; }
.checklist { list-style:none; margin-top:14px; color:#334155; }
.checklist li { padding:8px 0; }
.checklist i { color:#007bff; margin-right:8px; }

/* Team */
.team-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap:18px; margin-top:18px; }
.team-card { background:#fff; padding:14px; border-radius:8px; text-align:center; box-shadow: 0 8px 24px rgba(11,35,60,0.04); }
.team-card img { width:100%; height:160px; object-fit:cover; border-radius:6px; }

/* Contact layout */
.contact-inner { display:grid; grid-template-columns: 1fr 340px; gap:28px; align-items:start; }
.contact-form-wrap { background:#fff; padding:22px; border-radius:10px; box-shadow: 0 8px 26px rgba(11,35,60,0.04); }
.contact-form label { display:block; margin-bottom:12px; }
.contact-form input, .contact-form textarea { width:100%; padding:10px 12px; border-radius:8px; border:1px solid #e6eef6; }
.form-actions { display:flex; gap:12px; margin-top:10px; }

/* Footer */
.site-footer { background:#0b1320; color:#cbd5e1; padding:36px 0 18px; margin-top:30px; }
.footer-inner { display:flex; gap:18px; flex-wrap:wrap; }
.footer-col { flex:1 1 220px; }
.footer-links { list-style:none; margin-top:6px; }
.footer-links li { margin-bottom:8px; }
.footer-links a { color:#cbd5e1; text-decoration:none; }
.footer-bottom { padding-top:14px; border-top:1px solid rgba(255,255,255,0.04); margin-top:18px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding: 40px 0; }
  .hero-right { order: -1; }
  .contact-inner { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); }
}

@media (max-width: 720px) {
  .site-nav { display:none; }
  .nav-toggle { display:inline-block; }
  .header-actions .phone { display:none; }
  .cards-grid { grid-template-columns: 1fr; }
}
/* ================= HERO SLIDESHOW ================= */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100vh; /* 🔹Full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Montserrat', sans-serif;
}

/* Background slideshow with smooth fade + zoom */
.hero-slideshow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: slideshow 18s infinite ease-in-out;
  z-index: 0;
  transform: scale(1);
  transition: transform 6s ease;
}

/* Cinematic overlay */
.slideshow-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.45));
  z-index: 1;
}
/* ==== HERO SLIDESHOW SECTION ==== */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 80vh;              /* 🔥 Updated */
  min-height: 480px;         /* 🔥 New */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Montserrat', sans-serif;
}


/* Dark overlay for contrast */
.slideshow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* Hero Text Content */
.slideshow-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeUp 1.5s ease;
}

.slideshow-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.slideshow-content h1 span {
  color: #ffcc00;
}

.slideshow-content .tagline {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: #f2f2f2;
}

.slideshow-content .description {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
  color: #eaeaea;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.btn {
  padding: 14px 36px;
  font-size: 1rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  letter-spacing: 0.5px;
}

/* Gold Solid Button */
.btn-primary {
  background: linear-gradient(135deg, #ffcc00, #ffb300);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #e6b800, #d9a300);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
  transform: translateY(-2px);
}

/* Glass Button */
.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.12);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  transform: translateY(-2px);
}

/* ==== FADE ANIMATION ==== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==== MOBILE RESPONSIVE ==== */
@media (max-width: 768px) {
  .hero-slideshow {
    height: 80vh; /* Slightly smaller on mobile */
    background-position: center top;
  }

  .slideshow-content h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .slideshow-content .tagline {
    font-size: 1rem;
  }

  .slideshow-content .description {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: auto;
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}





/* Fade-up animation for text */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .slideshow-content h1 {
    font-size: 3rem;
  }
  .slideshow-content .tagline {
    font-size: 1.1rem;
  }
  .slideshow-content .description {
    font-size: 1rem;
  }
  .btn {
    padding: 12px 28px;
  }
}

@media (max-width: 600px) {
  .hero-slideshow {
    height: 80vh;
  }
  .slideshow-content h1 {
    font-size: 2.2rem;
  }
  .slideshow-content .tagline {
    font-size: 1rem;
  }
  .slideshow-content .description {
    font-size: 0.95rem;
  }
}






/* About Section */
/* About Enhanced Section */
.about-enhanced {
  padding: 100px 20px;
  background: linear-gradient(135deg, #ffffff 60%, #f3f6fa);
  color: #333;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.about-intro-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
  min-width: 320px;
  animation: fadeInLeft 1s ease-in-out;
}

.about-text h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1a1a1a;
  position: relative;
}

.about-text h2 span {
  color: #0077b6;
}

.about-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: #0077b6;
  border-radius: 2px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
}

.about-image {
  flex: 1;
  min-width: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  animation: fadeInRight 1s ease-in-out;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 119, 182, 0.7);
  color: #fff;
  padding: 15px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-image:hover .image-overlay {
  opacity: 1;
}

.image-overlay h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-text h2 {
    font-size: 32px;
  }
  .about-text p {
    font-size: 16px;
  }
}


/* Stats Section */
.about-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  text-align: center;
  margin-bottom: 60px;
}

.stat-item h3 {
  font-size: 32px;
  color: #ff6600;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 16px;
  font-weight: 500;
}

/* Services Icons */
.about-services-icons {
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.service-card img {
  width: 60px;
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 16px;
  font-weight: 600;
}

/* Vision, Mission, Values */
.about-values-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.value-card {
  flex: 1;
  min-width: 250px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ff6600;
}

/* CTA Section */
.about-cta {
  text-align: center;
}

.about-cta .btn {
  margin: 10px;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.about-cta .btn-primary {
  background-color: #ff6600;
  color: #fff;
}

.about-cta .btn-outline {
  border: 2px solid #ff6600;
  color: #ff6600;
  background: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .about-intro-split {
    flex-direction: column;
  }
}

/* ================= SERVICES SECTION ================= */

.services-main {
  background: #f8f9fb;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #d4af37;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.service-card {
  position: relative;
  background: #fff;
  padding: 40px 25px;
  text-align: center;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d4af37, #f6e27f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 0;
  border-radius: 12px;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h4 {
  position: relative;
  z-index: 2;
  color: #333;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.service-card:hover h4 {
  color: #fff;
}

/* Workforce Cards */
.workforce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.work-card {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.work-card:hover {
  background: #d4af37;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}


/* ===== Dropdown Menu Styling ===== */
/* Navbar Dropdown Styling */
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.site-nav ul li {
  position: relative;
}

.site-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #222;
  text-decoration: none;
  padding: 10px 18px;
  transition: color 0.3s ease;
  font-weight: 500;
}

.site-nav ul li a:hover {
  color: #b22222; /* Brick red like CP */
}

/* Dropdown arrow */
.site-nav .dropdown .arrow {
  display: inline-block;
  margin-left: 6px;
  border: solid #222;
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Dropdown hover effect */
.site-nav .dropdown:hover .arrow {
  transform: rotate(-135deg);
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 45px;
  left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 999;
  border-radius: 6px;
  overflow: hidden;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  color: #333;
  background: #fff;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  background: #b22222;
  color: #fff;
}

/* Optional: for mobile */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
  }
}





/* ===== Hero Section (Optional enhancement) ===== */
.hero.about-hero {
  background: url('assets/images/mfa.jpg') center/cover no-repeat;
  padding: 140px 20px;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content-center {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 750px;
  margin: 0 auto;
}

.hero-content-center h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero-content-center p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
}

/* ===== Responsive Fixes ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  .service-card, .work-card {
    padding: 20px;
  }
  .hero-content-center h1 {
    font-size: 32px;
  }
}

/* ==== NAVBAR STYLING ==== */
header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Styling */
.logo {
  font-size: 26px;
  font-weight: 700;
  color: #ff6600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Nav Menu */
.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #222;
  font-weight: 500;
  transition: 0.3s;
}

.site-nav ul li a:hover,
.site-nav ul li a.active {
  color: #ff6600;
}

/* ======== Dropdown About Menu ======== */
.site-nav .dropdown {
  position: relative;
}

.site-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 10px 0;
  z-index: 10;
  min-width: 220px;
}

.site-nav .dropdown-menu li {
  list-style: none;
}

.site-nav .dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #222;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.site-nav .dropdown-menu a:hover {
  background: #f8f8f8;
  color: #007bff;
}

.site-nav .dropdown:hover .dropdown-menu {
  display: block;
}

/* Optional caret icon */
.site-nav .dropdown > a i {
  margin-left: 6px;
  font-size: 0.8rem;
}

/* ======== Section Spacing ======== */
.about-section {
  padding: 80px 0;
}
.about-section.light-bg {
  background: #f9f9f9;
}
.about-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}


/* Hamburger button (hidden on desktop) */
.nav-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ==== Responsive Menu for Mobile ==== */
@media (max-width: 768px) {
  .site-nav {
    position: relative;
  }

  .nav-toggle {
    display: block;
    color: #222;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
  }

  /* Main nav list (hidden initially) */
  .site-nav > ul {
    position: absolute;
    top: 60px; /* just below header/hamburger */
    left: 0;   /* align to left */
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start; /* align links to left */
    width: 220px; /* dropdown width */
    padding: 10px 0;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 6px;
    display: none;
    z-index: 1000;
  }

  /* Show only when nav is open */
  .site-nav.open > ul {
    display: flex;
  }

  /* Style for each link */
  .site-nav ul li {
    width: 100%;
  }

  .site-nav ul li a {
    display: block;
    width: 100%;
    padding: 10px 15px;
    text-align: left;
    color: #222;
  }

  /* Hide dropdowns by default */
  .dropdown .dropdown-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #f9f9f9;
    padding-left: 15px;
  }

  /* Dropdown toggle on tap (optional JS below) */
  .dropdown .dropdown-menu.show {
    display: flex;
  }
}


/* ==== CONTACT PAGE ==== */
.contact-hero {
  background: url('../images/contact-banner.jpg') center/cover no-repeat;
  position: relative;
  text-align: center;
  color: #fff;
  padding: 120px 20px;
}

.contact-hero .hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.contact-hero .hero-content {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background-color: #f7f7f7;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-info h2, .contact-form h2 {
  color: #ff6600;
  margin-bottom: 20px;
}

.info-item {
  margin-bottom: 20px;
}

.info-item h4 {
  font-size: 16px;
  color: #222;
  margin-bottom: 5px;
}

.info-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Form Styling */
.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff6600;
  box-shadow: 0 0 5px rgba(255, 102, 0, 0.3);
  outline: none;
}

.contact-form button {
  background: #ff6600;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #e55b00;
}

/* Map Section */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-hero p {
    font-size: 16px;
  }
}
/* Partners Section */
.partners {
  background-color: #f9fbfd;
  padding: 80px 0;
  text-align: center;
}

.partners h2 {
  font-size: 2rem;
  color: #0a2342;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partners .subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
  padding: 0 20px;
}

.partners-grid img {
  max-width: 120px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.partners-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* === ABOUT SUBNAV === */
.about-subnav {
  background: #f7f9fc;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 80px;
  z-index: 10;
}

.about-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 15px 0;
  margin: 0;
}

.about-tabs li {
  cursor: pointer;
  padding: 10px 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #444;
  transition: all 0.3s ease;
  position: relative;
}

.about-tabs li.active,
.about-tabs li:hover {
  color: #ff6600;
}

.about-tabs li.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: #ff6600;
  border-radius: 3px;
}

/* === ABOUT CONTENT === */
.about-tabs-content {
  padding: 60px 20px;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

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

/* Scope List */
.scope-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.scope-list li {
  background: #f9fafb;
  border-left: 4px solid #ff6600;
  margin-bottom: 10px;
  padding: 12px 18px;
  border-radius: 5px;
  color: #333;
}

/* News Section */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.news-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
}

.news-item h4 {
  color: #ff6600;
  margin-bottom: 10px;
}


/* Slider container */
/* ====== GENERAL SECTION STYLING ====== */
.certifications-section,
.partners-slider {
  text-align: center;
  padding: 70px 0;
  background: #fff;
}

.certifications-section h2,
.partners-slider h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #222;
}

/* ====== SLIDER STRUCTURE ====== */
.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
}

.slider-track {
  display: flex;
  gap: 40px;
  will-change: transform;
  transition: transform 1s ease-in-out;
}

.slide {
  flex: 0 0 auto;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.slide img {
  width: 100%;
  height: auto;
  filter: grayscale(40%);
  opacity: 0.8;
  transition: transform 0.6s ease, filter 0.6s ease, opacity 0.6s ease;
  will-change: transform, filter, opacity;
}

/* Center slide zoom effect */
.slide.active img {
  transform: scale(1.25);
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive sizing */
@media (max-width: 768px) {
  .slide {
    width: 100px;
  }
  .slider-track {
    gap: 25px;
  }
}



.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.project-card {
  display: block;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card h3 {
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
}

.project-card p {
  padding: 0 15px 15px;
  font-size: 14px;
  color: #666;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}



/* About-section-health quality and assurance */

#health-safety {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

#health-safety h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

#health-safety p {
  color: #555;
  line-height: 1.7;
}

.assurance-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.assurance-item {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.assurance-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.assurance-item h3 {
  color: #005baa;
  margin-bottom: 15px;
  font-size: 1.3rem;
}



/* Services-section-maintaince-css */

/* Maintenance & Renovation Section */
#maintenance {
  padding: 90px 20px;
  background-color: #f9f9fb;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.maintenance-text {
  animation: fadeUp 1.2s ease;
}

.maintenance-text h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0a1a3c;
  margin-bottom: 20px;
  position: relative;
}

.maintenance-text h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #0078d7;
  margin-top: 10px;
  border-radius: 2px;
}

.maintenance-text p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 18px;
  text-align: justify;
  max-width: 95%;
}

.maintenance-text strong {
  color: #0078d7;
}

.maintenance-image {
  text-align: center;
}

.maintenance-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.maintenance-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .maintenance-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .maintenance-text h2 {
    font-size: 2rem;
  }

  .maintenance-image img {
    max-width: 320px;
    margin-top: 30px;
  }
}

/* contact-section-bgimage adding */
/* --- Contact Hero Section --- */
.contact-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-image: url('../images/contactbg.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Overlay for dark shade */
.contact-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}

/* Text styling */
.contact-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.contact-hero .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-hero .hero-content p {
  font-size: 1.2rem;
  font-weight: 400;
}

.contact-info p {
  margin-bottom: 20px; /* adds space below the paragraph */
}





#formStatus {
  animation: fadeIn 0.4s ease;
}

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


.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 6px;
}

.logo img {
  height: 65px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

.company-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #222; /* change to #fff if on dark navbar */
  opacity: 0.9;
  transition: color 0.3s ease, transform 0.3s ease;
}

.logo:hover .company-name {
  color: #000; /* slightly darker on hover */
  transform: scale(1.03);
}


.section-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0 20px;
  text-align: center;
}

.section-logo img {
  height: 80px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.15));
}

.section-logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}

.section-company-name {
  margin-top: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #222;
  opacity: 0.95;
  transition: transform 0.3s ease, color 0.3s ease;
}

.section-logo:hover .section-company-name {
  transform: scale(1.03);
  color: #000;
}


.map-section {
  margin: 60px auto;
  max-width: 1200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}


.blogs-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-actions .btn {
  display: inline-block;
  margin: 5px;
  padding: 10px 18px;
  background: #2d5b8a;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

