/* ================= COLOR VARIABLES ================= */
:root {
  --primary-color: #2C3E50;
  --primary-dark: #1a252f;
  --secondary-color: #2C3E50;
  --accent-color: #7F8C8D;
  --text-dark: #2C3E50;
  --text-light: #6C757D;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --border-color: #E5E7EB;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}
.hero {
  background: url('../images/hero.jpg') center/cover no-repeat;
  color: #fff;
}

.section-padding {
  padding: 80px 0;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 20px;
}

/* ================= NEW FOOTER ================= */
.footer-main {
  background: #1a1a1a;
  color: #d1d1d1;
  padding: 60px 0 20px;
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b0b0b0;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 5px;
}

.footer-links a:hover {
  color: #2C3E50;
  background: rgba(44, 62, 80, 0.1);
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 12px;
  color: #b0b0b0;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #888;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0 20px;
  }
  
  .footer-logo {
    height: 60px;
  }
}

.contact-form {
  max-width: 450px;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 9999;
}

.whatsapp-btn svg {
  position: relative;
  z-index: 2;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: whatsapp-pulse 2s infinite;
  z-index: 1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .whatsapp-btn {
    width: 55px;
    height: 55px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
  }

  .whatsapp-btn svg {
    width: 30px;
    height: 30px;
  }
}

/* Extra small mobile devices */
@media (max-width: 576px) {
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }
}
/* ================= HERO CAROUSEL ================= */

.hero-section {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow span {
  font-size: 2rem;
  line-height: 1;
  font-weight: 300;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.5);
  border-color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
  left: 30px;
}

.carousel-arrow-right {
  right: 30px;
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #fff;
  width: 30px;
  border-radius: 6px;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-arrow span {
    font-size: 1.5rem;
  }

  .carousel-arrow-left {
    left: 15px;
  }

  .carousel-arrow-right {
    right: 15px;
  }

  .carousel-indicators {
    bottom: 20px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .indicator.active {
    width: 24px;
  }
}
/* ================= HEADER NAV ================= */

/* ================= HEADER ================= */

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.main-header.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #eaeaea;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  height: 90px; /* PERFECT LOGO SIZE */
  width: auto;
}

.brand span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
}

/* Navigation */
.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  padding: 8px 16px;
  border-radius: 8px;
}

.nav-menu a:hover {
  color: #fff;
  background: rgba(168, 230, 207, 0.2);
  transform: translateY(-2px);
}

.nav-menu a.active {
  color: #A8E6CF;
  font-weight: 700;
  background: rgba(168, 230, 207, 0.15);
}

.main-header.scrolled .nav-menu a {
  color: #333;
  text-shadow: none;
}

.main-header.scrolled .nav-menu a:hover {
  color: #2C3E50;
  background: rgba(44, 62, 80, 0.1);
}

.main-header.scrolled .nav-menu a.active {
  color: #2C3E50;
  background: rgba(44, 62, 80, 0.1);
}

/* Contact Button */
.contact-btn {
  padding: 8px 18px;
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: #fff !important;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
  text-shadow: none !important;
}

.contact-btn:hover {
  background: linear-gradient(135deg, #1a252f 0%, #229954 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 62, 80, 0.6);
}

.main-header.scrolled .contact-btn {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
}

.main-header.scrolled .contact-btn:hover {
  background: linear-gradient(135deg, #1a252f 0%, #229954 100%);
}

/* ================= MOBILE ================= */

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.main-header.scrolled .menu-btn span {
  background: #333;
}

/* Mobile View */
@media (max-width: 768px) {

  .menu-btn {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid #eaeaea;
    display: none;
  }

  .main-header.scrolled .nav-menu {
    background: #ffffff;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

  .nav-menu a {
    display: block;
    padding: 10px 0;
    color: #333;
    text-shadow: none;
  }

  .nav-menu a:hover {
    color: #2C3E50;
  }
}
/* ================= PACKAGES ================= */

.package-card {
  background: #fff;
  padding: 35px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-12px);
}

.package-title {
  font-weight: 700;
  margin-bottom: 12px;
}

.package-price {
  font-size: 2rem;
  font-weight: 800;
  color: #0d6efd;
  margin-bottom: 20px;
}

.package-price span {
  font-size: 0.85rem;
  color: #666;
}

.package-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.package-list li {
  margin-bottom: 10px;
  color: #444;
}

/* Featured (Classic) */
.package-card.featured {
  border: 2px solid #0d6efd;
  position: relative;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0d6efd;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Luxury */
.package-card.luxury {
  background: linear-gradient(135deg, #111, #000);
  color: #fff;
}

.package-card.luxury .package-price,
.package-card.luxury .package-list li {
  color: #f1f1f1;
}

/* ================= NEW PACKAGES PAGE DESIGN ================= */

/* Packages Hero */
.packages-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: #fff;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Image - Full Coverage */
.packages-hero::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/project2.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -2;
}

/* Shadow Overlay */
.packages-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 62, 80, 0.85) 0%,
    rgba(39, 174, 96, 0.85) 50%,
    rgba(22, 160, 133, 0.9) 100%
  );
  z-index: 1;
}

.packages-hero .container {
  position: relative;
  z-index: 2;
}

.packages-hero svg {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2;
}

.packages-hero h1 {
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.packages-hero .lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .packages-hero {
    padding: 120px 0 60px;
    min-height: 70vh;
  }
  
  .packages-hero::before {
    background-attachment: scroll;
  }
  
  .packages-hero svg {
    height: 50px;
  }
}

/* Packages Section */
.packages-section {
  padding: 100px 0;
}

/* New Package Cards */
.package-card-new {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  border: 2px solid transparent;
}

.package-card-new:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.2);
  border-color: #1e3c72;
}

