/* Complete redesign with new premium color palette - cream/beige background with deep green and rose gold accents */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* New color scheme: cream background, deep green primary, rose gold accent */
  --primary: #164e63;
  --secondary: #f59e0b;
  --accent: #0891b2;
  --light: #f5f7fa;
  --dark: #144c5a;
  --text: #2c2c2c;
  --text-light: #666;
  --border: #e8e3dd;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--light);
  font-size: 17px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Top Bar Styling */
.top-bar {
  background: var(--primary);
  color: white;
  padding: 12px 0;
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 30px;
}

.top-bar-left a {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

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

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

.top-bar-right a {
  color: rgba(255, 255, 255, 0.9);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.top-bar-right a:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-3px);
}

/* Navigation */
.navbar {
  background: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px; /* space between logo and text */
  text-decoration: none;
}

.navbar-logo img {
  height: 60px; /* adjust size as needed */
  width: auto;
  display: block;
}

.navbar-logo .logo-text {
  font-weight: 700;
  font-size: 20px;
  color: var(--primary); /* or your preferred color */
}
.logo-icon {
  background: var(--secondary);
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
}

.logo-text {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Slider - Full page with background images */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

/* Slide overlay for better text readability */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 77, 62, 0.5);
  z-index: 1;
}

.slide-content {
  text-align: center;
  color: white;
  z-index: 2;
  animation: slideInUp 0.8s ease;
  position: relative;
}

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

.slide-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.slide-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary);
}

.cta-btn:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.6);
}

.slider-btn.prev {
  left: 30px;
}

.slider-btn.next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--secondary);
  width: 30px;
  border-radius: 6px;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: white;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--secondary);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

.about-content h2 {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.about-intro {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 20px;
}

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

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text);
}

.highlight-item i {
  color: var(--secondary);
  font-size: 20px;
}

/* Stats Section - Dark background styling */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a3a42 0%, #0f2d35 100%);
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 50px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  font-size: 40px;
  color: var(--secondary);
  margin-bottom: 15px;
}

.stat-card h3 {
  font-size: 42px;
  color: white;
  margin-bottom: 10px;
  font-weight: 800;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
}

/* Why Choose Us Section - New styling */
.why-choose-section {
  padding: 100px 0;
  background: white;
}

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

.why-choose-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--secondary);
  position: relative;
  overflow: hidden;
}

.why-choose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.why-choose-card:hover::before {
  opacity: 1;
}

