/* --- Full-width Top Bar (Grey Theme Matching Logo) --- */
.top-bar {
  width: 100%;
  background: #e5e5e5; /* soft grey to match logo tone */
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 40px;
  border-bottom: 1px solid #ccc;

  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Icons */
.top-left i,
.top-right i {
  color: #ff6600; /* Integrus orange */
  font-size: 1rem;
}

/* Clickable phone links */
.top-right a {
  color: #ff6600;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-right a:hover {
  color: #e55b00;
}

/* Responsive stacking on mobile */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 10px 15px;
  }
}

:root{
  --accent: #c48f56;
  --dark: #111827;
  --muted: #6b7280;
  --light-bg: #f7f7f7;
  --max-width: 1200px;
  --radius: 14px;
  --transition: 280ms cubic-bezier(.2,.8,.2,1);
  --container-pad: 24px;
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--dark);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
  background:white;
}

/* container */
.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 var(--container-pad);
}

/* --- Full-width Navbar (Edge to Edge) --- */
.nav-wrap {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0; /* no side padding */
  width: 100%;
  box-sizing: border-box;
}

/* Logo Section */
.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 40px; /* adjust if you want tiny breathing space */
}

.logo {
  height: 50px;
  width: auto;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
}

.orange {
  color: #ff6600;
}

.grey {
  color: #666;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Navigation hover effect */
.nav-links li a {
  position: relative;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.3s ease;
}

/* Animated orange underline on hover */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #ff6600;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #ff6600;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #ff6600;
}

/* Book Consultation Button (Right Edge) */
.book-btn {
  background-color: #ff6600;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  margin-right: 40px; /* optional small space from screen edge */
}

.book-btn:hover {
  background-color: #e55b00;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 12px;
  }

  .logo-container {
    margin-left: 0;
  }

  .book-btn {
    margin-right: 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* --- Dropdown Menu Styling --- */

/* Ensure dropdown is positioned relative to parent */
.dropdown {
  position: relative;
}

/* Hide submenu by default */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 0;
  padding: 10px 0;
  min-width: 220px;
  display: none;
  z-index: 200;
}

/* Submenu link styles */
.dropdown-menu li a {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 10px 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Hover effect on submenu links */
.dropdown-menu li a:hover {
  background: #ff6600;
  color: #fff;
}

/* Show submenu when hovering on parent */
.dropdown:hover .dropdown-menu {
  display: block;
  animation: dropdownFade 0.3s ease forwards;
}

/* Dropdown Fade-in Animation */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Make sure the parent link shows underline hover */
.dropdown > a:hover {
  color: #ff6600;
}

/* hamburger */
.hamburger{display:none;background:transparent;border:0;font-size:20px}

/* HERO */
/* HERO SECTION */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 👈 pushes content to left side */
  background: url('images/hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: left;
  padding-left: 10%; /* space from left edge */
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.2)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.hero-cta {
  display: flex;
  gap: 15px;
}

/* --- BUTTON STYLES --- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-family: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Orange primary button */
.btn.primary {
  background-color: #ff6600;
  color: #ffffff;
  border: none;
}

.btn.primary:hover {
  background-color: #e55b00;
}

/* Transparent ghost button */
.btn.ghost {
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn.ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
}


/* Responsive */
@media (max-width: 768px) {
  .hero {
    justify-content: center;
    text-align: center;
    padding-left: 0;
  }
  .hero-content {
    max-width: 90%;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
}

/* stats */
.hero-stats{display:flex;gap:18px;background:rgba(255,255,255,0.06);padding:16px;border-radius:12px}
.stat{min-width:110px;text-align:center}
.stat strong{display:block;font-size:1.2rem}
.stat span{font-size:0.8rem;color:rgba(255,255,255,0.9)}

/* sections */
.section{padding:72px 0}
.bg-light{background:var(--light-bg)}
.section-title{font-size:1.8rem;margin:0 0 28px;text-align:center}

/* ABOUT */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:center}
.about-img img{width:100%;height:100%;object-fit:cover;border-radius:12px}
.about-text h2{margin-top:0}
.features{margin:12px 0 0;padding-left:18px;color:var(--muted)}

/* ===========================
   OUR SERVICES – PRO VERSION
   =========================== */
.services-section {
  padding: 60px 20px;
  text-align: center;
  background: #f7f7f7;
}

.section-title {
  font-size: 32px;
  color: #ff6a00;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Grid Layout */
.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Service Box */
.service-box {
  background: #fff;
  padding: 0 0 20px 0;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.10);
  transition: 0.3s ease;
  overflow: hidden;
  border-bottom: 4px solid #ff6a00; /* Orange brand color */
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.18);
}

/* Icon */
.service-icon {
  font-size: 42px;
  color: #ff6a00;
  margin-top: 20px;
}

/* Image */
.service-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin: 12px 0;
  border-radius: 10px;
}

/* Heading */
.service-box h3 {
  font-size: 20px;
  color: #ff6a00;
  font-weight: bold;
  margin-bottom: 8px;
}

/* Description */
.service-box p {
  font-size: 14px;
  padding: 0 15px;
  color: #666;
  line-height: 1.5;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .services-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .services-container {
    grid-template-columns: 1fr;
  }
}

/* CAROUSEL */
.carousel{position:relative;margin-top:12px;display:flex;align-items:center;gap:12px}
.carousel-track{display:flex;gap:18px;overflow:hidden;padding:12px 0}
.slide{flex:0 0 80%;max-width:880px;border-radius:12px;overflow:hidden;position:relative}
.slide img{width:100%;height:420px;object-fit:cover;display:block}
.slide figcaption{position:absolute;left:20px;bottom:20px;color:white}
.carousel-btn{background:rgba(255,255,255,0.92);border:0;padding:12px 14px;border-radius:10px;cursor:pointer;box-shadow:0 6px 18px rgba(15,15,15,0.08)}
.carousel-btn.left{margin-right:6px}
.carousel-btn.right{margin-left:6px}

