/* CSS Variables - Earthy Luxury Theme */
:root {
  --primary-color: #2b3a32; /* Deep Sage Green */
  --primary-light: #3e5348;
  --accent-color: #d4af37; /* Soft Gold/Mustard */
  --accent-hover: #b5952f;
  --text-dark: #1a1a1a;
  --text-light: #555555;
  --bg-light: #f7f8f6; /* Off-white */
  --white: #ffffff;
  --transition: all 0.3s ease;
}

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

p {
  word-break: break-word;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-light);
  line-height: 1.7;
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark);
  font-weight: 600;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--white);
  font-weight: 500;
  border-radius: 6px;
  border: 2px solid var(--accent-color);
}

.btn:hover {
  background-color: transparent;
  color: var(--accent-color);
}

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

.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

/* Header & Navigation */
header {
  background: var(--white);
  padding: 15px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
}

.nav-links a:hover {
  color: var(--accent-color);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 28px;
  color: var(--primary-color);
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 90vh;
  background: url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1920&q=80")
    center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 36, 0.9) 0%,
    rgba(15, 23, 36, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 700px;
}

.hero h1 {
  color: var(--white);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #e0e0e0;
}

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

/* Section Titles */
section {
  padding: 90px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-subtitle {
  display: block;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}
.section-title h2 {
  font-size: 38px;
  color: var(--primary-color);
}

/* About Us */
.about-section {
  background-color: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrapper {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary-color);
  color: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 4px solid var(--white);
}
.experience-badge h3 {
  color: var(--accent-color);
  font-size: 36px;
  margin-bottom: 5px;
}
.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-text p {
  margin-bottom: 20px;
}

/* Services Cards (Redesigned) */
.services-section {
  background-color: var(--bg-light);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid #eee;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--primary-color);
  z-index: -1;
  transition: var(--transition);
}

.service-card:hover::before {
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.service-card .icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--primary-color);
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-card:hover .icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-color);
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  transition: var(--transition);
}
.service-card:hover h3,
.service-card:hover p {
  color: var(--white);
}

@media (max-width: 600px) {
  .service-card {
    padding: 20px 15px;
  }
  .logo{
    font-size: 16px;
  }
  .hero p{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .hero h1 {
    font-size: 30px;
  }
  .about-text h2{
    font-size: 28px;
  }
  .about-text p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  section {
    padding: 30px 0;
  }
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}
.feature-box {
  padding: 30px;
}
.feature-icon {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 20px;
}
.feature-box h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* Process */
.process-section {
  background: var(--primary-color);
  color: var(--white);
}
.process-section .section-title h2 {
  color: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}
.step-number {
  font-size: 60px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  margin-bottom: 20px;
}
.process-step h4 {
  color: var(--accent-color);
  font-size: 20px;
  margin-bottom: 15px;
}
.process-step p {
  color: #ccc;
}

/* Stats */
.stats-section {
  background: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80")
    center/cover fixed;
  position: relative;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 55, 0.9);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
.stat-item h2 {
  font-size: 50px;
  color: var(--white);
  margin-bottom: 5px;
}
.stat-item p {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 18px;
}

/* Contact Details */
.contact-section {
  background: var(--bg-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}
.contact-card i {
  font-size: 24px;
  color: var(--accent-color);
  margin-top: 5px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  border-radius: 12px;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: #ccc;
  padding: 80px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-logo {
  font-size: 26px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 25px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--white);
}
.social-links a:hover {
  background: var(--accent-color);
}
.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .experience-badge {
    bottom: 20px;
    right: 20px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .header-cta {
    display: none;
  }
  .hamburger {
    display: block;
  }

  /* Mobile Menu Logic */
  .nav-links {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    text-align: center;
    padding: 30px 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    gap: 20px;
  }

  .nav-links.active {
    left: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-btns {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .section-title h2 {
    font-size: 30px;
  }
}

/* about us page css */
/* Page Banner Styles */
.page-banner {
  background:
    linear-gradient(rgba(43, 58, 50, 0.85), rgba(43, 58, 50, 0.85)),
    url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1920&q=80")
      center/cover;
  padding: 100px 0 80px;
  text-align: center;
  color: var(--white);
}
.page-banner h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 10px;
}
.breadcrumb {
  font-size: 16px;
  color: var(--accent-color);
  font-weight: 500;
}
.breadcrumb a {
  color: var(--white);
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--accent-color);
}

/* Mission & Vision Grid */
.mission-vision-section {
  background-color: var(--bg-light);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.mv-card {
  background: var(--white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border-top: 4px solid var(--accent-color);
}
.mv-card i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.mv-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .page-banner h1 {
    font-size: 36px;
  }
}
.full-width-map {
  margin-top: 80px;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.full-width-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
