/* ✅ Professional Construction Template with Green Theme */
@charset "UTF-8";

/* ===========================================
   CUSTOM GREEN COLOR SCHEME
=========================================== */
:root {
  /* Professional Green Theme */
  --primary-green: #2e7d32;
  --primary-green-dark: #1b5e20;
  --primary-green-light: #4caf50;
  --accent-green: #388e3c;
  --secondary-green: #81c784;
  --light-green: #e8f5e9;
  --dark-green: #1b3c1f;
  
  /* Fonts */
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --heading-font: "Ubuntu", sans-serif;
  --nav-font: "Lato", sans-serif;
  
  /* Global Colors */
  --background-color: #f8f9fa;
  --default-color: #333333;
  --heading-color: #1a1a1a;
  --accent-color: var(--primary-green);
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  
  /* Nav Colors (Green Theme) */
  --nav-color: #333333;
  --nav-hover-color: var(--primary-green);
  --nav-background: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #333333;
  --nav-dropdown-hover-color: var(--primary-green);
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  scroll-behavior: smooth;
}

/* ===========================================
   PRESET BACKGROUNDS
=========================================== */
.light-background {
  --background-color: #f1f8e9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: var(--dark-green);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2e3b2e;
  --contrast-color: #ffffff;
}

/* ===========================================
   BASE STYLES
=========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Links */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition-normal);
}

a:hover {
  color: var(--primary-green-dark);
  text-decoration: none;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-2px);
}

/* ===========================================
   HEADER & NAVIGATION
=========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--nav-background);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

/* Enhanced Navigation Bar */
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.header .topbar {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
  color: white;
  padding: 8px 0;
  font-size: 14px;
  transition: var(--transition-normal);
}

.header .topbar .contact-info i {
  font-style: normal;
  color: white;
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: white;
}

.header .topbar .contact-info i a:hover {
  color: var(--light-green);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: rgba(255, 255, 255, 0.8);
  margin-left: 15px;
  font-size: 16px;
}

.header .topbar .social-links a:hover {
  color: white;
  transform: translateY(-2px);
}

.header .branding {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header .logo h1 {
  font-size: 32px;
  color: var(--primary-green);
  margin: 0;
}

.header .logo h1 .sitename {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation Menu */
.navmenu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.navmenu li {
  position: relative;
}

.navmenu a {
  color: var(--nav-color);
  padding: 15px 20px;
  font-family: var(--nav-font);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navmenu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary-green);
  transition: var(--transition-normal);
  transform: translateX(-50%);
}

.navmenu a:hover::before,
.navmenu .active::before {
  width: calc(100% - 40px);
}

.navmenu a:hover,
.navmenu .active {
  color: var(--primary-green);
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  color: var(--primary-green);
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition-normal);
}

.mobile-nav-toggle:hover {
  color: var(--primary-green-dark);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  .navmenu ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 80px 20px 20px;
    gap: 0;
    overflow-y: auto;
  }
  
  .navmenu a {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 18px;
  }
  
  .mobile-nav-active .navmenu ul {
    display: flex;
  }
}

/* ===========================================
   HERO SECTION
=========================================== */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(46, 125, 50, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero .subtitle {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-green);
  color: white;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--heading-color), var(--primary-green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}
/* Swiper Hero Slider Styles */
/* Fix height issue */
.hero .col-lg-6 {
  min-height: 500px;
}
.hero-slider {
  height: 100%;
}
/* Debug styling - remove in production */

.hero-slider {
    position: relative;
    border-radius: 20px;
    height: 500px; /* Adjust as needed */
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    margin: 20px;
    opacity: 1 !important;
  visibility: visible !important;
}

.hero-slider .swiper-slide {
    position: relative;
    
    overflow: hidden;
    width: 100% !important;
    height: 100% !important;
}



.hero-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slider .swiper-slide-active img {
    transform: scale(1.05);
}

