/* 1. Branding & Typography Variables */
:root {
    --bg-color: #f5f5f7; 
    --text-color: #4a4a4a;
    --primary-color: #ffb34d; /* Your updated brand color */
    
    /* Font Styles */
    --font-heading: 'Montserrat', sans-serif;
   --font-body: 'Mulish', sans-serif;

    --bg-light: #f5f5f7; /* The subtle cream background from image */
    --board-green: #ffb34d; /* The sage green board color from image */
    --text-dark: #4a4a4a;

    
  --dark-gray: #444;
  --bg-color: #f5f5f7; /* Subtle cream background like image */


 
  --st-cream: #f9f6e5; /* The soft background color from the center */
  --st-text: #4a4a4a;
  --st-accent: #b03a6c; /* The pinkish color for the heading */


   --wk-bg: #f5f3e9;      /* Light cream background */
  --wk-btn-dark: #4a4a4a; /* Dark button color */
  --wk-text: #333;

  --sm-bg: #000000;
    --sm-card-bg: #111111;
    --sm-text-main: #ffffff;
    --sm-text-muted: #999999;
    --sm-accent: #ffffff;

    --header-height: 80px;
    
}

/* 2. Global Resets */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body{
   font-family: var(--font-body);
   font-size: 16px;
   line-height: 1.8;
   font-weight: 400;
   color: #444;
}
h1,h2,h3,h5,h6{
   font-family: var(--font-heading);
   font-weight: 300;
   letter-spacing: 1px;
   line-height: 1.2;
   color: #ffffff;
}
.nav-menu a,li, span,a{
   font-family: var(--font-body);
   font-weight: 500;
   letter-spacing: 0.5px;
}
button,
.btn{
   font-family: var(--font-body);
   font-weight: 600;
   letter-spacing: 0.8px;
}
/* ==========================================================================
   3. Site Header (Base & Fixed Positioning)
   ========================================================================== */
.site-header {
    background-color: var(--bg-color);
    border-bottom: 1px solid #e0e0e0;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height); /* Lock header height */
    z-index: 1000;
    transition: transform 0.4s ease-in-out;
}

/* This class will be added via JavaScript when scrolling down */
.site-header.hide {
    transform: translateY(-100%);
}

/* Dynamic calculation: Matches your header precisely with zero gaps */
body {
    padding-top: var(--header-height); 
}

/* ==========================================================================
   4. Header Top Row
   ========================================================================== */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Spans the full locked height of your header */
    padding: 0 4%; /* Removed vertical padding since height handles centering */
    position: relative;
}

.logo-container {
    flex: 0 0 auto;
    max-width: 180px; /* Limits logo size to preserve row proportions */
}

.site-logo { 
    width: 100%;
    height: auto; 
    display: block; 
}

.header-actions { 
    display: flex; 
    gap: 15px; 
    flex: 0 0 auto;
}

/* ==========================================================================
   5. Actions & Buttons
   ========================================================================== */
.action-btn {
    font-family: var(--font-heading);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 10px 24px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}

.action-btn.outline { 
    border: 1px solid var(--primary-color); 
    color: var(--text-color); 
}

.action-btn.outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.action-btn.solid { 
    background-color: var(--primary-color); 
    color: #fff; 
    border: 1px solid var(--primary-color);
}

.action-btn.solid:hover {
    opacity: 0.9;
}

/* ==========================================================================
   6. Navigation Links (Centered Column)
   ========================================================================== */
