/* ========================
   PREMIUM HEADER – style2.css
   Color: Deep Red & Gold
   Welcome Infraestate
   ======================== */

/* ---------- Color Variables (NO BLUE) ---------- */
:root {
  --primary: #C62828;        /* Deep red */
  --primary-dark: #8E0000;   /* Darker red for hover */
  --gold: #bd2600;           /* Accent gold */
  --gold-dark: #dbbe64;
  --white: #FFFFFF;
  --light-bg: #FAF9F8;
  --text-dark: #1E1E1E;
  --text-muted: #6B6B6B;
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---------- Reset & Base ---------- */
.site-header {
  font-family: 'Public Sans', sans-serif;
  position: relative;
  z-index: 999;
}

.site-header a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.95);
  font-size: 13px;
  padding: 9px 0;
  display: none; /* visible from md breakpoint */
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.top-contact,
.top-social {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-contact a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.top-contact a:hover {
  color: var(--gold);
}

.top-social span {
  opacity: 0.8;
  margin-right: 6px;
  font-weight: 500;
}

.top-social a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  transition: all var(--transition);
}
.top-social a:hover {
  background: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.02);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 25px;
}





/* Logo */
.logo img {
  display: block;
  max-height: 80px;
  width: 100%;
}


/* Desktop Navigation */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 5px;
}

/* Desktop only: hide mobile toggle & mobile menu */
@media (min-width: 992px) {
  .menu-toggle,
  .mobile-menu,
  .menu-overlay {
    display: none !important;
  }
}

/* Tablet and mobile: show hamburger, hide desktop nav */
@media (max-width: 991.98px) {
  .main-nav,
  .nav-actions {
    display: none !important;
  }
  .menu-toggle {
    display: flex;
  }
}

.main-nav ul li a {
  padding: 28px 14px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  display: block;
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
  letter-spacing: -0.2px;
}

/* Underline effect in RED */
.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--primary);
}
.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
  transform: scaleX(1);
}

/* CTA Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.2px;
}

.btn-call {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(198,40,40,0.3);
}
.btn-call:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(198,40,40,0.4);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,211,102,0.3);

  

}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 4px 12px rgba(18,140,126,0.4);
}

/* ---------- Mobile Menu Toggle ---------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  gap: 6px;
}

.menu-toggle .bar {
  width: 28px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- Premium Mobile Menu ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -340px;
  width: 300px;
  max-width: 85%;
  height: 100%;
  background: #fff;
  z-index: 1001;
  box-shadow: -8px 0 30px rgba(0,0,0,0.12);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 25px 20px;
  border-left: 1px solid rgba(0,0,0,0.03);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.mobile-logo img {
  max-height: 38px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 45px;
  width: auto;
  display: block;
}
.menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #444;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition), transform 0.2s;
  outline: none;
}
.menu-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

/* Mobile links – no outline, premium look */
.mobile-menu nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu nav ul li {
  border-bottom: 1px solid #F0F0F0;
}

.mobile-menu nav ul li a {
  display: block;
  padding: 15px 5px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 16px;
  transition: all var(--transition);
  position: relative;
  outline: none;                      /* REMOVES outline */
  -webkit-tap-highlight-color: transparent; /* removes mobile tap highlight */
  text-decoration: none;
}

/* Clean focus style instead of outline */
.mobile-menu nav ul li a:focus-visible {
  background: #FFF5F5;
  color: var(--primary);
  border-radius: 4px;
}

/* Active / hover style (premium left indicator) */
.mobile-menu nav ul li a:hover,
.mobile-menu nav ul li a.active {
  color: var(--primary);
  padding-left: 12px;          /* subtle indent */
}

.mobile-menu nav ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0;
  width: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: height 0.2s ease;
}

.mobile-menu nav ul li a:hover::before,
.mobile-menu nav ul li a.active::before {
  height: 20px;
}

/* CTA buttons in mobile menu */
.mobile-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 25px;
}

.full-width {
  justify-content: center;
  width: 100%;
}

/* Overlay (premium dark transparent) */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1000;
  display: none;
  transition: opacity 0.3s;
}

.menu-overlay.active {
  display: block;
}

