*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
   }
   html{
    scroll-behavior: smooth;
   }
   body{
       margin: 0;
       padding: 0;
       overflow-x: hidden;
        font-family: "Montserrat", sans-serif;
   }
   body::-webkit-scrollbar{
       display: none;
   }

.hero{
    height: 90vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/hero.jpg);
}
.subhero{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.726);
}
.subhero h1{
    font-size: 50px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.823);
}
.subhero p{
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.53);
}
.subhero a{
    text-decoration: none;
    padding: 12px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0px;
    color: white;
    background-color: rgb(45, 107, 4);
}
.features-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px;
}

/* Base Card Setup (Glassmorphism Effect) */
.card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  color: #ffffff;
  
  /* Glassmorphism core properties */
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  
  /* Smooth professional transitions */
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

/* Base Icon Wrapper Setup */
.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.icon-wrapper svg {
  width: 45px;
  height: 45px;
}

/* Hover Animation Effect for all cards */
.card-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card-item:hover .icon-wrapper {
  transform: scale(1.15) rotate(5deg);
}

/* ==========================================================================
   INDIVIDUAL DIVISION CUSTOMIZATION (Tweak sizes and colors separately here)
   ========================================================================== */

/* --- Card 1: 100% Natural --- */
.card-natural {
  width: 320px;
  height: 220px;
}
.icon-natural {
  color: rgb(45, 107, 4); /* Vibrant Leaf Green */
  filter: drop-shadow(0 0 8px rgba(74, 222, 128, 0.4));
}
.title-natural {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
  color: rgb(45, 107, 4);
}
.desc-natural {
  font-size: 0.95rem;
  color: rgb(50,47,48);
  margin: 0;
  font-weight: 600;
}

/* --- Card 2: Global Export --- */
.card-global {
  width: 340px;  /* Intentionally wider to show separation */
  height: 220px;
}
.icon-global {
  color: #60a5fa; /* Vibrant Global Blue */
  filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.4));
}
.title-global {
  color: #60a5fa;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
}
.desc-global {
  font-size: 0.95rem;
  color: rgb(50,47,48);
  font-weight: 600;
  margin: 0;
}

/* --- Card 3: Premium Quality --- */
.card-premium {
  width: 320px;
  height: 240px; /* Intentionally taller to show separation */
}
.icon-premium {
  color: #facc15; /* Vibrant Premium Gold */
  filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.4));
}
.title-premium {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
  color: #facc15;
}
.desc-premium {
  font-size: 0.95rem;
  color: rgb(50,47,48);
  font-weight: 600;
  margin: 0;
}
.header-section-container {
  width: 100%;
  height: auto; /* Adapts dynamically, or set an exact pixel height like 400px if needed */
  min-height: 350px; 
  background-color:white; /* Subtle off-white/green tint background */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  overflow: hidden;
}

/* Inner text wrapper to handle overall alignment and layout boundaries */
.text-content-wrapper {
  width: 100%;
  max-width: 900px; /* Restricts line-length for optimal readability */
  height: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* --- Element 1: "Premium Natural Products" --- */
.main-title-primary {
  font-size: 3.2rem;
  font-weight: 700;
  color: #0f172a; /* Deep elegant dark slate/navy */
  margin-bottom: 0px;
  padding: 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
  
  /* Entrance Animation */
  animation: slideFadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  
  /* Smooth transition for hover effects */
  transition: transform 0.3s ease, color 0.3s ease;
}

/* --- Element 2: "Indian Export Quality" --- */
.main-title-highlight {
  font-size: 3.2rem;
  font-weight: 700;
  color: rgb(45, 107, 4); /* Vibrant emerald green matching the original image */
  margin-bottom: 20px;
  padding: 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
  /* Entrance Animation (Slightly delayed for a staggered rhythm) */
  animation: slideFadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
  opacity: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* --- Element 3: The Description Paragraph --- */
.section-description-text {
  font-size: 1.2rem;
  font-weight: 400;
  color: #475569; /* Balanced slate gray for great contrast against dark and green titles */
  max-width: 720px;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  
  /* Entrance Animation (Delayed further to complete the story) */
  animation: slideFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
  
  transition: color 0.3s ease;
}


/* ==========================================================================
   PROFESSIONAL HOVER EFFECTS (Activates when cursor moves over the section)
   ========================================================================== */

.text-content-wrapper:hover .main-title-primary {
  color: #1e293b;
  transform: scale(1.02); /* Slight, elegant swell effect */
}

.text-content-wrapper:hover .main-title-highlight {
  transform: scale(1.03);
  filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.2)); /* Luminous green aura */
}

