/* Root Variables - Blue-Teal & Orange Theme */
:root {
  /* Primary Colors (from logo) */
  --primary-blue: #2C7B8C; /* Blue-teal from logo */
  --primary-orange: #FF6B35; /* Orange from logo */
  
  /* Extended Color Palette */
  --primary-blue-light: #3A9AB0;
  --primary-blue-dark: #1F5A68;
  --primary-orange-light: #FF8559;
  --primary-orange-dark: #E5522A;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --black: #1A1A1A;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
  z-index: 9999;
  padding: 1rem 0;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-blue);
  text-decoration: none; /* important for removing underline */
}

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta-btn {
  background: linear-gradient(to bottom, #0A4A55 0%, #1C7C89 100%);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  z-index: 10001;
  align-items: center;
  justify-content: center;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    background: #fff;
    flex-direction: column;
    gap: 1rem;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    width: 280px;
    height: 100vh;
    padding: 80px 2rem 2rem;
    z-index: 1000;
    transition: 0.3s ease-in-out;
  }
  
  .nav-menu.active {
    display: flex;
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.8rem 0;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .nav-cta-btn {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.75rem 1rem;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }
}

@media (max-width: 768px) {
  .nav-link.active::after {
    width: 100%;
    bottom: -4px;
  }
}

/* Tablet and mobile navigation adjustments */
@media (max-width: 1024px) {
  .nav-item:not(:last-child) {
    display: flex;
  }
  
  .nav-item:last-child {
    display: none; /* Hide Get in Touch button on tablet */
  }
}

@media (max-width: 768px) {
  .nav-item:last-child {
    display: flex; /* Show Get in Touch button in mobile menu */
  }
}
/* ---------END---------- */

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #f5faff 0%, #fff4ec 100%);
  overflow: hidden;
}

/* CONTAINER */
.hero-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* GRID LAYOUT */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

/* TEXT AREA */
.hero-text {
  color: #333;
}

/* BADGE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  background: linear-gradient(90deg, #0A4A55, #1C7C89);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  animation: glowPulse 3s infinite ease-in-out;
}

/* TITLE */
.hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 1.5rem 0;
}

.title-highlight {
  background: linear-gradient(to right, #0A4A55, #1C7C89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */
.hero-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.35s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(to right, #0A4A55, #1C7C89);
  color: #fff;
  box-shadow: 0 4px 20px rgba(12, 70, 85, 0.25);
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 25px rgba(12, 70, 85, 0.4);
}

.btn-outline {
  background: transparent;
  color: #0A4A55;
  border: 2px solid #1C7C89;
}
.btn-outline:hover {
  background: #1C7C89;
  color: #fff;
  transform: translateY(-4px);
}

/* IMAGE AREA */
.hero-image {
  position: relative;
  z-index: 1;
}

.image-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s ease;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img:hover {
  transform: scale(1.05);
}

/* FLOATING ICONS */
.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A4A55, #1C7C89);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: floatY 5s ease-in-out infinite;
}

.icon-1 { top: 15%; right: -6%; animation-delay: 0s; }
.icon-2 { bottom: 20%; left: -5%; animation-delay: 1.8s; }
.icon-3 { top: 65%; right: 10%; animation-delay: 3s; }

/* ANIMATIONS */
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(10deg); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(28, 124, 137, 0.3); }
  50% { box-shadow: 0 0 25px rgba(28, 124, 137, 0.6); }
}

/* ENTRY ANIMATION */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .floating-icon {
    display: none;
  }
}

/* ✅ Animations */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ✅ RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-content {
    gap: 3rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
    margin-top: 60px;
  }

  .hero-container {
    padding: 0 15px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  /* 📱 Image on top, text below */
  .hero-image {
    order: -1;
    justify-self: center;
    width: 100%;
    margin-bottom: 2rem;
  }

  .image-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

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

  .floating-elements {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 80px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.2rem;
  }

  .image-container {
    max-width: 100%;
  }
}


/* Animations */






/* ========== page header========= */