/* ---------- RESPONSIVE ---------- */
/* Large screens hide mobile elements */
@media (min-width: 992px) {
  .mobile-menu,
  .menu-overlay,
  .menu-toggle {
    display: none !important;
  }
}

/* Tablet & Mobile: show hamburger, hide desktop nav */
@media (max-width: 991.98px) {
  .main-nav,
  .nav-actions {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .navbar-inner {
    height: 70px;
  }
}

/* Show top bar on medium+ */
@media (min-width: 768px) {
  .top-bar {
    display: block;
  }
}

/* Extra small devices */
@media (max-width: 575.98px) {
  .logo img {
    max-height: 38px;
  }
  .navbar-inner {
    height: 65px;
  }
}

.logo { display: block; }

/* --- Download Profile Button --- */
.btn-download,
.btn-download:link,
.btn-download:visited,
.btn-download:hover,
.btn-download:active {
  color: #ffffff !important;
}

.btn-download {
  background: var(--primary);
  box-shadow: 0 4px 14px rgba(198, 40, 40, 0.25);
  border: 2px solid var(--primary);
  transition: all var(--transition);
}

.btn-download:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 6px 18px rgba(198, 40, 40, 0.35);
}


/* ========================
   PREMIUM STYLESHEET – style2.css
   Welcome Infraestate
   ======================== */

/* ---------- Google Fonts (import in head) ---------- */
/* @import url('https://fonts.googleapis.com/css2?family=Exo:wght@300;400;500;600;700;800;900&family=Public+Sans:wght@200;300;400;500;600;700&display=swap'); */

/* ---------- Color Variables ---------- */
:root {
  --primary: #C62828;
  --primary-dark: #8E0000;
  --gold: #F0B90B;
  --gold-dark: #D4A30A;
  --white: #FFFFFF;
  --light-bg: #FAF9F8;
  --text-dark: #1E1E1E;
  --text-muted: #6B6B6B;
  --whatsapp-green: #25D366;
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---------- Global Resets ---------- */
body {
  font-family: 'Public Sans', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Exo', sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
.section-padding {
  padding: 100px 0;
}
.bg-light {
  background: var(--light-bg);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb-area {
  padding: 130px 0 80px;
  color: #fff;
}
.breadcrumb-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.breadcrumb-content ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,0.9);
}
.breadcrumb-content a {
  color: var(--gold);
}
.breadcrumb-content li:last-child {
  opacity: 1;
  color: #fff;
}

/* ---------- Section Header ---------- */
.section-header {
  margin-bottom: 50px;
}
.section-tag {
  display: inline-block;
  font-weight: 600;
  color: var(--primary);
  background: rgba(198,40,40,0.1);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}
.section-intro {
  max-width: 650px;
  margin: 0 auto;
  color: #666;
  font-size: 1.1rem;
}

/* ---------- About Intro ---------- */
.about-intro {
  position: relative;
  overflow: hidden;
}
.about-image-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 20px;
}
.img-main {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 30px 50px rgba(0,0,0,0.15);
}
.img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.img-float {
  position: absolute;
  right: 0;
  bottom: -40px;
  width: 65%;
  z-index: 2;
}
.img-float img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 40px rgba(0,0,0,0.18);
  border: 5px solid #fff;
}
.experience-badge {
  position: absolute;
  left: -20px;
  bottom: 60px;
  background: linear-gradient(135deg, var(--primary), #a00000);
  color: #fff;
  padding: 20px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 35px rgba(198,40,40,0.4);
  z-index: 3;
}
.experience-badge .num {
  font-size: 2.8rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.experience-badge .txt {
  font-size: 0.85rem;
  font-weight: 500;
  display: block;
  margin-top: 4px;
  text-transform: uppercase;
}
.about-text .lead {
  font-size: 1.2rem;
  color: #444;
  margin: 20px 0;
  font-style: italic;
  border-left: 5px solid var(--gold);
  padding-left: 25px;
  background: linear-gradient(to right, rgba(240,185,11,0.05), transparent);
  border-radius: 0 8px 8px 0;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(198,40,40,0.3);
  transition: all var(--transition);
}
.btn-download:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(142,0,0,0.4);
  color: #fff;
}

/* ---------- Mission / Vision Premium ---------- */
.premium-mission {
  padding: 100px 0;
  background: #fff;
}
.premium-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 35px;
  box-shadow: 0 25px 45px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.4s;
  height: 100%;
}
.premium-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240,185,11,0.3);
  box-shadow: 0 35px 55px rgba(198,40,40,0.06);
}
.card-icon {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 15px;
  background: rgba(240,185,11,0.1);
  display: inline-block;
  padding: 12px;
  border-radius: 18px;
  line-height: 1;
}
.premium-card h3 {
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 12px;
}
.premium-card h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.card-text p {
  text-align: justify;
  line-height: 1.9;
  color: #4a4a4a;
  margin: 0;
}

