*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
   }
   body{
       margin: 0;
       padding: 0;
       overflow-x: hidden;
        font-family: "Montserrat", sans-serif;
   }
   body::-webkit-scrollbar{
       display: none;
   }

/* 1. Main Section Container */
.about-section {
    width: 100%;
    height: 450px; /* Explicit section height */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Soft, clean radial gradient matching the image */
    background: radial-gradient(circle at center, #ffffff 0%, #eef7f9 70%, #edf4f8 100%);
    padding: 20px;
}

/* 2. Inner Content Division */
.about-content {
    width: 100%;
    max-width: 800px; /* Explicit width constraints */
    height: 250px;    /* Explicit height constraints */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* 3. Heading Division */
.heading-box {
    width: 100%;
    height: 70px; /* Explicit height for heading block */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.main-heading {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c; /* Deep slate/black */
    letter-spacing: -0.5px;
}

/* Green "Us" text decoration */
.highlight {
    color: rgb(45, 107, 4); /* Vibrant natural green */
}

/* 4. Paragraph Division */
.text-box {
    width: 100%;
    max-width: 620px; /* Tight width to force the exact 2-line wrap from the image */
    height: 80px;     /* Explicit height for text block */
    display: flex;
    justify-content: center;
    align-items: center;
}

.description {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568; /* Soft, readable gray */
    font-weight: 400;
}
.abosec{
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}
/* 1. Main Section Grid Block Dimensions */
.story-section {
    width: 100%;
    max-width: 1280px;
    height: auto;
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-container {
    width: 100%;
    height: auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* 2. Left Side: Image Container Dimensions */
.image-wrapper {
    width: 45%;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rounded card matching the double-layered soft glow shadow */
.main-image-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        -15px 15px 35px rgba(16, 185, 129, 0.15), 
        15px -15px 35px rgba(59, 130, 246, 0.15);
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating overlay layout inside Image */
.image-badge-box {
    position: absolute;
    bottom: 25px;
    left: 25px;
    width: calc(100% - 50px);
    height: auto;
    z-index: 10;
}

.badge-pill {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 8px;
}

.green-pill {
    background-color: rgb(45, 107, 4);
    color: #ffffff;
}

.badge-subtext {
    font-size: 13px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    padding-left: 4px;
}

/* 3. Right Side: Content Text Container Dimensions */
.content-wrapper {
    width: 55%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Trust Pill Segment */
.trust-badge-box {
    width: 100%;
    height: 32px;
}

.trust-badge {
    background-color: #e6fcf5;
    color: #0fa46f;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

/* Header Segment */
.title-box {
    width: 100%;
    height: 48px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #1e293b;
}

.text-green {
    color: rgb(45, 107, 4);
}

.text-green-dark {
    color: #0f766e;
    font-weight: 700;
}

/* Text Block Segment */
.story-text-box {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.paragraph {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    text-align: justify;
}

/* 4. Dual Grid Cards Row Block Dimensions */
.cards-row-box {
    width: 100%;
    height: 170px;
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.feature-card {
    width: 50%;
    height: 100%;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-light-green { background-color: #effbf6; }
.card-light-blue { background-color: #eef4ff; }

/* Mini Circle Icons */
.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-green { background-color: rgb(45, 107, 4); color: white; }
.icon-blue { background-color: #2563eb; color: white; }

.card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

.card-desc {
    font-size: 12.5px;
    line-height: 1.5;
    color: #64748b;
}

/* 5. CTA Button Actions Block Dimensions */
.buttons-box {
    width: 100%;
    height: 48px;
    display: flex;
    gap: 16px;
    margin-top: 15px;
}

.btn {
    height: 100%;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-filled {
    background-color: rgb(45, 107, 4);
    color: #ffffff;
    border: none;
}

.btn-filled:hover {
    background-color: rgb(83, 133, 50);
}

.btn-outlined {
    background-color: transparent;
    color: rgb(45, 107, 4);
    border: 1px solid rgb(45, 107, 4);
}

.btn-outlined:hover {
    background-color: #effbf6;
}

/* Responsive breakpoint logic for tablets and small viewports */
@media (max-width: 968px) {
    .story-container {
        flex-direction: column;
        gap: 40px;
    }
    .image-wrapper, .content-wrapper {
        width: 100%;
    }
    .image-wrapper {
        height: 380px;
    }
    .cards-row-box {
        height: auto;
        flex-direction: column;
    }
    .feature-card {
        width: 100%;
        height: auto;
    }
}


.vismissis{
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: radial-gradient(circle at top, #ffffff 0%, #f4faf7 80%, #eff7f3 100%);
}


/* 1. Main Structural Block Dimensions */
.vision-mission-section {
    width: 100%;
    max-width: 1280px;
    height: auto;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: radial-gradient(circle at top, #ffffff 0%, #f4faf7 80%, #eff7f3 100%); */
}

.vm-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* 2. Top Header Module Dimensions */
.vm-header-block {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-row {
    width: 100%;
    height: 32px;
    margin-bottom: 16px;
}

.pill-badge {
    background-color: #e1f7ed;
    color: rgb(45, 107, 4);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
}

.title-row {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.5px;
}

.highlight-green {
    color: rgb(45, 107, 4);
}

.subtitle-row {
    width: 100%;
    max-width: 650px;
    height: auto;
}

.subtitle {
    font-size: 16px;
    color: #64748b;
    line-height: 1.5;
}

/* 3. Bottom Dual Cards Container Row Dimensions */
.vm-cards-row {
    width: 100%;
    max-width: 1100px;
    height: 400px; /* Fixed height container for desktop stability */
    display: flex;
    gap: 30px;
}

/* Base Card Object Spec sheet */
.card {
    width: 50%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

/* Distinct dual drop shadows mapping exactly to the color cast in the image */
.card-vision {
    box-shadow: -15px 20px 40px rgba(16, 185, 129, 0.09);
}

.card-mission {
    box-shadow: 15px 20px 40px rgba(59, 130, 246, 0.09);
}

/* Card Header Module */
.card-header-box {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.circle-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.icon-bg-green { background-color: rgb(45, 107, 4); }
.icon-bg-blue { background-color: #2563eb; }

.card-main-heading {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

/* Card Body Details */
.card-body-box {
    width: 100%;
    height: auto;
    margin-bottom: auto; /* Pushes bottom quote box down */
}

.card-paragraph {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

/* Left Card Green Accent Callout Block */
.quote-accent-box {
    width: 100%;
    height: auto;
    background-color: #edfbf4;
    border-left: 4px solid rgb(45, 107, 4);
    border-radius: 4px 12px 12px 4px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
}

.quote-text {
    font-size: 13.5px;
    font-weight: 600;
    color: #115e59;
    line-height: 1.4;
}

/* Right Card List Block Setup */
.mission-list-box {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mission-item {
    width: 100%;
    height: 76px; /* Strict uniform height constraints for list cells */
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Context colors for rows */
.row-blue { background-color: #f1f6fe; }
.row-green { background-color: #f2faf6; }
.row-purple { background-color: #faf4fc; }

.item-icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.bg-solid-blue { background-color: #2563eb; }
.bg-solid-green { background-color: rgb(45, 107, 4); }
.bg-solid-purple { background-color: #a855f7; }

.item-text-division {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item-text-division h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.item-text-division p {
    font-size: 12px;
    color: #64748b;
}

/* Responsive adjustment layer */
@media (max-width: 968px) {
    .vm-cards-row {
        height: auto;
        flex-direction: column;
    }
    .card {
        width: 100%;
        height: auto;
    }
    .quote-accent-box {
        margin-top: 25px;
    }
}


.crore{
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}



    /* 1. Main Structural Section Dimensions */
.values-section {
    width: 100%;
    max-width: 1440px;
    height: auto;
    padding: 100px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.values-container {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px; /* Space separating header logic from value columns */
}

/* 2. Top Header Module Dimensions */
.values-header-box {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.title-row {
    width: 100%;
    height: auto;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a; /* Deep charcoal navy blue */
    letter-spacing: -0.5px;
}

.subtitle-row {
    width: 100%;
    height: auto;
}

.subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #475569; /* Soft text slate */
}

/* 3. Bottom Columns Row Box Dimensions */
.values-grid-box {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

/* Individual Value Column Dimensions */
.value-item-card {
    width: 23%; /* Evenly spreads 4 items with safety margins */
    height: 220px; /* Rigid alignment block height */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Circle Badge Dimensions & Specific Colors matching your image tint */
.icon-sphere {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.value-item-card:hover .icon-sphere {
    transform: translateY(-5px);
}

.sphere-green { background-color: #e6f9f0; color: rgb(45, 107, 4); }
.sphere-blue { background-color: #ebf3fe; color: #2563eb; }
.sphere-purple { background-color: #f5edfd; color: #8b5cf6; }
.sphere-orange { background-color: #fff4eb; color: #f97316; }

/* Content Headings Internal Block Dimensions */
.value-label-box {
    width: 100%;
    height: 28px;
    margin-bottom: 10px;
}

.value-label-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

/* Content Explainer Paragraph Internal Block Dimensions */
.value-desc-box {
    width: 100%;
    max-width: 240px; /* Constrains line length for balanced paragraphs */
    height: 48px;
}

.value-desc-box p {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
}

/* Modern responsive break flow rule for tablets and mobile viewports */
@media (max-width: 968px) {
    .values-grid-box {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    .value-item-card {
        width: 45%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .value-item-card {
        width: 100%;
    }
}


.wcu{
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #f4faf8 60%, #eef7f4 100%);
}


/* 1. Main Structural Container Bounds */
.mp-advantages-layout {
    width: 100%;
    max-width: 1440px;
    height: auto;
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Soft cyan/mint gradient matching image_b101e2.png background texture */
    
}

.mp-advantages-inner {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px; /* Uniform division spacer */
}

/* 2. Top Header Module Box Dimensions */
.mp-intro-heading-group {
    width: 100%;
    max-width: 750px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.mp-main-title-holder {
    width: 100%;
    height: 42px;
}

.mp-primary-header {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a; /* Slate-900 */
    letter-spacing: -0.5px;
}

.mp-sub-title-holder {
    width: 100%;
    height: 24px;
}

.mp-secondary-lead {
    font-size: 16px;
    color: #475569; /* Slate-600 */
    font-weight: 400;
}

/* 3. Bottom 3-Column Grid Block Dimensions */
.mp-perks-deck {
    width: 100%;
    height: 310px; /* Explicit height boundary to frame the grid row */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

/* Individual Card Division Dimensions */
.mp-perk-item-plate {
    width: 31.5%; /* Sized to perfectly spread across 3 blocks evenly */
    height: 100%;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Soft blurred ambient shadow matching the graphics layer */
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mp-perk-item-plate:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.08);
}

/* Rounded Icon Square Box Dimensions */
.mp-badge-shield {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

/* Soft color schemes directly reflecting image_b101e2.png specs */
.mp-shield-tint-green  { background-color: #dcfce7; color: #16a34a; }
.mp-shield-tint-blue   { background-color: #dbeafe; color: #2563eb; }
.mp-shield-tint-purple { background-color: #f3e8ff; color: #9333ea; }

/* Card Headline Box Dimensions */
.mp-perk-label-frame {
    width: 100%;
    height: 26px;
    margin-bottom: 14px;
}

.mp-perk-label-frame h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
}

/* Explainer Paragraph Description Dimensions */
.mp-perk-summary-frame {
    width: 100%;
    height: 120px; /* Retains clean spacing regardless of word wrapping lines */
    overflow: hidden;
}

.mp-perk-summary-frame p {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

/* Responsive adjustment matrix for tablet and vertical devices */
@media (max-width: 992px) {
    .mp-perks-deck {
        height: auto;
        flex-direction: column;
        gap: 24px;
    }
    .mp-perk-item-plate {
        width: 100%;
        height: auto;
    }
    .mp-perk-label-frame {
        height: auto;
    }
    .mp-perk-summary-frame {
        height: auto;
    }
    .mp-intro-heading-group, .mp-main-title-holder, .mp-sub-title-holder {
        height: auto;
    }
}































.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(45, 107, 4);         /* 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: flex-end;
    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(45, 107, 4);         /* 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;
    }
}



@media (max-width: 768px){
      

    /* GLOBAL */
    section{
        overflow-x:hidden;
    }

    img{
        max-width:100%;
        height:auto;
    }

    /* HERO */
    .hero{
        min-height:auto;
        padding:60px 20px;
    }

    .subhero{
        padding:20px;
        text-align:center;
    }

    .subhero h1{
        font-size:32px;
        line-height:1.3;
    }

    .subhero p{
        width:100%;
        font-size:16px;
    }

    /* COMMON TITLES */
    .about-main-title,
    .contact-main-title,
    .faq-main-title,
    .why-main-title,
    .values-main-title{
        font-size:30px;
    }

    .section-description-text,
    .about-sub-tagline,
    .contact-sub-tagline{
        font-size:15px;
        width:100%;
    }

    /* ABOUT */
    .about-us-section{
        width:100%;
        padding:0 20px;
        gap:30px;
    }

    .about-content-row{
        flex-direction:column;
        gap:30px;
    }

    .story-text-column,
    .story-media-column{
        width:100%;
    }

    .story-media-column{
        height:280px;
    }

    .story-heading-text{
        font-size:24px;
    }

    .story-paragraph-item{
        font-size:15px;
        line-height:1.7;
    }

    /* VISION & MISSION */
    .vision-mission-row{
        width:100%;
        flex-direction:column;
        gap:20px;
        padding:0 15px;
    }

    .vision-card-container,
    .mission-card-container{
        width:100%;
        height:auto;
        padding:25px;
    }

    /* VALUES */
    .values-section{
        padding:60px 20px;
    }

    .values-container{
        gap:40px;
    }

    .values-card-wrapper{
        width:100%;
    }

    /* FEATURES */
    .features-container{
        padding:20px;
    }

    .card-natural,
    .card-global,
    .card-premium{
        width:100%;
        max-width:100%;
        height:auto;
    }

    /* PRODUCTS */
    .product-grid-container{
        width:100%;
        padding:0 15px;
    }

    .product-card-wrapper{
        width:100%;
        height:auto;
    }

    .product-image-container,
    .product-content-area{
        width:100%;
    }

    /* WHY CHOOSE US */
    .why-card-box{
        width:100%;
        padding:20px;
    }

    /* CONTACT */
    .contact-section-container{
        width:100%;
        padding:0 15px;
    }

    .contact-cards-row{
        flex-direction:column;
        gap:20px;
    }

    .contact-info-card{
        width:100%;
        height:auto;
        padding:25px;
    }

    /* FAQ */
    .faq-section-container{
        width:100%;
        padding:0 15px;
    }

    .faq-question-header{
        padding:18px;
    }

    .question-text-span{
        font-size:14px;
    }

    /* CTA */
    .cta-banner-container{
        width:calc(100% - 30px);
        margin:0 15px;
        padding:30px 20px;
    }

    /* FOOTER */
    .footer-block-container{
        height:auto;
        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{
        flex-wrap:wrap;
        width:100%;
    }

    .footer-bottom-copyright-strip-row{
        flex-direction:column;
        text-align:center;
        gap:20px;
        width:100%;
    }

    .copyright-textual-info-stack{
        width:100%;
    }

    .floating-utilities-alignment-box{
        justify-content:center;
        width:100%;
    }

    /* SPACING */
    .abo,
    .vis,
    .val,
    .whch,
    .coni,
    .faa,
    .still,
    .crore,
    .foter{
        margin-top:60px;
    }
}