.page-header {
  position: relative;
  height: 90vh; /* height kam rakhi */
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.page-header .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* image properly cover kare */
  z-index: 1;
}

.page-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 74, 85, 0.6); /* background color overlay with transparency */
  z-index: 2;
  pointer-events: none; /* allow clicks through overlay to underlying clickable elements */
}

.page-header .container {
  position: relative;
  z-index: 3; /* text overlay ke upar dikhaye */
}

.page-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-header .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  padding-top: 8rem;
  margin-bottom: 1rem;
}

.page-header .page-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.page-header .breadcrumb {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.page-header .breadcrumb a {
  color: #fff;
  text-decoration: none;
  margin-right: 0.3rem;
}

.page-header .breadcrumb span {
  margin-right: 0.3rem;
}





/* Why Us Section */
.why-us {
  width: 100%;
  padding: 100px 0;
  background: var(--white);
  position: relative;
  z-index: 2;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Left text | Right image */
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

/* Ensure the left text column is vertically centered and lays out content
   in a clear column. On larger screens we want left-aligned text; on
   smaller screens responsive rules will center the text (see media queries). */
.why-us-text {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering within its grid cell */
  text-align: left; /* explicit for desktop */
  padding-right: 0.5rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(to bottom, #0A4A55 0%, #1C7C89 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom, #0A4A55 0%, #1C7C89 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.feature-content p {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 1.05rem;
}

/* ✅ Image Styling */
.why-us-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-img {
  width: 85%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border-left: 6px solid #0A4A55;
  border-bottom: 6px solid #1C7C89;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ✅ Responsive Design */

/* 📱 Tablet (below 992px) */
@media (max-width: 992px) {
  .why-us-content {
    grid-template-columns: 1fr; /* single column layout */
    gap: 3rem;
  }

  .why-us-text {
    text-align: center;
  }

  .features-list {
    align-items: center;
  }

  .feature-item {
    flex-direction: row;
    justify-content: center;
    max-width: 90%;
  }

  .feature-content p {
    font-size: 1rem;
  }

  .feature-img {
    width: 90%;
  }
}

/* 📱 Mobile (below 600px) */
@media (max-width: 600px) {
  .why-us {
    padding: 4rem 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .feature-content p {
    font-size: 0.95rem;
  }

  .feature-img {
    width: 100%;
    border-left-width: 4px;
    border-bottom-width: 4px;
  }
}


/* Services Section */
.services {
  padding: 6rem 0;
  background: var(--gray-50); /* ✅ keeps original section bg */
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInDown 1s ease;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0A4A55;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #0A4A55, #1C7C89);
  border-radius: 3px;
  animation: underlineExpand 1.5s ease;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #555;
  animation: fadeInUp 1s ease 0.3s backwards;
}

/* ===== Service Cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 74, 85, 0.12), rgba(28, 124, 137, 0.12));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 0;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 15px 35px rgba(28, 124, 137, 0.25);
}

/* ===== Image Section (with product background retained) ===== */
.service-image {
  width: 100%;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  background: #f8f8f8; /* ✅ your original background kept */
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image img {
  width: auto;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  transition: all 0.6s ease;
}

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

/* ===== Text ===== */
.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0A4A55;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.service-description {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

/* ===== Button ===== */
.service-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.8rem;
  background: linear-gradient(90deg, #0A4A55, #1C7C89);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(10, 74, 85, 0.3);
  position: relative;
  z-index: 2;
}

.service-card:hover .service-btn {
  background: linear-gradient(90deg, #F57C00, #FF9800);
  box-shadow: 0 8px 20px rgba(245, 124, 0, 0.4);
  transform: translateY(-3px);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes underlineExpand {
  from { width: 0; opacity: 0; }
  to { width: 60px; opacity: 1; }
}



/* =========================
   CHAIR SECTION (Why Choose)
========================= */

.chair {
  padding: 6rem 0;
  background: #f1f8f8; /* 💠 soft teal background */
}

.chair-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.chair-text .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
  line-height: 1.3;
}

.chair-text .section-title span {
  background: linear-gradient(to bottom, #0A4A55 0%, #1C7C89 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.chair-subtitle {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.chair-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.chair-list li {
  font-size: 1.1rem;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  line-height: 1.6;
  background: #ffffff;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.chair-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.chair-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(to bottom, #0A4A55 0%, #1C7C89 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  margin-right: 0.8rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.chair-image {
  text-align: center;
}

.chair-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  border-left: 6px solid #0A4A55;
  border-bottom: 6px solid #1C7C89;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.chair-image img:hover {
  transform: scale(1.05);
}

/* ✅ Responsive Design */
@media (max-width: 900px) {
  .chair-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .chair-text .section-title {
    font-size: 2rem;
  }

  .chair-list li {
    justify-content: center;
  }

  .chair-icon {
    margin-right: 0.6rem;
  }

  .chair-image img {
    max-width: 100%;
    margin-top: 2rem;
  }
}



/* ====== viison ====== */


.vision-section {
  position: relative;
  height: 60vh; /* ⬅️ Height कम कर दी */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.vision-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  /* ✅ Image perfect fit */
  z-index: 0;
}

.vision-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 74, 85, 0.7); /* ✅ हल्का teal overlay */
  z-index: 1;
}

.vision-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  color: #fff;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.vision-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f0f0f0;
}

/* ========== testimonials-section ========= */

.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #0A4A55 0%, #1C7C89 100%);
  color: #fff;
  margin-top: 6rem; /* Typo fix & thoda space upar se */
  text-align: center;
}

.testimonials-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.testimonials-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding-bottom: 1rem;
}

.testimonial-card {
  flex: 0 0 300px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.05);
}

.testimonial-text {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.testimonial-client {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #e0e0e0;
}

.see-more {
  margin-top: 2rem;
}

.see-more-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.see-more-btn:hover {
  background: rgba(255,255,255,0.4);
}


.contact-method .method-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #0A4A55 0%, #1C7C89 100%);
  color: #fff;
  font-size: 1.2rem;
  margin-right: 1rem;
}

/* Optional: hover effect for icons */
.contact-method .method-icon:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Social icons remain as they are */
.social-contact .social-link i {
  color: inherit; /* preserves original social icon colors */
}

.sections-title{
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}


    /* ======== what we do ===== */

/* =========================
   FAN SECTION (What We Do)
========================= */

.fan {
  padding: 6rem 0;
  background: #f6f9fa; /* Soft light background */
}

.fan-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

/* ---------- Left Content ---------- */
.fan-content {
  flex: 1;
  min-width: 320px;
}

.fan-title {
  font-size: 2.5rem;
  color: #0A4A55;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
}

.fan-title span {
  color: #1C7C89;
}

.fan-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 550px;
}

/* ---------- Services List ---------- */
.fan-services {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.fan-item {
  display: flex;
  /* align-items: flex-start; */
  background: #fff;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  justify-content: left;
}

.fan-item:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.fan-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom right, #0A4A55, #1C7C89);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.fan-item h4 {
  font-size: 1.15rem;
  color: #0A4A55;
  margin-bottom: 0.3rem;
}

.fan-item p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* ---------- Bottom Note ---------- */
.fan-note {
  margin-top: 2rem;
  font-size: 1rem;
  color: #333;
  font-style: italic;
}

/* ---------- Right Image ---------- */
.fan-image {
  flex: 1;
  text-align: center;
  min-width: 320px;
}

.fan-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  border-left: 6px solid #0A4A55;
  border-bottom: 6px solid #1C7C89;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.fan-image img:hover {
  transform: scale(1.05);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .fan-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .fan-item {
    justify-content:left;
    text-align: left;
  }

  .fan-image img {
    margin-top: 2rem;
    max-width: 90%;
  }
}


