/* =============================================
   FIZA ENTERPRISES – STYLE.CSS
   Navy Blue Theme | Premium Safety Net Company
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --navy: #0a1f44;
  --navy-mid: #122850;
  --navy-light: #1a3a6e;
  --accent: #c8a96e;
  --accent-light: #e8cc99;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(10, 31, 68, 0.10);
  --shadow-lg: 0 12px 40px rgba(10, 31, 68, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 0.82rem;
  width: 100%;
  overflow: hidden;
}

.topbar-link {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-link:hover { color: var(--accent-light); }

.topbar-social {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  transition: all var(--transition);
}
.topbar-social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10,31,68,0.08);
  z-index: 1000;
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(10,31,68,0.14);
}

.navbar { padding: 12px 0; }

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
}

.brand-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.brand-tagline {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Nav Links */
.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 14px; right: 14px;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-link:hover { color: var(--navy) !important; }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 8px !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--navy-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(10,31,68,0.25);
}

.toggler-icon {
  width: 40px; height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--navy);
}
.navbar-toggler { border: none; background: none; padding: 0; box-shadow: none !important; }

/* =============================================
   HERO CAROUSEL
   ============================================= */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel,
.carousel-inner,
.carousel-item { width: 100%; }

.hero-slide {
  position: relative;
  height: 88vh;
  min-height: 520px;
  max-height: 800px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-slide-1 {
  background-color: #0a1f44;
  background-image: url('../images/b1.webp');
}
.hero-slide-2 {
  background-color: #0a2240;
  background-image: url('../images/b2.jpg');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10,31,68,0.88) 0%, rgba(10,31,68,0.55) 60%, rgba(10,31,68,0.2) 100%);
}

.hero-slide .container { position: relative; z-index: 2; }

.hero-content {
  padding: 40px 0;
  animation: heroFadeIn 0.8s ease forwards;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 169, 110, 0.18);
  border: 1px solid rgba(200, 169, 110, 0.5);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero-title span { color: var(--accent); }

.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

.btn-hero-primary {
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-hero-primary:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.4);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* Carousel Controls */
.carousel-ctrl-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  backdrop-filter: blur(6px);
  transition: all var(--transition);
}
.carousel-ctrl-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }
.carousel-control-prev, .carousel-control-next { width: auto; }

.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  transition: all var(--transition);
}
.carousel-indicators .active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-wrapper {
  background: var(--navy);
  padding: 13px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-track span {
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.marquee-track span i { color: var(--accent); font-size: 0.75rem; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section-pad { padding: 90px 0; }

.bg-light-custom { background: var(--off-white); }

.section-tag {
  display: inline-block;
  background: rgba(10,31,68,0.07);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(10,31,68,0.1);
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-title span { color: var(--accent); }

.section-desc { color: var(--text-muted); font-size: 1rem; }

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.btn-primary-custom {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 9px;
  border: 2px solid transparent;
  display: inline-flex; align-items: center; gap: 9px;
  transition: all var(--transition);
  font-size: 0.95rem;
}
.btn-primary-custom:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-img-main img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-badge-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-years {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.about-years-label {
  font-size: 0.78rem;
  opacity: 0.85;
  line-height: 1.3;
  margin-top: 4px;
  display: block;
}

.about-img-accent {
  position: absolute;
  top: -16px; left: -16px;
  width: 100px; height: 100px;
  background: rgba(10,31,68,0.07);
  border-radius: 12px;
  z-index: -1;
}

.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }

.about-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.about-feat-item:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.feat-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-feat-item h6 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin: 0 0 3px; }
.about-feat-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* =============================================
   SERVICE SECTION
   ============================================= */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.service-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.service-card:hover .service-img { transform: scale(1.07); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,31,68,0.3));
}

.service-body {
  padding: 24px;
  flex: 1;
  display: flex; flex-direction: column;
}

.service-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--accent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(10,31,68,0.2);
}

.service-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 18px;
}