.nav-bar { 
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    /* font-family: var(--font-heading); */
    text-decoration: none;
    color: var(--text-color);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    padding: 12px 0; /* Vertical block padding handles target area and baseline alignment */
    transition: color 0.3s ease;
    display: block;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   7. Mega Menu Architecture
   ========================================================================== */
.has-mega { 
    position: static; /* Forces mega menu to measure width from .header-top instead of <li> */
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 999;
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.has-mega:hover .mega-menu {
    visibility: visible;
    opacity: 1;
}

.mega-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.mega-item {
    text-align: center;
    flex: 0 1 140px;
    cursor: pointer;
}

.circle-img {
    width: 200px;
    height: 200px;
    background: #f9f9f9;
    /* border-radius: 50%; */
    margin: 0 auto 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}

.circle-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.mega-item:hover .circle-img {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.mega-item span {
    font-family: var(--font-body);
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #333;
}

/* ==========================================================================
   8. Mobile Mechanics & Responsiveness
   ========================================================================== */
.mobile-toggle { 
    display: none; 
    cursor: pointer; 
}

.mobile-toggle span { 
    display: block; 
    width: 25px; 
    height: 2px; 
    background: var(--text-color); 
    margin: 5px 0; 
    transition: all 0.3s ease;
}

/* Hide mobile-specific action buttons on desktop views */
.mobile-actions {
    display: none !important;
}

.menu-arrow {
    display: none;
}

/* Tablet Scale-Down Breakpoint */
@media (max-width: 1200px) {
    .nav-links { gap: 20px; }
    .nav-links a { font-size: 13px; letter-spacing: 1px; }
    .header-actions { gap: 10px; }
    .action-btn { padding: 8px 16px; font-size: 12px; }
    .circle-img { width: 140px; height: 140px; } /* Scale mega menu down slightly */
}

/* Mobile & Tablet Transform Breakpoint */
@media (max-width: 992px) {
    /* Hide desktop actions wrapper */
    .header-actions { 
        display: none !important; 
    } 
    
    .mobile-toggle { 
        display: block; 
        z-index: 1002;
    }
    
    /* Convert navigation container to scrollable absolute drop-down panel */
    .nav-bar {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        max-height: 0;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.4s ease-in-out, opacity 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1001;
        border-top: 1px solid #eee;
    }
    
    /* Active Mobile Navigation Open State */
    .nav-bar.active { 
        max-height: 85vh; /* Prevents overflow past device viewport height */
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links { 
        flex-direction: column; 
        align-items: stretch; 
        gap: 0;
        padding: 20px 6%;
    }

    .nav-links > li {
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-links > li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        padding: 15px 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Dropdown Arrow Mechanics */
    .menu-arrow {
        display: inline-block;
        width: 8px;
        height: 8px;
        border-right: 2px solid var(--text-color);
        border-bottom: 2px solid var(--text-color);
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        margin-right: 5px;
    }

    .has-mega.open .menu-arrow {
        transform: rotate(-135deg); /* Flips arrow up when active */
    }

    /* Convert Desktop Mega Menu to Accordion Panel */
    .has-mega {
        position: relative;
    }

    .mega-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        visibility: visible;
        opacity: 1;
        display: none; /* Controlled by JavaScript slide toggle */
        padding: 10px 0 20px 0;
        background: #fbfbfb;
        border-top: none;
    }

    .has-mega:hover .mega-menu {
        visibility: visible;
        opacity: 1;
    }

    .mega-container {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .mega-item {
        text-align: left;
        flex: 1 1 auto;
    }

    .mega-item a {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 15px;
        padding: 8px 0 !important;
    }

    .circle-img {
        width: 50px !important; /* Compact thumbnail look for list styles */
        height: 50px !important;
        margin: 0;
        border-radius: 4px; /* Optional slight curve instead of harsh box or giant circle */
    }

    .mega-item span {
        font-size: 13px;
        color: var(--text-color);
    }

    /* Display Action Buttons block inside Mobile Menu */
    .mobile-actions {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        padding: 25px 0 15px 0;
    }

    .mobile-actions .action-btn {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Hamburger Transform Effects when Menu Opens */
    .mobile-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}
/******************** Banner Section ***************************************************************************************/
/* ==========================================================================
   Banner Section Layout
   ========================================================================== */
.banner-section {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    /* Clean buffer if working with a fixed site header */
    margin-top: 0; 
}

.mainBanner {
    border-radius: 0px; 
    overflow: hidden;
    width: 100%;
}

.banner-wrapper {
    width: 100%;
    /* 
       CRITICAL FIX: This matches your desktop image canvas size (1418x580).
       We must lock this visual proportions base across devices so text layers
       do not clip off-screen.
    */
    aspect-ratio: 1418 / 580; 
    overflow: hidden;
}

.banner-image {
    width: 100%; 
    height: 100%;
    /* 
       CRITICAL FIX: Changed from 'cover' to 'fill' or 'contain' constraints. 
       If your mobile asset paths use the same desktop image, use 'fill' along 
       with matching container aspect-ratios to maintain content boundaries.
    */
    object-fit: fill; 
    object-position: center; 
    display: block;
}

/* ==========================================================================
   Swiper Navigation & Pagination UI
   ========================================================================== */
.swiper-button-next, 
.swiper-button-prev {
    color: #fcd834 !important; 
    transition: all 0.3s ease;
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
    color: #4a4a4a !important; 
    transform: scale(1.1);
}

.swiper-button-next::after, 
.swiper-button-prev::after {
    font-size: 24px !important; 
    font-weight: bold;
}

/* Pagination Dots */
.swiper-pagination-bullet {
    background: #cccccc !important;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #fcd834 !important; 
    width: 25px !important; 
    border-radius: 5px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Tablets / Medium Screens */
@media (max-width: 1024px) {
    .banner-wrapper {
        /* Keep original image aspect ratio safe to avoid clipping hard-coded text */
        aspect-ratio: 1418 / 580; 
    }
}

/* Mobile Devices (Smartphones) */
@media (max-width: 768px) {
    .banner-section {
        /* Keep full bleed on mobile so text has maximum width footprint */
        padding: 0; 
    }

    .mainBanner {
        border-radius: 0px; 
    }

    .banner-wrapper {
        /* 
           NOTE ON TEXT INTEGRITY: 
           If you switch this to a tall portrait ratio like 3/4 or 9/16, a desktop 
           image with flat text inside will get squeezed and ruined. 
           
           If you are using the SAME image for desktop and mobile, keep this at 1418/580.
           If you have separate dedicated taller vertical images for mobile, change this to 
           your mobile image's exact width/height ratio (e.g., 1 / 1 or 3 / 4).
        */
        aspect-ratio: 1418 / 580; 
    }
    
    .swiper-button-next::after, 
    .swiper-button-prev::after {
        font-size: 18px !important;
    }
}

/* Tiny Screens */
@media (max-width: 480px) {
    .swiper-button-next, 
    .swiper-button-prev {
        display: none !important; 
    }
    
    .banner-wrapper {
        aspect-ratio: 1418 / 580; 
    }
}
/************ banner ************* * /


/************ About us ************* * /
*/

.about-section {
    background-color: var(--bg-light); /* #f1efe4 */
    
    padding-top: 120px; 
    padding-bottom: 100px;
    padding-left: 5%;
    padding-right: 5%;
    
    margin-top: 0; 
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Image & Board Design Logic */
.about-image-column {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.image-board {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 80%;
    height: 90%;
    background-color: #ffb34d;
    z-index: 1;
}

.main-image-wrapper {
    position: relative;
    z-index: 2;
    width: 90%;
    box-shadow: 15px 15px 30px rgba(0,0,0,0.05);
}

.main-image-wrapper img {
    width: 100%;
    display: block;
}

/* Typography Styling */
.about-text-column {
    flex: 1.2;
}
.title{
    font-family: var(--font-heading);
    font-size: 45px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 400;
}
.main-quote {
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 550;
}

.sub-quote {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.attribution {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-title {
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
}
/* btn  */
.about-action-container {
    margin-top: 35px;
}

.about-btn {
    font-family: var(--font-heading);
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--text-color, #333);
    background-color: transparent;
    border: 2px solid var(--primary-color, #fcd834);
    padding: 14px 36px;
    border-radius: 0px;
    position: relative;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-sizing: border-box;
}

/* Sliding background effect on hover */
.about-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color, #fcd834);
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-btn:hover {
    color: #ffffff;
}

.about-btn:hover::before {
    width: 100%;
}
/* Responsiveness */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    
    .about-image-column {
        justify-content: center;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .main-quote {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .image-board {
        top: -15px;
        left: -15px;
    }
    .about-section {
        padding: 60px 20px;
    }
}
/************ About us end ************** /



/********* trust Slider Container ************/
.logo-slider {
    width: 100%;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
}

/* The Track that moves */
.logo-track {
    display: flex;
    width: calc(250px * 12); /* Adjust based on logo width * total logos */
    animation: scroll 30s linear infinite;
}

/* Pause animation on hover */
/* .logo-track:hover {
    animation-play-state: paused;
} */

/* Individual Logo Styles */
.logo-item {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.logo-item img {
    max-width: 100%;
    max-height: 100px;
    transition: all 0.3s ease;
}

/* Highlighting logo on hover */
.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Keyframe for continuous movement */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); } /* Moves by half the total track width */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .logo-item {
        width: 180px;
        padding: 0 20px;
    }
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-180px * 6)); }
    }
}
/* trusted  */

/* category  */
.category-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.category-title {
    text-align: center;
    color: #00b05d; /* Your Primary Brand Green */
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Specific Card Positioning */
.welcome-kits {
    grid-column: span 2; /* Makes the 4th card wide like your screenshot */
}

/* Card Styling */
.category-card {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Dark Gradient Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 50%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-start;
    padding: 20px;
}

.card-overlay h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #ffb24dd4;
    padding: 0.5px 15px;
}

/* Hover Interaction */
.category-card:hover img {
    transform: scale(1.05);
}



/* Responsive Breakpoints */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .welcome-kits {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .welcome-kits {
        grid-column: span 1;
    }
    .category-card {
        height: 250px;
    }
}
/* category end */

/* story */
.story-section {
  position: relative;
  width: 100%;
  min-height: 600px; 
  display: flex;
  align-items: center; /* Keeps text centered vertically */
  overflow: hidden;
}

.story-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.story-content-wrapper {
  width: 100%;
  max-width: 1300px; /* Adjust based on your site width */
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  /* CHANGE: This pushes the content to the right */
  justify-content: flex-end; 
}

.story-text-block {
  max-width: 550px; /* Width of the text column */
  text-align: left; /* Text remains left-aligned inside the block */
  color: #c4e6ee;
}

.story-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-weight: 400;
  color: #fae14b;
}

.story-description {
  text-align: justify;      /* Stretches all lines to fill the width */
  text-align-last: center;  /* Centers only the final line */
  
  /* Standard styling for context */
  max-width: 600px;
  line-height: 1.8;
  font-family: serif;
  font-size: 18px;
}

/* Optional: Adds decorative quotes or a line */
.story-description::before {
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  background: #d4af37; /* Gold/Earth tone accent */
  margin: 0 auto 20px auto;
}

.story-btn {
  font-family: 'Arial', sans-serif;
  text-decoration: none;
  color: #4ad2f0;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 5px;
  transition: 0.3s;
}

.story-btn:hover {
  border-bottom-color: transparent;
  opacity: 0.7;
}

/* --- Responsive Adjustments --- */

@media (max-width: 992px) {
  /* On medium screens, give the text a bit more room */
  .story-text-block {
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  /* On mobile, center the text for better visibility */
  .story-content-wrapper {
    justify-content: center;
  }
  
  .story-text-block {
    max-width: 100%;
    text-align: center;
    padding: 30px;
    /* Soft overlay so text is readable over the leaves on small screens */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 15px;
  }

  .story-title {
    font-size: 2.5rem;
  }
}
/* story end */


/* our serive  */
/* Container and Typography */
.sv-service-section {
  padding: 80px 20px;
    /* max-width: 1200px; */
    margin: 0 auto;
    font-family: 'Helvetica', 'Arial', sans-serif;
    background: #f1efe3;
}

.sv-title {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: #2c2c2c;
  margin-bottom: 50px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Grid Logic */
.sv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.sv-card {
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sv-card:hover {
  transform: scale(1.02); /* Subtle zoom on the whole card */
}

/* Image Swap Logic */
.sv-img-holder {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  background-color: #efefef;
}

.sv-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease-in-out;
}

.sv-img-main {
  z-index: 2;
  opacity: 1;
}

.sv-img-sub {
  z-index: 1;
  opacity: 0;
}

/* Hover State Interactions */
.sv-card:hover .sv-img-main {
  opacity: 0;
}

.sv-card:hover .sv-img-sub {
  opacity: 1;
}

/* --- Responsive Adaptations --- */

/* For Tablets */
@media (max-width: 992px) {
  .sv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For Mobile Phones */
@media (max-width: 576px) {
  .sv-grid {
    grid-template-columns: 1fr;
  }
  
  .sv-title {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .sv-service-section {
    padding: 40px 15px;
  }
}
/* our serive end */


/*************************************** Product  *****************************************************************/
.products-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 20px;
  font-family: 'Times New Roman', serif; /* Matching the serif font style */
}

/* Header Layout */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-heading);
    font-size: 45px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 0px;
    font-weight: 400;
}

.shop-all-btn {
  background: var(--dark-gray);
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-family: Arial, sans-serif;
  transition: background 0.3s;
}

.shop-all-btn:hover {
  background: #000;
}

/* Grid Layout (4 columns) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.product-card {
  width: 100%;
  cursor: pointer;
}

/* --- Image Swap Logic --- */
.image-container {
  width: 100%;
  aspect-ratio: 1 / 1; /* Keeps images perfectly square */
  position: relative;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease-in-out;
}

.img-default {
  z-index: 2;
  opacity: 1;
}

.img-hover {
  z-index: 1;
  opacity: 0;
  transform: scale(1.05); /* Optional: slight zoom effect for depth */
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

/* Hover State */
.product-card:hover .img-default {
  opacity: 0;
}

.product-card:hover .img-hover {
  opacity: 1;
  transform: scale(1);
}

/* --- Responsiveness --- */

/* Laptops/Tablets (3 Columns) */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small Tablets (2 Columns) */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-title {
    font-size: 1.6rem;
  }
}

/* Mobile (1 Column) */
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* --- Overlay Formatting --- */
.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 15px; /* Spacing from the bottom edge */
  z-index: 5; /* Forces text to layer on top of both images */
  text-align: center;
  box-sizing: border-box;
  pointer-events: none; /* Allows click-throughs directly to the card link/action */
}

.product-name {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  border-bottom: 1px solid transparent;
  transition: border 0.3s;
  font-family: 'Arial', sans-serif;
}
.product-name:hover{
    border-bottom: 1px solid #fff;
}
/* --- Interactive Effects (Optional Animation) --- */
.product-card:hover .product-name {
  border-bottom: 1px solid #fff;
}

/* --- Responsiveness Adjustments --- */
@media (max-width: 768px) {
  .product-overlay {
    padding: 15px 10px;
  }
  .product-name {
    font-size: 0.95rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .product-name {
    font-size: 0.85rem;
  }
}
/*************************************** Product end ************************************/


/* new story  */
.st-story-section {
  width: 100%;
  overflow: hidden;
}

.st-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 3 equal columns */
  min-height: 600px;
}

.st-column {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Content Column Styling */
.st-content-col {
  /* background-color: var(--st-cream); */
  background: #806F59;
background: linear-gradient(90deg, rgba(128, 111, 89, 1) 0%, rgba(249, 246, 229, 1) 50%, rgba(155, 135, 109, 1) 100%);
  padding: 60px 40px;
  text-align: center;
}

.st-logo {
  max-width: 180px;
  /* margin-bottom: 20px; */
}

.st-heading {
  font-family: 'Cursive', serif; /* Use a script font like 'Great Vibes' */
  color: var(--st-accent);
  font-size: 3rem;
  font-weight: normal;
  margin-bottom: 20px;
}

.st-description {
  color: var(--st-text);
  line-height: 1.8;
  font-size: 1rem;
  max-width: 350px;
  font-family: 'Arial', sans-serif;
}

/* Image Column Styling */
.st-image-col {
  height: 100%;
}

.st-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay Links (Shop Her Favourites / Read the Story) */
.st-overlay-link {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
}

.st-overlay-link a {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  border-bottom: 1px solid transparent;
  transition: border 0.3s;
}

.st-overlay-link a:hover {
  border-bottom: 1px solid #fff;
}

/* --- Responsiveness --- */

/* Tablet View (2 Columns) */
@media (max-width: 1024px) {
  .st-container {
    grid-template-columns: 1fr 1fr;
  }
  .st-content-col {
    grid-column: span 2;
    order: -1; /* Puts text on top */
  }
}

/* Mobile View (Single Column Stack) */
@media (max-width: 600px) {
  .st-container {
    grid-template-columns: 1fr;
  }
  .st-content-col {
    grid-column: span 1;
  }
  .st-heading {
    font-size: 2.2rem;
  }
  .st-image-col {
    height: 400px; /* Force height on mobile */
  }
}
/* new story end */

/* our work  */
.wk-works-section {
  padding: 60px 20px;
  background-color: #fff;
}

.wk-main-title {
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
}

.wk-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* ==========================================================================
   Full Image Card Layout Engine
   ========================================================================== */
.wk-card {
    position: relative;
    width: 100%;
    /* Set your preferred card aspect ratio or explicit height here */
    aspect-ratio: 3 / 4; 
    overflow: hidden;
    background-color: #0c111a;
    box-sizing: border-box;
}

/* --- Immersive Image Filling Layer --- */
.wk-image-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.wk-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Visibility Control & Smooth Scaling Initial State */
.wk-img-default {
    z-index: 3;
    opacity: 1;
    transform: scale(1);
}

.wk-img-hover {
    z-index: 2;
    opacity: 0;
    transform: scale(1.05); /* Slight pre-zoom to make the swap look fluid */
}

/* Card Hover States -> Image Interlock Animation */
.wk-card:hover .wk-img-default {
    opacity: 0;
    transform: scale(1.08);
}

.wk-card:hover .wk-img-hover {
    opacity: 1;
    transform: scale(1); /* Settles beautifully down into normal layout container size */
}

/* ==========================================================================
   Floating Interactive Content Overlay
   ========================================================================== */
.wk-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4; /* Pushes content completely on top of image stack */
    padding: 40px 30px;
    box-sizing: border-box;
    
    /* Center the content vertically and horizontally over the background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
    
    /* Clean dark vignette gradient so white text stands out perfectly */
    /* background: linear-gradient(
        to bottom, 
        rgba(12, 17, 26, 0.2) 0%, 
        rgba(12, 17, 26, 0.5) 60%, 
        rgba(12, 17, 26, 0.85) 100%
    ); */
    transition: background 0.4s ease;
}

/* Subtle overlay darkening response on hover */
.wk-card:hover .wk-content {
    background: linear-gradient(
        to bottom, 
        rgba(12, 17, 26, 0.007) 0%, 
        rgba(12, 17, 26, 0) 50%, 
        rgba(12, 17, 26, 0) 100%
    );
}

/* ==========================================================================
   Typography & Buttons Text Contrast
   ========================================================================== */
.wk-title {
    font-family: var(--font-heading), 'Playfair Display', serif;
    font-size: 2.2rem; /* Scaled up to confidently anchor full block card */
    font-weight: 400;
    color: #ffffff; /* Shifted to clean white for high background legibility */
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.wk-text {
    font-family: var(--font-body), sans-serif;
    font-size: 16px;
    color: #f1f5f9; /* Soft ash white for clear copy texture differentiation */
    margin: 0 0 10px 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.wk-btn {
    display: inline-block;
    background-color: #fcd834; /* Your signature primary gold accent color */
    color: #0c111a;
    padding: 14px 36px;
    text-decoration: none;
    font-family: var(--font-body), sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.wk-btn:hover {
    background-color: #ffffff;
    color: #0c111a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}
/* --- Responsiveness --- */

@media (max-width: 768px) {
  .wk-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* our work end */


/* footer  */
.sm-footer-section {
    background-color: #020813;
    color: var(--sm-text-main);
    /* Add this line to create the gap */
    margin-top: 150px; 
    padding: 60px 20px 20px;
    font-family: 'Forum', sans-serif;
    /* Ensure no content overlaps if you use the floating CTA */
    position: relative; 
}

/* CTA Card */
.sm-footer-cta {
    background: linear-gradient(164deg,rgba(2, 8, 19, 1) 34%, rgb(5, 15, 0) 53%, rgb(237, 221, 83) 100%);;
    border-radius: 14px;
    padding: 30px;
    max-width: 1200px;
    margin: -150px auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.sm-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.sm-cta-content p {
    color: var(--sm-text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.sm-cta-btn {
    background: #fff;
    color: #000;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
    justify-content: end;
}

.sm-cta-btn:hover {
    transform: translateY(-2px);
}

.sm-cta-content {
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    width: 100%; 
    gap: 20px; 
}


.sm-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0; 
}


.sm-cta-btn {
    background: #fff;
    color: #000;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
    white-space: nowrap; 
}
/* Footer Main */
/* ==========================================================================
   Footer Main Layout Engine (Unified 4-Column Grid)
   ========================================================================== */
.sm-footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* Grid explicitly maps to a beautiful 4-column balanced configuration */
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    gap: 40px;
    /* padding: 60px 0; */
    box-sizing: border-box;
}

/* ==========================================================================
   Brand & Address Typography Scales
   ========================================================================== */
.sm-footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.sm-footer-logo {
    max-width: 180px; /* Enhanced logo footprint visibility */
    margin-bottom: 24px;
}

.sm-footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.sm-address {
    font-style: normal;
    font-family: var(--font-body), sans-serif;
    font-size: 16px; /* Sizing boost for ultra-crisp address line resolution */
    line-height: 1.7;
    color: #cbd5e1; /* High contrast muted white */
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Column Headings & Navigation Architecture
   ========================================================================== */
.sm-footer-heading {
    color: #fcd834; /* Corporate brand primary gold accent */
    font-family: var(--font-heading), sans-serif;
    font-size: 16px; /* Bold, uniform, easily scannable category anchors */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 28px;
}

.sm-link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sm-link-group li {
    margin-bottom: 14px;
}

.sm-link-group a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 16px; /* Scaled up from 14px for improved micro-readability */
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.sm-link-group a:hover {
    color: #ffffff;
    transform: translateX(5px); /* Interactive horizontal slide hint */
}

/* ==========================================================================
   Contact Elements Matrix
   ========================================================================== */
.sm-contact-legal-col {
    display: flex;
    flex-direction: column;
}

.sm-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sm-contact-item {
    display: flex;
    flex-direction: column;
}

.sm-label {
    color: #64748b; /* Clean underlying descriptor level styling tint */
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    font-weight: 600;
}

.sm-contact-link {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.sm-contact-link:hover {
    color: #fcd834 !important; /* Glow transition hover state color snap */
}
/* ==========================================================================
   Footer Bottom Baseline System
   ========================================================================== */
.sm-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
    margin-top: 20px;
    box-sizing: border-box;
}

.sm-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Pins items to far left and far right handles */
    align-items: center;
    gap: 20px;
}

.sm-copyright, 
.sm-attribution {
    margin: 0;
    font-family: var(--font-body), sans-serif;
    font-size: 14px; /* Clean standard micro-typography scale */
    color: #94a3b8; /* Balanced low-contrast structural text */
    letter-spacing: 0.5px;
    line-height: 1.5;
}

/* Developer Anchor Specific Styling Rules */
.sm-attribution a {
    color: #cbd5e1; /* Marginally brighter color depth to emphasize readability */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.sm-attribution a:hover {
    color: #fcd834; /* Snaps cleanly to your primary brand accent yellow */
}

/* ==========================================================================
   Mobile Adaptive Breakpoint rules
   ========================================================================== */
@media (max-width: 650px) {
    .sm-bottom-content {
        flex-direction: column; /* Vertically stacks content on smaller layouts */
        text-align: center;
        gap: 12px;              /* Standard clear break gap spacing between text lines */
    }
}
/* ==========================================================================
   Fluid Responsive Interface Rules
   ========================================================================== */

/* Medium Desktops & Tablet Landscape screens */
@media (max-width: 1024px) {
    .sm-footer-main {
        grid-template-columns: repeat(2, 1fr); /* Snaps neatly to a balanced 2x2 grid */
        gap: 50px;
        padding: 40px 20px;
    }
}

/* Portrait Mobile Devices */
@media (max-width: 600px) {
    .sm-footer-main {
        grid-template-columns: 1fr; /* Direct elegant stack down layout logic */
        gap: 40px;
        padding: 30px 15px;
    }

    .sm-footer-heading {
        margin-bottom: 16px;
    }
    
    .sm-address {
        font-size: 15px;
    }
}
/* --- Responsiveness --- */

/* Tablet */
@media (max-width: 992px) {
    .sm-footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sm-footer-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .sm-footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sm-footer-contact {
        flex-direction: column;
        gap: 20px;
    }

    .sm-cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .sm-footer-section {
        margin-top: 60px; /* Smaller gap on mobile devices */
    }
}
/* footer end */

/* vision mission */
/* --- Base Section Setup --- */
.company-statement-section {
    position: relative; 
    width: 100%;
    min-height: 500px;
    background-color: #fcfcfc; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    box-sizing: border-box;
    overflow: hidden; 
}

/* --- HTML Background Image Styling --- */
.statement-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
}

.statement-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: right center; 
}

/* --- Layout Grid --- */
.statement-container {
    position: relative;
    z-index: 2; 
    width: 100%;
    max-width: 1418px;
    margin: 0 auto;
    display: grid;
    /* SWAPPED: Shunted spacer width to left, content width to right */
    grid-template-columns: 0.9fr 1.1fr; 
    gap: 40px;
    align-items: center;
}

/* --- Content Styling --- */
.statement-content {
    /* EXPLICIT PLACEMENT: Positions text in the second (right) column */
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 50px; 
    color: #ffffff;
    max-width: 550px; 
}

.statement-visual-space {
    /* EXPLICIT PLACEMENT: Positions empty space block in first (left) column */
    grid-column: 1;
}

.statement-block {
    /* display: flex; */
    flex-direction: column;
    gap: 15px;
}

.statement-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.statement-icon {
    width: 36px;
    height: 36px;
    color: #ffffff; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.statement-icon svg {
    width: 100%;
    height: 100%;
}

/* --- Typography --- */
.statement-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.75rem; 
    font-weight: 400; 
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase; 
    color: #ffb34d;
}

.statement-content p {
    font-family: 'Glacial Indifference', sans-serif; /* Applied to Paragraph */
    font-size: 1.15rem; 
    line-height: 1.6;
    margin: 0;
    opacity: 0.95; 
    letter-spacing: 0.5px;
    color: #5e1f0d;
}

/* --- Responsive Media Queries --- */

/* Tablets / Medium Screens */
@media (max-width: 1024px) {
    .statement-container {
        /* SWAPPED: Adjusted proportions to keep text wider on the right side */
        grid-template-columns: 0.7fr 1.3fr; 
    }
    
    .statement-content h2 {
        font-size: 2.25rem;
    }
}

/* Mobile Devices (Smartphones) */
@media (max-width: 768px) {
    .company-statement-section {
        padding: 40px 15px;
    }

    .statement-bg-image {
        object-position: center; 
    }

    .statement-container {
        grid-template-columns: 1fr; 
        gap: 0;
    }

    .statement-content {
        /* RESET: Strips explicitly assigned column placements so layout stacks sequentially */
        grid-column: auto; 
        max-width: 100%;
        background: t; 
        padding: 35px 25px;
        border-radius: 12px;
        /* backdrop-filter: blur(6px); */
        gap: 35px;
    }

    .statement-content h2 {
        font-size: 2rem;
    }

    .statement-content p {
        font-size: 1.05rem;
    }

    .statement-visual-space {
        display: none;
    }
}
/* vision mission end */

/********************************************* HOME PAGE END ******************************************************** */




/********************************************* ABOUT US START ******************************************************** */
/* --- About Us Banner Section --- */

/* ==========================================================================
   Global Overflow Prevention Guardrail
   ========================================================================== */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Hard cut to isolate structural container breaking */
}

/* ==========================================================================
   About Banner Styling
   ========================================================================== */
.about-banner {
    position: relative;
    width: 100%;
    height: 240px; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

/* --- The HTML Image --- */
.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* --- Overlay --- */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 37, 37, 0.35); /* Slightly darkened for rich text readability */
    z-index: 2;
}

/* --- Content Wrapper --- */
.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.banner-title {
    font-family: 'Montserrat', serif;
    font-size: 2.5rem; 
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.banner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.banner-breadcrumb a:hover {
    color: #ffb34d;
}

.breadcrumb-separator {
    color: #ffffff;
    font-size: 0.65rem;
    opacity: 0.7;
}

.banner-breadcrumb .active {
    color: #ffb34d;
    font-weight: 600;
}

/* ==========================================================================
   About Us Section Text Body
   ========================================================================== */
.about-section {
    padding: 80px 24px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    box-sizing: border-box;
}

/* Description Paragraph */
.about-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem; 
    line-height: 1.9;
    color: #4a4a4a;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ==========================================================================
   Responsive Breakpoints 
   ========================================================================== */

/* Tablets & Notebooks */
@media (max-width: 992px) {
    .about-banner {
        height: 200px;
    }
    .about-section {
        padding: 60px 24px;
    }
    .banner-title {
        font-size: 2rem;
    }
    .about-description {
        font-size: 1rem;
        line-height: 1.8;
    }
}

/* Small Screens / Mobile Devices */
@media (max-width: 576px) {
    .about-banner {
        height: 150px; 
    }
    .about-section {
        padding: 50px 20px;
    }
    .banner-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    .banner-breadcrumb {
        font-size: 0.75rem;
        gap: 8px;
    }
    .about-description {
        font-size: 0.95rem;
        line-height: 1.75;
        text-align: justify; /* Crisp, uniform body alignment on mobile targets */
        text-justify: inter-word;
    }
}
/********************* About us  end***************************/


/* featur  */
.services-section {
        background-color: #ffffff;
        padding: 100px 20px;
        position: relative;
    }

    .services-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Asymmetric Premium Grid */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    /* Premium Modern Card Design */
    .service-card {
        position: relative;
        background: #ffffff;
        padding: 50px 35px;
        border-bottom: 2px solid #f0f0f0; /* Soft minimal base line */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        cursor: pointer;
    }

    /* Large elegant subtle numbering behind text */
    .service-card::before {
        content: attr(data-number);
        position: absolute;
        top: 25px;
        right: 35px;
        font-family: 'Montserrat', sans-serif;
        font-size: 1.5rem;
        font-weight: 600;
        color: #e0e0e0;
        transition: color 0.4s ease;
    }

    /* High-End Interactive Hover Effects */
    .service-card:hover {
        border-bottom-color: rgb(255, 179, 77); /* Premium Brand Accent */
        transform: translateY(-8px);
    }

    .service-card:hover::before {
        color: rgb(255, 179, 77);
    }

    .card-content h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.35rem;
        font-weight: 500;
        color: #3d2c29;
        /* text-transform: uppercase; */
        letter-spacing: 1.5px;
        margin-bottom: 25px;
        position: relative;
    }

    .card-content p {
        font-size: 0.98rem;
        line-height: 1.8;
        color: #666666;
        font-weight: 400;
    }

    /* Sleek Modern Action Link */
    .service-link {
        margin-top: 35px;
        display: inline-flex;
        align-items: center;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #3d2c29;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .service-card:hover .service-link {
        color: rgb(255, 179, 77);
    }

    /* Mini moving line arrow indicator */
    .service-link::after {
        content: '';
        display: inline-block;
        width: 15px;
        height: 1px;
        background-color: currentColor;
        margin-left: 10px;
        transition: width 0.3s ease, transform 0.3s ease;
    }

    .service-card:hover .service-link::after {
        width: 25px;
    }

    /* --- Responsive System --- */
    @media (max-width: 992px) {
        .services-section {
            padding: 80px 30px;
        }
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
    }

    @media (max-width: 768px) {
        .services-grid {
            grid-template-columns: 1fr;
            gap: 0;
        }
        .service-card {
            padding: 45px 20px;
            border-left: none;
            border-right: none;
            border-top: none;
            border-bottom: 1px solid #eaeaea;
        }
        .service-card:hover {
            transform: none; /* Clean stack for mobile tap */
        }
    }



    /* --- Team Section Layout --- */
.team-section {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-container {
  max-width: 1340px; /* Expanded slightly to beautifully accommodate the 772px container + gap + content */
  width: 100%;
  display: grid;
  grid-template-columns: 1fr; /* Mobile fallback stacked */
  gap: 40px;
  align-items: center;
}

/* --- Left Column: Exact Size Image Stack --- */
.team-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 772px; /* Forces exact desktop width limit */
  margin: 0 auto;  /* Centers layout on tablet screens */
}

.team-image {
  width: 100%;
  max-width: 772px;
  height: auto;
  aspect-ratio: 772 / 515; /* Guarantees the precise 772x515 proportional scaling */
  display: block;
  object-fit: cover;
}

/* Floating name tag */
.member-name {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: #111111;
  font-weight: 500;
  background-color: transparent;
  padding: 4px 8px;
  pointer-events: none;
}

/* --- Right Column: Content styling --- */
.team-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 10px;
}

/* Header badge styling */
.brand-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.brand-icon {
  width: 22px;
  height: 22px;
  fill: #111111;
}

.badge-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* Content Headings & Paragraph text */
.team-heading {
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  color: #000;
}

.team-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 32px;
  max-width: 480px; 
}

/* Button style */
.btn-learn-more {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #111111;
  background-color: transparent;
  color: #111111;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-learn-more:hover {
  background-color: #111111;
  color: #ffffff;
}

/* --- Media Queries for Desktop responsiveness --- */
@media (min-width: 992px) {
  .team-container {
    /* Uses an exact pixel width allocation for the image side to guarantee its dimensions */
    grid-template-columns: 772px 1fr; 
    gap: 60px;
  }
  
  .team-section {
    padding: 70px 40px;
  }
  
  .team-content {
    padding-left: 20px;
  }
  
  .team-heading {
    font-size: 3.5rem; 
  }
}

.trust-slider {
    width: 100%;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
}

/* The Track that moves */
.trust-track {
    display: flex;
    width: calc(250px * 12); /* Adjust based on trust-item width * total logos */
    animation: trustScroll 30s linear infinite;
}

/* Optional: Pause animation on hover */
/* .trust-track:hover {
    animation-play-state: paused;
} */

/* Individual Trust Logo Styles */
.trust-item {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.trust-item img {
    max-width: 100%;
    max-height: 100px;
    transition: all 0.3s ease;
}

/* Highlighting logo on hover */
.trust-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Keyframe for continuous movement */
@keyframes trustScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); } /* Moves by half the total track width */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .trust-track {
        width: calc(180px * 12);
    }
    .trust-item {
        width: 180px;
        padding: 0 20px;
    }
    @keyframes trustScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-180px * 6)); }
    }
}