/* ========== our team section ====== */

.our-team-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f5f7fa, #e6f2f3);
}

.our-team-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.our-team-image {
  flex: 1;
  min-width: 320px;
  
}

.our-team-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #0A4A55;
  border-bottom: 6px solid #1C7C89;
}



.our-team-content {
  flex: 1;
  min-width: 320px;
}

.section-title {
  font-size: 2.5rem;
  color: #0A4A55;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-title span {
  color: #1C7C89;
}

.section-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Point Items */
.team-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.point-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.icon {
  background: linear-gradient(to bottom, #0A4A55, #1C7C89);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.point-item h4 {
  font-size: 1.2rem;
  color: #0A4A55;
  margin-bottom: 0.3rem;
}

.point-item p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .our-team-wrapper {
    flex-direction: column;
  }

  .our-team-image {
    margin-bottom: 2rem;
  }
}



.collection-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 columns */
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .collection-grid {
    grid-template-columns: 1fr;
  }
}

/* ====== collection======= */

.collection-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 50px;
  height: 50px;
  margin: 1rem auto 0.5rem auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #0A4A55 0%, #1C7C89 100%);
}

.card-icon span {
  color: #fff;
  font-size: 1.2rem;
}

.card-content {
  padding: 1rem 1.5rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

.collection-card h4 {
  font-size: 1.1rem;
  color: #0A4A55;
  margin-bottom: 0.5rem;
}

.collection-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

/* Image Overlay */
.card-image {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: bottom 0.4s ease;
  z-index: 1;
}

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

.collection-card:hover .card-image {
  bottom: 0;
}

/* ========== commitment ========= */

.commitment-section {
  padding: 6rem 0;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
}

.commitment-card {
  background: #fff;
  max-width: 800px;
  padding: 3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
}

.commitment-icon {
  font-size: 3rem;
  color: #0A4A55;
  margin-bottom: 1rem;
}

.commitment-card .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}