.hero-slider .image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border-left: 5px solid var(--primary-green);
    max-width: 250px;
    animation: slideInFromRight 0.8s ease 0.5s both;
}

.hero-slider .image-badge span {
    display: block;
    width: 40px;
    height: 4px;
    background: var(--primary-green);
    margin-bottom: 10px;
    border-radius: 2px;
}

.hero-slider .image-badge p {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Swiper navigation */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: white;
    background: rgba(46, 125, 50, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--primary-green);
    transform: scale(1.1);
}

/* Swiper pagination */
.hero-slider .swiper-pagination {
    bottom: 20px !important;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary-green);
    width: 30px;
    border-radius: 6px;
}

/* Animation for image badges */
@keyframes slideInFromRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-slider .swiper-slide {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        margin: 0;
        border-radius: 10px;
    }
    
    .hero-slider .swiper-slide {
        height: 350px;
    }
    
    .hero-slider .image-badge {
        bottom: 15px;
        right: 15px;
        padding: 15px 20px;
        max-width: 200px;
    }
    
    .hero-slider .image-badge p {
        font-size: 16px;
    }
    
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
        display: none; /* Hide arrows on mobile */
    }
}

@media (max-width: 480px) {
    .hero-slider .swiper-slide {
        height: 300px;
    }
    
    .hero-slider .image-badge {
        bottom: 10px;
        right: 10px;
        padding: 12px 15px;
        max-width: 180px;
    }
    
    .hero-slider .image-badge p {
        font-size: 14px;
    }
}
.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition-normal);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--primary-green);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.badge-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.badge-item i {
  font-size: 24px;
  color: var(--primary-green);
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.count {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-green);
}

.label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===========================================
   ABOUT SECTION
=========================================== */
.about {
  padding: 100px 0;
  position: relative;
}

/* ===========================================
   BUILDING EXCELLENCE SECTION - CENTERED & TYPING EFFECT
=========================================== */

/* Center align the entire section */
.about-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Building Excellence Header Styling */
.about-content h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    text-align: center;
    width: 100%;
}

/* Animated underline */
.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    border-radius: 3px;
    animation: underline-grow 1s ease forwards 1.5s;
    opacity: 0;
}

@keyframes underline-grow {
    0% {
        width: 0;
        opacity: 1;
    }
    100% {
        width: 100px;
        opacity: 1;
    }
}

/* Typing cursor effect */
.about-content h2.typing::after {
    content: '|';
    position: absolute;
    right: -20px;
    bottom: 5px;
    color: var(--primary-green);
    font-size: 3rem;
    animation: blink 1s infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Paragraph styling for centered layout */
.about-content .lead {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-content .lead.visible {
    opacity: 1;
    transform: translateY(0);
}
/* FIX: show About text (it was hidden) */
.about-content .lead,
.about-content p:not(.lead) {
  opacity: 1 !important;
  transform: none !important;
}

.about-content p:not(.lead) {
    color: #666;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-content p:not(.lead).visible {
    opacity: 1;
    transform: translateY(0);
}

/* Achievement boxes grid - centered */
.achievement-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px !important;
}

.achievement-boxes .col-6 {
    flex: 0 0 auto;
    width: auto;
    min-width: 200px;
}

.achievement-box {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    min-width: 180px;
    opacity: 0;
    transform: translateY(30px);
}

.achievement-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.achievement-box h3 {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 800;
    line-height: 1;
}

.achievement-box p {
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin: 0;
}

/* CTA Button centered */
.cta-container {
    text-align: center;
    margin-top: 50px;
}

.cta-container .btn-primary {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
}

.cta-container .btn-primary.visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.cta-container .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content h2 {
        font-size: 2.5rem;
    }
    
    .achievement-boxes {
        gap: 20px;
    }
    
    .achievement-boxes .col-6 {
        width: calc(50% - 20px);
        min-width: auto;
    }
    
    .achievement-box h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 2rem;
    }
    
    .achievement-boxes .col-6 {
        width: 100%;
        max-width: 250px;
    }
    
    .achievement-box {
        padding: 30px 20px;
    }
}