/* Trusted by  */
/* --- Core Section Structural Rules --- */
.writer-counter-section {
  position: relative;
  width: 100%;
  min-height: 250px;
  padding: 80px 20px;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.section-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.counter-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 45px;
  text-align: left;
  letter-spacing: -0.5px;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.counter-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  border-left: 2px solid rgba(0, 0, 0, 0.1);
  padding-left: 15px;
}

.counter-number {
  font-size: 52px;
  font-weight: 700;
  color: #ffb34d;
  line-height: 1;
  margin-bottom: 10px;
  /* Fixed width variant prevents layout layout shifting while numbers spin */
  font-variant-numeric: tabular-nums;
}

.counter-label {
  font-size: 18px;
  color: #131313;
  font-weight: 500;
  text-transform: capitalize;
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .writer-counter-section {
    padding: 50px 20px;
  }
  .section-title {
    text-align: center;
    margin-bottom: 35px;
  }
  .counter-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .counter-item {
    text-align: center;
    align-items: center;
    border-left: none;
    padding-left: 0;
  }
  .counter-number {
    font-size: 42px;
  }
}
/* Trusted by end */


/* --- Testimonial Section Base Layout --- */
.elegant-testimonial-section {
  width: 100%;
  padding: 50px 20px;
  background-color: #fbfbfb;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.testimonial-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header Elements */
.testimonial-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-header .section-subtitle {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888888;
  display: block;
  margin-bottom: 8px;
}

.testimonial-header .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Three-Column Grid Setup */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* --- ADVANCED HOVER CARD ARCHITECTURE --- */
.testimonial-card {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  
  /* Smooth timing configuration across all properties */
  transition: 
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
    box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
    border-color 0.4s ease;
}

/* Dynamic Bottom Progress Line (Uses your custom accent color #ffb34d) */
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px; /* Slightly thicker line for better color presence */
  background: #ffb34d; 
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Decorative Quote Icon Styling */
.quote-icon {
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 1;
  color: #f0f0f0;
  position: absolute;
  top: 10px;
  left: 20px;
  user-select: none;
  transform: rotate(0deg);
  transform-origin: center center;
  transition: color 0.4s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #444444;
  margin: 0 0 35px 0;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

/* Author Details Layout */
.testimonial-author {
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 4px 0;
}

.author-role {
  font-size: 13px;
  color: #777777;
  display: block;
}


/* 
   =========================================
   THE TRIGGER STATES (All hovers combine smoothly)
   =========================================
*/
.testimonial-card:hover {
  /* 1. Border smoothly turns into your gold accent color */
  border-color: #ffb34d;
  /* Card lifts vertically and scales up microscopic amount */
  transform: translateY(-8px) scale(1.01);
  /* Deeper, softer, high-end shadow profile */
  box-shadow: 0 20px 40px rgba(255, 179, 77, 0.08); /* Infuses subtle warm gold glow into the shadow */
}

/* 2. Rotates the quotes and tints them slightly to compliment the gold theme */
.testimonial-card:hover .quote-icon {
  color: rgba(255, 179, 77, 0.15); /* Soft transparent gold quote marker background */
  transform: rotate(-10deg) translateY(-3px);
}

/* 3. Text shifts to dark pitch black for easier tracking */
.testimonial-card:hover .testimonial-text {
  color: #000000;
}

/* 4. Subtle separation line fades up cleaner */
.testimonial-card:hover .testimonial-author {
  border-top-color: rgba(255, 179, 77, 0.25);
}

/* 5. Activates your bright gold premium bottom slider line */
.testimonial-card:hover::after {
  transform: scaleX(1);
}


/* --- Responsive Media Queries --- */

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 550px;
    margin: 0 auto;
  }
  
  .testimonial-card:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 600px) {
  .elegant-testimonial-section {
    padding: 60px 0;
  }

  .testimonial-header {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .testimonial-header .section-title {
    font-size: 28px;
  }

  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 20px 40px 20px;
    gap: 20px;
    max-width: 100%;
    scrollbar-width: none;
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 35px 25px;
  }
  
  /* Disable active lifting motions on small mobile touchscreens for performance */
  .testimonial-card:hover {
    transform: none !important;
    border-color: #e8e8e8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  }
  .testimonial-card:hover::after {
    transform: scaleX(0);
  }
}

/******************************* ABOUT US PAGE END *******************************************/

/******************************* PRODUCTS  PAGE  *******************************************/

/* --- Products Section Styling --- */
.products-section {
    width: 100%;
    max-width: 1400px;
    margin: 80px auto 40px auto; /* Adds spacing between bento grid and products */
    padding: 0 20px;
}

/* Section Header */
.products-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-header .subtitle {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    display: block;
    margin-bottom: 8px;
}

.products-header h2 {
    font-style: var(--header-height);
    font-size: 45px;
    font-weight: 400;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.products-header p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Products Layout Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns on desktop */
    gap: 30px;
}

/* Individual Product Card */
.product-card {
    background: #ffffff;
    /* border-radius: 8px; */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Card Image Wrapper */
.product-image {
    position: relative;
    width: 100%;
    height: 320px; 
    background-color: #f5f5f5;
    overflow: hidden;
    /* border-radius: 1px; */
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04); /* Subtle zoom effect on hover */
}

/* Small Badges over images */
.product-image .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #333;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Card Text Info */
.product-info {
    padding: 20px 5px 10px 5px; /* Clean alignment with image boundary */
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: #222;
    margin-bottom: 5px;
    text-decoration: none;
}

.product-info .category {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 8px;
}

.product-info .price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

/* --- Products Responsive Media Queries --- */

/* Tablets (2 Columns) */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .product-image {
        height: 280px;
    }
}