.package-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px 30px 30px;
  text-align: center;
  position: relative;
}

.package-header h4 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-price-new {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.package-price-new .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.package-price-new .amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--secondary-color);
  line-height: 1;
}

.package-price-new .unit {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.package-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

.package-body {
  padding: 40px 30px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features li {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
  font-size: 0.95rem;
}

.package-features li:last-child {
  border-bottom: none;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.package-footer {
  padding: 0 30px 40px;
}

.btn-package {
  display: block;
  width: 100%;
  padding: 15px;
  background: #fff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-package:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.05);
}

.btn-package-primary {
  background: var(--primary-color);
  color: #fff;
  border-color: transparent;
}

.btn-package-primary:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn-package-luxury {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: #fff;
  border-color: transparent;
}

.btn-package-luxury:hover {
  background: linear-gradient(135deg, #333 0%, #000 100%);
  color: #fff;
}

/* Featured Package */
.featured-package {
  border: 3px solid var(--primary-color);
  transform: scale(1.05);
}

.featured-package:hover {
  transform: scale(1.08) translateY(-15px);
}

.featured-package .package-header {
  background: var(--primary-color);
}

.featured-package .package-header h4,
.featured-package .package-price-new .currency,
.featured-package .package-price-new .amount {
  color: #fff;
}

.featured-package .package-note {
  color: rgba(255, 255, 255, 0.9);
}

.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: #fff;
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(238, 90, 111, 0.4);
  z-index: 10;
}

/* Luxury Package */
.luxury-package {
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
  border: 2px solid #333;
}

.luxury-package .package-header {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.luxury-package .package-header h4,
.luxury-package .package-price-new .currency,
.luxury-package .package-price-new .amount {
  color: #fff;
}

.luxury-package .package-note {
  color: rgba(255, 255, 255, 0.8);
}

.luxury-package .package-features li {
  color: #ddd;
  border-bottom-color: #333;
}

.luxury-package .check-icon {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
}

/* Customization Section */
.customization-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: #fff;
}

.custom-step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.step-content h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.customization-image img {
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Design Process Section */
.design-process-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.process-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.process-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.process-card h4 {
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 15px;
}

.process-card p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .packages-hero {
    padding: 80px 0 60px;
  }

  .packages-section,
  .customization-section,
  .design-process-section {
    padding: 60px 0;
  }

  .featured-package {
    transform: scale(1);
  }

  .featured-package:hover {
    transform: scale(1.02) translateY(-10px);
  }

  .package-price-new .amount {
    font-size: 2.5rem;
  }

  .process-icon {
    font-size: 3rem;
  }
}
/* ================= SERVICES SECTION ================= */

.services-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.services-intro h2 {
  font-weight: 800;
  margin-bottom: 15px;
}

.services-intro p {
  max-width: 750px;
  margin: auto;
  color: #666;
  margin-bottom: 60px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 25px;
}

.service-content h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 0.95rem;
  color: #555;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.15);
}

/* Scroll animation */
.service-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.service-item.show {
  opacity: 1;
  transform: translateY(0);
}
/* ================= PROJECTS SECTION ================= */

.projects-section {
  background: #fff;
  padding: 80px 0;
}

.projects-intro h2 {
  font-weight: 800;
  margin-bottom: 15px;
}

.projects-intro p {
  max-width: 750px;
  margin: auto;
  color: #d1d1d1;
  margin-bottom: 60px;
}

.project-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 320px;
  perspective: 1000px;
  transform-style: preserve-3d;
}

/* Large Cards - Organic Curved Shape */
.project-card-large {
  border-radius: 60px 20px 60px 20px;
  height: 550px;
}

.project-card-large:hover {
  transform: translateY(-15px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 30px 60px rgba(44, 62, 80, 0.3);
}

/* Medium Cards - Wave Shape */
.project-card-medium {
  border-radius: 40px 80px 40px 80px;
  height: 450px;
}

.project-card-medium:hover {
  transform: translateY(-12px) rotateX(-2deg) rotateY(2deg);
  box-shadow: 0 25px 50px rgba(22, 160, 133, 0.3);
}

/* Small Cards - Asymmetric Rounded */
.project-card-small {
  border-radius: 20px 60px 20px 60px;
  height: 380px;
}

.project-card-small:hover {
  transform: translateY(-10px) rotateZ(1deg);
  box-shadow: 0 20px 45px rgba(39, 174, 96, 0.3);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(44, 62, 80, 0.1) 30%,
    rgba(0,0,0,0.4) 70%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
  opacity: 0.8;
  transition: all 0.5s ease;
}

.project-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(44, 62, 80, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.project-card:hover::after {
  opacity: 1;
  animation: rotateGlow 3s linear infinite;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.project-overlay h5 {
  margin: 0;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
  transform: translateY(0);
  transition: all 0.4s ease;
}

.project-overlay p {
  margin: 10px 0 0;
  font-size: 0.95rem;
  color: #e5e7eb;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
  box-shadow: 0 25px 60px rgba(44, 62, 80, 0.25);
}

.project-card:hover::before {
  opacity: 1;
  background: linear-gradient(
    135deg,
    rgba(44, 62, 80, 0.2) 0%,
    rgba(22, 160, 133, 0.3) 50%,
    rgba(0,0,0,0.7) 100%
  );
}

.project-card:hover img {
  transform: scale(1.12) rotate(1deg);
  filter: brightness(1.1) contrast(1.05);
}

.project-card:hover .project-overlay {
  padding-bottom: 35px;
}

.project-card:hover .project-overlay h5 {
  transform: translateY(-5px);
  color: #2C3E50;
  text-shadow: 0 0 20px rgba(44, 62, 80, 0.5);
}

.project-card:hover .project-overlay p {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll animation */
.project-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.project-item.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .project-card {
    height: 350px;
  }
  
  .project-card-large {
    height: 400px;
    border-radius: 40px 15px 40px 15px;
  }
  
  .project-card-medium {
    height: 350px;
    border-radius: 30px 60px 30px 60px;
  }
  
  .project-card-small {
    height: 320px;
    border-radius: 15px 40px 15px 40px;
  }
  
  .project-overlay h5 {
    font-size: 1.1rem;
  }
  
  .project-overlay p {
    font-size: 0.85rem;
  }
}
/* SIMPLE FAQ STYLING */

.simple-faq {
  padding: 140px 0 80px;
  background: #ffffff;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-header p {
  color: #666;
}

.faq-list {
  max-width: 900px;
  margin: auto;
}

.faq-row {
  border-bottom: 1px solid #e5e5e5;
  padding: 18px 0;
  cursor: pointer;
}

.faq-q {
  font-weight: 600;
  position: relative;
  padding-right: 20px;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-a {
  display: none;
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
}

.faq-row.active .faq-q::after {
  content: "–";
}

.faq-row.active .faq-a {
  display: block;
}

/* ================= PAGE HEADER ================= */
/* ================= PAGE HEADER ================= */
.page-header {
  position: relative;
  padding: 140px 0 80px;
  text-align: center;
  color: #fff;
  margin-top: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Image - Full Coverage */
.page-header::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/project1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -2;
}

/* Shadow Overlay */
.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 62, 80, 0.85) 0%,
    rgba(39, 174, 96, 0.85) 50%,
    rgba(22, 160, 133, 0.9) 100%
  );
  z-index: 1;
}

/* Curved Bottom Edge */
.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1,
.page-header p {
  position: relative;
  z-index: 2;
}

/* SVG Curve at Bottom */
.page-header svg {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .page-header {
    padding: 120px 0 60px;
    min-height: 70vh;
  }
  
  .page-header::before {
    background-attachment: scroll;
  }
  
  .page-header svg {
    height: 50px;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
}

/* ================= SERVICES DETAIL PAGE ================= */
.services-detail-section {
  padding: 80px 0;
  background: #fff;
}

.service-row {
  border-bottom: 1px solid #e5e5e5;
}

.service-row:last-child {
  border-bottom: none;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.service-row .col-lg-6:first-child {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.service-row .col-lg-6:last-child {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.service-row img {
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
}

.service-row .col-lg-6:first-child {
  overflow: hidden;
  border-radius: 15px;
}

.service-row img:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* Add shine effect */
.service-row .col-lg-6:first-child::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 2;
}

.service-row .col-lg-6:first-child:hover::after {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

.service-detail-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 20px;
}

.service-detail-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-features li {
  padding: 10px 0;
  font-size: 1rem;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
  border-bottom: none;
}

@media (max-width: 991px) {
  .service-row .col-lg-6:first-child,
  .service-row .col-lg-6:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .service-detail-title {
    font-size: 1.6rem;
  }
  
  .service-detail-text {
    font-size: 1rem;
  }
}

/* ================= PROJECTS INTRO SECTION ================= */
.projects-intro-section {
  padding: 140px 0 60px;
  background: #f8f9fa;
  text-align: center;
  margin-top: 0;
}

.projects-intro-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 25px;
  line-height: 1.3;
}

.projects-intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .projects-intro-section {
    padding: 120px 0 40px;
  }
  
  .projects-intro-title {
    font-size: 1.6rem;
  }
  
  .projects-intro-text {
    font-size: 1rem;
  }
}

/* ================= SOCIAL LINKS ================= */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #fff;
  color: #1a1a1a;
  transform: translateY(-3px);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

/* ================= ABOUT PAGE STYLES ================= */

/* Why Choose Us Section - Card Grid */
.why-choose-about-section {
  padding: 60px 0;
}

.why-feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 2px solid transparent;
}

.why-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(44, 62, 80, 0.2);
  border-color: rgba(44, 62, 80, 0.3);
}

.why-icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.1) 0%, rgba(22, 160, 133, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.why-feature-card:hover .why-icon-circle {
  background: linear-gradient(135deg, #2C3E50 0%, #7F8C8D 100%);
  transform: scale(1.1);
}

.why-icon-circle svg {
  width: 40px;
  height: 40px;
  color: #2C3E50;
  transition: color 0.4s ease;
}

.why-feature-card:hover .why-icon-circle svg {
  color: #fff;
}

.why-feature-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 15px;
}

.why-feature-card p {
  color: #6C757D;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.why-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.why-feature-list li {
  padding: 8px 0 8px 25px;
  color: #555;
  font-size: 0.9rem;
  position: relative;
}

.why-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C3E50;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 991px) {
  .why-choose-about-section {
    padding: 40px 0;
  }

  .why-feature-card {
    padding: 35px 25px;
    margin-bottom: 20px;
  }

  .why-icon-circle {
    width: 70px;
    height: 70px;
  }

  .why-icon-circle svg {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 576px) {
  .why-feature-card {
    padding: 30px 20px;
  }

  .why-icon-circle {
    width: 60px;
    height: 60px;
  }

  .why-icon-circle svg {
    width: 30px;
    height: 30px;
  }

  .why-feature-card h4 {
    font-size: 1.2rem;
  }
}

/* About Feature Images */
.about-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 25px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-container::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.2) 0%, rgba(22, 160, 133, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.about-image-container:hover::before {
  opacity: 1;
}

.about-feature-image {
  width: 100%;
  height: auto;
  min-height: 350px;
  max-height: 450px;
  object-fit: cover;
  border-radius: 25px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.about-image-container:hover .about-feature-image {
  transform: scale(1.05);
}

/* Responsive Images */
@media (max-width: 991px) {
  .about-image-container {
    margin-bottom: 30px;
  }

  .about-feature-image {
    min-height: 300px;
    max-height: 400px;
  }
}

@media (max-width: 576px) {
  .about-feature-image {
    min-height: 250px;
    max-height: 350px;
  }
}

.value-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-card h4 {
  color: #2C3E50;
  font-weight: 700;
  margin-bottom: 15px;
}

.mission-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 20px;
  border-radius: 15px;
}

.quality-points {
  margin-top: 20px;
}

.quality-point {
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 3px solid #2C3E50;
}

.quality-point h5 {
  color: #2C3E50;
  font-weight: 600;
  margin-bottom: 10px;
}

.quality-point p {
  margin: 0;
  color: #555;
}

/* Why Choose Us About Section */
.why-choose-about {
  margin-top: 60px;
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.03) 0%, rgba(22, 160, 133, 0.03) 100%);
  border-radius: 20px;
}