/* ---------- Areas Grid ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 25px;
  margin-top: 20px;
}
.area-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.03);
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
}
.area-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}
.area-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.area-card h4 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
}
.area-card small {
  font-weight: 400;
  font-size: 0.8rem;
  color: #888;
}

/* ---------- Values ---------- */
.values-grid {
  margin: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  transition: 0.3s;
}
.value-item:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.value-item .icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.value-item h4 {
  font-weight: 700;
  margin-bottom: 8px;
}
.value-item p {
  color: #555;
  font-size: 0.9rem;
  margin: 0;
}
.btn-link {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  transition: gap 0.3s;
}
.btn-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* ---------- Testimonials Slider ---------- */
.testi-slider-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 30px auto 0;
}
.testi-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 25px;
  overflow: visible;
}
.testi-card {
  flex: 0 0 calc(100% - 25px);
  background: #fff;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 25px 45px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-icon {
  font-family: 'Georgia', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.6;
  margin-bottom: 10px;
  user-select: none;
}
.testi-text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
  flex-grow: 1;
}
.client-info {
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
}
.client-info h5 {
  font-weight: 700;
  margin: 0 0 4px;
}
.client-info span {
  color: #888;
  font-size: 0.9rem;
}

/* Slider controls */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: 0.3s;
}
.slider-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}
.slider-arrow {
  background: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.slider-arrow:hover {
  background: var(--primary);
  color: #fff;
}

/* ---------- CTA ---------- */
.cta-section {
  padding: 80px 0;
}
.btn-light {
  background: #fff;
  color: var(--primary);
  border-radius: 6px;
  padding: 12px 28px;
  font-weight: 700;
  transition: 0.3s;
}
.btn-light:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .section-heading {
    font-size: 1.8rem;
  }
  .about-image-grid {
    display: block;
    margin-bottom: 40px;
  }
  .img-float {
    position: relative;
    width: 70%;
    margin-top: -50px;
    margin-left: auto;
  }
  .experience-badge {
    position: relative;
    left: 0;
    bottom: auto;
    margin-top: 20px;
    display: inline-block;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .testi-card {
    padding: 30px 20px;
  }
  .areas-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media (max-width: 575.98px) {
  .breadcrumb-area {
    padding: 100px 0 50px;
  }
  .breadcrumb-content h1 {
    font-size: 2rem;
  }
  .section-padding {
    padding: 60px 0;
  }
  .premium-card {
    padding: 30px 20px;
  }
  .card-text p {
    text-align: left;
  }
}



/* ---------- Services  ---------- */
.services-grid-section {
  padding: 80px 0 100px;
}

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

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;                 /* center all text */
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 55px rgba(198,40,40,0.08);
  border-color: rgba(240,185,11,0.3);
}

/* Service Icon – CENTERED, NO BACKGROUND */
.service-icon {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
  text-align: center;
  background: none !important;        /* remove highlight */
  padding: 0;
  border-radius: 0;
  line-height: 1;
}

.service-card h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #111;
}

.service-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
  flex-grow: 1;
}

/* "Most Popular" tag */
.service-tag {
  display: inline-block;
  margin: 15px auto 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: var(--primary);
  color: #fff;
  padding: 4px 14px;
  border-radius: 30px;
  align-self: center;                /* centered tag */
}

/* ---------- Advantage Cards – Icons Centered, No Background ---------- */
.advantage-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s;
  height: 100%;
}
.advantage-card:hover {
  transform: translateY(-5px);
}