/* Mobile (1 Column) */
@media (max-width: 600px) {
    .products-section {
        margin: 50px auto 20px auto;
    }
    
    .products-header h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image {
        height: 300px;
    }
}
/* hav  */
/* ==========================================
   LAYOUT CORE & WRAPPERS
   ========================================== */
.prm-section-wrap {
  padding: 50px 0 0; 
  background-color: #ffffff;
}

.prm-layout-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   TYPOGRAPHY & HEADERS
   ========================================== */
.prm-main-heading-block {
  text-align: center;
  margin-bottom: 35px; /* Reduced margin to bring cards closer */
}

.prm-display-title {
  font-family: var( --font-heading);
  font-size: 45px;
  font-weight: 400;
  color: var(--dark-gray);
  margin-bottom: 10px;
}

.prm-sub-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #8c8c8c;
  letter-spacing: 0.5px;
}

/* ==========================================
   GRID MATRIX ARCHITECTURE
   ========================================== */
.prm-showcase-matrix {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}

/* Base Feature Card Frame - HEIGHT REDUCED HERE */
.prm-feature-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px; 
  display: flex;
  align-items: flex-end;
  padding: 30px; /* Reduced padding inside the card */
}

/* Raw Image to Absolute Background Canvas */
.prm-surface-asset {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* ==========================================
   CONTENT LAYER STRATIFICATION
   ========================================== */
.prm-caption-strata {
  position: relative;
  z-index: 2;
  max-width: 325px;
}

.prm-content-heading {
  font-style:'Montserrat', sans-serif;
  font-size: 1.85rem; /* Slightly smaller to fit the shorter height better */
  font-weight: 500;
  color: #111111;
  margin-bottom: 10px;
}

.prm-body-description {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16;
  color: #222222;
  margin-bottom: 20px; /* Reduced spacing */
  line-height: 1.5;
}

/* Interactive Call To Action */
.prm-action-trigger {
  display: inline-flex;
  align-items: center;
  background-color: #ffb34d;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 0px;
  transition: background-color 0.3s ease;
}

.prm-action-trigger:hover {
  background-color: #fff;
  color: #ffb34d;
}

.prm-vector-glyph {
  margin-left: 8px;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.prm-action-trigger:hover .prm-vector-glyph {
  transform: translateX(5px);
}

/* ==========================================
   ADAPTIVE RESPONSIVE QUERIES
   ========================================== */
@media (max-width: 992px) {
  .prm-showcase-matrix {
    grid-template-columns: 1fr;
  }
  
  .prm-feature-card {
    min-height: 280px; /* Reduced from 360px on tablets */
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .prm-display-title {
    font-size: 1.8rem;
  }
  
  .prm-feature-card {
    min-height: 250px; /* Reduced from 310px on mobile links */
    padding: 20px;
  }
  
  .prm-content-heading {
    font-size: 1.5rem;
  }
}


/* ==========================================
   LAYOUT CONTAINERS & BASE
   ========================================== */
.cat-section-wrapper {
  padding: 20px 0;
  background-color: #ffffff;
}

.cat-grid-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  /* Left card takes ~35% space, right column takes ~65% space */
  grid-template-columns: 0.35fr 0.65fr; 
  gap: 24px;
}

.cat-stack-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ==========================================
   CARD STRUCTURE (HTML Image Background System)
   ========================================== */
.cat-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  padding: 35px;
}

/* Forces the HTML img element to render exactly like a CSS background-image */
.cat-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Height constraints for a sleek, compact profile */
.cat-card-tall {
  min-height: 381px; 
  align-items: flex-end; 
}

.cat-card-wide {
  height: 178px; 
  align-items: center; /* Content vertically centered */
}

/* ==========================================
   TYPOGRAPHY & CONTENT CONTENT
   ========================================== */
.cat-card-content {
  position: relative;
  z-index: 2;
  max-width: 320px; /* Limits description line-length */
}

/* Wide cards target slightly wider text space if necessary */
.cat-content-left-aligned {
  max-width: 360px;
}

.cat-card-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 500;
  color: #111111;
  margin-bottom: 10px;
}