/* TESTIMONIALS */
.testimonials{position:relative;display:grid;place-items:center}
.testimonial{display:none;max-width:800px;background:white;padding:28px;border-radius:12px;border:1px solid rgba(0,0,0,0.04)}
.testimonial.active{display:block}
.testimonial cite{display:block;margin-top:12px;color:var(--muted);font-style:normal}
.test-controls{margin-top:12px;display:flex;gap:8px;justify-content:center}
.test-controls button{background:white;border-radius:6px;padding:8px 12px;border:1px solid rgba(0,0,0,0.06);cursor:pointer}

/* CONTACT */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px}
.contact-form h3{margin-top:0}
.contact-form label{display:block;margin-bottom:12px}
.contact-form input, .contact-form textarea{width:100%;padding:10px;border:1px solid rgba(0,0,0,0.08);border-radius:8px}
.form-actions{display:flex;align-items:center;gap:12px;margin-top:8px}
.form-msg{font-size:0.95rem;color:green}

/* MAP */
.contact-map iframe{width:100%;height:320px;border:0;border-radius:10px;display:block}

/* FOOTER */
.footer{background:var(--dark);color:#e6e6e6;padding:40px 0;margin-top:32px}
.footer-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:20px}
.footer-logo{font-weight:700;color:var(--accent);font-size:18px}
.quick-links{list-style:none;padding:0;margin:8px 0}
.quick-links a{color:#d1d1d1;text-decoration:none}

/* responsive */
@media (max-width: 980px){
  .about-grid{grid-template-columns:1fr}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .carousel-track{gap:12px}
  .slide img{height:300px}
  .hero-left{max-width:100%}
  .hero-stats{display:none}
}

@media (max-width: 640px){
  .nav-links{display:none;position:absolute;right:20px;top:64px;background:white;padding:12px;border-radius:10px;box-shadow:0 8px 30px rgba(15,15,15,0.08)}
  .hamburger{display:block}
  .services-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .slide{flex:0 0 92%}
  .hero-content{flex-direction:column;align-items:flex-start;padding:48px 0}
  .hero-left h1{font-size:1.8rem}
}

/* reveal animations */
.reveal{opacity:0;transform:translateY(18px);transition:opacity 520ms ease, transform 520ms ease}
.reveal.visible{opacity:1;transform:translateY(0)}

/* Logo + Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 55px;
  width: auto;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.orange {
  color: #ff6600;
}

.grey {
  color: #666666;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff6600;
}

/* --- Logo Animation --- */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(-20px);
  animation: logoFadeUp 1s ease-out forwards;
  animation-delay: 0.3s; /* small delay for elegance */
}

@keyframes logoFadeUp {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: animate logo image and text slightly separately */
.logo {
  height: 55px;
  width: auto;
  opacity: 0;
  transform: scale(0.8);
  animation: logoImageZoom 1s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes logoImageZoom {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  opacity: 0;
  animation: logoTextFade 1.2s ease-out forwards;
  animation-delay: 0.6s;
}

@keyframes logoTextFade {
  0% {
    opacity: 0;
    transform: translateX(-15px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.orange {
  color: #ff6600;
}

.grey {
  color: #666666;
}

/* ============================= */
/*  FLOATING SOCIAL MEDIA SIDEBAR */
/* ============================= */

.social-sidebar {
  position: fixed;
  top: 40%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  transition: all 0.3s ease;
}

/* Each icon box */
.social-item {
  background: #444;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  width: 45px; /* collapsed width */
  border-radius: 0 6px 6px 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover expansion effect */
.social-item:hover {
  width: 180px;
  justify-content: flex-start;
  padding-left: 15px;
}

/* Icon styles */
.social-item i {
  font-size: 18px;
  min-width: 25px;
  text-align: center;
}

/* Text label (hidden initially) */
.social-item span {
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.social-item:hover span {
  opacity: 1;
}

/* Color variations */
.social-item.contact {
  background: linear-gradient(45deg, #6a11cb, #2575fc);
}

.social-item.facebook {
  background: #1877f2;
}

.social-item.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

/* WhatsApp button */
.social-item.whatsapp {
  background: #25D366; /* WhatsApp green */
}

.social-item.whatsapp:hover {
  background: #20b957;
}

/* Mobile — Keep Vertical but Adjust Position & Reduce Overlap */
@media (max-width: 768px) {
  .social-sidebar {
    top: 45%; /* vertical center */
    left: 0;
    bottom: auto;
    transform: translateY(-50%);
    flex-direction: column;
  }

  .social-item {
    width: 42px;
    height: 42px;
    padding: 8px;
    border-radius: 0 6px 6px 0;
  }

  .social-item span {
    display: none; /* Hide text labels on mobile */
  }
}

/* ============================= */
/*   CONTACT POPUP FORM STYLES   */
/* ============================= */

.contact-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.contact-popup-content {
  background: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
  animation: slideUp 0.3s ease;
}

/* === BOOK CONSULTATION POPUP (Same as Contact Popup Style) === */
/* === GLASS EFFECT POPUP OVERLAY === */
#consult-popup,
#contact-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px); /* ⬅ glass blur effect */
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.15); /* soft transparent layer */
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.contact-popup-content,
#consult-popup .contact-popup-content {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  padding: 40px 45px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  animation: scaleIn 0.3s ease;
}

#consult-popup h2 {
  color: #ff6600;
  margin-bottom: 20px;
}

#consult-popup input,
#consult-popup textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

/* === BEAUTIFUL SUBMIT BUTTON STYLE === */
.popup-content button,
#consult-popup button,
#contact-popup button {
  width: 100%;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 12px 0;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
  transition: all 0.3s ease;
}

.popup-content button:hover,
#consult-popup button:hover,
#contact-popup button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
  background: linear-gradient(135deg, #e65c00, #ff751a);
}

.close-consult-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-consult-popup:hover {
  color: #ff6600;
}

.contact-popup-content h2 {
  color: #ff6600;
  margin-bottom: 20px;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-popup:hover {
  color: #ff6600;
}

#popup-contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#popup-contact-form input,
#popup-contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
}

#popup-contact-form textarea {
  resize: none;
  height: 80px;
}

#popup-contact-form button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

#popup-contact-form button:hover {
  background: #e55b00;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 600px) {
  .contact-popup-content {
    width: 90%;
    padding: 20px;
  }
}


/* WhatsApp Pulse Animation */
@keyframes pulse-whatsapp {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Apply animation to WhatsApp icon */
.social-item.whatsapp {
  background: #25D366; /* WhatsApp green */
  animation: pulse-whatsapp 2s infinite;
}

.social-item.whatsapp:hover {
  background: #20b957;
  animation: none; /* stops pulsing when hovered */
}

/* Book Consultation Pulse Animation */
@keyframes pulse-orange {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.6);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
  }
}

/* Apply animation to Book Consultation button */
.book-btn {
  background-color: #ff6600;         /* Orange theme color */
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  animation: pulse-orange 2s infinite;
  animation-delay: 1s;               /* Optional delay for smoother start */
  transition: all 0.3s ease;
}

/* Stop animation and add hover effect */
.book-btn:hover {
  background-color: #e65c00;
  animation: none;
  transform: scale(1.05);
}

/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 20px;
}