.choose-card-about {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.choose-card-about:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(44, 62, 80, 0.2);
}

.choose-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.choose-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(44, 62, 80, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.choose-card-about:hover .choose-image-wrapper::before {
  opacity: 1;
}

.choose-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.choose-card-about:hover .choose-image-wrapper img {
  transform: scale(1.1);
}

.choose-card-about h5 {
  padding: 20px 25px 10px;
  margin: 0;
  font-weight: 700;
  font-size: 1.2rem;
  color: #2C3E50;
  transition: color 0.3s ease;
}

.choose-card-about:hover h5 {
  color: #2C3E50;
}

.choose-card-about p {
  padding: 0 25px 25px;
  margin: 0;
  color: #6C757D;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Why Choose Us */
@media (max-width: 991px) {
  .why-choose-about {
    padding: 40px 20px;
  }
  
  .choose-image-wrapper {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .choose-image-wrapper {
    height: 180px;
  }
  
  .choose-card-about h5 {
    font-size: 1.1rem;
    padding: 15px 20px 8px;
  }
  
  .choose-card-about p {
    padding: 0 20px 20px;
    font-size: 0.9rem;
  }
}

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.about-list li {
  padding: 10px 0;
  font-size: 1rem;
  color: #333;
}

/* About Page Image Enhancements */
.section-padding img {
  border-radius: 20px;
  transition: all 0.4s ease;
}

.section-padding img:hover {
  transform: scale(1.03);
}

@media (max-width: 991px) {
  .section-padding img:hover {
    transform: scale(1.01);
  }
}

/* ================= HOME PAGE REDESIGN ================= */

/* Section Badge */
.section-badge {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-badge-light {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* Home About Section */
.home-about-section {
  padding: 100px 0;
  background: #fff;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-box h6 {
  margin: 0;
  font-weight: 600;
  color: #333;
}

/* Stats Section Home */
.stats-section-home {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  margin: 0;
  font-weight: 500;
}

/* Services Section Home */
.services-section-home {
  padding: 100px 0;
  background: #fff;
}

/* Beautiful Service Cards */
.service-card-beautiful {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.05);
}

.service-card-beautiful:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(44, 62, 80, 0.25);
  border-color: rgba(44, 62, 80, 0.2);
}

/* Image Container */
.service-image-container {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: #f8f9fa;
}

.service-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-beautiful:hover .service-image-container img {
  transform: scale(1.15);
}

/* Gradient Overlay on Image */
.service-overlay-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card-beautiful:hover .service-overlay-gradient {
  opacity: 1;
}

/* Content Section */
.service-content-beautiful {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #fff;
}

.service-content-beautiful h5 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.service-card-beautiful:hover .service-content-beautiful h5 {
  color: #2C3E50;
}

.service-content-beautiful p {
  color: #6C757D;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Beautiful Button */
.service-btn-beautiful {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.service-btn-beautiful::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a252f 0%, #229954 100%);
  transition: left 0.4s ease;
  z-index: 0;
}

.service-btn-beautiful:hover::before {
  left: 0;
}

.service-btn-beautiful span,
.service-btn-beautiful svg {
  position: relative;
  z-index: 1;
}

.service-btn-beautiful:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.5);
}

.service-btn-beautiful svg {
  transition: transform 0.3s ease;
}

.service-btn-beautiful:hover svg {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .services-section-home {
    padding: 60px 0;
  }

  .service-image-container {
    height: 240px;
  }

  .service-content-beautiful {
    padding: 30px 25px;
  }

  .service-content-beautiful h5 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .service-card-beautiful {
    margin-bottom: 20px;
  }

  .service-image-container {
    height: 220px;
  }

  .service-content-beautiful {
    padding: 25px 20px;
  }

  .service-content-beautiful h5 {
    font-size: 1.15rem;
  }

  .service-content-beautiful p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .service-btn-beautiful {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .service-image-container {
    height: 200px;
  }

  .service-content-beautiful {
    padding: 20px 18px;
  }

  .service-btn-beautiful {
    width: 100%;
    justify-content: center;
  }
}


.service-card-modern {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.service-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-modern:hover .service-image-wrapper img {
  transform: scale(1.1);
}

/* SVG Icon Below Image */
.service-icon-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.05) 0%, rgba(22, 160, 133, 0.05) 100%);
  border-bottom: 2px solid rgba(44, 62, 80, 0.1);
  transition: all 0.4s ease;
}

.service-card-modern:hover .service-icon-bottom {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.15) 0%, rgba(22, 160, 133, 0.15) 100%);
  border-bottom-color: rgba(44, 62, 80, 0.3);
}