/* Typing animation delay for characters */
.about-content h2 span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s forwards;
}

/* Individual character animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

.about .lead {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.achievement-boxes {
  margin-top: 40px;
}

.achievement-box {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.achievement-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-green);
}

.achievement-box h3 {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.achievement-box p {
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.cta-container {
  text-align: center;
  margin-top: 50px;
}

/* ===========================================
   SERVICES SECTION
=========================================== */
.services {
  padding: 100px 0;
  background: var(--light-green);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-green);
  border-radius: 2px;
}

.section-title p {
  color: #666;
  max-width: 600px;
  margin: 20px auto 0;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
  opacity: 0;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-green);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border: 2px solid var(--primary-green);
  transform: scale(1.05);
}

.service-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.service-badge {
  position: absolute;
  top: 2px;
  right: 0px;
  margin: 0 auto;
  background: var(--primary-green);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon i {
  font-size: 32px;
  color: var(--primary-green);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.service-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 14px;
}

.service-features i {
  color: var(--primary-green);
  font-size: 12px;
}

/* ===========================================
   ABOUT US SECTION (Enhanced)
=========================================== */
#about-us.about-us {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

#about-us.about-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(600px 300px at 10% 15%, rgba(46, 125, 50, 0.08), transparent 60%),
    radial-gradient(700px 350px at 90% 55%, rgba(46, 125, 50, 0.06), transparent 60%);
  pointer-events: none;
}

#about-us .about-heading {
  font-size: 2rem;
  margin-bottom: 20px;
}

#about-us .about-heading::after {
  background: var(--primary-green);
  width: 60px;
  height: 4px;
}

#about-us .about-lead {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

#about-us .about-text {
  color: #666;
  line-height: 1.8;
}

/* Make paragraphs initially invisible */
.about-lead,
.about-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When typing is done, paragraphs become visible */
.about-copy .about-heading.typed ~ .about-lead,
.about-copy .about-heading.typed ~ .about-text {
    opacity: 1;
    transform: translateY(0);
}

/* Icon boxes */
#about-us .icon-box {
  background: white;
  border: 1px solid rgba(46, 125, 50, 0.1);
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

#about-us .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 125, 50, 0.3);
}

#about-us .icon-box .icon {
  background: rgba(46, 125, 50, 0.1);
}
.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; /* This ensures the text is centered under the icon */
}

.icon-box .icon {
    margin-bottom: 10px; /* Space between icon and heading */
}


.icon-box .icon {
    width: 60px; /* Make the icon area a bit larger */
    height: 60px;
    background-color: var(--primary-green); /* Use your theme color */
    color: white;
    border-radius: 50%; /* Circular icon background */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.5rem; /* Adjust icon size */
}

/* Optional: add a subtle hover effect */
.icon-box .icon:hover {
    background-color: var(--primary-green-dark);
}


#about-us .icon-box .icon i {
  color: var(--primary-green);
}

#about-us .icon-box h4 {
  color: var(--heading-color);
}

/* Stats box */
#about-us .stats-box {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 30px;
  border: 1px solid rgba(46, 125, 50, 0.1);
}

#about-us .stats-item {
  background: rgba(46, 125, 50, 0.05);
  border: 1px solid rgba(46, 125, 50, 0.15);
}

#about-us .stats-ico {
  background: rgba(46, 125, 50, 0.1);
}

#about-us .stats-ico i {
  color: var(--primary-green);
}

#about-us .stats-meta h2 {
  color: var(--primary-green);
}

#about-us .stats-note i {
  color: var(--primary-green);
}

/* ===========================================
   CALL TO ACTION SECTION
=========================================== */
.call-to-action {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light-green) 0%, #e8f5e9 100%);
  position: relative;
}

.call-to-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(46, 125, 50, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  color: var(--heading-color);
  margin-bottom: 10px;
}