/* LEFT CONTENT */
.about-label {
  color: #ff6600;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
}

/* Brand colors for IntegrusInfra */
.brand-orange {
  color: #ff6600; /* your logo orange */
}

.brand-gray {
  color: #6b6b6b; /* elegant gray matching logo */
}

.about-underline {
  width: 50px;
  height: 3px;
  background: #ff6600;
  margin: 15px 0;
}

.about-subtitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #333;
}

.about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #ff6600;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #e85a00;
}

/* RIGHT IMAGE */
.about-image img {
  width: 100%;
  border-radius: 8px;
}

.about-caption {
  margin-top: 15px;
  font-size: 16px;
  color: #333;
}

/* ============ ABOUT SECTION MOBILE ORDER FIX ============ */
@media (max-width: 768px) {

  .about-container {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  /* Content first */
  .about-content {
    order: 1;
  }

  /* Center button */
  .about-btn {
    display: inline-block;
    margin: 25px auto;
  }

  /* Image comes AFTER button */
  .about-image {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .about-image img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  /* Caption below image & centered */
  .about-caption {
  order: 3;
  margin-top: 15px;
  font-size: 16px;
  text-align: center;
  color: #333;
  max-width: 90%;
}

  .about-underline {
    margin: 15px auto;
  }
}

/* ===== ABOUT IMAGE FLOAT ===== */
.about-image img {
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* ===== SUCCESS POPUP ===== */
.success-popup {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.success-popup-content {
  background: #fff;
  color: #333;
  text-align: center;
  padding: 35px 45px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  max-width: 400px;
  position: relative;
  animation: scaleIn 0.3s ease;
}

.success-popup-content h2 {
  color: #ff6600;
  margin-bottom: 10px;
}

.close-success {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  transition: 0.3s;
}

.close-success:hover {
  color: #ff6600;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes scaleIn {
  from {transform: scale(0.8);}
  to {transform: scale(1);}
}

/* ============================== */
/* FEATURES SECTION STYLING */
/* ============================== */
.features-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 60px 10%;
  background: #fff;
  text-align: center;
}

.feature {
  flex: 1 1 150px;
  max-width: 180px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.feature i {
  font-size: 42px;
  color: #ff6600;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.feature p {
  font-weight: 600;
  color: #111;
  font-size: 0.95rem;
  margin: 0;
}

.feature:hover {
  transform: translateY(-8px);
}

.feature:hover i {
  transform: scale(1.2);
  color: #e65c00;
}

/* Responsive layout */
@media (max-width: 768px) {
  .features-section {
    gap: 25px;
    padding: 40px 5%;
  }
  .feature {
    flex: 1 1 45%;
    max-width: none;
  }
  .feature i {
    font-size: 36px;
  }
}

.features-section {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* ===== ABOUT SECTION ===== */
.service-content {
  padding: 50px 20px;
  text-align: center;
}
.service-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}
.service-content p {
  max-width: 800px;
  margin: auto;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* ===== FEATURES ===== */
.service-features-section {
  padding: 50px 20px;
  background: #f7f7f7;
  text-align: center;
}
.service-features-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.service-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1000px;
  margin: auto;
}
.feature-card {
  background: white;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  font-size: 16px;
  font-weight: 600;
  color: #333;
  border-left: 4px solid #ff6a00;
}

/* Mobile */
@media(max-width:900px){
  .service-features{
    grid-template-columns: repeat(2,1fr);
  }
}
@media(max-width:480px){
  .service-features{
    grid-template-columns: 1fr;
  }
}

/* ===== GALLERY ===== */
.gallery-section{
  padding:50px 20px;
  text-align:center;
}
.gallery-grid{
  margin-top:20px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
}
.gallery-grid img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:10px;
}

/* Mobile */
@media(max-width:900px){
  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:480px){
  .gallery-grid{
    grid-template-columns:1fr;
  }  
}

/* ===== MOBILE NAVIGATION FIX ===== */
@media (max-width: 768px) {

  /* Make header stack vertically instead of overlapping */
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Make sure nav menu drops below logo */
  .nav-links {
    width: 100%;
    background: #fff; /* dropdown background */
    display: none; /* hidden by default */
    flex-direction: column;
    padding: 15px 10px;
    position: relative;
    z-index: 10000;
    border-top: 1px solid #ddd;
  }

  /* When active class is added, show menu */
  .nav-links.active {
    display: flex !important;
  }

  /* Hamburger stays right side */
  #nav-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 18px;
  }

  /* Move Book Consultation below menu */
  .book-btn {
    margin-left: 0;
    margin-top: 10px;
    align-self: center;
  }
}

/* ===== Hamburger MOBILE FIX ONLY ===== */
@media (max-width: 768px) {

  /* Make header elements stay in proper positions */
  .navbar {
    position: relative;
    width: 100%;
    z-index: 10000;
  }

  /* Fix logo position */
  .logo-container {
    width: auto;
    flex: 1;
    justify-content: flex-start;
  }

  /* Move hamburger BELOW the header into hero start */
  #nav-toggle {
    display: block !important;
    position: absolute;
    top: 100%; /* just below header */
    right: 16px;
    transform: translateY(10px);
    background: rgba(255,255,255,0.95);
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 99999;
  }

  /* Hide navigation by default */
  .nav-links {
    display: none !important;
    position: absolute;
    top: calc(100% + 55px); /* BELOW the hamburger */
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px 0;
    border-radius: 0 0 10px 10px;
    border-top: 2px solid #eee;
  }

  /* When active — show dropdown */
  .nav-links.active {
    display: flex !important;
  }

  /* Book Consultation button appears below menu */
  .book-btn {
    order: 10;
    width: fit-content;
    align-self: center;
    margin: 12px auto 0;
  }
}

/* ===== Mobile Navbar Fix ===== */
@media (max-width: 768px) {

  /* Center logo + name in mobile */
  .logo-container {
    flex: 1;
    justify-content: center !important;
    text-align: center;
  }

  /* Show hamburger */
  #nav-toggle {
    display: flex !important;
    cursor: pointer;
    position: absolute;
    right: 16px;
    top: 16px;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    z-index: 20000;
  }

  /* Hamburger bars styling */
  #nav-toggle .bar {
    width: 70%;
    height: 4px;
    background-color: #ff6a00;
  }

  /* Dropdown menu positioning */
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; /* BELOW logo & hamburger */
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    text-align: center;
    padding: 15px 0;
    gap: 12px;
    z-index: 15000;
  }

  /* When active */
  .nav-links.active {
    display: flex !important;
  }

  /* Book button below menu */
  .book-btn {
    width: fit-content;
    margin: 80px auto 0;
  }
}