.service-svg-icon {
  width: 50px;
  height: 50px;
  color: #2C3E50;
  transition: all 0.4s ease;
}

.service-card-modern:hover .service-svg-icon {
  transform: scale(1.15) rotateY(360deg);
  color: #1a252f;
}

.service-content-modern {
  padding: 25px;
}

.service-content-modern h5 {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.service-content-modern p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--primary-dark);
  padding-left: 5px;
}

/* Responsive */
@media (max-width: 991px) {
  .services-section-home {
    padding: 60px 0;
  }

  .service-image-wrapper {
    height: 220px;
  }

  .service-svg-icon {
    width: 45px;
    height: 45px;
  }

  .service-icon-bottom {
    padding: 18px;
  }
}

@media (max-width: 576px) {
  .service-card-modern {
    margin-bottom: 20px;
  }

  .service-image-wrapper {
    height: 200px;
  }

  .service-content-modern {
    padding: 20px;
  }

  .service-content-modern h5 {
    font-size: 1.1rem;
  }

  .service-svg-icon {
    width: 40px;
    height: 40px;
  }

  .service-icon-bottom {
    padding: 15px;
  }
}


/* Icon-Based Service Cards */
.service-card-icon {
  background: #fff;
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2C3E50 0%, #1a252f 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card-icon:hover::before {
  transform: scaleX(1);
}