.text-content-wrapper:hover .section-description-text {
  color: #1e293b; /* Text slightly darkens to draw focus inward */
}


/* ==========================================================================
   KEYFRAME ANIMATIONS (Handles the professional on-load animation sequences)
   ========================================================================== */

@keyframes slideFadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.progri{
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

}
/* Single main division containing all cards */
.product-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    width: 80%;
    height: auto;
}

/* Individual Card Structural Wrapper Division */
.product-card-wrapper {
    background-color: #ffffff;
    border-radius: 16px;
    width: 380px;
    height: 540px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
    display: flex;
    flex-direction: column;
    /* Transition setup for the whole card */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Card Hover Animation Effect */
.product-card-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Image Wrapper Division */
.product-image-container {
    position: relative;
    width: 380px;
    height: 240px;
    overflow: hidden;
}

/* Separate Image Styling with Zoom Transform Animation */
.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-wrapper:hover .product-image {
    transform: scale(1.04);
}

/* Badge overlay icon element */
.product-badge-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: rgb(45, 107, 4);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Content Area Wrapper Division */
.product-content-area {
    width: 380px;
    height: 300px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

/* Separate Title element */
.product-title-text {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

/* Separate Paragraph element */
.product-description-paragraph {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    height: 66px;
    overflow: hidden;
    margin-bottom: 16px;
}

/* Features Tag Layout Wrapper Division */
.product-tags-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    height: 64px;
    align-content: flex-start;
    margin-bottom: auto;
}

/* Separate Chip / Feature Tags items */
.feature-tag-item {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
    background-color: #ecfdf5;
    color: rgb(45, 107, 4);
}

.feature-tag-more {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 6px;
    background-color: #f3f4f6;
    color: #6b7280;
}

/* Separate Action Button element */
.product-action-button {
    width: 100%;
    height: 48px;
    background-color: rgb(45, 107, 4);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

/* Button hover animation element shifts */
.product-action-button:hover {
    background-color: rgb(83, 133, 50);
}

.button-text-span {
    transition: transform 0.3s ease;
}

.button-icon-span {
    transition: transform 0.3s ease;
}

/* Multi-element hover orchestration */
.product-card-wrapper:hover .button-icon-span {
    transform: translateX(4px);
}

/* Responsive considerations if grid needs viewport wrapping */
@media (max-width: 1200px) {
    .product-grid-container {
        grid-template-columns: repeat(2, 1fr);
        width: auto;
    }
}
@media (max-width: 800px) {
    .product-grid-container {
        grid-template-columns: 1fr;
        width: auto;
    }
}
/* Outer Section Layout Wrapper Division */
.inquiry-section-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Central Rounded Card Box Element */
.inquiry-card {
    background-color: #ffffff;
    margin-top: 100px;
    height: auto;
    width: 100%;
    padding: 45px 50px;
    border-radius: 16px;
    text-align: center;
    /* Soft blur drop shadow matching the image */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 2px 10px rgba(0, 0, 0, 0.02); */
}

/* Formatted Core Title Element */
.inquiry-card-heading {
    color: #0b1f33;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

/* Formatted Description Body Text Element */
.inquiry-card-description {
    color: #4b5d6b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
    padding: 0 10px;
}

/* Button Layout Horizontal Grid Wrapper Division */
.inquiry-action-row {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Common Button Rules Element */
.inquiry-btn {
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 10px;
    min-width: 170px;
    transition: all 0.25s ease-in-out;
}

/* Solid WhatsApp Element styling */
.btn-solid-whatsapp {
    background-color: rgb(45, 107, 4);
    color: #ffffff;
    border: 2px solid rgb(45, 107, 4);
}

/* Solid Button Hover Animation */
.btn-solid-whatsapp:hover {
    background-color: rgb(83, 133, 50);
    border-color: rgb(45, 107, 4);
    transform: translateY(-1px);
}

/* Outlined Email Element styling */
.btn-outline-email {
    background-color: transparent;
    color: rgb(45, 107, 4);
    border: 2px solid rgb(45, 107, 4);
}

/* Outlined Button Hover Animation */
.btn-outline-email:hover {
    background-color: #f0fbf5;
    transform: translateY(-1px);
}

/* Responsive view adjusting logic for smaller viewports */
@media (max-width: 520px) {
    .inquiry-card {
        padding: 30px 20px;
    }
    .inquiry-action-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .inquiry-btn {
        width: 100%;
    }
}
.abo{
  height: auto;
  width: 100%;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-us-section {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

/* Top Header Block Division */
.about-header-block {
    width: 100%;
    height: auto;
    text-align: center;
}

/* Separate Main Title Element */
.about-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b1f33;
    margin-bottom: 16px;
}

/* Colored accent for title */
.title-green-accent {
    color: rgb(45, 107, 4);
}

/* Separate Sub-Tagline Element */
.about-sub-tagline {
    font-size: 18px;
    color: #556877;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Split Content Row Division */
.about-content-row {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

/* Left Side Text Column Division */
.story-text-column {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
}

/* Separate Story Heading Element */
.story-heading-text {
    font-size: 28px;
    font-weight: 700;
    color: #060607;
    margin-bottom: 20px;
}

/* Separate Story Body Paragraph Element */
.story-paragraph-item {
    font-size: 16px;
    text-align: justify;
    color: #4b5d6b;
    line-height: 1.8;
    margin-bottom: 22px;
}

/* Value Badge Feature Wrapper Division */
.value-badge-container {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

/* Circle Icon Container Element */
.value-icon-circle {
    width: 44px;
    height: 44px;
    background-color: #e6f7f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG Icon Coloring Element */
.heart-icon-svg {
    width: 20px;
    height: 20px;
    color: rgb(45, 107, 4);
}

/* Right Side Label Stack Division */
.value-text-stack {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Separate Value Title Element */
.value-title-label {
    font-size: 15px;
    font-weight: 700;
    color: #0b0d0f;
    margin-bottom: 2px;
}

/* Separate Value Subtitle Element */
.value-desc-label {
    font-size: 13px;
    color: #6b7280;
}

/* Right Side Media Feature Column Division */
.story-media-column {
    width: 50%;
    height: 380px;
}

/* Container defining image frame crop behavior */
.image-zoom-frame {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Separate Image Graphic with Animation Properties */
.story-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Media frame animation triggers */
.image-zoom-frame:hover .story-banner-image {
    transform: scale(1.05);
}

/* Responsive constraints handling */
@media (max-width: 1100px) {
    .about-us-section {
        width: 100%;
        padding: 0 20px;
    }
    .about-content-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .story-text-column, 
    .story-media-column {
        width: 100%;
        max-width: 650px;
    }
    .story-media-column {
        height: 350px;
    }
}
.vis{
  height: auto;
  width: 100%;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;

}

/* Single main horizontal wrapper division container */
.vision-mission-row {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    height: auto;
    gap: 30px;
}

/* Left side Card Structural Division Box */
.vision-card-container {
    background-color: #ebfcf2;
    border-radius: 16px;
    width: 585px;
    height: 400px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Right side Card Structural Division Box */
.mission-card-container {
    background-color: #ecf3fe;
    border-radius: 16px;
    width: 585px;
    height: 400px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Interaction Effects */
.vision-card-container:hover,
.mission-card-container:hover {
    transform: scale(1.015);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

/* Common Header Layout Wrapper Division */
.card-header-group {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Common Circle Icon Frame Element */
.header-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Color definitions for distinct icons */
.bg-green-icon {
    background-color: rgb(45, 107, 4);
}

.bg-blue-icon {
    background-color: #2563eb;
}

/* Common Inner Icon Graphic Configuration */
.header-svg-element {
    width: 22px;
    height: 22px;
    color: #ffffff;
}

/* Core Title Formatting Element */
.card-header-title {
    font-size: 24px;
    font-weight: 700;
    color: #0b1f33;
}

/* Separate Vision Paragraph Element formatting */
.vision-body-paragraph {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    text-align: justify;
}

/* Mission Content Stack Structural Division */
.mission-list-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Separate Individual List Item Flex Division Row */
.mission-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    height: auto;
}

/* Leaf Bullet Graphic Custom Element */
.leaf-list-icon {
    width: 18px;
    height: 18px;
    color: rgb(45, 107, 4);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Regular Description Item Element */
.mission-item-text {
    font-size: 15px;
    color: #374151;
    line-height: 1.5;
}

/* Distinct Bold Core Content Highlight Element */
.mission-text-bold {
    font-weight: 700;
    color: #0b1f33;
}

/* Responsive breakout logic for smaller screen structures */
@media (max-width: 1150px) {
    .vision-mission-row {
        flex-direction: column;
        width: 100%;
        max-width: 650px;
        gap: 24px;
    }
    .vision-card-container,
    .mission-card-container {
        width: 100%;
        height: auto;
        padding: 30px;
    }
}

.val{
  height: auto;
  width: 100%;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Single Outer Content Wrapper Card Division */
.values-card-wrapper {
    background-color: #ffffff;
    width: 1140px;
    height: auto;
    border-radius: 16px;
    padding: 50px 40px 60px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Header Text Structural Block Division */
.values-header-block {
    text-align: center;
    width: 100%;
}

/* Separate Main Section Title Element */
.values-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #0b1f33;
    letter-spacing: -0.5px;
}

/* Distinct color highlight accent */
.values-green-accent {
    color: rgb(45, 107, 4);
}

/* 4-Column Flex Layout Row Division */
.values-grid-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: auto;
}

/* Individual Content Column Division Box */
.value-item-column {
    width: 240px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Common Circular Icon Wrapper Frame Element */
.value-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Individual Separate Color Themes for Circles */
.icon-bg-green { background-color: rgb(45, 107, 4); }
.icon-bg-blue { background-color: #2563eb; }
.icon-bg-gold { background-color: #d97706; }
.icon-bg-purple { background-color: #8b5cf6; }

/* Common Vector SVG Layout Properties */
.value-svg-element {
    width: 26px;
    height: 26px;
    color: #ffffff;
}

/* Separate Column Title Header Element */
.value-item-heading {
    font-size: 18px;
    font-weight: 700;
    color: #0b1f33;
    margin-bottom: 12px;
}

/* Separate Core Description Text Element */
.value-item-description {
    font-size: 14px;
    color: #556877;
    line-height: 1.5;
    padding: 0 5px;
}

/* Hover Interaction Animation Rules */
.value-item-column:hover .value-icon-circle {
    transform: scale(1.1);
}

/* Responsive breakout adjustments for smaller viewport widths */
@media (max-width: 1100px) {
    .values-card-wrapper {
        width: 100%;
        max-width: 600px;
        padding: 40px 20px;
    }
    .values-grid-row {
        flex-direction: column;
        align-items: center;
        gap: 36px;
    }
    .value-item-column {
        width: 100%;
        max-width: 320px;
    }
    .value-icon-circle {
        margin-bottom: 12px;
    }
}

.whch{
  height: auto;
  width: 100%;
  margin-top: 100px;
  display: flex;
  justify-content:center;
  align-items: center;

}

/* Main Parent Division Section Container */
.why-choose-us-section {
    width: 1200px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Header Content Block Division */
.why-header-block {
    width: 100%;
    height: auto;
    text-align: center;
}

/* Separate Section Title Element */
.why-main-title {
    font-size: 34px;
    font-weight: 700;
    color: #0b1f33;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

/* Colored accent style for header */
.title-green-accent {
    color: rgb(45, 107, 4);
}

/* Separate Sub-Tagline Element */
.why-sub-tagline {
    font-size: 16px;
    color: #556877;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 2x2 Grid Layout Wrapper Division */
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
    height: auto;
}

/* Individual Card Structural Box Division */
.why-card-box {
    height: 190px;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    /* Clean transition curve for interactive hover feel */
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Micro-Interaction Card Hover Animations */
.why-card-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

/* Separate Distinct Background Classes for Cards */
.theme-light-green { background-color: #eafbf1; }
.theme-light-blue { background-color: #ecf3fe; }
.theme-light-purple { background-color: #f6f0fe; }
.theme-light-gold { background-color: #fef8e7; }

/* Common Structural Circular Icon Frame Element */
.why-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Separate Distinct Colors for Main Circular Icons */
.bg-solid-green { background-color: rgb(45, 107, 4); }
.bg-solid-blue { background-color: #2563eb; }
.bg-solid-purple { background-color: #8b5cf6; }
.bg-solid-gold { background-color: #d97706; }

/* Common Core SVG Inner Graphic Dimension Rules */
.why-main-svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

/* Right Text Layout Content Stack Division */
.why-text-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Horizontal Layout Row Division for Card Title Elements */
.why-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Separate Decorative Mini-Icon Element */
.micro-leaf-icon {
    width: 15px;
    height: 15px;
    color: rgb(45, 107, 4);
}

/* Separate Card Heading Title Element */
.why-card-heading {
    font-size: 19px;
    font-weight: 700;
    color: #0b1f33;
}

/* Separate Card Body Description Text Element */
.why-card-description {
    font-size: 14.5px;
    color: #4b5d6b;
    line-height: 1.6;
}

/* Responsive constraints handling */
@media (max-width: 1100px) {
    .why-choose-us-section {
        width: 100%;
    }
    .why-cards-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin: 0 auto;
    }
    .why-card-box {
        height: auto;
    }
}

.coni{
  height: auto;
  width: 100%;
  margin-top:100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section-container {
    width: 1200px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

/* Header Text Structural Block Division */
.contact-header-block {
    width: 100%;
    height: auto;
    text-align: center;
}

/* Separate Core Header Element */
.contact-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b1f33;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

/* Styled green span item for title accentuation */
.contact-green-accent {
    color: rgb(45, 107, 4);
}

/* Separate Subtext Tagline Description Element */
.contact-sub-tagline {
    font-size: 16px;
    color: #556877;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Horizontal Cards Grid Row Layout Division */
.contact-cards-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    gap: 24px;
}

/* Individual Content Card Structural Box Division */
.contact-info-card {
    background-color: #ffffff;
    width: 384px;
    height: 200px;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01); */
    /* Soft ease adjustment on interactions */
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Micro-Interaction Card Hover Animations */
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

/* Common Circular Frame Wrapper Layout Element */
.contact-icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* Separate Distinct Pale Card Circle Tints */
.icon-light-green { background-color: #eafbf1; }
.icon-light-blue { background-color: #ecf3fe; }
.icon-light-purple { background-color: #f6f0fe; }

/* Common Vector Stroke Rules */
.contact-svg-graphic {
    width: 22px;
    height: 22px;
}

/* Distinct Core Icon Vector Colors */
.stroke-green { color: rgb(45, 107, 4); }
.stroke-blue { color: #2563eb; }
.stroke-purple { color: #8b5cf6; }

/* Separate Card Title Element */
.contact-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0b1f33;
    margin-bottom: 6px;
}

/* Separate Direct Informational Accent Text Element */
.contact-card-highlight {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

/* Separate Base Description Subtext Element */
.contact-card-subtext {
    font-size: 13.5px;
    color: #6b7280;
}

/* Responsive constraints handling */
@media (max-width: 1100px) {
    .contact-section-container {
        width: 100%;
    }
    .contact-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .contact-info-card {
        width: 100%;
        max-width: 500px;
        height: auto;
    }
}
.faa{
  height: auto;
  width: 100%;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-section-container {
    width: 820px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Header Text Structural Block Division */
.faq-header-block {
    width: 100%;
    height: auto;
    text-align: center;
}

/* Separate Core Section Title Element */
.faq-main-title {
    font-size: 34px;
    font-weight: 700;
    color: #0b1f33;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

/* Separate Subtext Tagline Description Element */
.faq-sub-tagline {
    font-size: 16px;
    color: #556877;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Accordion Vertical Stack Wrapper Division */
.faq-accordion-stack {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Individual Accordion Item Wrapper Frame */
.faq-item-box {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
    width: 100%;
    height: auto;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Completely hide the state checkbox controllers */
.faq-state-checkbox {
    display: none;
}

/* Interactive Question Header Bar Element */
.faq-question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    user-select: none;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

/* Separate Question Text Label Component */
.question-text-span {
    font-size: 16px;
    font-weight: 700;
    color: #0b1f33;
    padding-right: 20px;
}

/* Square Status Indicator Icon Wrapper Element */
.faq-toggle-icon-frame {
    position: relative;
    width: 22px;
    height: 22px;
    background-color: rgb(45, 107, 4); /* Green color scheme matching branding */
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Base configuration for cross lines within the toggle button */
.icon-line {
    position: absolute;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.line-horizontal {
    width: 10px;
    height: 2px;
}

.line-vertical {
    width: 2px;
    height: 10px;
}

/* Animated Expansion Panel Box Area Division */
.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    /* Uses max-height transition framework to animate down cleanly without JS */
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fcfdfe;
}

/* Interior padding box keeping sizing crisp during slides */
.faq-panel-inner-content {
    padding: 0 28px 24px 28px;
    border-top: 1px solid transparent;
    transition: border-color 0.3s ease;
}

/* Separate Paragraph Text Component */
.faq-answer-paragraph {
    font-size: 15px;
    color: #4b5d6b;
    line-height: 1.7;
}

/* Separate Font Weight Accent Highlight Component */
.faq-text-bold {
    font-weight: 700;
    color: #1f2937;
}

/* ==========================================================================
   PURE CSS STATE TRIGGERS (When checkbox hidden status is checked)
   ========================================================================== */

/* 1. Modify Card Outer Wrapper borders and shadows when active */
.faq-state-checkbox:checked + .faq-item-box {
    border-color: #e2f8ed;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.04);
}

/* 2. Style active state header background tint */
.faq-state-checkbox:checked ~ .faq-question-header {
    background-color: #f4faf7; /* Soft green backdrop on open item */
}

/* 3. Change icon color frame from Green (+) to Crimson/Red (-) as in mockup */
.faq-state-checkbox:checked ~ .faq-question-header .faq-toggle-icon-frame {
    background-color: #ef4444; 
}

/* 4. Rotate vertical bar into horizontal alignment to visually form minus sign */
.faq-state-checkbox:checked ~ .faq-question-header .line-vertical {
    transform: rotate(90deg);
    opacity: 0;
}

/* 5. Open inner structural border and expand panel height constraint smoothly */
.faq-state-checkbox:checked ~ .faq-answer-panel {
    max-height: 300px; /* Safe upper threshold bound for text expansion */
}

.faq-state-checkbox:checked ~ .faq-answer-panel .faq-panel-inner-content {
    border-color: #eef2f5;
}

/* Responsive breakout logic */
@media (max-width: 860px) {
    .faq-section-container {
        width: 100%;
        padding: 0 10px;
    }
    .faq-question-header {
        padding: 18px 20px;
    }
    .faq-panel-inner-content {
        padding: 0 20px 20px 20px;
    }
}
.still{
  height: auto;
  width: 100%;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;

}

/* Single Outer Content Wrapper Card Division */
.cta-banner-container {
    background-color: #f0fbf5; /* Soft light-green tint background matching image_a11dbf.png */
    border: 1px solid #dcf4e8;   /* Subtle border layout accent line */
    width: 100%;
    max-width: 1140px;           /* Standard structural layout container width constraint */
    height: auto;
    border-radius: 20px;         /* Distinct rounded framing corners */
    padding: 56px 40px;          /* Generous vertical content buffer */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Separate Main Action Title Header Element */
.cta-main-title {
    font-size: 26px;
    font-weight: 700;
    color: #0c5132;              /* Deep dark green header text color */
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

/* Separate Core Description Text Paragraph Element */
.cta-description-text {
    font-size: 16px;
    font-weight: 400;
    color: #126e45;              /* Vibrant balanced dark green description color */
    max-width: 650px;
    line-height: 1.5;
    margin-bottom: 28px;
}

/* Action Trigger Anchor Element Button Link */
.cta-action-button {
    background-color: rgb(45, 107, 4);   /* Solid main green button theme background */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;                   /* Precise horizontal gap spacing between icon and text */
    padding: 14px 28px;
    border-radius: 10px;         /* Crisp medium edge curve */
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35); /* Soft glowing elevation shadow */
    transition: background-color 0.25s ease, transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease;
}

/* Micro-Interaction Animation Rules for Button Hover States */
.cta-action-button:hover {
    background-color: rgb(83, 133, 50);   /* Smooth tone drop shift on pointer hover */
    transform: translateY(-2px); /* Slight lift */
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.cta-action-button:active {
    transform: translateY(0);    /* Button depresses down when active clicked */
}

/* Separate Embedded Vector Icon Elements Custom Dimensions */
.cta-phone-icon {
    width: 18px;
    height: 18px;
    color: #ffffff;
    transform: rotate(0deg);     /* Straight baseline vector alignment */
}

/* Separate Core Button Accent Text Label Element */
.cta-button-text {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;              /* Crisp clean white font contrast */
    letter-spacing: -0.2px;
}

/* Responsive adjustment rules for mobile layout viewports */
@media (max-width: 768px) {
    .cta-banner-container {
        padding: 40px 24px;
        border-radius: 16px;
    }
    .cta-main-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    .cta-description-text {
        font-size: 14.5px;
        margin-bottom: 24px;
    }
    .cta-action-button {
        width: 100%;             /* Fits wide on small mobile screens */
        max-width: 280px;
        padding: 12px 20px;
    }
}
.foter{
  height: auto;
  width: 100%;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========================================================================
   MAIN STRUCTURAL FOOTER BLOCK DIVISION (Separate height and width rules)
   ========================================================================== */
.footer-block-container {
    background-color: #0b1622;         /* Deep obsidian blue backdrop matching image_a12505.png */
    width: 100%;                       /* Full screen expansion track */
    height: 480px;                     /* Distinct overall segment height constraint */
    padding: 60px 80px 40px 80px;      /* Content edge grid buffers */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* Top Section Core Layout Grid Container Row Division */
.footer-content-grid-row {
    width: 1140px;                     /* Locked standard design grid inner width */
    height: 290px;                     /* Separate grid row viewport height */
    margin: 0 auto;                    /* Centered horizontal alignment layout */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* ==========================================================================
   COLUMN 1 DIVISION: BRAND CONTENT & CONNECT DATA PANEL
   ========================================================================== */
.footer-brand-column-div {
    width: 420px;                      /* Large dimension allotment for identity profiles */
    height: 290px;                     /* Explicit height boundary layout */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Corporate Logo Horizontal Combination Header Division Box */
.footer-logo-layout-box {
    overflow: hidden;
    width: 420px;                      
    height: 44px;                      /* Compact locked header row */
    display: flex;
    align-items: center;
    gap: 14px;
    /* background-color: #059669; */
}

/* Emblem Circle Graphics Configuration */
.brand-vector-logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

/* Typography Identity Stack Box Container */
.brand-text-identity-stack {
    width: 366px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.footer-company-name-heading {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.footer-company-tagline-text {
    font-size: 13.5px;
    font-weight: 600;
    color: rgb(45, 107, 4);                    /* Branding accent green text color */
}

/* Contact List Cluster Stack Structural Box Division */
.footer-contact-directory-box {
    width: 420px;
    height: 106px;                     /* Allocated dimension profile for three lines */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Custom Horizontal Directory Line Rows */
.contact-info-line-row {
    width: 420px;
    height: 24px;                      /* Single content alignment row standard */
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-indicator-svg {
    width: 17px;
    height: 17px;
    color: rgb(45, 107, 4);                    /* Bright green accent node strokes */
    flex-shrink: 0;
}

.contact-item-label-span {
    font-size: 14.5px;
    color: #9cb0c1;                    /* Soft desaturated grey read-color contrast */
}

/* Social Media Controls Base Division Frame Block */
.footer-social-wrapper-box {
    width: 420px;
    height: 74px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.social-header-label-text {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.social-squares-layout-row {
    width: 200px;                      /* Confined width bounding the horizontal matrix */
    height: 42px;                      
    display: flex;
    gap: 10px;
}

/* Individual Squared Anchor Link Blocks Division Elements */
.social-media-square-link {
    background-color: #16222f;         /* Matte grey tinted base cells */
    width: 42px;
    height: 42px;
    border-radius: 8px;                /* Distinct smooth framing profile curvature */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.social-vector-graphic {
    width: 17px;
    height: 17px;
    color: #9cb0c1;
}

/* Micro-Interaction Hover Shifts for Social Links */
.social-media-square-link:hover {
    background-color: rgb(83, 133, 50);         /* Bright green transformation */
}
.social-media-square-link:hover .social-vector-graphic {
    color: #ffffff;                    /* Pure white graphic highlight transformation */
}

/* ==========================================================================
   COLUMNS 2 & 3 DIVISION: DIRECTORY LINK NAVIGATION MENUS
   ========================================================================== */
.footer-navigation-column-div {
    width: 180px;                      /* Tight vertical catalog width dimension rule */
    height: 260px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-products-column-div {
    width: 220px;                      /* Wider structural buffer zone for content strings */
    height: 260px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.directory-column-header-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    height: 24px;                      /* Header height text standard profile lock */
}

.directory-links-vertical-stack {
    width: 100%;
    height: 214px;                     /* Maximized dynamic layout distribution area */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Separate Action Link Typography Labels Elements */
.directory-anchor-link {
    font-size: 14.5px;
    color: #9cb0c1;
    text-decoration: none;
    height: 22px;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.directory-anchor-link:hover {
    color: #ffffff;
    padding-left: 4px;                 /* Dynamic active micro nudge animation effect */
}

/* ==========================================================================
   SEPARATOR DIVISION BOUNDARY
   ========================================================================== */
.footer-separator-line-divider {
    width: 1140px;
    height: 1px;                       /* Razor sharp wireframe dividing line */
    background-color: #162536;
    margin: 0 auto;
}

/* ==========================================================================
   BOTTOM SECTION: COPYRIGHT MANAGEMENT STRIP BLOCK DIVISION
   ========================================================================== */
.footer-bottom-copyright-strip-row {
    width: 1140px;
    height: 44px;                      /* Lower utility profile bar lock */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-textual-info-stack {
    width: 600px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.copyright-declaration-paragraph {
    font-size: 13.5px;
    color: #556b7e;
}

.nature-attribution-paragraph {
    font-size: 12.5px;
    color: #435463;
}

.heart-symbol-icon {
    color: #ef4444;                    /* Blood crimson red heart symbol glyph highlight */
}

/* Utilities Action Components Alignment Block Division */
.floating-utilities-alignment-box {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Back-To-Top Circular Automation Component Frame Division */
.utilities-back-to-top-circle-btn {
    background-color: rgb(45, 107, 4);         /* Vibrant evergreen forest foundation color tint */
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;                /* Full pixel uniform perfect sphere layout */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.utility-arrow-vector {
    width: 16px;
    height: 16px;
    color: #ffffff;
}

.utilities-back-to-top-circle-btn:hover {
    background-color: rgb(83, 133, 50);         /* Bright light shift on focus tracking pointer */
    transform: translateY(-3px);       /* Vertical pop motion layout alteration response */
}

/* Responsive breakout logic constraints for small screen viewports */
@media (max-width: 1200px) {
    .footer-block-container {
        height: auto;
        padding: 50px 20px 30px 20px;
        gap: 40px;
    }
    .footer-content-grid-row,
    .footer-separator-line-divider,
    .footer-bottom-copyright-strip-row {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
    .footer-brand-column-div,
    .footer-logo-layout-box,
    .brand-text-identity-stack,
    .footer-contact-directory-box,
    .contact-info-line-row,
    .footer-social-wrapper-box,
    .footer-navigation-column-div,
    .footer-products-column-div,
    .copyright-textual-info-stack {
        width: 100%;
        height: auto;
        gap: 16px;
    }
    .directory-links-vertical-stack {
        height: auto;
        gap: 12px;
    }
}




/* =========================
   MOBILE RESPONSIVE DESIGN
   ========================= */
@media (max-width: 768px) {

.contact-card-highlight {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

    /* Hero */
    .hero {
        height: auto;
        min-height: 70vh;
    }

    .subhero {
        padding: 40px 20px;
        text-align: center;
    }

    .subhero h1 {
        font-size: 32px;
        line-height: 1.3;
        text-align: center;
    }

    .subhero p {
        font-size: 16px;
        width: 100%;
    }

    /* Header Section */
    .main-title-primary,
    .main-title-highlight {
        font-size: 2rem;
    }

    .section-description-text {
        font-size: 1rem;
    }

    /* Feature Cards */
    .features-container {
        padding: 20px;
    }

    .card-natural,
    .card-global,
    .card-premium {
        width: 100%;
        max-width: 350px;
        height: auto;
        min-height: 220px;
    }

    /* Product Cards */
    .product-grid-container {
        width: 100%;
        padding: 0 15px;
    }

    .product-card-wrapper,
    .product-image-container,
    .product-content-area {
        width: 100%;
    }

    .product-card-wrapper {
        height: auto;
    }

    /* About */
    .abo,
    .vis,
    .val,
    .whch,
    .coni,
    .faa,
    .still {
        margin-top: 60px;
    }

    .about-main-title,
    .contact-main-title,
    .faq-main-title,
    .why-main-title,
    .values-main-title {
        font-size: 28px;
    }

    .story-heading-text {
        font-size: 24px;
    }

    .story-paragraph-item {
        font-size: 15px;
    }

    /* Vision & Mission */
    .vision-card-container,
    .mission-card-container {
        width: 100%;
        padding: 25px;
    }

    /* Values */
    .values-card-wrapper {
        width: 100%;
        padding: 30px 15px;
    }

    /* Why Choose Us */
    .why-card-box {
        padding: 20px;
    }

    /* Contact */
    .contact-section-container {
        width: 100%;
        padding: 0 15px;
    }

    .contact-info-card {
        width: 100%;
    }

    /* FAQ */
    .faq-section-container {
        width: 100%;
        padding: 0 15px;
    }

    .question-text-span {
        font-size: 14px;
    }

    /* CTA */
    .cta-banner-container {
        margin: 0 15px;
    }

    /* Footer */
    .footer-block-container {
        padding: 40px 20px;
    }

    .footer-content-grid-row {
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .footer-brand-column-div,
    .footer-navigation-column-div,
    .footer-products-column-div {
        width: 100%;
    }

    .footer-logo-layout-box,
    .footer-contact-directory-box,
    .footer-social-wrapper-box {
        width: 100%;
    }

    .contact-info-line-row {
        width: 100%;
        flex-wrap: wrap;
    }

    .footer-bottom-copyright-strip-row {
        width: 100%;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .copyright-textual-info-stack {
        width: 100%;
    }

    .floating-utilities-alignment-box {
        width: 100%;
        justify-content: center;
    }

    /* Dropdowns */
    .dropdown-menu-l1,
    .dropdown-menu-l2 {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin-top: 10px;
    }
}