/* FINAL MOBILE NAVBAR FIX */
@media (max-width: 768px) {

  .nav {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }

  /* Center Logo */
  .logo-container {
    width: 100%;
    justify-content: center !important;
    margin: 0 !important;
    text-align: center;
  }

  /* Fix Hamburger Position */
  #nav-toggle {
    position: absolute;
    right: 15px;
    top: 15px;
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    z-index: 9999;
  }

  #nav-toggle .bar {
    width: 70%;
    height: 4px;
    background: #ff6600;
    border-radius: 2px;
  }

  /* Navigation Dropdown */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    padding: 15px 0;
    text-align: center;
    gap: 12px;
    top: 65px;
    left: 0;
    border-top: 1px solid #ddd;
  }

  .nav-links.active {
    display: flex !important;
  }

  /* Book button below menu */
  .book-btn {
    margin: 15px auto 0;
    animation: none !important; /* stop pulse on mobile */
  }
}

/* === OUR PROJECTS SECTION — SAME AS ABOUT BACKGROUND === */
#projects {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 80px 0;
  background: #111; /* fallback */
}

/* Animated gradient layer */
#projects::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #ff6600, #333, #ff8533, #222);
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
  z-index: 1;
  opacity: 0.55;
}

/* Bring content above background */
#projects * {
  position: relative;
  z-index: 2;
}

#projects .section-title{
    text-align:center !important;
    margin:0 auto 40px auto;
    display:block;
}

#projects .section-title {
  color: #ff6600;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* Optional: Improve carousel look on dark bg */
.carousel-track .slide img {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.4);
}

/* === LIGHTBOX GALLERY === */
.lightbox {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.6);
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  font-size: 40px;
  color: #fff;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 8px;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.35);
}

/* Lightbox caption styling */
.lightbox-content {
  text-align: center;
  max-width: 90%;
}

.lightbox-caption {
  margin-top: 12px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  animation: fadeIn 0.3s ease-out;
}

/* ================= BRAND PARTNERS ================= */
#brand-partners {
  padding: 70px 0;
  text-align: center;
  background: linear-gradient(135deg, #292929, #353434);
}

#brand-partners .section-title {
  color: #ff6600;
  margin-bottom: 35px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

/* Slider container */
.brand-slider {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  position: relative;
}

/* Brand partners subtitle - DARK BG FIX */
.brand-subtitle {
  max-width: 760px;
  margin: 10px auto 35px;
  font-size: 17px;
  line-height: 1.7;
  color: #e0e0e0;          /* LIGHT TEXT */
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Slider track */
.brand-track {
  display: flex;
  align-items: center;
  gap: 70px;
  animation: scrollBrands 22s linear infinite;
  will-change: transform;
}

/* Logo cards */
.brand-track img {
  height: 85px;
  padding: 14px 24px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(5px);
  
  /* REMOVED grayscale */
  filter: brightness(1);

  transition: 0.45s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

/* Hover glow + shine */
.brand-track img:hover {
  transform: scale(1.15);
  filter: brightness(1.25);
  box-shadow: 0 10px 25px rgba(255,102,0,0.4);
  border-color: rgba(255,102,0,0.6);
}

/* Shine animation */
.brand-track img:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.7), transparent);
  transform: skewX(-20deg);
  animation: shine 0.7s ease;
}

@keyframes shine {
  0% { left: -120%; }
  100% { left: 150%; }
}

/* Infinite scrolling */
@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Speed-up on hover */
.brand-slider:hover .brand-track {
  animation-duration: 12s;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .brand-track img {
    height: 55px;
    padding: 10px 15px;
    gap: 30px;
  }
}