.commitment-card .section-description {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
  .commitment-card {
    padding: 2rem 1rem;
  }
}
.load-more-btn {
  display: block;
  margin: 3rem auto;
  padding: 14px 40px;
  background: linear-gradient(to bottom, #0A4A55 0%, #1C7C89 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.load-more-btn:hover {
   background: linear-gradient(to bottom,  #1C7C89 100%, #0A4A55 0%);
  transform: scale(1.08);
}


 /* ✅ Loader Styling */
    /* #loader {
      position: fixed;
      inset: 0;
      background: radial-gradient(circle, #0A4A55);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      color: #fff;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }

    .loader-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      margin-bottom: 1rem;
      
    }

    .loader-spinner {
      width: 60px;
      height: 60px;
      border: 4px solid rgba(255,255,255,0.2);
      border-top: 4px solid #fff;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      justify-content: center;
    }

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

    #loader.fade-out {
      opacity: 0;
      visibility: hidden;
    }

    /* ✅ Initially hide main site */
    #mainContent {
      display: none;
    } */
/* ======== contect form ========= */



/* ✅ Professional Transparent Black Cards */
/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, #f8f9fb, #ffffff);
    padding: 80px 0;
}

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

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.section-title .highlight {
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 10px;
}

/* ===== CONTACT CONTENT ===== */
/* ===== CONTACT SECTION ===== */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch; /* ✅ all cards same height */
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  align-items: flex-start; /* Align items to the left */
}
.contact-card {
  display: flex;
  align-items: center; /* Center align items vertically */
  gap: 18px;
  width: 100%;
  background: #fff;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: left;
}

/* hover animation */
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0,0,0,0.05), transparent);
  transition: 0.5s;
}