.cat-card-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: #222222;
  line-height: 1.5;
}

/* Spacing variation when action button exists */
.cat-content-left-aligned .cat-card-desc {
  margin-bottom: 18px;
}

/* ==========================================
   BUTTONS & MICRO-INTERACTIONS
   ========================================== */
.cat-btn-action {
  display: inline-flex;
  align-items: center;
  background-color: #a38253; /* Sand tone color */
  color: #ffffff;
  text-decoration: none;
  padding: 10px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cat-btn-action:hover {
  background-color: #896d43;
}

.cat-btn-arrow {
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.cat-btn-action:hover .cat-btn-arrow {
  transform: translateX(5px);
}

/* ==========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================== */
@media (max-width: 992px) {
  /* Break to a single column block pattern for tablets */
  .cat-grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cat-stack-column {
    gap: 20px;
  }
  
  .cat-card-tall {
    min-height: 320px;
  }
  
  .cat-card-wide {
    min-height: 200px;
  }
}

@media (max-width: 576px) {
  .cat-card {
    padding: 24px;
  }
  
  .cat-card-title {
    font-size: 1.6rem;
  }
  
  .cat-card-tall, 
  .cat-card-wide {
    min-height: 220px; /* Ensures uniform layout space on tiny devices */
    align-items: flex-end; /* Everything drops comfortably down */
  }
}


/********************** Products About section  *************************/
.product-about-section {
    padding: 60px 20px 10px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
}

/* Section Heading */

.product-about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px; 
    font-weight: 400;
    color: var(--text-dark); 
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

/* Description Paragraph */

.product-about-description {
    font-size: 1.05rem; /* ~17px */
    line-height: 1.85;
    color: #4a4a4a;
    font-weight: 400;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center; 
}

/* --- Responsive Breakpoints --- */

/* Tablets & Smaller Desktops */

@media (max-width: 992px) {

    .product-about-section {
        padding: 60px 30px;

    }

    .product-about-title {
        font-size: 1.75rem;
        margin-bottom: 24px;
    }

    .product-about-description {
        font-size: 1rem;
        line-height: 1.75
    }

}

/* Mobile Devices */

@media (max-width: 576px) {

    .product-about-section {
        padding: 45px 20px;
    }

    .product-about-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .product-about-description {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: justify;
        text-justify: inter-word;
    }

}
/* Products section end */



/* Section Container */
.services-section {
    padding: 80px 20px 20px;
    background-color: #f8f9fa; /* Off-white background matching the image */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Typography */
.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 15px;
}

.section-title .highlight {
    background-color: #ffdce5; /* Soft pink accent backdrop */
    padding: 2px 10px;
    border-radius: 4px;
    display: inline-block;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #555555;
    font-weight: 400;
}

/* Responsive Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* Card Design & Asymmetric Corners */
.service-card {
    background-color: #ffffff;
    padding: 40px 30px 35px 30px;
    border-radius: 30px 30px 30px 30px; /* Base roundedness */
    border-top-left-radius: 0px;        /* Creates the negative space block for the icon */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Icon Container and Absolute Floating Positioning */
.icon-wrapper {
    position: absolute;
    top: -20px;
    left: -1px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Dynamic Icon Color Variants */
.icon-pink { background-color: #ff0055; color: #fff; box-shadow: 0 8px 20px rgba(255, 0, 85, 0.2); }
.icon-green { background-color: #00b05d; color: #fff; box-shadow: 0 8px 20px rgba(0, 176, 93, 0.2); }
.icon-blue { background-color: #3b5998; color: #fff; box-shadow: 0 8px 20px rgba(59, 89, 152, 0.2); }
.icon-orange { background-color: #ff7700; color: #fff; box-shadow: 0 8px 20px rgba(255, 119, 0, 0.2); }

/* Inner Card Content Elements */
.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111111;
    margin-top: 15px;
    margin-bottom: 12px;
}

.card-description {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes the read-more link to the bottom line dynamically */
}

/* Links & Actions */
.read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.read-more:hover i {
    transform: translateX(4px);
}

/* Dynamic Active First Link Color Accent */
.read-more.btn-pink {
    color: #ff0055;
}

/* Bottom CTA Layout Block */
.cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.cta-btn {
    background-color: #ff0055;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.25);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-btn:hover {
    background-color: #e0004c;
    transform: translateY(-2px);
}

.cta-btn i {
    font-size: 0.85rem;
}

/* --- Responsive Media Queries --- */

/* Tablet viewports (Landscape/Portrait) */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 25px; /* Added higher top/bottom spacing for overlapping top icons */
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Mobile Devices */
@media (max-width: 600px) {
    .services-section {
        padding: 50px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 45px 0; /* Ensures ample spacing to comfortably fit floating icons */
    }

    .services-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 1.85rem;
    }
    
    .service-card {
        padding: 35px 25px 30px 25px;
    }
}

/* *************************service end ***************************** */


/* *******************************Collectin ************************************* */

.collections-section {
    width: 100%;
    max-width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #332d31;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Fixed 3-Column Grid Layout */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Strictly 3 equal columns */
    gap: 30px;
    padding: 0 30px; 
}

/* Card Styling */
.collection-card {
    position: relative;
    display: block;
    height: 240px; /* Slightly taller for 3-column balance */
    overflow: hidden;
    text-decoration: none;
}

/* Image behavior inside card */
.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Tint overlay to make white text readable */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transition: background 0.3s ease;
}

/* Typography inside card */
.card-overlay h3 {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding: 0 10px;
}

/* Hover Effects */
.collection-card:hover img {
    transform: scale(1.05);
}

.collection-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.3);
}

/* Responsive breakpoint for Tablets & Mobile */
@media (max-width: 768px) {
    .collections-grid {
        grid-template-columns: 1fr; /* Switch to 1 column on smaller screens */
    }
    .collection-card {
        height: 200px;
    }
}
/* *******************************Collectin end ************************************* */



.portfolio-section{
    padding:80px 20px;
    background:#fff;
}

.container{
    max-width:1400px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    color:#8b3e1f;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
}

.section-title h2{
    font-size:45px;
    margin-top:10px;
    color:#222;
    font-weight:400;
    font-family: var(--font-heading);
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
}

.portfolio-card{
    transition:.4s;
}

.portfolio-image{
    overflow:hidden;
    cursor:pointer;
}

.portfolio-image img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    display:block;
    transition:.5s ease;
    border: 1px solid #ffb34d;
}

.portfolio-card:hover img{
    transform:scale(1.08);
    border: 1px solid #ffb34d;
}

.portfolio-card h3{
    margin-top:18px;
    color: #5e1f0d;
    font-size:16px;
    line-height:1.5;
    font-weight:500;
    text-transform:uppercase;
}

/* Lightbox */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    padding:20px;
}

.lightbox img{
    max-width:90%;
    max-height:90vh;
    /* border-radius:10px; */
    animation:zoomIn .3s ease;
}

.close-btn{
    position:absolute;
    top:20px;
    right:35px;
    color:#fff;
    font-size:55px;
    cursor:pointer;
    font-weight:300;
}

@keyframes zoomIn{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

/* Large Laptop */

@media(max-width:1200px){

    .portfolio-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

/* Tablet */

@media(max-width:992px){

    .portfolio-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:34px;
    }
}

/* Mobile */

@media(max-width:576px){

    .portfolio-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:28px;
    }

    .portfolio-card h3{
        font-size:16px;
    }
}


/********************************** Blog section  **********************************/

.blog-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* Card Design */
.blog-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


.card-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Body Content */
.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1a2e40; 
    margin-bottom: 10px;
}