.service-card-icon:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(44, 62, 80, 0.2);
  border-color: rgba(44, 62, 80, 0.3);
}

.service-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.1) 0%, rgba(22, 160, 133, 0.1) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.service-icon-wrapper::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2C3E50 0%, #7F8C8D 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card-icon:hover .service-icon-wrapper::after {
  opacity: 1;
}

.service-icon-svg {
  width: 50px;
  height: 50px;
  color: #2C3E50;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.service-card-icon:hover .service-icon-svg {
  color: #fff;
  transform: scale(1.1) rotateY(360deg);
}

.service-content-icon {
  position: relative;
  z-index: 1;
}

.service-content-icon h5 {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.service-card-icon:hover .service-content-icon h5 {
  color: #2C3E50;
}

.service-content-icon p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-link-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2C3E50;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.service-link-icon::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2C3E50;
  transition: width 0.3s ease;
}

.service-link-icon:hover::after {
  width: 100%;
}

.service-link-icon:hover {
  color: #1a252f;
  gap: 12px;
}

.service-link-icon svg {
  transition: transform 0.3s ease;
}

.service-link-icon:hover svg {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
  .services-section-home {
    padding: 60px 0;
  }

  .service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }

  .service-icon-svg {
    width: 40px;
    height: 40px;
  }

  .service-card-icon {
    padding: 35px 25px;
  }
}

@media (max-width: 576px) {
  .service-card-icon {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .service-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .service-icon-svg {
    width: 35px;
    height: 35px;
  }

  .service-content-icon h5 {
    font-size: 1.1rem;
  }

  .service-content-icon p {
    font-size: 0.9rem;
  }
}


.service-card-modern {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.service-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-modern:hover .service-image-wrapper img {
  transform: scale(1.1);
}

.service-content-modern {
  padding: 25px;
}

.service-content-modern h5 {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.service-content-modern p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--primary-dark);
  padding-left: 5px;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.why-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Why Choose Us Icon */
.why-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 25px;
}

.why-card h5 {
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.why-card p {
  color: #666;
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Projects Section Home */
.projects-section-home {
  padding: 100px 0;
  background: #fff;
}

.project-card-modern {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 350px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* Rectangle Cards - Wide Horizontal */
.project-rectangle {
  height: 400px;
  border-radius: 20px;
}

/* Square Cards - Equal Dimensions */
.project-square {
  height: 400px;
  border-radius: 15px;
}

/* Medium Rectangle Cards */
.project-rectangle-medium {
  height: 380px;
  border-radius: 18px;
}

.project-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(44, 62, 80, 0.1) 30%,
    rgba(0,0,0,0.4) 70%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
  opacity: 0.8;
  transition: all 0.5s ease;
}

.project-card-modern:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(44, 62, 80, 0.3);
}

.project-card-modern:hover::before {
  opacity: 1;
  background: linear-gradient(
    135deg,
    rgba(44, 62, 80, 0.2) 0%,
    rgba(22, 160, 133, 0.3) 50%,
    rgba(0,0,0,0.7) 100%
  );
}

.project-card-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9);
}

.project-card-modern:hover img {
  transform: scale(1.12);
  filter: brightness(1.1) contrast(1.05);
}

.project-overlay-modern {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  padding: 30px;
  z-index: 2;
  transition: all 0.4s ease;
}

.project-card-modern:hover .project-overlay-modern {
  padding-bottom: 35px;
}

.project-overlay-modern h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.3rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
  transition: all 0.4s ease;
}

.project-card-modern:hover .project-overlay-modern h5 {
  color: #2C3E50;
  transform: translateY(-3px);
  text-shadow: 0 0 20px rgba(44, 62, 80, 0.5);
}

.project-overlay-modern p {
  color: #e5e7eb;
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: all 0.4s ease;
}

.project-card-modern:hover .project-overlay-modern p {
  opacity: 1;
  color: #fff;
}

/* Testimonial Section Home */
.testimonial-section-home {
  padding: 100px 0;
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: #fff;
}