.advantage-card .icon-box {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
  text-align: center;
  background: none !important;        /* remove highlight */
  padding: 0;
  border-radius: 0;
  line-height: 1;
}

.advantage-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #1a1a1a;
}
.advantage-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- CTA Dark ---------- */
.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-outline-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  .service-card {
    padding: 25px 20px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* ---------- Areas page---------- */

/* ---------- Breadcrumb Centred (Areas) ---------- */
.breadcrumb-areas .breadcrumb-content {
  text-align: center;
}
.breadcrumb-areas ul {
  justify-content: center;
}
.breadcrumb-areas ul li:last-child {
  color: #fff;
}

.breadcrumb-areas .breadcrumb-content ul li a {
  color: var(--primary);
  font-weight: 600;
}

/* ---------- Areas Detail Grid ---------- */
.areas-detail-section {
  padding: 80px 0 100px;
}

.areas-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.area-detail-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 45px rgba(0,0,0,0.04);
  display: flex;
  flex-wrap: wrap;
  border: 1px solid rgba(0,0,0,0.02);
  transition: transform 0.3s, box-shadow 0.3s;
}

.area-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 55px rgba(198,40,40,0.08);
}

.area-image {
  width: 40%;
  min-height: 280px;
  overflow: hidden;
}
.area-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.area-content {
  width: 60%;
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.area-tag {
  display: inline-block;
  background: rgba(240,185,11,0.15);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 30px;
  align-self: flex-start;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.area-content h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #111;
}
.area-content h3 small {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}

.area-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.area-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.area-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
}
.area-features li i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Map Wrapper */
.map-wrapper {
  margin-top: 30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 45px rgba(0,0,0,0.06);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .area-image {
    width: 100%;
    min-height: 220px;
  }
  .area-content {
    width: 100%;
    padding: 30px 25px;
  }
  .area-detail-card {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .area-content h3 {
    font-size: 1.5rem;
  }
}



/* ---------- Page (Our Work) ---------- */

/* ---------- Breadcrumb Centred (Our Work) ---------- */
.breadcrumb-work .breadcrumb-content {
  text-align: center;
}
.breadcrumb-work ul {
  justify-content: center;
}
.breadcrumb-work ul li a {
  color: var(--primary);
  font-weight: 600;
}
.breadcrumb-work ul li:last-child {
  color: #fff;
}

/* ---------- Stats Section ---------- */
.stats-section {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.02);
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(198,40,40,0.08);
}

.stat-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.stat-number {
  font-family: 'Exo', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #111;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: #666;
  font-weight: 500;
  font-size: 0.95rem;
}

/* ---------- Work Grid ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.work-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.35s ease;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 55px rgba(198,40,40,0.08);
}

.work-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(198,40,40,0.3);
}

.work-info {
  padding: 25px 28px;
}

.work-category {
  display: inline-block;
  background: rgba(240,185,11,0.12);
  color: #b8860b;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.work-info h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #111;
}

.work-location {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.work-location i {
  color: var(--primary);
}

.work-desc {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.work-details {
  display: flex;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  font-size: 0.85rem;
  color: #666;
}

.work-details strong {
  color: #333;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .stat-number {
    font-size: 2rem;
  }
  .work-image {
    height: 200px;
  }
  .work-info {
    padding: 20px;
  }
}


/* ---------- Page (Gallery) ---------- */

/* ---------- Breadcrumb Centred (Gallery) ---------- */
.breadcrumb-gallery .breadcrumb-content {
  text-align: center;
}
.breadcrumb-gallery ul {
  justify-content: center;
}
.breadcrumb-gallery ul li a {
  color: var(--primary);
  font-weight: 600;
}
.breadcrumb-gallery ul li:last-child {
  color: #fff;
}