.btn-service-call {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 8px;
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 7px;
  transition: all var(--transition);
  width: fit-content;
}
.btn-service-call:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.service-card-featured .service-icon { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: var(--navy); }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section { background: var(--white); }

.why-card {
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.35s ease;
  text-align: center;
}
.why-card:hover {
  border-color: var(--navy);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(10,31,68,0.07), rgba(10,31,68,0.12));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0 auto 18px;
  transition: all var(--transition);
}
.why-card:hover .why-icon {
  background: var(--navy);
  color: var(--accent);
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   COUNTER SECTION
   ============================================= */
.counter-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter-item { position: relative; z-index: 1; }

.counter-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--accent);
  display: inline;
  line-height: 1;
}
.counter-plus { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--accent); }

.counter-item p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  margin: 8px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
}

/* =============================================
   GALLERY
   ============================================= */

   .video-box video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(10,31,68,0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--white);
}
.gallery-hover i { font-size: 1.6rem; color: var(--accent); }
.gallery-hover span { font-size: 0.88rem; font-weight: 600; letter-spacing: 0.05em; }

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-hover { opacity: 1; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
  transition: all var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-lg); border-color: var(--navy); }

.testi-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--navy);
  opacity: 0.07;
  position: absolute;
  top: 8px; left: 20px;
  line-height: 1;
}

.testi-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 14px; }

.testi-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-author strong { display: block; font-size: 0.95rem; color: var(--navy); }
.testi-author span { font-size: 0.8rem; color: var(--text-muted); }

.testi-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.testi-btn {
  width: 46px; height: 46px;
  border: 2px solid var(--navy);
  background: transparent;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  transition: all var(--transition);
  cursor: pointer;
}
.testi-btn:hover { background: var(--navy); color: var(--white); }

/* =============================================
   CONTACT
   ============================================= */
.contact-info-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
}

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--navy);
  display: inline-block;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  color: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-item strong { display: block; font-size: 0.88rem; color: var(--navy); margin-bottom: 4px; font-weight: 600; }
.contact-detail-item p, .contact-detail-item a { font-size: 0.92rem; color: var(--text-muted); margin: 0; }
.contact-detail-item a:hover { color: var(--navy); }

.contact-social-btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.contact-social-btn {
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  transition: all var(--transition);
  flex: 1; min-width: 130px; justify-content: center;
}

.call-btn {
  background: var(--navy);
  color: var(--white);
}
.call-btn:hover { background: var(--navy-light); color: var(--white); transform: translateY(-2px); }

.whatsapp-btn {
  background: #25D366;
  color: var(--white);
}
.whatsapp-btn:hover { background: #1ebe5d; color: var(--white); transform: translateY(-2px); }

/* Form */
.form-label { font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }

.custom-input {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: all var(--transition);
  background: var(--white);
}
.custom-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,31,68,0.08);
  outline: none;
}

.form-success-msg {
  background: rgba(37,211,102,0.1);
  border: 1px solid #25D366;
  color: #1a7a42;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 16px;
  display: flex; align-items: center; gap: 10px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--navy); }