.form-header p {
  color: #666;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--default-font);
  font-size: 16px;
  transition: var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.contact-alternative {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: none;
}

.phone-link:hover {
  color: var(--primary-green-dark);
}

.trust-indicators {
  margin-top: 50px;
}

.trust-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: rgba(46, 125, 50, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.trust-icon i {
  font-size: 24px;
  color: var(--primary-green);
}

.trust-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 5px;
}

.trust-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===========================================
   FOOTER
=========================================== */
.footer {
  background: var(--dark-green);
  color: white;
  padding: 80px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
}

.footer-top {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about .logo span {
  font-size: 28px;
  color: white;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
}

.footer .social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  margin-right: 10px;
}

.footer .social-links a:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
  transform: translateY(-3px);
}

.footer h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-green);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links ul a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.footer-contact strong {
  color: white;
}

.copyright {
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
}

.copyright p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.copyright .sitename {
  color: var(--primary-green-light);
}

.credits {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.credits a {
  color: var(--primary-green-light);
}

.credits a:hover {
  color: white;
}

/* ===========================================
   SCROLL TOP BUTTON
=========================================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-normal);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-green-dark);
  transform: translateY(-5px);
}

/* ===========================================
   PRELOADER
=========================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader::after {
  content: '';
  width: 60px;
  height: 60px;
  border: 4px solid var(--light-green);
  border-top-color: var(--primary-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===========================================
   ANIMATIONS & RESPONSIVE
=========================================== */
[data-aos] {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero {
    padding: 140px 0 80px;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card.featured {
    transform: none;
  }
  
  .service-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .form-actions {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .trust-badges {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    margin-bottom: 30px;
  }
  
  .footer .col-lg-2,
  .footer .col-lg-3 {
    margin-bottom: 30px;
  }
}

/* ===========================================
   HERO SECTION BUTTONS & BADGES ENHANCEMENT
=========================================== */

/* Hero Buttons - Modern Style */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin: 30px 0 40px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
}

/* Primary Button (Send Request) */
.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    position: relative;
    z-index: 1;
}

.hero-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.hero-buttons .btn-primary:hover::before {
    opacity: 1;
}

.hero-buttons .btn-primary:active {
    transform: translateY(-1px);
}

/* Secondary Button (Our Projects) */
.hero-buttons .btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-green);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.hero-buttons .btn-secondary:hover {
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.2);
}

.hero-buttons .btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.hero-buttons .btn-secondary:active {
    transform: translateY(-1px);
}

/* Button icons */
.hero-buttons .btn-primary i,
.hero-buttons .btn-secondary i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hero-buttons .btn-primary:hover i {
    transform: translateX(3px);
}

.hero-buttons .btn-secondary:hover i {
    transform: translateX(3px) rotate(5deg);
}

/* Trust Badges - Enhanced with Larger Icons */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.badge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.badge-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(46, 125, 50, 0.3);
}

.badge-item:hover::before {
    transform: scaleX(1);
}

/* Badge Icons - Much Larger */
.badge-item i {
    font-size: 48px; /* Increased from 24px */
    color: var(--primary-green);
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(76, 175, 80, 0.05));
    border-radius: 50%;
    transition: all 0.4s ease;
}

.badge-item:hover i {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.15), rgba(76, 175, 80, 0.1));
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.count {
    font-size: 36px; /* Increased */
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    font-family: var(--heading-font);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    max-width: 150px;
    line-height: 1.4;
}

/* About Us Section Stats */
#about-us .stats-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(46, 125, 50, 0.05);
    border: 1px solid rgba(46, 125, 50, 0.15);
    transition: all 0.3s ease;
}

#about-us .stats-item:hover {
    transform: translateX(5px);
    background: rgba(46, 125, 50, 0.08);
    border-color: rgba(46, 125, 50, 0.25);
}

#about-us .stats-ico {
    width: 60px; /* Increased */
    height: 60px; /* Increased */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 125, 50, 0.12);
    flex-shrink: 0;
}