/* ---------- Gallery Filters ---------- */
.gallery-filters {
  margin-bottom: 40px;
}
.filter-btn {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px 24px;
  margin: 0 6px 10px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  color: #333;
  font-size: 0.9rem;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ---------- Gallery Grid ---------- */
.gallery-section {
  padding: 80px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(198,40,40,0.1);
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(198,40,40,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  color: #fff;
  font-size: 2rem;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.3s, opacity 0.3s;
}
.lightbox.active {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s 0s, opacity 0.3s;
}
.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
}
.lightbox-close:hover {
  color: var(--gold);
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
}
.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  .gallery-item img {
    height: 200px;
  }
  .lightbox-prev,
  .lightbox-next {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
}



/* ---------- Page (Career) ---------- */

/* ---------- Breadcrumb Centred (Career) ---------- */
.breadcrumb-career .breadcrumb-content {
  text-align: center;
}
.breadcrumb-career ul {
  justify-content: center;
}
.breadcrumb-career ul li a {
  color: var(--primary);
  font-weight: 600;
}
.breadcrumb-career ul li:last-child {
  color: #fff;
}

/* ---------- Openings Grid ---------- */
.openings-section {
  padding: 80px 0;
}
.openings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}
.job-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.02);
  text-align: center;
  transition: all 0.35s;
}
.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 55px rgba(198,40,40,0.08);
}
.job-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}
.job-card h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.job-meta {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.job-meta i {
  color: var(--primary);
}
.job-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.btn-red-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
}
.btn-red-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ---------- Benefit Cards ---------- */
.benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s;
  height: 100%;
}
.benefit-card:hover {
  transform: translateY(-5px);
}
.benefit-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
  background: none;
}
.benefit-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
}
.benefit-card p {
  color: #666;
  font-size: 0.95rem;
}

/* ---------- Apply Form ---------- */
.apply-section {
  padding: 80px 0;
}
.apply-form-wrapper {
  max-width: 800px;
  margin: 30px auto 0;
}
.apply-form .form-control {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  font-family: 'Public Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}
.apply-form .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(198,40,40,0.1);
}
.file-upload {
  display: block;
  text-align: center;
  padding: 20px;
  border: 2px dashed #ccc;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.3s;
}
.file-upload input[type="file"] {
  display: none;
}
.file-upload span {
  font-weight: 500;
  color: #777;
}
.file-upload i {
  margin-right: 8px;
}
.file-upload:hover {
  border-color: var(--primary);
}
.btn-primary-red {
  background: var(--primary);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary-red:hover {
  background: var(--primary-dark);
}

/* ---------- Responsive ---------- */
@media (max-width: 575px) {
  .job-card {
    padding: 25px 20px;
  }
}


/* ---------- Breadcrumb Centred (Contact) ---------- */
.breadcrumb-contact .breadcrumb-content {
  text-align: center;
}
.breadcrumb-contact ul {
  justify-content: center;
}
.breadcrumb-contact ul li a {
  color: var(--primary);
  font-weight: 600;
}
.breadcrumb-contact ul li:last-child {
  color: #fff;
}

/* ---------- Contact Main ---------- */
.contact-info-block h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(198,40,40,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.info-item h5 {
  margin: 0 0 5px;
  font-weight: 700;
}
.info-item p {
  margin: 0;
  color: #555;
}
.info-item a {
  color: var(--primary);
  font-weight: 500;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  margin-right: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.social-links a:hover {
  background: var(--primary);
  color: #fff;
}

/* ---------- Contact Form Wrapper ---------- */
.contact-form-wrapper {
  background: #fff;
  padding: 40px 35px;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.02);
}
.contact-form-wrapper h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
}
.contact-form .form-control {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #fafafa;
  font-family: 'Public Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(198,40,40,0.1);
  background: #fff;
}
.contact-form textarea {
  resize: vertical;
}
.btn-primary-red {
  background: var(--primary);
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary-red:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198,40,40,0.3);
}

/* ---------- Map ---------- */
.map-section {
  padding-bottom: 80px;
}
.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 45px rgba(0,0,0,0.06);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .contact-form-wrapper {
    padding: 30px 25px;
  }
}


/* ---------- certificate page ---------- */

/* ---------- Breadcrumb Centred (Certificate) ---------- */
.breadcrumb-certificate .breadcrumb-content {
  text-align: center;
}
.breadcrumb-certificate ul {
  justify-content: center;
}
.breadcrumb-certificate ul li a {
  color: var(--primary);
  font-weight: 600;
}
.breadcrumb-certificate ul li:last-child {
  color: #fff;
}