.footer-top { padding: 70px 0 50px; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand-icon {
  width: 44px; height: 44px;
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.footer-about {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-weight: 700;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer-contact-item i { color: var(--accent); font-size: 0.95rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  margin: 0;
}
.footer-bottom strong { color: var(--accent); }

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: all var(--transition);
  position: relative;
}

.float-call { background: var(--navy); }
.float-whatsapp { background: #25D366; }

.float-btn:hover { transform: scale(1.12); color: var(--white); }

.float-tooltip {
  position: absolute;
  right: 62px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
  border-right: none;
}
.float-btn:hover .float-tooltip { opacity: 1; }

/* =============================================
   AOS SIMPLE ANIMATIONS (No external lib needed)
   ============================================= */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(0.9); }

[data-aos].aos-animate {
  opacity: 1;
  transform: none !important;
}

/* Fallback: print / no-JS / slow-JS — never hide content permanently */
@media print {
  [data-aos] { opacity: 1 !important; transform: none !important; }
}

/* =============================================
   SCROLL TO TOP
   ============================================= */
#scrollTop {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 42px; height: 42px;
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
#scrollTop.visible { opacity: 1; pointer-events: all; }
#scrollTop:hover { background: var(--navy); color: var(--white); }

/* =============================================
   RESPONSIVE – MOBILE FIXES
   ============================================= */
@media (max-width: 991.98px) {
  .navbar-collapse { padding: 16px 0; }
  .nav-link { padding: 10px 8px !important; }
  .nav-cta { display: inline-flex; width: fit-content; margin-top: 8px; }

  .hero-slide { height: 72vh; min-height: 420px; }

  .about-badge-box { right: 0; bottom: -16px; }
  .about-img-accent { display: none; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 64px 0; }

  .hero-slide { height: 80vh; min-height: 480px; }
  .hero-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .hero-desc { font-size: 0.9rem; }
  .hero-btns { gap: 10px; }
  .btn-hero-primary, .btn-hero-outline { padding: 11px 20px; font-size: 0.88rem; }

  .carousel-control-prev { left: 8px; }
  .carousel-control-next { right: 8px; }

  .topbar .col-12 { justify-content: center !important; }
  .topbar-link { font-size: 0.78rem; }

  .contact-info-box, .contact-form-box { padding: 24px 18px; }

  .float-btn { width: 48px; height: 48px; font-size: 1.1rem; }
  .floating-btns { bottom: 20px; right: 16px; }
  .float-tooltip { display: none; }

  .counter-section { padding: 50px 0; }
  .counter-num { font-size: 2.2rem; }
}

@media (max-width: 575.98px) {
  .brand-tagline { display: none; }
  .hero-slide { height: 88vh; min-height: 480px; }
  .hero-content { padding: 20px 0; }

  .about-badge-box { position: static; display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; border-radius: var(--radius); }
  .about-years { font-size: 1.6rem; }
  .about-years-label { font-size: 0.72rem; }

  .footer-top { padding: 48px 0 36px; }
  .service-body { padding: 18px; }
}

/* =============================================
   GLOBAL OVERFLOW & SPACING FIX
   ============================================= */

/* Remove old override that was breaking container */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* Bootstrap container: proper side padding at all sizes */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (min-width: 768px) {
  .container,
  .container-md {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}

@media (min-width: 992px) {
  .container,
  .container-lg {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-xl {
    padding-left: 48px !important;
    padding-right: 48px !important;
    max-width: 1320px;
  }
}

/* Fix row negative margins causing side overflow */
.row {
  --bs-gutter-x: 1.5rem;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Sections must not overflow */
section, footer, header, div {
  max-width: 100%;
}

/* Hero carousel full-width fix */
.hero-section,
.carousel,
.carousel-inner,
.carousel-item,
.hero-slide {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  left: 0 !important;
  right: 0 !important;
}

/* Marquee overflow fix */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
}

/* Topbar full width */
.topbar {
  width: 100%;
  overflow: hidden;
}

/* Footer full width */
.site-footer {
  width: 100%;
  overflow: hidden;
}

/* Counter section full width */
.counter-section {
  width: 100%;
  overflow: hidden;
}

/* Extra small screens */
@media (max-width: 575.98px) {
  .container,
  .container-sm {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .row {
    --bs-gutter-x: 0.875rem;
  }
}

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: preloaderPulse 1.4s ease-in-out infinite;
}
.preloader-logo-icon {
  width: 54px; height: 54px;
  background: rgba(200,169,110,0.15);
  border: 2px solid var(--accent);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
}
.preloader-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.preloader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  animation: preloaderBar 1.8s ease forwards;
}
@keyframes preloaderBar {
  from { width: 0%; }
  to   { width: 100%; }
}
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.85; }
}

/* =============================================
   IMPROVED MOBILE NAVBAR
   ============================================= */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 12px 0 18px;
    margin-top: 10px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(10,31,68,0.1);
  }
  .navbar-nav {
    gap: 0 !important;
  }
  .nav-item {
    border-bottom: 1px solid var(--border);
  }
  .nav-item:last-child {
    border-bottom: none;
    padding-top: 10px;
  }
  .nav-link {
    padding: 12px 16px !important;
    font-size: 0.95rem !important;
    border-radius: 0 !important;
  }
  .nav-link::after { display: none; }
  .nav-link:hover { background: var(--off-white); }
  .nav-cta {
    margin: 6px 16px 0 !important;
    border-radius: 8px !important;
    padding: 11px 20px !important;
    text-align: center;
    justify-content: center;
    display: flex !important;
  }
}

