﻿/* ============================================
   ROOT VARIABLES â€” LIGHT SECURITY THEME
============================================ */
:root {
  --navy:        #0c1828;
  --navy-light:  #16304d;
  --gold:        #c8871a;
  --gold-light:  #e0a030;
  --gold-dark:   #a06810;
  --maroon:      #7a1818;
  --white:       #ffffff;
  --bg:          #f8f9fa;
  --bg-alt:      #eef1f5;
  --text:        #1a1a1a;
  --text-muted:  #6b7280;
  --border:      #e2e8f0;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
  --shadow:      0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.15);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s ease;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { 
  scroll-behavior: smooth; 
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  /* overflow-x: hidden; */
}

section { 
  padding: 100px 0;
  max-width: 100vw;
  /* overflow-x: hidden; */
}
.cen{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;

}
/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--maroon);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

.text-center { text-align: center; }

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}
.btn-primary:hover {
  background: #9e2020;
  border-color: #9e2020;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122,24,24,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}
.btn-navy:hover {
  background: #9e2020;
  border-color: #9e2020;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122,24,24,0.3);
}

/* ============================================
   NAVBAR
============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.navbar {
  background: var(--white);
  padding: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  border-bottom: 3px solid var(--maroon);
  width: 100%;
  max-width: 100vw;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
}

/* Actual logo images */
.logo-badge {
  height: 46px;
  width: 46px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.logo-full {
  height: 46px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

/* Mobile: scale logo to fit */
@media (max-width: 520px) {
  .logo-full { height: 38px; max-width: 160px; }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 6px;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--maroon);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--maroon);
}

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 12px;
  padding: 9px 20px;
  background: var(--maroon);
  color: var(--white);
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.nav-cta:hover {
  background: #9e2020;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  position: relative;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--maroon);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Page offset for fixed header */
body { padding-top: 70px; }

/* ============================================
   HERO SLIDER
============================================ */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-swiper .swiper-slide {
  position: relative;
}

.hero-swiper .swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,24,40,0.34) 0%, rgba(12,24,40,0.58) 100%);
  pointer-events: none;
}

.hero-slide-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,135,26,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-title span { color: var(--gold); }

.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.80);
  max-width: 600px;
  margin-bottom: 32px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s ease 0.6s both;
}

/* Swiper navigation overrides */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: var(--gold);
  background: rgba(13,27,42,0.6);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: 16px; }

.hero-swiper .swiper-pagination-bullet { background: var(--white); opacity: 0.6; }
.hero-swiper .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }

/* Hero placeholder when no images */
.hero-placeholder {
  width: 100%;
  height: 100%;
  background: #000;
}

/* ============================================
   STATS BAR
============================================ */
.stats-bar {
  background: var(--maroon);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.08); }

.stat-icon {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-number .suffix { font-size: 1.8rem; }

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SERVICE CARDS
============================================ */
.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--gold);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--maroon), #9e2020);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--maroon);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: var(--transition);
}
.service-card .card-link:hover { gap: 10px; color: var(--gold); }

/* ============================================
   ABOUT SECTION
============================================ */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--maroon);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge .badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.about-badge .badge-text { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(200,135,26,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.feature-item p { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================
   TEAM SECTION
============================================ */
.team-section { background:aliceblue }
.why-section{
  background: white;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-photo-wrap {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--maroon), #9e2020);
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--gold);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-overlay { opacity: 1; }

.team-overlay p {
  color: var(--white);
  font-size: 0.82rem;
  padding: 0 20px;
  text-align: center;
  line-height: 1.6;
}

.team-info { padding: 20px 16px; }

.team-experience {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(200,135,26,0.1);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.team-info h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Team loading skeleton */
.team-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
  height: 280px;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section { background: var(--white); }

.testimonial-swiper { margin-top: 50px; padding-bottom: 50px !important; }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
  font-family: Georgia, serif;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.stars i { color: var(--gold); font-size: 0.9rem; }
.stars i.empty { color: var(--border); }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--maroon), #9e2020);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.author-role { font-size: 0.8rem; color: var(--text-muted); }

.testimonial-swiper .swiper-pagination-bullet { background: var(--maroon); opacity: 0.4; }
.testimonial-swiper .swiper-pagination-bullet-active { background: var(--maroon); opacity: 1; }

/* ============================================
   GALLERY
============================================ */
.gallery-section { background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--bg-alt);
}

.gallery-item:nth-child(3n+1) { grid-column: span 2; aspect-ratio: unset; height: 280px; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 1.8rem; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.15);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
}
.lightbox-close:hover { background: var(--gold); color: var(--navy); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold); color: var(--navy); }

