/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #00112f;
  --secondary: #f6d975;
  --bg: #fdfdfd;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 17, 47, 0.1);
  --shadow-hover: 0 8px 35px rgba(0, 17, 47, 0.18);
  --transition: all 0.3s ease;
  --radius: 12px;
}




.logo-img {
  height: 120px;   /* size increase/decrease yahan se control karo */
  width: auto;
  display: block;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

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

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 2px solid var(--secondary);
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-left a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.top-bar-left a:hover {
  color: var(--secondary);
}

.top-bar-left i {
  color: var(--secondary);
  font-size: 12px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-right a {
  color: var(--white);
  font-size: 15px;
  transition: var(--transition);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(246, 217, 117, 0.3);
}

.top-bar-right a:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

/* ===== HEADER / NAV ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);

}

header.scrolled {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

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

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
}

.logo-text h1 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.logo-text span {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  padding: 0%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 90px;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  background: var(--primary);
  color: var(--secondary);
}

.nav-links > li > a i {
  font-size: 12px;
}

/* Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  border: none;
  background: none;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO SECTION ===== */
/* .hero {
  position: relative;
  height: 58vh;
  min-height: 400px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 17, 47, 0.85) 0%, rgba(0, 17, 47, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-text {
  max-width: 700px;
  animation: fadeInUp 1s ease;
} */

.hero {
  padding: 30px 0;
  background: #f5f5f5;
}

/* 🔥 BOX STYLE */
.hero-slider {
  position: relative;
  width: 95%;
  margin: auto;
  height: 60vh;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

/* slides */
.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

/* 🔥 LEFT LIGHT OVERLAY (like your image) */
.hero-slide::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    90deg,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.75) 40%,
    rgba(255,255,255,0.2) 65%,
    rgba(255,255,255,0) 100%
  ); */
}

/* content */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-left: 60px;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
}

.hero-text span {
  color: #00a651;
}

/* badge */
.hero-badge {
  display: inline-block;
  background: #00a651;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

/* dots */
.hero-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
}

.hero-dot.active {
  background: #00a651;
}
.hero-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-text h1 {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--secondary);
}

.hero-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  line-height: 1.8;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(246, 217, 117, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  transform: translateY(-2px);
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: scale(1.2);
}

/* Hero Search */
.hero-search {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 90%;
  max-width: 900px;
}

.hero-search-inner {
  background: var(--white);
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-search-inner i {
  font-size: 24px;
  color: var(--secondary);
}

.hero-search-inner input {
  flex: 1;
  min-width: 200px;
  padding: 12px 18px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: var(--transition);
}

.hero-search-inner input:focus {
  border-color: var(--secondary);
}

.hero-search-inner select {
  padding: 12px 18px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  background: var(--white);
  transition: var(--transition);
  min-width: 150px;
}

.hero-search-inner select:focus {
  border-color: var(--secondary);
}

.hero-search-inner .btn {
  padding: 12px 28px;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(246, 217, 117, 0.2);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--primary), #002a6e);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--secondary);
  transition: var(--transition);
}

.card:hover .card-icon {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.05) rotate(-5deg);
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== GRIDS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

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

/* ===== STATS ===== */
.stats-section {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(246, 217, 117, 0.05);
}

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

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.stat-icon {
  font-size: 32px;
  color: rgba(246, 217, 117, 0.3);
  margin-bottom: 15px;
}

/* ===== SERVICE CARDS (Feature Style) ===== */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.service-card-img .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 17, 47, 0.9));
}

.service-card-img .overlay span {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card-body {
  padding: 25px;
}

.service-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.7;
}

.service-card-body .btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.service-card-body .btn-sm:hover {
  color: var(--secondary);
  gap: 12px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  height: 280px;
}

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

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 17, 47, 0.7), rgba(0, 17, 47, 0.3));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  padding: 20px;
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 12px;
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--white);
}

.contact-info-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--secondary);
}

.contact-info-card > p {
  opacity: 0.8;
  margin-bottom: 30px;
  font-size: 15px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(246, 217, 117, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--secondary);
}