/* ================= PROJECT LIGHTBOX ================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255,255,255,0.2);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 45px;
  cursor: pointer;
  padding: 10px;
}

.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

@media (max-width: 768px) {
  .lightbox-nav {
    font-size: 35px;
  }
}

/* ================= ABOUT SECTION MOBILE FIX ================= */
@media (max-width: 768px) {
  #about,
  .about-section,
  .about-container {
    text-align: center;
  }

  .about-content,
  .about-text {
    align-items: center;
    text-align: center;
  }

  .about-content h2,
  .about-content h3,
  .about-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-image {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .about-image img {
    max-width: 90%;
    margin: 0 auto;
  }
}

/* ============================= */
/*      PREMIUM PACKAGES         */
/* ============================= */

.packages-section {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

.packages-section .section-subtitle {
  max-width: 750px;
  margin: 10px auto 50px;
  color: #666;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.package-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.14);
}

/* FEATURED */
.package-card.featured {
  border: 2px solid #ff7a00;
  transform: scale(1.05);
}

.package-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff7a00;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

/* TEXT */
.package-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.package-price {
  font-size: 26px;
  font-weight: 700;
  color: #ff7a00;
}

.package-price span {
  font-size: 14px;
  color: #777;
}

/* FEATURES */
.package-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.package-features li {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

/* DESCRIPTION */
.package-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* BUTTON */
.package-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 25px;
  background: linear-gradient(135deg, #ff7a00, #ff9a3c);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.package-btn:hover {
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 560px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================= */
/*   VIDEO TESTIMONIALS SECTION  */
/* ============================= */

.video-testimonials {
  padding: 70px 0;
  background: #f8f8f8;
  text-align: center;
}

.section-subtitle {
  max-width: 700px;
  margin: 10px auto 40px;
  color: #666;
  font-size: 15px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.video-card {
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}

.video-card h4 {
  margin-top: 12px;
  font-size: 16px;
  color: #222;
}

.video-card p {
  font-size: 14px;
  color: #777;
}

.section-title.orange::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff7a00;
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-card iframe {
    height: 220px;
  }
}

/* ============================= */
/* BLUEPRINT STYLE BACKGROUND   */
/* ============================= */

.blueprint-bg {
  position: relative;
  padding: 90px 0;
  background-color: #f9f9f9;
  overflow: hidden;
}

/* Grid lines */
.blueprint-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

/* Accent blueprint lines */
.blueprint-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255,122,0,0.08) 1px, transparent 1px),
    linear-gradient(-120deg, rgba(255,122,0,0.05) 1px, transparent 1px);
  background-size: 320px 320px;
  opacity: 0.6;
  animation: blueprintMove 40s linear infinite;
  z-index: 0;
}

/* Subtle motion */
@keyframes blueprintMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 300px 300px;
  }
}

/* Keep content above */
.blueprint-bg .container {
  position: relative;
  z-index: 1;
}


/* ============================= */
/*        PROFESSIONAL FOOTER    */
/* ============================= */

.site-footer {
  background: #353434;
  color: #ddd;
  font-size: 14px;
  margin-top: 60px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 35px;
  padding: 50px 0;
}

.footer-brand {
  font-size: 22px;
  font-weight: 700;
  color: #ff7a00;
  margin-bottom: 12px;
}

.footer-desc {
  line-height: 1.7;
  margin-bottom: 10px;
  color: #ccc;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
  color: #bbb;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff7a00;
}

.footer-contact {
  display: block;
  color: #ff7a00;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-contact:hover {
  text-decoration: underline;
}

.footer-address {
  margin-top: 10px;
  color: #bbb;
  line-height: 1.6;
}

/* COPYRIGHT BAR */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 15px 10px;
  text-align: center;
  background: #ffffff;
  font-size: 13px;
  color: #000000;
}

.footer-legal {
  margin-top: 6px;
  font-size: 12px;
  color: #000000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact {
    justify-content: center;
  }
}

.contact-link {
  display: inline-block;
  color: #ff7a00;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 6px;
}

.contact-link:hover {
  text-decoration: underline;
}

/* ============================= */
/* COMMERCIAL HERO WITH IMAGE   */
/* ============================= */

.service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.commercial-hero {
  background-image: url("images/commercial.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.55)
  );
  z-index: 0;
}

/* Content above overlay */
.service-hero .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.service-hero .container {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.service-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.service-hero p {
  font-size: 16px;
  line-height: 1.7;
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #ff7a00;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.service-about,
.service-types,
.why-us,
.process-section,
.service-cta {
  padding: 70px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.service-highlights li {
  margin-bottom: 12px;
  font-weight: 600;
}

.types-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.type-card,
.why-card {
  padding: 25px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.process-steps li {
  margin-bottom: 12px;
  font-size: 15px;
}

.service-cta {
  background: #ff7a00;
  color: #fff;
  text-align: center;
}

.cta-btn {
  display: inline-block;
  margin-top: 15px;
  background: #fff;
  color: #ff7a00;
  padding: 10px 26px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .types-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .types-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================= */
/* PREMIUM COMMERCIAL ABOUT     */
/* ============================= */

.commercial-about {
  padding: 90px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8f8f8 100%
  );
}

.about-header {
  max-width: 720px;
  margin-bottom: 50px;
}

.about-header h2 {
  font-size: 34px;
  margin-bottom: 12px;
  position: relative;
}

.about-header h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #ff7a00;
  display: block;
  margin-top: 14px;
  border-radius: 3px;
}

.about-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

/* CONTENT */
.about-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* HIGHLIGHTS */
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.highlight-card {
  background: #fff;
  padding: 28px 18px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.highlight-card h3 {
  font-size: 22px;
  color: #ff7a00;
  margin-bottom: 6px;
}

.highlight-card p {
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .about-header h2 {
    font-size: 28px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }
}

/* ============================= */
/* MATERIAL & COMPLIANCE BADGES */
/* ============================= */

.material-compliance {
  padding: 70px 0;
  background: #ffffff;
}

.section-small-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 35px;
  color: #222;
}

/* ============================= */
/* LARGE PREMIUM BADGES         */
/* ============================= */

.badge-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 35px; /* more breathing room */
}

.badge-card {
  background: #fff;
  padding: 30px 18px; /* bigger card */
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.18);
}

.badge-card img {
  height: 100px; /* INCREASED ICON SIZE */
  margin-bottom: 14px;
}

.badge-card p {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  line-height: 1.4;
}


/* ============================= */
/* ANIMATED STATS / COUNTERS    */
/* ============================= */

.stats-section {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #f9f9f9 0%,
    #ffffff 100%
  );
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-box h3 {
  font-size: 38px;
  color: #ff7a00;
  margin-bottom: 6px;
}

.stat-box p {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Material Compliance Badges Fix ===== */

.badge-card img {
    width: 80px;        /* Desktop size */
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

/* Tablet */
@media (max-width: 992px) {
    .badge-card img {
        width: 65px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .badge-card img {
        width: 55px;
    }
}

/* ===== MOBILE FIX FOR MATERIAL BADGES ===== */

@media (max-width: 576px) {

    .material-compliance .badge-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 per row */
        gap: 20px;
    }

    .material-compliance .badge-card {
        padding: 15px 10px;
    }

    .material-compliance .badge-card img {
        width: 55px !important;
        max-width: 55px !important;
    }

    .material-compliance .badge-card p {
        font-size: 13px;
        margin-top: 8px;
    }
}

/* ===== Light Premium Background ===== */

.light-premium {
    background: #f5f6f8;
    padding: 100px 0;
}

/* Grid */
.types-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Modern Card Design */
.modern-card {
    background: #ffffff;
    padding: 40px 30px;
    width: 280px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-top: 4px solid orange;
    transition: all 0.3s ease;
}

.modern-card i {
    font-size: 40px;
    color: orange;
    margin-bottom: 15px;
}

.modern-card h4 {
    margin-bottom: 10px;
}

.modern-card p {
    font-size: 14px;
    color: #666;
}

/* Hover Effect */
.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,140,0,0.15);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255,140,0,0.2);
}