#about-us .stats-ico i {
    font-size: 28px; /* Increased from 18px */
    color: var(--primary-green);
}

#about-us .stats-meta h2 {
    font-size: 32px; /* Increased */
    color: var(--primary-green);
    margin-bottom: 5px;
    font-weight: 800;
}

#about-us .stats-meta p {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Send Request Button in Stats Box */
#about-us .stats-box .btn-primary {
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

#about-us .stats-box .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

#about-us .stats-box .btn-primary i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

#about-us .stats-box .btn-primary:hover i {
    transform: translateX(3px);
}

/* Achievement Boxes in About Section */
.achievement-box {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.achievement-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.achievement-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.achievement-box:hover::before {
    transform: scaleX(1);
}

.achievement-box h3 {
    font-size: 48px; /* Larger */
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 800;
    font-family: var(--heading-font);
    line-height: 1;
}

.achievement-box p {
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

/* ===========================================
   RESPONSIVE DESIGN FOR BUTTONS & BADGES
=========================================== */

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .badge-item {
        flex-direction: row;
        text-align: left;
        padding: 25px;
    }
    
    .badge-item i {
        width: 60px;
        height: 60px;
        font-size: 36px;
        margin-bottom: 0;
        margin-right: 20px;
        flex-shrink: 0;
    }
    
    .badge-text {
        align-items: flex-start;
    }
    
    .count {
        font-size: 32px;
    }
    
    #about-us .stats-item {
        padding: 15px;
    }
    
    #about-us .stats-ico {
        width: 50px;
        height: 50px;
    }
    
    #about-us .stats-ico i {
        font-size: 24px;
    }
    
    .achievement-box h3 {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 14px 25px;
        font-size: 15px;
        min-width: 160px;
    }
    
    .badge-item i {
        width: 50px;
        height: 50px;
        font-size: 30px;
        margin-right: 15px;
    }
    
    .count {
        font-size: 28px;
    }
    
    .label {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .achievement-box {
        padding: 30px 15px;
    }
    
    .achievement-box h3 {
        font-size: 36px;
    }
    
    .achievement-box p {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
}

/* ===========================================
   ANIMATION EFFECTS
=========================================== */

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-item i {
    animation: float 3s ease-in-out infinite;
}

.badge-item:nth-child(2) i {
    animation-delay: 0.5s;
}

.badge-item:nth-child(3) i {
    animation-delay: 1s;
}

.achievement-box:hover i {
    animation: none;
    transform: scale(1.2);
}

/* Button loading animation */
@keyframes button-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-buttons .btn-primary.loading i,
.hero-buttons .btn-secondary.loading i {
    animation: button-loading 1s linear infinite;
}

/* Pulse animation for badges */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 125, 50, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0);
    }
}

.badge-item i {
    position: relative;
}

.badge-item i::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: -1;
}

/* ===========================================
   STATS BOX - ENHANCED STYLING
=========================================== */

.stats-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
    border-radius: 24px;
    border: 2px solid rgba(46, 125, 50, 0.15);
    padding: 35px;
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green), var(--primary-green));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.stats-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(46, 125, 50, 0.15);
    border-color: rgba(46, 125, 50, 0.25);
}

.stats-title {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px dashed rgba(46, 125, 50, 0.2);
}

.stats-title h4 {
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.stats-title h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 2px;
}

.stats-title p {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
    font-style: italic;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    border: 2px solid rgba(46, 125, 50, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-green);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.stats-item:hover {
    transform: translateX(10px);
    border-color: rgba(46, 125, 50, 0.3);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.1);
    background: rgba(46, 125, 50, 0.03);
}

.stats-item:hover::before {
    transform: scaleY(1);
}

.stats-ico {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.15), rgba(76, 175, 80, 0.08));
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stats-ico::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stats-item:hover .stats-ico {
    transform: scale(1.1) rotate(5deg);
}

.stats-item:hover .stats-ico::before {
    opacity: 0.1;
}