/* ---------- Certificate Grid ---------- */
.certificate-section {
  padding: 80px 0;
}
.certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.certificate-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 45px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.02);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.certificate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 55px rgba(198,40,40,0.08);
}
.certificate-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.certificate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.certificate-card:hover .certificate-image img {
  transform: scale(1.05);
}
.certificate-overlay {
  position: absolute;
  inset: 0;
  background: rgba(198,40,40,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.certificate-card:hover .certificate-overlay {
  opacity: 1;
}
.certificate-overlay i {
  color: #fff;
  font-size: 2.5rem;
}
.certificate-info {
  padding: 25px 28px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.certificate-info h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111;
}
.certificate-info p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.btn-red-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  margin-top: auto;
  align-self: center;
}
.btn-red-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 575px) {
  .certificate-info h3 {
    font-size: 1.1rem;
  }
}


/* ---------- homepage ---------- */

/* ========== WELHOME HOMEPAGE PREMIUM STYLES ========== */
:root {
  --wi-primary: #C62828;
  --wi-dark: #8E0000;
  --wi-gold: #F0B90B;
  --wi-black: #1a1a1a;
  --wi-light-bg: #F8F9FA;
  --wi-text: #333;
  --wi-transition: 0.3s ease;
}

/* ---------- HERO ---------- */
.wi-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.wi-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.wi-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}
.wi-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}
.wi-hero-tag {
  font-weight: 600;
  color: var(--wi-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}
.wi-hero-title {
  font-family: 'Exo', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.wi-hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.wi-hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.wi-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--wi-transition);
  text-decoration: none;
  border: 2px solid transparent;
  font-size: 0.95rem;
}
.wi-btn-primary {
  background: var(--wi-primary);
  color: #fff;
  border-color: var(--wi-primary);
}
.wi-btn-primary:hover {
  background: var(--wi-dark);
  border-color: var(--wi-dark);
  color: #fff;
}
.wi-btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.wi-btn-outline:hover {
  background: #fff;
  color: var(--wi-primary);
}
.wi-btn-outline-dark {
  background: transparent;
  color: var(--wi-primary);
  border-color: var(--wi-primary);
}
.wi-btn-outline-dark:hover {
  background: var(--wi-primary);
  color: #fff;
}

/* ---------- MISSION STRIP ---------- */
.wi-mission-strip {
  background: var(--wi-primary);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.wi-mission-text h2 {
  font-family: 'Exo', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.wi-mission-text p {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------- GENERAL SECTIONS ---------- */
.wi-section {
  padding: 4rem 0;
}
.wi-bg-light { background: var(--wi-light-bg); }
.wi-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.wi-tag {
  display: inline-block;
  font-weight: 600;
  color: var(--wi-primary);
  background: rgba(198,40,40,0.1);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.wi-heading {
  font-family: 'Exo', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--wi-black);
}
.wi-cta-center {
  text-align: center;
  margin-top: 2rem;
}

/* ---------- ABOUT BLOCK ---------- */
.wi-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
}
.wi-col-img { flex: 1 1 300px; }
.wi-col-text { flex: 1 1 400px; }
.wi-about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 40px rgba(0,0,0,0.08);
}
.wi-about-img img {
  width: 100%;
  display: block;
  height: auto;
}
.wi-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--wi-primary);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 700;
}
.wi-checklist div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0.8rem 0;
  color: var(--wi-text);
}
.wi-checklist i { color: var(--wi-primary); }

/* ---------- Section Subtitle ---------- */
.wi-section-subtitle {
  color: #666;
  font-size: 1.05rem;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
}