/* =============================================
   HERO ENHANCEMENTS
   ============================================= */
.hero-slide {
  position: relative;
}
/* Subtle animated diagonal lines pattern overlay */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.012) 40px,
    rgba(255,255,255,0.012) 41px
  );
  pointer-events: none;
  z-index: 1;
}
.hero-overlay { z-index: 2; }
.hero-slide .container { z-index: 3; }

/* Badge entrance animation */
.carousel-item.active .hero-badge {
  animation: slideDown 0.6s ease 0.1s both;
}
.carousel-item.active .hero-title {
  animation: slideUp 0.7s ease 0.2s both;
}
.carousel-item.active .hero-desc {
  animation: slideUp 0.7s ease 0.35s both;
}
.carousel-item.active .hero-btns {
  animation: slideUp 0.7s ease 0.5s both;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   SECTION DIVIDERS
   ============================================= */
.section-divider {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--navy), var(--accent), var(--navy), transparent);
  border: none;
  margin: 0;
  opacity: 0.25;
}

/* =============================================
   ABOUT IMAGE POLISH
   ============================================= */
.about-img-main {
  position: relative;
}
.about-img-main::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(10,31,68,0.12);
  border-radius: calc(var(--radius-lg) + 8px);
  z-index: -1;
  animation: rotateBorder 18s linear infinite;
}
@keyframes rotateBorder {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* =============================================
   SERVICE CARDS – FEATURED RIBBON
   ============================================= */
.service-card-featured {
  position: relative;
}
.service-card-featured::before {
  content: 'Popular';
  position: absolute;
  top: 16px;
  right: -1px;
  background: var(--accent);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px 4px 10px;
  border-radius: 4px 0 0 4px;
  z-index: 10;
  box-shadow: -2px 2px 8px rgba(10,31,68,0.15);
}

/* =============================================
   WHY CARDS – NUMBER DECORATION
   ============================================= */
.why-card {
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: attr(data-num);
  position: absolute;
  top: -10px;
  right: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  transition: opacity var(--transition);
}
.why-card:hover::before { opacity: 0.07; }

/* =============================================
   COUNTER – DIVIDERS BETWEEN ITEMS
   ============================================= */
.counter-item {
  position: relative;
}
.counter-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255,255,255,0.12);
}
@media (max-width: 767.98px) {
  .counter-item::after { display: none; }
}

/* =============================================
   GALLERY GRID – HOVER SCALE FIX
   ============================================= */
.gallery-item {
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform 0.35s ease;
}
.gallery-item:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  z-index: 2;
}

/* =============================================
   TESTIMONIAL – IMPROVED MOBILE (1 card shown cleanly)
   ============================================= */
@media (max-width: 767.98px) {
  #testimonialCarousel .carousel-item .row {
    flex-wrap: nowrap;
  }
  .testi-card {
    margin-bottom: 0;
  }
}

/* =============================================
   CONTACT FORM – IMPROVED INPUT FOCUS GLOW
   ============================================= */
.custom-input:focus {
  border-color: var(--navy) !important;
  box-shadow: 0 0 0 4px rgba(10,31,68,0.07) !important;
}
.custom-input:hover:not(:focus) {
  border-color: rgba(10,31,68,0.3);
}

/* =============================================
   FOOTER – NEWSLETTER-STYLE BOTTOM BAR
   ============================================= */