.stats-ico i {
    font-size: 32px;
    color: var(--primary-green);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.stats-item:hover .stats-ico i {
    color: var(--primary-green-dark);
    transform: scale(1.1);
}

.stats-meta {
    flex: 1;
}

.stats-meta h2 {
    font-size: 42px;
    color: var(--primary-green);
    margin: 0;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--heading-font);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stats-item:hover .stats-meta h2 {
    color: var(--primary-green-dark);
    transform: scale(1.05);
}

.stats-meta p {
    font-size: 15px;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    transition: all 0.3s ease;
}

.stats-item:hover .stats-meta p {
    color: var(--primary-green-dark);
    letter-spacing: 1.8px;
}

/* Send Request Button in Stats Box */
.stats-box .btn-primary {
    padding: 18px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.25);
}

.stats-box .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stats-box .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(46, 125, 50, 0.35);
}

.stats-box .btn-primary:hover::before {
    opacity: 1;
}

.stats-box .btn-primary span {
    position: relative;
    z-index: 1;
}

.stats-box .btn-primary i {
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.stats-box .btn-primary:hover i {
    transform: translateX(5px) rotate(-10deg);
}

.stats-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px dashed rgba(46, 125, 50, 0.2);
    color: #666;
    font-size: 15px;
    font-style: italic;
    transition: all 0.3s ease;
}

.stats-box:hover .stats-note {
    color: var(--primary-green);
}

.stats-note i {
    font-size: 20px;
    color: var(--primary-green);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.stats-box:hover .stats-note i {
    transform: rotate(15deg);
}

.stats-note span {
    line-height: 1.5;
}

/* Responsive Design for Stats Box */
@media (max-width: 992px) {
    .stats-box {
        padding: 30px;
        margin-top: 40px;
    }
    
    .stats-item {
        padding: 18px;
    }
    
    .stats-ico {
        width: 60px;
        height: 60px;
    }
    
    .stats-ico i {
        font-size: 28px;
    }
    
    .stats-meta h2 {
        font-size: 36px;
    }
    
    .stats-meta p {
        font-size: 14px;
    }
    
    .stats-box .btn-primary {
        padding: 16px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .stats-box {
        padding: 25px;
    }
    
    .stats-title h4 {
        font-size: 24px;
    }
    
    .stats-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px;
    }
    
    .stats-ico {
        width: 65px;
        height: 65px;
    }
    
    .stats-item:hover {
        transform: translateY(-5px) translateX(0);
    }
    
    .stats-meta h2 {
        font-size: 40px;
    }
    
    .stats-meta p {
        font-size: 14px;
        letter-spacing: 1.2px;
    }
    
    .stats-note {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .stats-box {
        padding: 20px;
    }
    
    .stats-title h4 {
        font-size: 22px;
    }
    
    .stats-item {
        padding: 20px;
    }
    
    .stats-ico {
        width: 55px;
        height: 55px;
    }
    
    .stats-ico i {
        font-size: 24px;
    }
    
    .stats-meta h2 {
        font-size: 32px;
    }
    
    .stats-meta p {
        font-size: 13px;
        letter-spacing: 1px;
    }
    
    .stats-box .btn-primary {
        padding: 14px;
        font-size: 15px;
    }
}

/* Animation for stats items on page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.stats-item:nth-child(1) { animation-delay: 0.1s; }
.stats-item:nth-child(2) { animation-delay: 0.2s; }
.stats-item:nth-child(3) { animation-delay: 0.3s; }

/* Pulse animation for stats numbers */
@keyframes number-pulse {
    0% {
        text-shadow: 0 2px 4px rgba(46, 125, 50, 0.2);
    }
    50% {
        text-shadow: 0 4px 8px rgba(46, 125, 50, 0.4);
    }
    100% {
        text-shadow: 0 2px 4px rgba(46, 125, 50, 0.2);
    }
}

.stats-meta h2 {
    animation: number-pulse 3s ease-in-out infinite;
}

.stats-item:hover .stats-meta h2 {
    animation: none;
}