/* ---------- Services Rows ---------- */
.wi-services-row {
  margin-bottom: 3rem;
}
.wi-services-row:last-of-type {
  margin-bottom: 1.5rem;
}
.wi-services-row-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(198, 40, 40, 0.1);
}
.wi-services-row-icon {
  width: 48px;
  height: 48px;
  background: var(--wi-primary, #C62828);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.wi-services-row-header h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #111;
  margin: 0;
}

/* ---------- Service Cards (Enhanced) ---------- */
.wi-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.wi-service-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: center;
}
.wi-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(198, 40, 40, 0.06);
}
.wi-service-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(198, 40, 40, 0.06);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.wi-service-icon-wrap i {
  font-size: 1.6rem;
  color: var(--wi-primary, #C62828);
  background: none !important;
}
.wi-service-card h4 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 0.6rem;
}
.wi-service-card p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Services Row Header (Center Aligned, No Border) ---------- */
.wi-services-row-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
  border-bottom: none;
  text-align: center;
}
.wi-services-row-icon {
  width: 48px;
  height: 48px;
  background: var(--wi-primary, #C62828);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.wi-services-row-header h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #111;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .wi-services-grid {
    grid-template-columns: 1fr;
  }
  .wi-services-row-header {
    flex-direction: column;
    text-align: center;
  }
}
/* ---------- AREAS GRID ---------- */
.wi-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}
.wi-area-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  transition: transform 0.3s, border-color 0.3s;
  border: 1px solid transparent;
}
.wi-area-card:hover {
  transform: translateY(-5px);
  border-color: var(--wi-primary);
}
.wi-area-card i { font-size: 1.5rem; color: var(--wi-primary); margin-bottom: 0.5rem; }
.wi-area-card h4 { font-weight: 600; font-size: 0.95rem; }
.wi-area-card small { font-size: 0.8rem; color: #777; display: block; }

/* ---------- WORK GRID ---------- */
.wi-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.wi-work-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0,0,0,0.04);
  transition: transform 0.3s;
}
.wi-work-card:hover { transform: translateY(-5px); }
.wi-work-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.wi-work-img img { width: 100%; height: 100%; object-fit: cover; }
.wi-badge-sold, .wi-badge-rented {
  position: absolute;
  top: 10px; right: 10px;
  padding: 0.2rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
}
.wi-badge-sold { background: var(--wi-primary); }
.wi-badge-rented { background: var(--wi-gold); color: #000; }
.wi-work-card h5 { padding: 1rem 1rem 0; margin: 0; color: var(--wi-black); }
.wi-work-card p { padding: 0 1rem 1rem; color: #666; font-size: 0.85rem; }
.wi-work-card p i { color: var(--wi-primary); margin-right: 5px; }

/* ---------- TESTIMONIALS SLIDER ---------- */
.wi-testi-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.wi-testi-track {
  display: flex;
  gap: 25px;
  transition: transform 0.4s ease;
}
.wi-testi-card {
  flex: 0 0 100%;
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.04);
  text-align: center;
}
.wi-quote {
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--wi-primary);
  opacity: 0.2;
  line-height: 0.5;
  margin-bottom: 1rem;
}
.wi-testi-card p {
  font-style: italic;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.wi-client h5 { margin: 0 0 0.2rem; }
.wi-client span { color: #888; font-size: 0.85rem; }
.wi-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.wi-slider-arrow {
  background: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  color: var(--wi-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.wi-slider-arrow:hover { background: var(--wi-primary); color: #fff; }
.wi-slider-dots { display: flex; gap: 8px; }
.wi-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}
.wi-dot.active { background: var(--wi-primary); transform: scale(1.2); }

/* ---------- CONTACT ---------- */
.wi-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.wi-contact-info { flex: 1 1 300px; }
.wi-contact-form {
  flex: 1 1 350px;
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 35px rgba(0,0,0,0.05);
}
.wi-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 1.5rem 0;
}
.wi-contact-item i {
  font-size: 1.3rem;
  color: var(--wi-primary);
  width: 40px; height: 40px;
  background: rgba(198,40,40,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wi-contact-item a { color: var(--wi-primary); font-weight: 500; }
.wi-contact-form input, .wi-contact-form select, .wi-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #fafafa;
  font-family: inherit;
  transition: 0.3s;
}
.wi-contact-form input:focus, .wi-contact-form select:focus, .wi-contact-form textarea:focus {
  border-color: var(--wi-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(198,40,40,0.1);
}
.wi-contact-form button i { margin-left: 5px; }

/* ---------- WHATSAPP FLOAT ---------- */
.wi-whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.3s;
}
.wi-whatsapp-float:hover { transform: scale(1.1); }

/* ========== HERO SLIDER ========== */
.wi-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  color: #fff;
}
.wi-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.wi-hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.wi-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.wi-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 100%);
}
.wi-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
}
.wi-hero-tag {
  font-weight: 600;
  color: var(--wi-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.wi-hero-title {
  font-family: 'Exo', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.wi-hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
}
.wi-hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Arrows */
.wi-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.wi-hero-arrow:hover { background: var(--wi-primary); }
.wi-hero-arrow.prev { left: 20px; }
.wi-hero-arrow.next { right: 20px; }

/* Dots */
.wi-hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.wi-hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  padding: 0;
  cursor: pointer;
}
.wi-hero-dot.active { background: var(--wi-primary); transform: scale(1.3); }

/* Responsive */
@media (max-width: 768px) {
  .wi-hero { min-height: 500px; }
  .wi-hero-title { font-size: 2.2rem; }
  .wi-hero-arrow { width: 40px; height: 40px; font-size: 1rem; }
}
@media (max-width: 480px) {
  .wi-hero-title { font-size: 1.8rem; }
}



/* ========== FOOTER (Welhome) ========== */
.wi-footer {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  padding-top: 4rem;
}

/* Top Section */
.wi-footer-top {
  padding-bottom: 2rem;
}
.wi-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.wi-footer-heading {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.wi-footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--wi-primary, #C62828);
  border-radius: 1px;
}

/* About column */
.wi-footer-text {
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.wi-footer-tagline {
  font-weight: 600;
  color: var(--wi-primary, #C62828);
  margin-bottom: 1.2rem;
}
.wi-footer-social {
  display: flex;
  gap: 12px;
}
.wi-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.wi-footer-social a:hover {
  background: var(--wi-primary, #C62828);
  transform: translateY(-3px);
}

/* Link lists */
.wi-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wi-footer-links li {
  margin-bottom: 0.5rem;
}
.wi-footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}
.wi-footer-links a:hover {
  color: var(--wi-primary, #C62828);
  padding-left: 5px;
}

/* Contact */
.wi-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
}
.wi-footer-contact-item i {
  color: var(--wi-primary, #C62828);
  font-size: 1rem;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}
.wi-footer-contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.wi-footer-contact-item a:hover {
  color: var(--wi-primary, #C62828);
}
.wi-footer-contact-item small {
  color: rgba(255, 255, 255, 0.5);
}

/* Bottom Bar */
.wi-footer-bottom {
  background: #080808;
  padding: 1.2rem 0;
  font-size: 0.85rem;
}
.wi-footer-bottom .container {
  width: 100%;
}
.wi-footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.wi-copyright {
  margin: 0;
}
.wi-footer-credit {
  margin: 0;
}
.wi-footer-credit a {
  color: #F26D2B;
  text-decoration: none;
}

/* Scroll to Top */
.wi-scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: var(--wi-primary, #C62828);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(198, 40, 40, 0.3);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wi-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.wi-scroll-top:hover {
  background: var(--wi-dark, #8E0000);
}

/* Responsive */
@media (max-width: 991px) {
  .wi-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .wi-footer-grid {
    grid-template-columns: 1fr;
  }
  .wi-footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}



/* Two-column certificate grid – simple image display */
.certificate-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.certificate-card-simple {
  background: #fff;
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
  padding: 0 0 30px 0;
}

.certificate-img-wrap {
  width: 100%;
  overflow: hidden;
  background: #f9f9f9;
  padding: 20px;
}

.certificate-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.certificate-card-simple h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 25px 20px 10px;
  color: #111;
}

.certificate-card-simple p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 20px;
  line-height: 1.6;
}

/* On mobile – stack vertically */
@media (max-width: 768px) {
  .certificate-grid-two {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Prestige Partner Logo – Half Size (540px max), Outline, Hover */
.partner-logo-wrapper {
  text-align: center;
  padding: 20px 0;
}

.partner-logo-small {
  width: 100%;
  max-width: 540px;          /* half of 1080px */
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: inline-block;
  border-radius: 16px;
  background: #fff;
  padding: 15px;
  
  /* Outline */
  border: 2px solid #e0e0e0;
  
  /* Smooth hover transition */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.partner-logo-small:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(198, 40, 40, 0.12);
  border-color: var(--wi-primary, #C62828);   /* red outline on hover */
}

/* Remove extra padding on small screens */
@media (max-width: 768px) {
  .partner-logo-small {
    padding: 10px;
  }
}