.why-choose-icon {
  font-size: 45px;
  color: var(--secondary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.why-choose-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.why-choose-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

/* Vision & Mission Section - Updated styling */
.vision-mission-section {
  padding: 100px 0;
  background: var(--light);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.vm-card {
  background: white;
  padding: 50px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border-left: 5px solid var(--secondary);
  position: relative;
  overflow: hidden;
}

.vm-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.vm-card:hover::after {
  top: -20%;
  right: -20%;
}

.vm-icon {
  font-size: 50px;
  color: var(--secondary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.vm-card h3 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.vm-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

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

/* Products Section */
.products-section {
  padding: 100px 0;
  background: white;
}

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

.product-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--light);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-item:hover .product-image img {
  transform: scale(1.1);
}

.product-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-body {
  padding: 25px;
}

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

.product-body p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

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

.product-meta i {
  color: var(--secondary);
  margin-right: 8px;
}

.product-link {
  color: var(--secondary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-link:hover {
  gap: 12px;
}

/* Services Section - Updated styling */
.services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f1ed 0%, #faf8f5 100%);
}

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

.service-box {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border-bottom: 4px solid var(--secondary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

.service-number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(22, 78, 99, 0.08);
  position: absolute;
  top: -10px;
  right: 20px;
}

.service-icon {
  font-size: 40px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.service-box h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.service-box p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 14px;
}

/* Page Hero Section - Updated styling */
.page-hero {
  position: relative;
  height: 40vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.page-hero .page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.page-hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-hero p {
  font-size: 20px;
  opacity: 0.95;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 36px;
  }
  .page-hero p {
    font-size: 16px;
  }
}

/* Services Overview Section */
.services-overview {
  padding: 100px 0;
  background: white;
}

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

.service-card-detailed {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.service-card-detailed:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 40px 30px;
  text-align: center;
}

.service-icon-large {
  font-size: 50px;
  margin-bottom: 15px;
  display: block;
}

.service-card-header h3 {
  font-size: 24px;
  font-weight: 700;
}

.service-card-body {
  padding: 40px 30px;
}

.service-intro {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.8;
}

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

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

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

.service-features i {
  color: var(--secondary);
  margin-top: 3px;
  flex-shrink: 0;
}

.service-benefit {
  background: var(--light);
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  border-left: 4px solid var(--secondary);
}

/* Service Process Section */
.service-process {
  padding: 100px 0;
  background: var(--light);
}

.process-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.process-step {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 220px;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.step-content p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.process-arrow {
  display: flex;
  justify-content: center;
  color: var(--secondary);
  font-size: 24px;
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .process-arrow {
    display: none;
  }

  .services-hero h1 {
    font-size: 36px;
  }

  .services-hero p {
    font-size: 16px;
  }

  .services-grid-detailed {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    flex-direction: column;
  }

  .process-step {
    max-width: 100%;
  }
}

/* Why Our Services Section */
.why-our-services {
  padding: 100px 0;
  background: white;
}

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

.advantage-item {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--secondary);
}

.advantage-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
  font-size: 45px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.advantage-item h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.advantage-item p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
}

/* Services CTA Section */
.services-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.services-cta .cta-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
}

.services-cta .cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* Team Section */
.team-section {
  padding: 100px 0;
  background: white;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.team-member {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.member-image {
  height: 350px;
  overflow: hidden;
  background: var(--light);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.member-info {
  padding: 30px;
  text-align: center;
}

.member-info h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.member-role {
  color: var(--secondary);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.member-contact {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.member-contact a {
  width: 40px;
  height: 40px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  transition: all 0.3s ease;
}

.member-contact a:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-box {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

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

.contact-icon {
  font-size: 40px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.contact-box h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-box p {
  color: var(--text-light);
  line-height: 1.7;
}

.contact-box a {
  color: var(--secondary);
  font-weight: 600;
}

.contact-box a:hover {
  color: var(--primary);
}




/* Footer CTA Section */
.footer-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn-large {
  display: inline-block;
  padding: 18px 50px;
  background: var(--secondary);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary);
}

.cta-btn-large:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: var(--primary);
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* Footer h4 styling - bigger font size (20px) and rose gold underline */
.footer-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--secondary);
  display: inline-block;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  font-size: 14px;
}

.reg-no {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

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

.footer-col i {
  color: var(--secondary);
  margin-right: 8px;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}




/* Testimonials Section Styling */
.testimonials-section {
  padding: 100px 0;
  background: white;
}

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

.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 5px solid var(--secondary);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: var(--secondary);
  font-size: 16px;
}

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

.testimonial-author h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 600;
}

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

/* Partners Section Styling */
.partners-section {
  padding: 100px 0;
  background: var(--light);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: center;
}

.partner-logo {
  text-align: center;
  transition: all 0.3s ease;
}

.logo-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-logo:hover .logo-box {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary);
}

.partner-logo p {
  margin-top: 15px;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 15px;
  }

  .top-bar-left {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .top-bar-right {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    max-height: 400px;
  }

  .nav-menu li {
    border-bottom: 1px solid var(--border);
  }

  .nav-link {
    display: block;
    padding: 15px 0;
  }

  .hero-slider {
    height: 70vh;
  }

  .slide-title {
    font-size: 36px;
  }

  .slide-subtitle {
    font-size: 16px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .slider-btn.prev {
    left: 15px;
  }

  .slider-btn.next {
    right: 15px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .products-container,
  .services-grid,
  .team-container,
  .contact-wrapper,
  .vision-mission-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .cta-btn {
    padding: 12px 30px;
    font-size: 14px;
  }

  .stat-card h3 {
    font-size: 32px;
  }

  .testimonials-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 50vh;
  }

  .slide-title {
    font-size: 24px;
  }

  .slide-subtitle {
    font-size: 14px;
  }

  .stat-card h3 {
    font-size: 24px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 14px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

 /* Contact Form Section */
        .contact-form-section {
            background: #f8f9fa;
            padding: 60px 20px;
            margin-bottom: 60px;
        }

        .contact-form-container {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .contact-form-container h2 {
            color: #164e63;
            margin-bottom: 30px;
            font-size: 32px;
            text-align: center;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #164e63;
            font-weight: 600;
            font-size: 14px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #0891b2;
            box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
        }

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

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

        .form-row .form-group {
            margin-bottom: 0;
        }

        .submit-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #164e63 0%, #0891b2 100%);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(22, 78, 99, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Embedded Map Section */
        .map-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 60px;
        }

        .map-section h2 {
            color: #164e63;
            margin-bottom: 30px;
            font-size: 32px;
            text-align: center;
        }

        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            height: 500px;
        }

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

        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 32px;
            }

            .contact-hero p {
                font-size: 16px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-form-container {
                padding: 25px;
            }

            .map-container {
                height: 350px;
            }
        }

