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

:root {
    --color-primary: #ECFAE5;
    --color-secondary: #65DB77;
    --color-tertiary: #B0DB9C;
    --color-accent: #CAE8BD;
    --color-dark: #2c3e50;
    --color-text: #34495e;
    --color-text-light: #7f8c8d;
    --color-white: #ffffff;
    --color-shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Top Navigation */
.top-nav {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-nav .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-nav-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.social-icons {
    display: flex;
    gap: var(--spacing-xs);
}

.social-icons a {
    color: var(--color-text);
    font-size: 0.9rem;
    padding: var(--spacing-xs);
    border-radius: 50%;
    /* background: rgba(255, 255, 255, 0.2); */
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    /* background: var(--color-accent); */
    color: var(--color-white);
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.email {
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Main Navigation */
.main-nav {
    background: var(--color-white);
    padding: var(--spacing-sm) 0;
    box-shadow: 0 2px 10px var(--color-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-nav.hidden {
    transform: translateY(-100%);
}

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

.nav-logo .logo {
    height: 30px;  width: auto;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.nav-logo .logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px var(--color-shadow);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover {
    color: var(--color-text);
    background: rgba(152, 168, 248, 0.1);
    transform: translateY(-2px);
}

/* Unique hover effects for each menu item */
.nav-item:nth-child(1) .nav-link:hover {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-tertiary));
}

.nav-item:nth-child(2) .nav-link:hover {
    background: linear-gradient(135deg, var(--color-tertiary), var(--color-accent));
}

.nav-item:nth-child(3) .nav-link:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.nav-item:nth-child(4) .nav-link:hover {
    background: linear-gradient(135deg, var(--color-accent), var(--color-tertiary));
}

.nav-item:nth-child(5) .nav-link:hover {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

.nav-item:nth-child(6) .nav-link:hover {
    background: linear-gradient(135deg, var(--color-tertiary), var(--color-secondary));
}

.nav-item:nth-child(7) .nav-link:hover {
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(152, 168, 248, 0.2));
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
    color: var(--color-white);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    animation: slideInUp 1s ease-out;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.2s both;
}

.cta-button {
    background: linear-gradient(135deg, var(--color-accent), var(--color-tertiary));
    color: var(--color-white);
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    animation: slideInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(152, 168, 248, 0.4);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

/* hero section ends here */

/* 1st section starts from here */
   .Product-container {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
  background: linear-gradient(135deg, #65db77a9 0%, #b0db9cad 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 128, 0, 0.05);
}

/* Header Section */
.header-text {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
  animation: fadeUp 1.2s ease forwards;
}

.section-heading {
  font-size: 32px;
  font-weight: 700;
  color: #033b09;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-text p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.8;
}

.highlight {
  font-weight: 700;
  color: #ffffff;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 0 40px;
}

/* Card Style */
.card {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 128, 0, 0.08);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  position: relative;
  animation: fadeUp 1s ease both;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 128, 0, 0.15);
}

/* Decorative glowing particle effect */
.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(101,219,119,0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.card:hover::before {
  opacity: 1;
}

/* Image Wrapper */
.card-image-wrapper {
  width: 100%;
  height: 150px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #ebf5ef, #dff9e4);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.card:hover .card-image {
  transform: scale(1.15);
}

/* Title */
.card-title {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: #066b1f;
  margin: 18px 0;
  letter-spacing: 0.4px;
  position: relative;
  display: inline-block;
  width: 100%;
  transition: color 0.3s ease;
}

.card-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #45c96b, #b7f5cc);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.card:hover .card-title {
  color: #00a12f;
}
.card:hover .card-title::after {
  width: 50%;
}

/* Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-heading {
    font-size: 26px;
  }
  .header-text p {
    font-size: 15px;
  }
}
/* 1st section ends here */

/* 2nd section starts from here */

.stats-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px;
}

.card1 {
  border-radius: 20px;
  padding: 30px;
  color: #0b0b0b;
  max-width: 320px;
  min-height: 220px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card1:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.left-card, .right-card {
  background: #f1f1f1;
  color: #0b0b2f;
}

.left-card p,
.right-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.8;
}

.left-card h2,
.right-card h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0a0a2a;
}

.left-card span,
.right-card span {
  font-weight: 500;
  font-size: 20px;
}

.center-card {
  background: url("/Images/Solution1.png") center/cover no-repeat;
  position: relative;
  color: #fff;
  height: 420px;
  width: 280px;
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.center-card .overlay {
  /* background: rgba(0, 0, 0, 0.4); */
  border-radius: 24px;
  padding: 30px 20px;
  width: 100%;
}

.center-card h2 {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 700;
}

.center-card span {
  font-weight: 500;
  font-size: 20px;
}

.center-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .stats-section {
    flex-direction: column;
  }
  .center-card {
    order: -1;
  }
}


/* 2nd section ends here */


/* Footer */
.footer {
    border-top: 1px solid rgba(177, 177, 177, 0.325);
    background: var(--color-white);
    color: var(--color-dark);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    
}

.footer-logo {
    height: 60px;
    margin-bottom: var(--spacing-sm);
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-left p {
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.7;
}

.footer-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

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

.footer-column li {
    margin-bottom: var(--spacing-xs);
}

.footer-column a {
    color: var(--color-dark);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--color-secondary);
}

.footer-social {
    display: flex;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-xs);

}

.footer-social a {
    padding: var(--spacing-xs);
    /* background: rgba(0, 0, 0, 0.1); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);

}

/* .footer-social a:hover {
    background: var(--color-accent);
} */

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    z-index: 1001;
}

.whatsapp-float,
.back-to-top {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-white);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float {
    background: #25D366;
    margin-bottom: var(--spacing-xs);
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.back-to-top {
    background: var(--color-accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-tertiary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(152, 168, 248, 0.4);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        gap: var(--spacing-lg);
    }
    
    .stats {
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .top-nav-right {
        flex-direction: column;
        gap: var(--spacing-xs);
        align-items: flex-end;
    }
    
    .main-nav .container {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: var(--spacing-xs);
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats {
        justify-content: center;
        gap: var(--spacing-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-menu {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-xs);
    }
    
    .top-nav {
        padding: 0.3rem 0;
    }
    
    .social-icons {
        gap: 0.3rem;
    }
    
    .social-icons a {
        font-size: 0.8rem;
        padding: 0.3rem;
    }
    
    .email {
        font-size: 0.8rem;
    }
    
    .main-nav {
        padding: var(--spacing-xs) 0;
    }
    
    .nav-logo .logo {
        height: 35px;
    }
    
    .nav-menu {
        gap: var(--spacing-xs);
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-md);
    }
    
    .cta-button {
        padding: 0.7rem var(--spacing-md);
        font-size: 0.9rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .product-card {
        padding: var(--spacing-md);
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .product-card h3 {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .stat-item h4 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .footer-left {
        margin-bottom: var(--spacing-lg);
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .floating-buttons {
        bottom: var(--spacing-sm);
        right: var(--spacing-sm);
    }
    
    .whatsapp-float,
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0.3rem;
    }
    
    .nav-link {
        display: block;
        text-align: center;
        width: 100%;
    }
}