.testimonial-card-modern {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.quote-icon {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  margin-bottom: 20px;
}

.testimonial-text-modern {
  font-size: 1.2rem;
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 30px;
  color: #fff;
}

.testimonial-author-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.author-info h6 {
  margin: 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.rating {
  font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: #fff;
}

.cta-section h2 {
  color: #fff;
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 991px) {
  .home-about-section,
  .services-section-home,
  .why-choose-section,
  .projects-section-home,
  .testimonial-section-home {
    padding: 60px 0;
  }

  .stats-section-home {
    padding: 60px 0;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-icon {
    font-size: 2.5rem;
  }

  .project-card-modern {
    height: 300px;
  }
  
  .project-rectangle {
    height: 320px;
  }
  
  .project-square {
    height: 300px;
  }
  
  .project-rectangle-medium {
    height: 300px;
  }

  .testimonial-card-modern {
    padding: 35px;
  }

  .testimonial-text-modern {
    font-size: 1.1rem;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-section .btn {
    width: 100%;
  }

  .why-image-grid > img {
    height: 280px;
    margin-bottom: 20px;
  }

  .why-image-grid .row img {
    height: 180px;
  }
}


/* ================= CONTACT PAGE DESIGN ================= */

/* Contact Hero */
/* Contact Hero */
.contact-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: #fff;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Image - Full Coverage */
.contact-hero::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/project 3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -2;
}

/* Shadow Overlay */
.contact-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 62, 80, 0.85) 0%,
    rgba(39, 174, 96, 0.85) 50%,
    rgba(22, 160, 133, 0.9) 100%
  );
  z-index: 1;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero svg {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2;
}

.contact-hero h1 {
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-hero .lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .contact-hero {
    padding: 120px 0 60px;
    min-height: 70vh;
  }
  
  .contact-hero::before {
    background-attachment: scroll;
  }
  
  .contact-hero svg {
    height: 50px;
  }
}

/* Contact Main Section */
.contact-main-section {
  padding: 100px 0;
  background: #f8f9fa;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: #fff;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
  color: var(--secondary-color);
}

.modern-contact-form {
  margin-top: 30px;
}

.form-group-modern {
  margin-bottom: 25px;
}

.form-group-modern label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.form-control-modern {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-control-modern:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-control-modern::placeholder {
  color: #999;
}

select.form-control-modern {
  cursor: pointer;
}

textarea.form-control-modern {
  resize: vertical;
  min-height: 120px;
}

.btn-submit-modern {
  width: 100%;
  padding: 18px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit-modern:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-submit-modern .arrow {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.btn-submit-modern:hover .arrow {
  transform: translateX(5px);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
  position: sticky;
  top: 100px;
}

.contact-info-wrapper h3 {
  color: var(--secondary-color);
}

.contact-info-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-content h6 {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
  font-size: 1rem;
}

.info-content p {
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.info-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--primary-dark);
}

/* Social Connect */
.social-connect {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-top: 20px;
}

.social-connect h6 {
  color: var(--secondary-color);
}

.social-links-contact {
  display: flex;
  gap: 12px;
}

.social-links-contact a {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.social-links-contact a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

/* Map Section */
.map-section {
  padding: 0 0 100px;
  background: #f8f9fa;
}

.map-wrapper {
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  border-radius: 20px;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-hero {
    padding: 80px 0 60px;
  }

  .contact-main-section {
    padding: 60px 0;
  }

  .contact-form-wrapper {
    padding: 35px 25px;
    margin-bottom: 40px;
  }

  .contact-info-wrapper {
    position: static;
  }

  .map-section {
    padding: 0 0 60px;
  }
}

@media (max-width: 576px) {
  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .form-control-modern {
    padding: 12px 15px;
  }

  .btn-submit-modern {
    padding: 15px;
    font-size: 1rem;
  }

  .contact-info-card {
    padding: 20px;
  }

  .info-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}


/* ================= ADDITIONAL MOBILE IMPROVEMENTS ================= */

/* Mobile Typography */
@media (max-width: 576px) {
  .display-4 {
    font-size: 2rem !important;
  }

  .display-5 {
    font-size: 1.75rem !important;
  }

  .display-6 {
    font-size: 1.5rem !important;
  }

  .lead {
    font-size: 1rem !important;
  }

  h1 {
    font-size: 1.75rem !important;
  }

  h2 {
    font-size: 1.5rem !important;
  }

  h3 {
    font-size: 1.25rem !important;
  }
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
  .nav-container {
    padding: 10px 15px;
  }

  .brand img {
    height: 60px;
  }

  .nav-menu ul {
    gap: 0;
  }

  .nav-menu a {
    padding: 12px 0;
    font-size: 1rem;
  }
}

/* Mobile Hero Section */
@media (max-width: 576px) {
  .hero-section {
    height: 50vh;
  }

  .carousel-arrow {
    width: 35px;
    height: 35px;
  }

  .carousel-arrow span {
    font-size: 1.2rem;
  }

  .carousel-arrow-left {
    left: 10px;
  }

  .carousel-arrow-right {
    right: 10px;
  }

  .carousel-indicators {
    bottom: 15px;
    gap: 8px;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }

  .indicator.active {
    width: 20px;
  }
}

/* Mobile Stats Section */
@media (max-width: 576px) {
  .stat-card {
    padding: 25px 20px;
  }

  .stat-icon {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}

/* Mobile Service Cards */
@media (max-width: 576px) {
  .service-card-modern {
    margin-bottom: 20px;
  }

  .service-image-wrapper {
    height: 200px;
  }

  .service-content-modern {
    padding: 20px;
  }

  .service-content-modern h5 {
    font-size: 1.1rem;
  }
}

/* Mobile Why Choose Cards */
@media (max-width: 576px) {
  .why-card {
    padding: 30px 20px;
  }

  .why-icon-large {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .why-card h5 {
    font-size: 1.1rem;
  }
}

/* Mobile Project Cards */
@media (max-width: 576px) {
  .project-card-modern {
    height: 250px;
  }

  .project-overlay-modern {
    padding: 20px;
  }

  .project-overlay-modern h5 {
    font-size: 1rem;
  }

  .project-overlay-modern p {
    font-size: 0.85rem;
  }
}

/* Mobile Testimonial */
@media (max-width: 576px) {
  .testimonial-card-modern {
    padding: 25px 20px;
  }

  .quote-icon {
    font-size: 3.5rem;
  }

  .testimonial-text-modern {
    font-size: 1rem;
    line-height: 1.7;
  }

  .testimonial-author-modern {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .rating {
    font-size: 1rem;
  }
}

/* Mobile CTA Section */
@media (max-width: 576px) {
  .cta-section {
    padding: 50px 0;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section .lead {
    font-size: 0.95rem;
  }

  .cta-section .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* Mobile Packages */
@media (max-width: 576px) {
  .packages-hero {
    padding: 120px 0 40px;
  }

  .packages-section {
    padding: 50px 0;
  }

  .package-card-new {
    margin-bottom: 20px;
  }

  .package-header {
    padding: 30px 20px 20px;
  }

  .package-header h4 {
    font-size: 1.5rem;
  }

  .package-price-new .amount {
    font-size: 2rem;
  }

  .package-body {
    padding: 30px 20px;
  }

  .package-footer {
    padding: 0 20px 30px;
  }

  .popular-tag {
    font-size: 0.75rem;
    padding: 6px 20px;
  }
}

/* Mobile Customization Section */
@media (max-width: 576px) {
  .customization-section {
    padding: 50px 0;
  }

  .custom-step {
    gap: 15px;
    margin-bottom: 25px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .step-content h5 {
    font-size: 1rem;
  }

  .step-content p {
    font-size: 0.9rem;
  }
}

/* Mobile Design Process */
@media (max-width: 576px) {
  .design-process-section {
    padding: 50px 0;
  }

  .process-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .process-icon {
    font-size: 2.5rem;
  }

  .process-card h4 {
    font-size: 1.1rem;
  }

  .process-card p {
    font-size: 0.9rem;
  }
}

/* Mobile About Page */
@media (max-width: 576px) {
  .value-card {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .mission-section {
    padding: 40px 20px;
  }

  .quality-point {
    margin-bottom: 15px;
    padding-left: 12px;
  }

  .quality-point h5 {
    font-size: 1rem;
  }
}

/* Mobile Services Page */
@media (max-width: 576px) {
  .services-detail-section {
    padding: 50px 0;
  }

  .service-row {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .service-detail-title {
    font-size: 1.3rem;
  }

  .service-detail-text {
    font-size: 0.95rem;
  }

  .service-features li {
    font-size: 0.9rem;
    padding: 12px 0;
  }
}

/* Mobile Projects Page */
@media (max-width: 576px) {
  .projects-intro-section {
    padding: 120px 0 40px;
  }

  .projects-section {
    padding: 50px 0;
  }

  .project-card {
    height: 250px;
    margin-bottom: 20px;
  }
}

/* Mobile FAQ Page */
@media (max-width: 576px) {
  .simple-faq {
    padding: 120px 0 50px;
  }

  .faq-row {
    padding: 15px 0;
  }

  .faq-q {
    font-size: 0.95rem;
    padding-right: 30px;
  }

  .faq-a {
    font-size: 0.9rem;
  }
}

/* Mobile Footer */
@media (max-width: 576px) {
  .footer-main {
    padding: 30px 0 15px;
  }

  .footer-logo {
    height: 50px;
  }

  .footer-text,
  .footer-contact li {
    font-size: 0.85rem;
  }

  .footer-heading {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    width: 35px;
    height: 35px;
  }

  .social-links svg {
    width: 18px;
    height: 18px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

/* Mobile Contact Page Additional */
@media (max-width: 576px) {
  .contact-hero h1 {
    font-size: 1.75rem;
  }

  .contact-hero .lead {
    font-size: 0.95rem;
  }

  .contact-main-section {
    padding: 40px 0;
  }

  .contact-info-card {
    padding: 18px;
    gap: 15px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .info-content h6 {
    font-size: 0.9rem;
  }

  .info-content p,
  .info-content a {
    font-size: 0.85rem;
  }

  .social-connect {
    padding: 20px;
  }

  .social-links-contact a {
    width: 40px;
    height: 40px;
  }

  .map-section {
    padding: 0 0 40px;
  }

  .map-wrapper iframe {
    height: 300px;
  }
}

/* Ensure all images are responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Prevent horizontal scroll on mobile */
body {
  overflow-x: hidden;
}

/* Touch-friendly buttons on mobile */
@media (max-width: 768px) {
  .btn,
  .btn-package,
  .btn-submit-modern,
  .contact-btn {
    min-height: 44px;
    padding: 12px 20px;
  }
}

/* Improve tap targets for mobile */
@media (max-width: 768px) {
  a, button {
    min-height: 44px;
    min-width: 44px;
  }
}


/* ================= ENSURE CONTENT ABOVE PATTERNS ================= */
.stats-section-home .container,
.why-choose-section .container,
.projects-intro-section .container,
.design-process-section .container,
.contact-main-section .container,
.packages-section.bg-light .container {
  position: relative;
  z-index: 1;
}

/* Additional Green Background Sections */
.section-padding.bg-light {
  background: var(--bg-green);
  position: relative;
}

.section-padding.bg-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(255, 255, 255, 0.3) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.3) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.3) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.3) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  opacity: 0.5;
  pointer-events: none;
}

.section-padding.bg-light .container {
  position: relative;
  z-index: 1;
}


/* ================= SECTION BACKGROUND IMAGES ================= */

.section-with-bg {
  position: relative;
  overflow: hidden;
}

.section-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
  z-index: 0;
  animation: subtleZoom 25s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

/* Ensure content is above background */
.section-with-bg .container {
  position: relative;
  z-index: 1;
}

.section-with-bg .row,
.section-with-bg > * {
  position: relative;
  z-index: 1;
}

/* Different animation for each section */
.home-about-section .section-bg-image {
  animation: bgSlideRight 30s ease-in-out infinite alternate;
}

@keyframes bgSlideRight {
  0% {
    transform: translateX(0) scale(1.05);
  }
  100% {
    transform: translateX(3%) scale(1.1);
  }
}

.stats-section-home .section-bg-image {
  animation: bgFloat 35s ease-in-out infinite;
  opacity: 0.06;
}

@keyframes bgFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1.05);
  }
  25% {
    transform: translate(-2%, 2%) scale(1.08);
  }
  50% {
    transform: translate(2%, -2%) scale(1.1);
  }
  75% {
    transform: translate(-2%, -2%) scale(1.08);
  }
}

.services-section-home .section-bg-image {
  animation: bgRotateZoom 40s ease-in-out infinite alternate;
  opacity: 0.07;
}

@keyframes bgRotateZoom {
  0% {
    transform: scale(1) rotate(0deg);
  }
  100% {
    transform: scale(1.08) rotate(1deg);
  }
}

.why-choose-section .section-bg-image {
  animation: bgPulse 20s ease-in-out infinite;
  opacity: 0.09;
}

@keyframes bgPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.09;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.12;
  }
}

.projects-section-home .section-bg-image {
  animation: bgDrift 45s linear infinite;
  opacity: 0.06;
}

@keyframes bgDrift {
  0% {
    transform: translate(0, 0) scale(1.1);
  }
  25% {
    transform: translate(2%, -1%) scale(1.12);
  }
  50% {
    transform: translate(0, -2%) scale(1.1);
  }
  75% {
    transform: translate(-2%, -1%) scale(1.12);
  }
  100% {
    transform: translate(0, 0) scale(1.1);
  }
}

/* Mobile optimization - reduce animation complexity */
@media (max-width: 768px) {
  .section-bg-image {
    animation: subtleZoom 20s ease-in-out infinite alternate !important;
    opacity: 0.05 !important;
  }
}


/* ================= ANIMATED BACKGROUND FOR INDEX PAGE ================= */

/* Animated Background Container */
.animated-bg-section {
  position: relative;
  overflow: hidden;
}

.animated-bg-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/residential.avif');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  animation: bgSlide 20s linear infinite;
  z-index: 0;
}

@keyframes bgSlide {
  0% {
    transform: translateX(0) scale(1.1);
  }
  50% {
    transform: translateX(-5%) scale(1.15);
  }
  100% {
    transform: translateX(0) scale(1.1);
  }
}

/* Alternative: Zoom Animation */
.animated-bg-zoom::before {
  animation: bgZoom 15s ease-in-out infinite;
}

@keyframes bgZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Alternative: Parallax Effect */
.animated-bg-parallax::before {
  animation: bgParallax 30s linear infinite;
}

@keyframes bgParallax {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Ensure content is above background */
.animated-bg-section .container,
.animated-bg-section > * {
  position: relative;
  z-index: 1;
}

/* Multiple Background Images Rotation */
.animated-bg-multi {
  position: relative;
  overflow: hidden;
}

.animated-bg-multi::before,
.animated-bg-multi::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.animated-bg-multi::before {
  background-image: url('images/residential.avif');
  animation: fadeInOut 10s ease-in-out infinite;
}

.animated-bg-multi::after {
  background-image: url('images/commertial.avif');
  animation: fadeInOut 10s ease-in-out infinite reverse;
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.05;
  }
  50% {
    opacity: 0.1;
  }
}

/* Floating/Drifting Effect */
.animated-bg-float::before {
  animation: bgFloat 25s ease-in-out infinite;
}

@keyframes bgFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1.05);
  }
  25% {
    transform: translate(-2%, 2%) scale(1.08);
  }
  50% {
    transform: translate(2%, -2%) scale(1.1);
  }
  75% {
    transform: translate(-2%, -2%) scale(1.08);
  }
}


/* ================= NEW MODERN HERO SECTION ================= */

.hero-modern {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.92) 0%, rgba(22, 160, 133, 0.88) 50%, rgba(44, 62, 80, 0.95) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* Hero Text Styling */
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(22, 160, 133, 0.95) 0%, rgba(44, 62, 80, 0.95) 100%);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
  animation: fadeInDown 1s ease;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  animation: fadeInUp 1s ease 0.4s both;
}