.card-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 24px;
    /* Limits text height slightly for a cleaner look if text lengths vary */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer / Button Styles */
.card-footer {
    margin-top: auto; /* Forces button area to stick to the card base */
    text-align: center;
}

.btn-know-more {
  display: inline-flex;
  align-items: center;
  background-color: #ffb34d;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 0px;
  transition: background-color 0.3s ease;

}

.btn-know-more:hover {
    background-color: #fff;
   color: #ffb34d;
   border:1px solid #ffb34d;
}
/* Blog section end */

/******************************** Corporate Gift  *************************************/
/* ==========================================
   REFACTORED COMPONENT: Eco Split Scroll
   ========================================== */

/* Outer structural wrapper */
.eco-split-scroll {
    width: 100%;
    background-color: #fefefe;
    padding: 80px 4%;
    box-sizing: border-box;
    overflow: clip; /* Clean rendering for high-position stickies */
}

/* Flex Container setup */
.eco-split-scroll .eco-scroll-wrapper {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

/* Left Column - Dynamic Images */
.eco-split-scroll .eco-scroll-gallery {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.eco-split-scroll .eco-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #ffb34d;
    object-fit: cover;
}

/* Right Column - Holds structural space for sticky movement */
.eco-split-scroll .eco-scroll-content {
    width: 50%;
    position: relative;
}

/* Sticky tracking context engine */
.eco-split-scroll .eco-sticky-panel {
    position: -webkit-sticky; /* iOS Safari compatibility */
    position: sticky;
    top: 80px; /* Adjust this value if you have a sticky top header navbar */
    height: fit-content;
    padding-bottom: 40px;
}

/* Scoped Typography Styles */
.eco-split-scroll .eco-panel-subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #8c8c8c;
    display: block;
    margin-bottom: 15px;
    text-align: right;
}