.contact-card:hover::before {
  left: 100%;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* ===== ICON STYLE ===== */
.contact-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(to bottom, #0A4A55 0%, #1C7C89 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  margin-top: 5px; /* Add a small top margin to align with text */
}

.contact-icon i {
  color: #fff !important;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== TEXT STYLE ===== */
.contact-details {
  flex: 1;
  text-align: left; /* Ensure text is left-aligned */
}

.contact-details h3 {
  color: #0A4A55;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
  text-align: left; /* Ensure heading is left-aligned */
}

.contact-details p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  text-align: left; /* Ensure paragraph is left-aligned */
}

/* ===== FORM CONTAINER ===== */
.contact-form-container {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 1px solid #eee;
}

/* ===== FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group label {
  color: #222;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1C7C89;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(44, 95, 93, 0.1);
}

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

/* ===== SUBMIT BUTTON ===== */
.submit-btn {
  background: linear-gradient(to right, #0A4A55, #1C7C89);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-card {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .contact-details h3,
  .contact-details p {
    text-align: center;
  }
}


.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 70px;            /* Slightly bigger container */
  height: 70px;           /* Slightly bigger container */
  background: linear-gradient(135deg, #25D366, #128C7E); /* Modern WhatsApp gradient */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Icon/Image Style */
.whatsapp-float img {
  max-width: 70%;   /* Bigger icon relative to container */
  max-height: 70%;
  object-fit: contain;
}

/* Hover Effect */
.whatsapp-float:hover {
  transform: scale(1.25) rotate(-5deg);
  box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}

/* Mobile Responsiveness */
@media (max-width: 480px){
  .whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-float img {
    max-width: 70%;
    max-height: 70%;
  }
}


.back2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
}

.trophy-card {
  text-align: center;
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.trophy-card:hover {
  transform: translateY(-5px);
}

.trophy-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 10px;
}

.trophy-name {
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

/* CTA Section */
/* .cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="1.5" fill="white" opacity="0.1"/><circle cx="60" cy="30" r="1" fill="white" opacity="0.1"/></svg>');
  animation: floatPattern 30s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
} */



/* ====== loader ======= */

    /* ✅ Loader Styling */
    #loader {
      position: fixed;
      inset: 0;
      background: radial-gradient(circle, #000000, #1a1a1a);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      color: #f5c518;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }

    .loader-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      margin-bottom: 1rem;
      text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    }

    .loader-spinner {
      width: 60px;
      height: 60px;
      border: 4px solid rgba(255,255,255,0.2);
      border-top: 4px solid #f5c518;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

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

    #loader.fade-out {
      opacity: 0;
      visibility: hidden;
    }

    /* ✅ Initially hide main site */
    #mainContent {
      display: none;
    }
 


/* Footer */
.footer {
  background: #0A4A55; /* Dark teal, contrast with logo */
  color: #fff;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: center; /* ✅ Center all content */
  justify-items: center; /* ✅ Center items in each grid cell */
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  background-color: #fff; /* Optional: White background behind logo */
  padding: 0.25rem 0.5rem; /* thoda padding for spacing */
  border-radius: 8px; /* Rounded corners */
}

.footer-logo-img {
  height: 50px;  /* Thoda bada */
  width: auto;
  display: block;
  filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5)); /* thoda shadow */
}


.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color:  #0A4A55; /* Bright golden color for contrast */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* Shadow to stand out */
  background: none; /* Remove gradient if it blends with bg */
}

.footer-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.social-links {
  display: flex;
  justify-content: center; /* ✅ Center social icons */
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
 
  color: var(--gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
  color: var(--white);
  transform: translateY(-2px);
}

.footer-title {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-orange-light);
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center; /* ✅ Center address text */
  text-align: center;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-info i {
  color: var(--primary-orange);
  width: 16px;
}
.footer-link {
  color: var(--primary-orange-light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 1rem;
  text-align: center;
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-info p {
    justify-content: center;
    text-align: center;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 2rem;
  }
  
  .why-us-content {
    gap: 2rem;
    
  }
  
  .section-spacing-small {
    /* modified by ak */
  margin-top: 2rem; /* You can adjust this value (30px / 20px) as per your design */
}
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hamburger {
    display: flex;
    z-index: 10002;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .why-us-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }

  .testimonials-section {
  background: linear-gradient(to bottom, #0A4A55 0%, #1C7C89 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.section-header {
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  opacity: 0.9;
}

/* ======== testimonial===== */

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 400px;
  margin: auto;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-text {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.author-name {
  font-weight: 600;
  margin: 0;
}

.author-role {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

/* ✅ Pagination styling */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}