.footer-bottom {
  background: rgba(0,0,0,0.15);
}
.footer-bottom p {
  font-size: 0.84rem;
}

/* =============================================
   BACK TO TOP – PULSE RING
   ============================================= */
#scrollTop.visible::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  opacity: 0;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* =============================================
   FLOATING BTNS – PULSE EFFECT ON WHATSAPP
   ============================================= */
.float-whatsapp {
  position: relative;
}
.float-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* =============================================
   SECTION CTA BANNER (Between gallery & testimonials)
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,169,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-banner h2 span { color: var(--accent); }
.cta-banner p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 520px;
}
.cta-banner-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.btn-cta-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 9px;
  font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-cta-white:hover {
  background: var(--accent);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-cta-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 9px;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.4);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.btn-cta-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transform: translateY(-2px);
}
@media (max-width: 767.98px) {
  .cta-banner { padding: 50px 0; }
  .cta-banner-btns { justify-content: flex-start; margin-top: 24px; }
}

/* =============================================
   PROCESS / HOW IT WORKS SECTION
   ============================================= */
.process-section {
  padding: 90px 0;
  background: var(--white);
}
.process-step {
  text-align: center;
  position: relative;
  padding: 0 10px;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -20px;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), transparent);
  opacity: 0.15;
}
@media (max-width: 767.98px) {
  .process-step::after { display: none; }
}
.process-num {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(10,31,68,0.22);
  position: relative;
  transition: all var(--transition);
}
.process-step:hover .process-num {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--navy);
}
.process-num-ring {
  position: absolute;
  inset: -6px;
  border: 2px dashed rgba(10,31,68,0.18);
  border-radius: 50%;
  transition: all var(--transition);
}
.process-step:hover .process-num-ring {
  border-color: var(--accent);
  animation: spinRing 4s linear infinite;
}
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.process-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   PARTNERS / TRUST BADGES STRIP
   ============================================= */
.trust-strip {
  background: var(--off-white);
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}
.trust-badge i {
  font-size: 1.4rem;
  color: var(--navy);
}

/* =============================================
   IMPROVED SECTION SPACING ON ALL SCREENS
   ============================================= */
@media (max-width: 575.98px) {
  .process-section { padding: 60px 0; }
  .cta-banner { padding: 44px 0; }
  .section-pad { padding: 56px 0; }
  .counter-section { padding: 44px 0; }

  /* Stack hero buttons vertically on very small screens */
  .hero-btns {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .btn-hero-primary, .btn-hero-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* About badge fully inline on small */
  .about-badge-box {
    padding: 14px 18px;
  }

  /* Footer columns on mobile */
  .footer-top .row > [class*="col-6"] {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Gallery images proper height */
  .gallery-item {
    aspect-ratio: 1;
  }
}

/* =============================================
   SMOOTH IMAGE LOADING
   ============================================= */
img {
  transition: opacity 0.3s ease;
}
img.loaded { opacity: 1; }

/* =============================================
   ACTIVE NAV LINK INDICATOR
   ============================================= */
.nav-link.active {
  color: var(--navy) !important;
  font-weight: 600;
}
.nav-link.active::after {
  transform: scaleX(1) !important;
}

/* =============================================
   TOPBAR RESPONSIVE HIDE EMAIL ON SMALL
   ============================================= */
@media (max-width: 480px) {
  .topbar-link:first-child {
    display: none;
  }
}

/* =============================================
   CARD HOVER – UNIFORM LIFT EFFECT
   ============================================= */
.service-card,
.why-card,
.testi-card,
.about-feat-item {
  will-change: transform;
}

/* =============================================
   SECTION TITLE UNDERLINE ACCENT
   ============================================= */
.section-title-underline {
  display: inline-block;
  position: relative;
}
.section-title-underline::after {
  content: '';
  display: block;
  height: 3px;
  width: 60%;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 3px;
  margin-top: 6px;
}

.cu-lgo-wdth{
	width:250px;
}
@media(max-width:374px)
{
	
.cu-lgo-wdth{
	width:220px;
}
}