/* 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 */
   .business-section {
      display: flex;
      max-width: 1200px;
      margin: auto;
      align-items: flex-start;
      gap: 40px;
      padding: 40px 20px;
    }

    .text-content {
      flex: 1;
    }

    .text-content p {
      font-size: 15px;
      line-height: 1.5;
      color: #000000;
      margin-bottom: 30px;
    }

    .text-content h2 {
      font-size: 32px;
      font-weight: 700;
      color: #65DB77;
      margin-bottom: 20px;
    }

    ul {
      list-style-type: square;
      padding-left: 20px;
    }

    ul li {
      margin-bottom: 15px;
      font-size: 15px;
      line-height: 1.6;
      color: #000000;
    }

    ul li strong {
      font-weight: 600;
    }

    .image-container {
      flex: 1;
    }

    .image-container img {
      width: 100%;
      height: auto;
      border-radius: 6px;
      object-fit: cover;
    }

    @media (max-width: 900px) {
      section {
        flex-direction: column;
      }
    }
/* 1st section ends here */



/* 2nd section starts from here */

 .vision-section{
    padding:56px 24px 72px;
    background:var(--color-white);
    color:var(--text);
    overflow:hidden;
    position:relative;

  }
  .vision-wrap{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns: 640px 1fr;
    align-items:start;
    column-gap:56px;
  }

  /* Left photo block with distinctive single rounded corner */
  .vision-photo{
    margin:0;
    width:640px;
    height:560px;
    border-radius:160px 0 0 0; /* big top-left radius */
    overflow:hidden;
    position:relative;
  }
  .vision-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }

  /* Right copy block */
  .vision-content{
    position:relative;
    padding-top:6px; /* align headings with photo top */
  }
  .vision-heading{
    margin:0 0 16px 0;
    line-height:1;
    position:relative;
    z-index:1;
    
  }
  .our{
    display:inline-block;
    color:#65DB77;
    font-weight:700;
    font-size: 55px;
    letter-spacing:0.5px;
    font-weight: 700;

  }
  .vision{
    display:inline-block;
    color:#65DB77;
    font-weight:600;
    font-size:112px;
    letter-spacing:0.5px;
    margin-top:8px;
    font-size: 32px;
    font-weight: 700;
  }

  /* Dark bubble card with pill right side and semicircle bulge on left */
  .vision-bubble{
    position:relative;
    background:var(--color-secondary);
    color:var(--text);
    width:560px;
    height:160px;
    border-radius:0 60px 60px 0; /* pill on right */
    margin-top:18px;
    /* overlap a bit toward the image like the reference */
    left:-110px;
    display:flex;
    align-items:center;
  }
  /* .vision-bubble::before{
    content:"";
    position:absolute;
    left:-130px; 
    top:0;
    width:260px;
    height:260px;
    border-radius:50%;
    background:inherit;
  } */
  .vision-bubble p{
    margin:0;
    padding:0 48px 0 48px;
    font-size:15px;
    line-height:1.5;
    max-width:740px;
    color: #ffffff
  }

  /* Optional: keep layout integrity on narrower screens */
  @media (max-width: 1200px){
    .vision-wrap{grid-template-columns:1fr; row-gap:28px;}
    .vision-content{padding-top:0;}
    .vision-bubble{left:0; width:100%;}
  }

/* 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%;
    }
}