.why-us h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    position: relative;
    margin-bottom: 60px;
}

.why-us h2::after {
    content: "";
    width: 80px;
    height: 3px;
    background: orange;
    display: block;
    margin: 15px auto 0;
}

/* Residential Hero Background */
.residential-hero {
    background: url('images/residential.jpg') center/cover no-repeat;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ff7a00;
    display: block;
    margin: 12px auto 0;
}
.material-compliance .section-title {
    text-align: center;
    width: 100%;
}

.about-premium-section {
  padding: 100px 20px;
  background: #f7f7f7;
  text-align: center;
}

.about-premium-content {
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.about-lead {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 25px;
  line-height: 1.6;
}

.about-premium-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

/* Feature Grid */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-box {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-box h3 {
  font-size: 28px;
  color: #ff6b00;
  margin-bottom: 10px;
}

.feature-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.feature-box p {
  font-size: 14px;
  color: #666;
}

/* Responsive */
@media (max-width: 992px) {
  .about-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-features-grid {
    grid-template-columns: 1fr;
  }
}

.about-premium-section {
    position: relative;
    background-color: #f7f7f7;
    background-image:
      linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.about-stats {
    background: #ffffff;
    padding: 70px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-box h3 {
    font-size: 36px;
    color: #ff6b00;
    margin-bottom: 8px;
}

.stat-box p {
    color: #555;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.dropdown-menu{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.3s ease;
}

.dropdown.active .dropdown-menu{
  max-height:300px;
}

.dropdown-toggle i{
  transition:transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i{
  transform:rotate(180deg);
}

.values-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:30px;
}

.value-card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:30px;
}

.process-step{
background:#fafafa;
padding:25px;
border-left:4px solid orange;
}

.core-values{
    text-align:center;
}

.core-values .section-title{
    text-align:center;
    display:block;
    margin:0 auto 40px auto;
}

.section-title{
    text-align:center;
    margin-bottom:10px;
    position:relative;
}

.section-title::after{
    content:"";
    width:80px;
    height:3px;
    background:linear-gradient(90deg,#ff6600,#ff9a3c);
    display:block;
    margin:12px auto 0;
    border-radius:2px;
}

.core-values{
    position:relative;
    padding:90px 0;
    background:#da7c3d;
    color:#ffffff;
    text-align:center;
}

.core-values::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:url("images/blueprint-pattern.png");
    opacity:0.06;
    pointer-events:none;
}

.value-card{
    background:#ffffff;
    padding:30px;
    border-radius:10px;
    transition:all 0.3s ease;
    box-shadow:0 8px 25px rgba(2, 0, 0, 0.4);
}

.value-card h4{
    color:#ff6600;
}

.value-card p{
    color:#000000;
}

.value-card:hover{
    transform:translateY(-8px);
    background:#dfdede60;
    box-shadow:0 15px 40px rgba(0,0,0,0.6);
}

.core-values .section-title{
    color:#ffffff;
}

.mission-vision{
    padding:80px 0;
    background:#f7f7f7;
    text-align:center;
}

.mission-vision-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-top:40px;
}

.mission-box,
.vision-box{
    background:#ffffff;
    padding:35px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
}

.mission-box i,
.vision-box i{
    font-size:32px;
    color:#ff6600;
    margin-bottom:15px;
}

.mission-box:hover,
.vision-box:hover{
    transform:translateY(-8px);
}

@media (max-width:768px){

.mission-vision-grid{
grid-template-columns:1fr;
}

}

.construction-process{
    padding:90px 0;
    background:#ffffff;
    text-align:center;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.process-card{
    background:#f8f8f8;
    padding:35px 25px;
    border-radius:10px;
    position:relative;
    transition:all 0.3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.process-card i{
    font-size:32px;
    color:#ff6600;
    margin-bottom:15px;
}

.process-number{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#ff6600;
    color:#fff;
    font-weight:bold;
    padding:8px 15px;
    border-radius:20px;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.interior-hero{
    position:relative;
    height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    background-image:url("images/interior.jpg");
    background-size:cover;
    background-position:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
}

.hero-content{
    position:relative;
    max-width:700px;
}

.interior-hero h1{
    font-size:42px;
    margin-bottom:20px;
}

.interior-hero p{
    font-size:18px;
    margin-bottom:25px;
}

.hero-btn{
    background:#ff6600;
    color:#fff;
    padding:12px 25px;
    border-radius:5px;
    text-decoration:none;
    font-weight:600;
}

@media(max-width:768px){

.interior-hero{
height:60vh;
}

.interior-hero h1{
font-size:28px;
}

.interior-hero p{
font-size:16px;
}

}

.interior-about{
padding:90px 0;
background:#f8f9fb;
}

.interior-about-grid{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:50px;
margin-top:40px;
align-items:center;
}

.about-text p{
margin-bottom:18px;
line-height:1.7;
color:#555;
}

.about-features{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.feature-item{
background:#ffffff;
padding:18px;
border-radius:8px;
display:flex;
align-items:center;
gap:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.feature-item i{
color:#ff6600;
font-size:20px;
}

@media(max-width:768px){

.interior-about-grid{
grid-template-columns:1fr;
}

.about-features{
grid-template-columns:1fr;
}

}

.interior-about{
text-align:center;
}

.interior-types{
padding:90px 0;
background:#ffffff;
text-align:center;
}

.interior-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.interior-card{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:all 0.3s ease;
}

.interior-card img{
width:100%;
height:300px;
object-fit:cover;
}

.interior-card h3{
margin:15px 0 10px;
}

.interior-card p{
padding:0 20px 20px;
color:#666;
font-size:15px;
}

.interior-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.interior-why{
padding:90px 0;
background:#f8f9fb;
text-align:center;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.why-card{
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:all 0.3s ease;
}

.why-card i{
font-size:32px;
color:#ff6600;
margin-bottom:15px;
}

.why-card h3{
margin-bottom:10px;
}

.why-card p{
color:#666;
font-size:15px;
}

.why-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.interior-materials{
padding:90px 0;
background:#ffffff;
text-align:center;
}

.materials-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:30px;
margin-top:40px;
}

.material-item{
background:#f8f9fb;
padding:25px;
border-radius:30px;
transition:all 0.3s ease;
}

.material-item img{
width:60px;
margin-bottom:10px;
}

.material-item span{
display:block;
font-weight:600;
color:#444;
}

.material-item:hover{
background:#ff6600af;
color:#fff;
transform:translateY(-5px);
}

/* ================= RENOVATION HERO ================= */
.renovation-hero{
    position:relative;
    height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    background-image:url("images/renovation.jpg"); /* your image path */
    background-size:cover;
    background-position:center;
}

.renovation-hero .hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
}

.renovation-hero .hero-content{
    position:relative;
    max-width:700px;
}

.renovation-hero h1{
    font-size:42px;
    margin-bottom:20px;
}

.renovation-hero p{
    font-size:18px;
    margin-bottom:25px;
}

.renovation-hero .hero-btn{
    background:#ff6a00;
    color:#fff;
    padding:12px 25px;
    border-radius:5px;
    text-decoration:none;
    font-weight:600;
}

/* Mobile */
@media(max-width:768px){

.renovation-hero{
    height:60vh;
}

.renovation-hero h1{
    font-size:28px;
}

.renovation-hero p{
    font-size:16px;
}

}

.renovation-about{
    text-align:center;
}

.renovation-types{
padding:90px 0;
background:#ffffff;
text-align:center;
}

.renovation-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.renovation-card{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:all 0.3s ease;
}

.renovation-card img{
width:100%;
height:200px;
object-fit:cover;
}

.renovation-card h3{
margin:15px 0 10px;
}

.renovation-card p{
padding:0 20px 20px;
color:#666;
font-size:15px;
}

.renovation-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.renovation-why{
padding:90px 0;
background:#f8f9fb;
}

.renovation-why-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
margin-top:40px;
}

.why-image img{
width:100%;
border-radius:10px;
}

.why-item{
display:flex;
gap:15px;
margin-bottom:25px;
}

.why-item i{
font-size:24px;
color:#f5a623;
margin-top:5px;
}

.why-item h4{
margin-bottom:5px;
}

.why-item p{
color:#666;
font-size:14px;
}

@media(max-width:768px){

.renovation-why-grid{
grid-template-columns:1fr;
}

}

.renovation-why{
    text-align:center;
}

.contact-hero{
position:relative;
height:70vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
background-image:url("images/hero.jpg");
background-size:cover;
background-position:center;
}

.contact-hero .hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.6);
}

/* ===== ABOUT IMAGE SLIDER (ADD AT BOTTOM) ===== */

.about-image-slider{
    position:relative;
    width:100%;
    height:350px;
    overflow:hidden;
}

.about-image-slider img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 0.6s ease-in-out;
}

.about-image-slider img.active{
    opacity:1;
}

.about-caption{
    text-align:center;
    margin-top:15px;
    font-style:italic;
    color:#666;
    line-height:1.6;
}

.brand-integrus{
color:#ff6a00; /* orange */
font-weight:700;
}

.brand-infra{
color:#666; /* grey */
font-weight:700;
}

 .social-item.call{
background:#007add; /* brand orange */
color:#fff;
}

/* Lightbox Modal */
.image-modal{
display:none;
position:fixed;
z-index:9999;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;
}

.image-modal img{
max-width:90%;
max-height:80%;
border-radius:10px;
}

.close-btn{
position:absolute;
top:20px;
right:30px;
color:#fff;
font-size:35px;
cursor:pointer;
}

.image-modal{
display:none;
position:fixed;
z-index:9999;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;
}

.image-modal img{
max-width:90%;
max-height:80%;
border-radius:10px;
}

.image-modal.active{
display:flex;
}

/* Close */
.close-btn{
position:absolute;
top:20px;
right:30px;
color:#fff;
font-size:35px;
cursor:pointer;
}

/* Prev & Next */
.prev-btn, .next-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
color:#fff;
font-size:40px;
cursor:pointer;
padding:10px;
}

.prev-btn{ left:20px; }
.next-btn{ right:20px; }

/* ===== PROJECTS HERO ===== */
.projects-hero{
    position:relative;
    height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    background-image:url("images/hero.jpg"); /* add your image */
    background-size:cover;
    background-position:center;
}

.projects-hero .hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
}