.contact-item-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item-text p {
  font-size: 14px;
  opacity: 0.8;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-form > p {
  color: var(--text-light);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(246, 217, 117, 0.15);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* ===== MAP ===== */
.map-section {
  height: 450px;
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about .logo-text h1 {
  color: var(--white);
}

.footer-about .logo-text span {
  color: rgba(255, 255, 255, 0.6);
}

.footer-about p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 20px 0;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-col ul li a i {
  font-size: 10px;
  color: var(--secondary);
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
}

.footer-contact-item i {
  color: var(--secondary);
  font-size: 18px;
  margin-top: 4px;
  min-width: 20px;
}

.footer-contact-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: var(--secondary);
}

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 30px;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.55);
  color: var(--white);
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  background: var(--white);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* ===== PAGE HEADER (Inner Pages) ===== */
/* .page-header {
  background: var(--primary);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(246, 217, 117, 0.06);
}

.page-header h1 {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}

.page-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
} */

.page-header {
  position: relative;
  padding: 100px 20px 80px;
  margin: 30px auto;
  width: 95%;
  border-radius: 20px;
  overflow: hidden;
}

/* 🔥 white overlay (left side) */
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.85) 40%,
    rgba(255,255,255,0.3) 65%,
    rgba(255,255,255,0) 100%
  );
  z-index: 1;
}

/* content */
.page-header .container {
  position: relative;
  z-index: 2;
  padding-left: 50px;
}

/* text */
.page-header h1 {
  font-size: 44px;
  font-weight: 800;
  color: #111;
}

.page-header p {
  font-size: 18px;
  color: #444;
}

/* breadcrumb */
.breadcrumb {
  margin-bottom: 10px;
}

.breadcrumb a {
  color: #00a651;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb .sep {
  margin: 0 6px;
  color: #777;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  position: relative;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb span {
  color: var(--secondary);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
}

/* ===== ABOUT PAGE ===== */
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 450px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.feature-list {
  margin-top: 25px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text);
}

.feature-list li i {
  color: var(--secondary);
  font-size: 18px;
}

/* ===== VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.value-card {
  text-align: center;
  padding: 35px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.value-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), #002a6e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--secondary);
  transition: var(--transition);
}

.value-card:hover .icon {
  background: var(--secondary);
  color: var(--primary);
}

.value-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* ===== SERVICES DETAIL ===== */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-detail-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-detail-text p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

.service-features {
  margin: 20px 0;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text);
}

.service-features li i {
  color: var(--secondary);
  margin-top: 3px;
  font-size: 16px;
}

/* ===== PRIVACY ===== */
.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin: 30px 0 15px;
}

.privacy-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 25px 0 10px;
}

.privacy-content p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

.privacy-content ul {
  margin: 15px 0 15px 25px;
}

.privacy-content ul li {
  list-style: disc;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), #002a6e);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(246, 217, 117, 0.05);
}

.cta-section h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 30px;
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.team-img {
  height: 250px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  padding: 20px;
}

.team-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-info span {
  font-size: 13px;
  color: var(--secondary);
  font-weight: 600;
}

/* ===== PARTNERS ===== */
.partners-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.partner-item {
  height: 60px;
  opacity: 0.4;
  transition: var(--transition);
  filter: grayscale(100%);
}

.partner-item:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

.partner-item img {
  height: 100%;
  width: auto;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 15px;
  left: 25px;
  font-size: 70px;
  color: rgba(246, 217, 117, 0.2);
  font-weight: 900;
  line-height: 1;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4,
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-text h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    justify-content: center;
    text-align: center;
  }
  
  .top-bar-left {
    justify-content: center;
  }
  
  .top-bar-right {
    display: none;
  }
  
  nav {
    position: relative;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.4s ease;
    z-index: 999;
    overflow-y: auto;
    gap: 5px;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links > li > a {
    padding: 12px 16px;
    font-size: 15px;
    width: 100%;
  }
  
  .hamburger {
    display: flex;
    z-index: 1000;
  }
  
  .hero {
    height: 85vh;
    min-height: 450px;
  }
  
  .hero-text h1 {
    font-size: 32px;
  }
  
  .hero-text p {
    font-size: 16px;
  }
  
  .hero-search {
    display: none;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .grid-2,
  .contact-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .grid-3,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .page-header h1 {
    font-size: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cta-section h2 {
    font-size: 28px;
  }
  
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-image {
    height: 300px;
  }
  
  .service-detail-image {
    height: 280px;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .back-to-top {
    bottom: 90px;
    right: 25px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .grid-3,
  .gallery-grid,
  .values-grid,
  .team-grid,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .logo-text h1 {
    font-size: 16px;
  }
  
  .logo-text span {
    font-size: 9px;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .hero-text h1 {
    font-size: 26px;
  }
  
  .contact-form,
  .contact-info-card {
    padding: 25px;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 25px;
  z-index: 998;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--secondary);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(246, 217, 117, 0.2);
  border-top: 4px solid var(--secondary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-screen p {
  color: var(--secondary);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== NAV OVERLAY ===== */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