.eco-split-scroll .eco-panel-title {
    color: #0e0e0e;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.eco-split-scroll .eco-panel-divider {
    border: none;
    border-top: 1px solid #2e2e2e;
    margin-bottom: 35px;
}

.eco-split-scroll .eco-panel-desc {
    color: #000000;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 300;
}

/* Scoped Interactive Elements */
.eco-split-scroll .eco-panel-cta {
    background: transparent;
    border: 1px solid #000000;
    color: #000000;
    padding: 14px 32px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 15px;
}

.eco-split-scroll .eco-panel-cta:hover {
    background-color: #ffffff;
    color: #0d0d0d;
}

/* ==========================================
   RESPONSIVE LAYOUT BREAKPOINT (Tablets/Mobile)
   ========================================== */
@media (max-width: 992px) {
    .eco-split-scroll .eco-scroll-wrapper {
        flex-direction: column-reverse; /* Stacks text cleanly above images on mobile */
        gap: 40px;
    }

    .eco-split-scroll .eco-scroll-gallery, 
    .eco-split-scroll .eco-scroll-content {
        width: 100%;
    }

    .eco-split-scroll .eco-sticky-panel {
        position: relative; /* Disables fixed sticking context on smaller viewports */
        top: 0;
        padding-bottom: 0;
    }

    .eco-split-scroll .eco-panel-subtitle {
        text-align: left;
    }

    .eco-split-scroll .eco-panel-title {
        font-size: 2.5rem;
    }
}
/******************************** Corporate Gift end *************************************/