.projects-hero .hero-content{
    position:relative;
    max-width:700px;
}

.projects-hero h1{
    font-size:42px;
    margin-bottom:15px;
}

.projects-hero p{
    font-size:18px;
}

@media(max-width:768px){

.projects-hero{
height:45vh;
}

.projects-hero h1{
font-size:28px;
}

.projects-hero p{
font-size:15px;
}

}

.project-filters{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:10px;
margin:50px 0 30px;
}

.filter-btn{
padding:10px 22px;
border:1px solid #ddd;
background:#fff;
color:#333;
font-size:14px;
border-radius:30px;
cursor:pointer;
transition:all 0.3s ease;
}

.filter-btn:hover{
background:#ff6a00;
color:#fff;
border-color:#ff6a00;
}

.filter-btn.active{
background:#ff6a00;
color:#fff;
border-color:#ff6a00;
box-shadow:0 5px 15px rgba(245,166,35,0.3);
}

.projects-grid{
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:20px;
}

.project-img{
width:100%;
height:220px;
object-fit:cover;
border-radius:12px;
cursor:pointer;
transition:all 0.4s ease;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.project-img:hover{
transform:translateY(-8px) scale(1.03);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.project-card{
width:100%;
height:180px;
overflow:hidden;
border-radius:10px;
}

.project-img{
width:100%;
height:100%;
object-fit:cover;
cursor:pointer;
transition:0.3s;
}

.project-card:hover .project-img{
transform:scale(1.08);
}

@media(max-width:992px){
.projects-grid{
grid-template-columns:repeat(3,1fr);
}
}

@media(max-width:768px){
.projects-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:480px){
.projects-grid{
grid-template-columns:1fr;
}
}

.projects-page{
padding:80px 20px;
}

#modalImg{
touch-action: pan-y;
}

/* ===== CONTACT CTA ===== */
.contact-cta-section{
background:#111111c9;
color:#fff;
text-align:center;
padding:80px 20px;
margin-top:60px;
}

.contact-cta-section h2{
font-size:32px;
margin-bottom:15px;
}

.contact-cta-section p{
max-width:600px;
margin:0 auto 25px;
color:#ccc;
line-height:1.6;
}

/* Button */
.cta-btn{
display:inline-block;
padding:12px 30px;
background:#ff6a00;
color:#fff;
text-decoration:none;
border-radius:30px;
font-size:15px;
transition:0.3s;
}

.cta-btn:hover{
background:#f5a623;
}

.projects-hero h1{
color:#ff6a00; /* your logo orange */
}
/* ============================= */
/* CAREERS HERO */
/* ============================= */

.careers-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            rgba(0,0,0,0.70),
            rgba(0,0,0,0.65)
        ),
        url("images/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 700px;
    color: #fff;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,122,0,0.15);
    border: 1px solid rgba(255,122,0,0.4);
    color: #ff7a00;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.careers-hero h1 {
    font-size: 58px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.careers-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ff7a00;
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
    .careers-hero {
        min-height: 70vh;
        text-align: center;
    }

    .careers-hero h1 {
        font-size: 38px;
    }

    .careers-hero p {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
    }
}