/* Gallery empty state */
.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: var(--text-muted);
}
.gallery-empty i { font-size: 3rem; margin-bottom: 12px; color: var(--border); }

/* ============================================
   CTA BANNER
============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--maroon) 0%, #9e2020 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '\f3ed';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -60px; top: 50%; transform: translateY(-50%);
  font-size: 18rem;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: 10px;
}
.cta-text p { color: rgba(255,255,255,0.7); font-size: 1rem; }

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================
   CONTACT PAGE
============================================ */
.contact-section { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  margin-top: 50px;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.info-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }

.info-card-icon {
  width: 48px;
  height: 48px;
  background: var(--maroon);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.info-card p, .info-card a {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}
.info-card a:hover { color: var(--gold-dark); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-title {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,135,26,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 14px 18px;
  border-radius: 8px;
  margin-top: 14px;
  font-size: 0.9rem;
}

/* ============================================
   PAGE BANNER (inner pages hero)
============================================ */
.page-banner {
  background: linear-gradient(135deg, var(--maroon) 0%, #9e2020 60%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  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");
  pointer-events: none;
}

.page-banner h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: 0.65rem; }

/* ============================================
   WHY CHOOSE US (About page)
============================================ */
.why-section { background: var(--bg-alt); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.why-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.why-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   FOOTER
============================================ */
.site-footer { background: #1a0a0a; }

.footer-top { padding: 70px 0 50px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
}

.footer-links ul a,
.footer-services ul a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.footer-links ul a:hover,
.footer-services ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-links ul a i,
.footer-services ul a i { font-size: 0.65rem; color: var(--gold); }

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact ul li i {
  color: var(--gold);
  margin-top: 2px;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.footer-contact ul a {
  color: rgba(255,255,255,0.55);
}
.footer-contact ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes pulse-shield {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,135,26,0.4); }
  50%       { box-shadow: 0 0 0 14px rgba(200,135,26,0); }
}

.pulse { animation: pulse-shield 2.5s infinite; }

/* ============================================
   SCROLLBAR
============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================
   UTILITIES
============================================ */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0 !important; }

.d-flex { display: flex; }
.gap-14 { gap: 14px; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }

/* ============================================
   RESPONSIVE â€” TABLET (â‰¤ 992px)
============================================ */
@media (max-width: 992px) {
  section { padding: 20px 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { height: 340px; }
  .about-badge { right: 10px; bottom: 10px; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .contact-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(3n+1) { grid-column: span 1; height: auto; aspect-ratio: 1; }
}

/* ============================================
   RESPONSIVE â€” MOBILE (â‰¤ 768px)
============================================ */
@media (max-width: 768px) {
  /* Navbar mobile */
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 12px !important;
    gap: 8px;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    min-width: 0;
    max-width: calc(100% - 60px);
    flex-shrink: 1;
  }

  .logo-full {
    height: 36px;
    max-width: min(180px, calc(100vw - 80px));
    flex-shrink: 1;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 46px;
    height: 46px;
    padding: 10px;
    flex-shrink: 0;
    background: var(--maroon);
    border: 2px solid var(--maroon);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(122,24,24,0.3);
    z-index: 1002;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
  }

  .nav-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    z-index: 999;
    border-top: 3px solid var(--maroon);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .nav-menu.open { max-height: 500px; padding: 16px 0 24px; }

  .nav-link {
    padding: 12px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-link::after { display: none; }

  .nav-cta {
    margin: 12px 24px 0;
    justify-content: center;
  }

  /* Hero */
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(3n+1) { grid-column: span 1; height: auto; aspect-ratio: 1; }

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE â€” SMALL MOBILE (â‰¤ 480px)
============================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  
  .nav-container {
    padding: 0 8px !important;
  }
  
  .logo-full { 
    height: 32px; 
    max-width: min(160px, calc(100vw - 90px));
  }
  
  .hamburger { 
    width: 44px; 
    height: 44px; 
    padding: 9px;
  }

  .hamburger span {
    width: 20px;
    height: 2.5px;
  }

  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(3n+1) { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 24px 18px; }
}

/* ============================================
   CUSTOM CURSOR
============================================ */
.cursor-outer {
  width: 36px;
  height: 36px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s, height 0.2s, border-color 0.2s, background 0.2s;
  will-change: transform;
}
.cursor-inner {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s linear, background 0.2s;
  will-change: transform;
}
.cursor-outer.hovered {
  width: 56px;
  height: 56px;
  background: rgba(200,135,26,0.10);
  border-color: var(--gold-light);
}
body.cursor-active * { cursor: none !important; }

@media (hover: none) {
  .cursor-outer, .cursor-inner { display: none; }
  body.cursor-active * { cursor: auto !important; }
}

/* ============================================
   HERO AMBIENT OVERLAY
============================================ */
.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  display: none;
}

.hero-ambient::before {
  content: '';
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(224,160,48,0.20) 0%, rgba(224,160,48,0) 44%),
    radial-gradient(circle at 78% 25%, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 42%),
    radial-gradient(circle at 65% 75%, rgba(122,24,24,0.24) 0%, rgba(122,24,24,0) 50%);
  animation: ambientDrift 16s ease-in-out infinite alternate;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  mix-blend-mode: screen;
  opacity: 0.45;
}

.orb-1 {
  width: 300px;
  height: 300px;
  left: -80px;
  top: 8%;
  background: radial-gradient(circle, rgba(224,160,48,0.42) 0%, rgba(224,160,48,0.02) 72%);
  animation: floatOrbA 14s ease-in-out infinite;
}

.orb-2 {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 16%;
  background: radial-gradient(circle, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.02) 68%);
  animation: floatOrbB 18s ease-in-out infinite;
}

.orb-3 {
  width: 260px;
  height: 260px;
  left: 38%;
  bottom: -120px;
  background: radial-gradient(circle, rgba(122,24,24,0.34) 0%, rgba(122,24,24,0.02) 70%);
  animation: floatOrbC 20s ease-in-out infinite;
}

.ambient-beam {
  position: absolute;
  width: 2px;
  height: 150%;
  top: -20%;
  background: linear-gradient(180deg, rgba(224,160,48,0) 0%, rgba(224,160,48,0.50) 48%, rgba(224,160,48,0) 100%);
  opacity: 0.30;
}

.beam-1 {
  left: 24%;
  transform: rotate(6deg);
  animation: beamSweepA 10s linear infinite;
}

.beam-2 {
  left: 70%;
  transform: rotate(-8deg);
  animation: beamSweepB 12s linear infinite;
}

.hero-swiper  { position: relative; z-index: 1; }
.hero-content { z-index: 3; }
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-pagination {
  z-index: 4;
}

@keyframes ambientDrift {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); }
  50% { transform: translate3d(1%, 2%, 0) scale(1.05); }
  100% { transform: translate3d(3%, -1%, 0) scale(1.03); }
}