/* =======================================================
   COMPONENT: Corporate Gift Athletic Campaign Banner
   ======================================================= */

.corp-gift-banner {
    width: 100%;
    min-height: 440px; 
    position: relative; /* Essential for positioning the HTML image and content layers */
    display: flex;
    align-items: center; 
    box-sizing: border-box;
    padding: 40px 6%;
    overflow: hidden; /* Prevents image overlap on smaller screen dimensions */
}

/* Forces the HTML img tag to act exactly like a background-image */
.corp-gift-banner .corp-gift-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintains aspect ratio without stretching */
    object-position: center; /* Centers the focus of your asset */
    z-index: 1; /* Places it at the very bottom layer */
}

/* Subtle protection overlay for text contrast */
.corp-gift-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.03); 
    z-index: 2; /* Sits right above the image, but below the text */
}

/* Internal layout grid wrapper */
.corp-gift-banner .corp-gift-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end; /* Pushes content block to the right half */
    position: relative;
    z-index: 3; /* Forces text and button above the image and overlay layer */
    height: 100%;
}

/* Left side text container block */
.corp-gift-banner .corp-gift-text-block {
    width: 50%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* High-impact athletic typography styling */
.corp-gift-banner .corp-gift-title {
    color: #ffffff;
    font-family: 'Impact', 'Arial Black', sans-serif; 
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -2px;
    text-transform: uppercase;
    text-align: left;
    margin: 0;
}

.corp-gift-banner .corp-gift-italic {
    font-style: italic;
    font-size: 4rem;
    letter-spacing: 0px;
}

/* Absolutely positioned button platform targeting the bottom right edge */
.corp-gift-banner .corp-gift-action {
    position: absolute;
    bottom: -20px; 
    right: 0;
}

/* Corporate thematic deep-green branding badge button */
.corp-gift-banner .corp-gift-btn {
    display: inline-block;
    background-color: #ffb34d; 
    color: #ffffff;
    text-decoration: none;
    font-style: var(--font-heading);
    font-size: 0.95rem;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 2px;
    /* transition: background-color 0.2s ease, transform 0.2s ease; */
}

.corp-gift-banner .corp-gift-btn:hover {
    background-color: #fff;
    transform: translateY(-1px);
    color: #ffb34d;
    border: 1px solid #ffb34d;
}

/* =======================================================
   RESPONSIVE LAYOUT SCALING
   ======================================================= */

/* Medium Desktops and Tablets */
@media (max-width: 1024px) {
    .corp-gift-banner {
        min-height: 360px;
        padding: 30px 4%;
    }

    .corp-gift-banner .corp-gift-title {
        font-size: 4rem;
    }

    .corp-gift-banner .corp-gift-italic {
        font-size: 3rem;
    }
}

/* Smart Phones / Mobile Viewports */
@media (max-width: 576px) {
    .corp-gift-banner {
        min-height: 300px;
    }

    /* Shifts the focal point of the HTML image to keep your subject in frame on mobile */
    .corp-gift-banner .corp-gift-bg-img {
        object-position: 30% center; 
    }

    .corp-gift-banner .corp-gift-container {
        justify-content: center; 
    }

    .corp-gift-banner .corp-gift-text-block {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .corp-gift-banner .corp-gift-title {
        font-size: 3rem;
        text-align: center;
    }

    .corp-gift-banner .corp-gift-italic {
        font-size: 2.2rem;
    }

    .corp-gift-banner .corp-gift-action {
        position: relative;
        bottom: 0;
        margin-top: 25px;
        width: 100%;
        text-align: center;
    }
    
    .corp-gift-banner .corp-gift-btn {
        width: 85%; 
        text-align: center;
    }
}
/********************************* Cororate gift banner image ned ****************************** */


/************************************* Contact us  *********************************/
/* --- Section Layout --- */
.contact-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* --- Left Side Styling --- */
.contact-info-side {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    justify-self: end;
    width: 100%;
}

.btn-appointment {
    display: inline-block;
    background-color: #ffb34d; /* Deep dark forest green */
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 14px;
    /* text-transform: lowercase; */
    align-self: flex-start;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.contact-details {
    margin-bottom: 35px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 14px;
}

.detail-item a {
    color: #556253;
    text-decoration: none;
}

.icon-circle {
    background-color: #ffb24db6; /* Muted sage green circle background */
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 12px;
    flex-shrink: 0;
}

/* Opening Hours styling */
.opening-hours {
    margin-bottom: 45px;
    font-size: 14px;
}

.opening-hours h3 {
    font-weight: normal;
    margin-bottom: 15px;
    font-size: 15px;
}

.hours-grid {
    display: grid;
    grid-template-columns: 80px 1fr;
    row-gap: 6px;
    line-height: 1.4;
}

/* --- Form Styling (with Minimalist floating/interactive labels) --- */
.contact-form {
    width: 100%;
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 35px;
}

.form-group.full-width {
    margin-bottom: 40px;
}

.form-group input {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #b0b0b0;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-bottom: 1px solid #162a1c;
}

/* Floating Label Logic */
.form-group label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 14px;
    font-style: italic;
    color: #999;
    pointer-events: none;
    transition: 0.3s ease all;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label {
    top: -12px;
    font-size: 11px;
    color: #162a1c;
    font-style: normal;
}

/* Submit Button styling matching the image border/text setup */
.form-submit {
    display: flex;
    justify-content: flex-end;
}

.btn-send {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #ffb34d;
    padding: 10px 35px;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send:hover {
    background-color: #ffb34d;
    color: #ffffff;
    border-color: #ffb34d;
}


/* --- Right Side Images Layout --- */
.contact-image-side {
    display: grid;
    grid-template-columns: 4fr 1fr; /* Splitting the layout for the small slice image on right */
    height: 100%;
    min-height: 100vh;
}

.main-image img, .side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Adding the subtle divider border between images */
.main-image {
    border-right: 2px solid #ffffff; 
}


/* --- Responsive Adjustments (Media Queries) --- */

@media (max-width: 1024px) {
    .contact-info-side {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr; /* Stack into 1 column */
    }
    
    .contact-info-side {
        max-width: 100%;
        padding: 40px 24px;
        order: 1; /* Puts text on top */
    }
    
    .contact-image-side {
        order: 2; /* Puts images below */
        min-height: 400px;
        height: 450px;
    }
    
    .form-row {
        grid-template-columns: 1fr; /* Form rows stack on mobile */
        gap: 0;
    }
}
/************************************* Contact us end *********************************/

/************************** map section **************************** */
.map-section {
    padding: 60px 60px;
}

/* Standalone Map Container */
.map-holder {
    width: 100%;
    height: 500px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Responsive Scaling for smaller screens */
@media (max-width: 768px) {
    .map-section {
        padding: 30px 0;
    }
    .map-holder {
        height: 350px; /* Slightly shorter frame for mobile screens */
    }
}
/************************** map section end**************************** */