.career-benefits,
.openings-section,
.career-stats,
.career-apply{
    padding:80px 0;
}

.benefits-grid,
.job-list{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.benefit-card,
.job-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    text-align:center;
}

.benefit-card i{
    font-size:38px;
    color:#ff7a00;
    margin-bottom:15px;
}

.job-btn{
    display:inline-block;
    margin-top:15px;
    background:#ff7a00;
    color:#fff;
    padding:10px 24px;
    border-radius:25px;
    text-decoration:none;
}

.career-form{
    max-width:700px;
    margin:auto;
}

.career-form input,
.career-form textarea{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
}

.career-form button{
    background:#ff7a00;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:25px;
    cursor:pointer;
}

/* Career Header Center Fix */

.career-benefits .section-header {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center !important;
}

.career-benefits .section-header h2 {
    color: #ff7a00; /* your logo color */
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center !important;
}

.career-benefits .section-header p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center !important;
    line-height: 1.8;
    color: #666;
}

.job-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    justify-content: center;
}

.job-card {
    text-align: center;
}

/* Current Openings Section */

.openings-section {
    padding: 80px 0;
}

.openings-section .section-header {
    text-align: center;
    width: 100%;
    max-width: 850px;
    margin: 0 auto 50px auto;
}

.openings-section .section-header h2 {
    color: var(--primary-color, #ff7a00);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.openings-section .section-header p {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    margin: 0 auto;
}

/* Job Cards */

.job-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.job-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    text-align: center;
}

.job-card h3 {
    color: #222;
    margin-bottom: 10px;
}

.job-card span {
    display: block;
    color: #777;
    margin-bottom: 10px;
}

.job-btn {
    display: inline-block;
    margin-top: 15px;
    background: #ff7a00;
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
}

/* Mobile */

@media (max-width: 768px) {
    .openings-section .section-header h2 {
        font-size: 32px;
    }

    .job-list {
        grid-template-columns: 1fr;
    }
}

.career-apply .section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.career-apply .section-header h2 {
    color: var(--primary-color, #ff7a00);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.career-apply .section-header p {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    margin: 0 auto;
}

.career-contact-info {
    text-align: center;
    margin-top: 30px;
}

.career-contact-info p {
    color: #666;
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.8;
}

.career-contact-info a {
    color: #ff7a00; /* your theme color */
    font-weight: 600;
    text-decoration: none;
}

.career-contact-info a:hover {
    text-decoration: underline;
}

/* Benefits Grid */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Tablet */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .benefit-card {
        padding: 20px 12px;
    }

    .benefit-card h3 {
        font-size: 16px;
    }

    .benefit-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    .benefit-card i {
        font-size: 28px;
        margin-bottom: 10px;
    }
}