/* Hero Features */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  padding: 12px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-feature-item:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.feature-icon-hero {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #A8E6CF 0%, #2C3E50 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
}

.hero-feature-item span {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}

.btn-hero-primary {
  padding: 18px 40px;
  background: linear-gradient(135deg, #A8E6CF 0%, #2C3E50 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.5);
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(44, 62, 80, 0.7);
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: #fff;
}

.btn-hero-secondary {
  padding: 18px 40px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-hero-secondary:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Hero Stats Card */
.hero-stats-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  animation: fadeInRight 1s ease 0.6s both;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.stat-item-hero {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(168, 230, 207, 0.25) 0%, rgba(44, 62, 80, 0.2) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.stat-item-hero:hover {
  background: linear-gradient(135deg, rgba(168, 230, 207, 0.35) 0%, rgba(44, 62, 80, 0.3) 100%);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.4);
}

.stat-item-hero h3 {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #A8E6CF 0%, #FFF 50%, #A8E6CF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.3));
}

.stat-item-hero p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 600;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-stats-card {
    margin-top: 40px;
    padding: 30px;
  }

  .stat-item-hero h3 {
    font-size: 2.5rem;
  }

  .hero-content .row {
    padding-top: 120px !important;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-features {
    gap: 15px;
  }

  .hero-feature-item {
    padding: 10px 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
    padding: 15px 30px;
  }

  .hero-stats-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px;
  }

  .stat-item-hero h3 {
    font-size: 2rem;
  }

  .hero-content .row {
    padding-top: 100px !important;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 8px 20px;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-feature-item span {
    font-size: 0.85rem;
  }

  .hero-content .row {
    padding-top: 100px !important;
  }
}