@keyframes floatOrbA {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(36px, 24px, 0) scale(1.08); }
}

@keyframes floatOrbB {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-42px, 16px, 0) scale(1.06); }
}

@keyframes floatOrbC {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(20px, -28px, 0) scale(1.1); }
}

@keyframes beamSweepA {
  0% { transform: translateY(-12%) rotate(6deg); opacity: 0.16; }
  50% { transform: translateY(10%) rotate(7deg); opacity: 0.35; }
  100% { transform: translateY(26%) rotate(6deg); opacity: 0.14; }
}

@keyframes beamSweepB {
  0% { transform: translateY(22%) rotate(-8deg); opacity: 0.12; }
  50% { transform: translateY(0%) rotate(-9deg); opacity: 0.34; }
  100% { transform: translateY(-18%) rotate(-8deg); opacity: 0.14; }
}

@media (max-width: 768px) {
  .orb-1 { width: 220px; height: 220px; left: -90px; top: 12%; }
  .orb-2 { width: 240px; height: 240px; right: -90px; top: 18%; }
  .orb-3 { width: 180px; height: 180px; left: 30%; bottom: -70px; }
  .ambient-beam { opacity: 0.22; }
}

/* ============================================
   3D TILT CARD ENHANCEMENTS
   VanillaTilt adds transform-style via JS;
   these styles ensure the card layers work.
============================================ */
.service-card,
.team-card,
.why-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card .service-icon,
.service-card h3,
.service-card p,
.service-card .card-link {
  transform: translateZ(20px);
  transition: var(--transition);
}

/* Glare overlay injected by VanillaTilt */
.service-card .js-tilt-glare {
  border-radius: var(--radius);
}

/* ============================================
   HERO TYPED TEXT CURSOR
============================================ */
.typed-cursor {
  color: var(--gold);
  font-weight: 300;
  font-size: inherit;
  animation: typed-blink 0.7s infinite;
}
@keyframes typed-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ============================================
   GSAP INITIAL STATES
   Elements start hidden; GSAP reveals them.
============================================ */
.gsap-hero-badge,
.gsap-hero-title,
.gsap-hero-desc,
.gsap-hero-actions { opacity: 0; }

/* ============================================
   MAGNETIC BUTTON
============================================ */
.btn-magnetic {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: visible;
}

/* ============================================
   FLOATING SHAPES (hero decorative)
============================================ */
.hero-float-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  animation: floatShape 6s ease-in-out infinite;
}
.hero-float-shape.s1 {
  width: 180px; height: 180px;
  border: 1px solid rgba(200,135,26,0.15);
  right: 8%;  top: 15%;
  animation-delay: 0s;
}
.hero-float-shape.s2 {
  width: 100px; height: 100px;
  border: 1px solid rgba(200,135,26,0.10);
  right: 14%; bottom: 20%;
  animation-delay: 1.5s;
}
.hero-float-shape.s3 {
  width: 60px; height: 60px;
  background: rgba(200,135,26,0.06);
  right: 6%;  top: 50%;
  animation-delay: 3s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0)   rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(5deg); }
  66%       { transform: translateY(10px)  rotate(-4deg); }
}

/* ============================================
   SECTION TITLE ANIMATED UNDERLINE
============================================ */
.section-title { position: relative; display: inline-block; }
.section-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}
.section-title.underline-active::after { width: 100%; }

/* ============================================
   3D PERSPECTIVE ABOUT IMAGE
============================================ */
.about-image-wrap {
  perspective: 1000px;
}
.about-img {
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
}
.about-image-wrap:hover .about-img {
  transform: rotateY(-6deg) rotateX(3deg) scale(1.02);
  box-shadow: 30px 30px 80px rgba(0,0,0,0.25);
}

/* ============================================
   GOLDEN GLOW ON STAT ICON HOVER
============================================ */
.stat-item:hover .stat-icon {
  filter: drop-shadow(0 0 12px rgba(200,135,26,0.7));
  transform: scale(1.15);
  transition: var(--transition);
}
.stat-icon { transition: var(--transition); }

/* ============================================
   FEATURE ICON BACKGROUND UPDATE (logo color)
============================================ */
.feature-icon {
  background: rgba(200,135,26,0.10);
  color: var(--gold-dark);
}

/* ============================================
   SCROLL REVEAL â€” elements hidden before JS
============================================ */
.reveal-left  { opacity: 0; transform: translateX(-50px); }
.reveal-right { opacity: 0; transform: translateX(50px); }
.reveal-up    { opacity: 0; transform: translateY(40px); }
.reveal-scale { opacity: 0; transform: scale(0.85); }

/* ============================================
   SERVICE CARD GOLD GLOW (enhanced)
============================================ */
.service-card:hover {
  box-shadow: 0 20px 60px rgba(200,135,26,0.20), var(--shadow-lg);
}

/* ============================================
   PAGE LOADING OVERLAY (smooth entry)
============================================ */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--maroon);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-shield {
  font-size: 3rem;
  color: var(--gold);
  animation: loaderSpin 1.5s ease-in-out infinite alternate;
}
.loader-bar {
  width: 160px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: loaderFill 1.2s ease forwards;
}
@keyframes loaderSpin {
  from { transform: rotateY(0deg) scale(1); }
  to   { transform: rotateY(180deg) scale(1.1); }
}
@keyframes loaderFill {
  to { width: 100%; }
}

/* ============================================
   FOOTER LOGO UPDATE
============================================ */
.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-brand .logo-badge { height: 42px; width: 42px; }
.footer-brand .logo-full  { height: 42px; max-width: 200px; }
