/* =========================
   PREMIUM INDUSTRIAL DESIGN SYSTEM
 ========================= */

 :root{
    /* PRIMARY COLORS - Industrial Steel & Safety Orange */
    --color-primary: #0f172a;
    --color-primary-light: #1e293b;
    --color-primary-dark: #020617;
    
    /* ACCENT - Refined Safety Orange */
    --color-accent: #f97316;
    --color-accent-light: #fb923c;
    --color-accent-dark: #ea580c;
    --color-accent-subtle: rgba(249, 115, 22, 0.1);
    
    /* NEUTRAL COLORS */
    --color-white: #ffffff;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    
    /* TYPOGRAPHY */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* SPACING - Shriram inspired container 1600 but keep 1300 for now, add site-header-height */
    --section-padding: 100px;
    --container-width: 1300px;
    --site-header-height: 110px;
    
    /* EFFECTS */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.18);
    --shadow-accent: 0 8px 30px rgba(249, 115, 22, 0.3);
    
    /* TRANSITIONS */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 }

 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }

  html{
     scroll-behavior: smooth;
     scroll-padding-top: var(--site-header-height);
  }

 body{
    font-family: var(--font-body);
    color: var(--color-gray-600);
    line-height: 1.7;
    background: var(--color-white);
    overflow-x: hidden;
 }

 /* TYPOGRAPHY CLASSES */
 h1, h2, h3, h4, h5, h6{
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.2;
 }

 a{
    text-decoration: none;
    transition: var(--transition-base);
 }

 img{
    max-width: 100%;
    height: auto;
    display: block;
 }

 .container{
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
 }

 /* REUSABLE BUTTONS */
 .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
 }

 .btn-primary{
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
 }

 .btn-primary:hover{
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
 }

 .btn-secondary{
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
 }

 .btn-secondary:hover{
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-3px);
 }

 /* SECTION TITLE REUSE */
 .section-header{
    text-align: center;
    margin-bottom: 60px;
 }

 .section-tag{
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 15px;
    position: relative;
 }

 .section-tag::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--color-accent);
 }

 .section-title{
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 20px;
 }

 .section-desc{
    font-size: 18px;
    color: var(--color-gray-500);
    max-width: 700px;
    margin: 0 auto;
 }

 @media(max-width: 768px){
    :root{
        --section-padding: 70px;
    }
    
    .section-title{
        font-size: 32px;
    }
    
    .section-desc{
        font-size: 16px;
    }
 }

/* FIXED HEADER WRAPPER: fixed on laptop, normal flow on mobile */
.site-header-wrap{
    width:100%;
    z-index:1000;
}
/* Laptop / desktop (>=993px): whole top-bar + header stays fixed */
@media(min-width:993px){
    .site-header-wrap{
        position:fixed;
        top:0;left:0;right:0;
    }
    .site-header-wrap .top-bar,
    .site-header-wrap .header{
        position:static;
        top:auto;
    }
    .site-header-wrap.scrolled .header{
        box-shadow:0 8px 30px rgba(0,0,0,0.25);
    }
}
/* Mobile / tablet (<=992px): top-bar scrolls away, header sticks */
@media(max-width:992px){
    .site-header-wrap{
        position:static;
    }
    .site-header-wrap .top-bar{
        position:static;
    }
    .site-header-wrap .header{
        position:sticky;
        top:0;
        z-index:1000;
    }
}

/* TOP BAR - Shriram inspired */
.top-bar{
    width:100%;
    background:#020617;
    color:var(--color-gray-300);
    font-size:13px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}
.top-bar-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:8px 0;
    gap:20px;
}
.top-bar-left, .top-bar-right{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}
.top-bar-link{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:var(--color-gray-300);
    font-weight:500;
    transition:var(--transition-base);
}
.top-bar-link:hover{color:var(--color-accent);}
.top-bar-phone{color:var(--color-white);font-weight:600;}
.top-bar-follow{color:var(--color-gray-400);font-size:12px;letter-spacing:1px;text-transform:uppercase;}
.top-bar-social{
    width:28px;height:28px;
    display:inline-flex;align-items:center;justify-content:center;
    background:rgba(255,255,255,0.08);
    border-radius:6px;
    color:var(--color-gray-300);
    transition:var(--transition-base);
}
.top-bar-social:hover{background:var(--color-accent);color:#fff;}
@media(max-width:768px){
    .top-bar-inner{flex-direction:column;gap:6px;padding:6px 0;}
    .top-bar-email{display:none;}
}

/* HEADER STYLING */
 .header{
     width: 100%;
     background: var(--color-primary);
     position: relative;
     left: auto;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
     backdrop-filter: blur(10px);
     transition:box-shadow 0.3s ease;
  }
  .header.scrolled{
     box-shadow:0 8px 30px rgba(0,0,0,0.25);
  }
  .header .container,
  .header .header-inner{
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 15px 0;
     gap:20px;
  }
  .header-cta{
     display:inline-flex;align-items:center;justify-content:center;
     padding:12px 24px;
     background:var(--color-accent);
     color:#fff;
     font-weight:600;
     font-size:14px;
     border-radius:999px;
     border:2px solid var(--color-accent);
     transition:var(--transition-base);
     white-space:nowrap;
  }
  .header-cta:hover{
     background:var(--color-accent-dark);
     border-color:var(--color-accent-dark);
     transform:translateY(-2px);
     box-shadow:var(--shadow-accent);
     color:#fff;
  }
  @media(max-width:992px){
     .header-cta{display:none;}
  }
  html{scroll-padding-top:110px;}

 /* LOGO */

 .logo a{
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1px;
 }

 .logo img{
    width: 55px;
    height: auto;
    object-fit: contain;
 }

 .logo span{
    color: var(--color-accent);
    font-weight: 500;
 }

 /* NAVIGATION */

 .nav-links{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
 }

 .nav-links li a{
    position: relative;
    color: var(--color-gray-300);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    transition: var(--transition-base);
 }

 .nav-links li a:hover,
 .nav-links li a.active{
    color: var(--color-accent);
 }

 .nav-links li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-base);
 }

 .nav-links li a:hover::after,
 .nav-links li a.active::after{
    width: 100%;
 }

 /* DROPDOWN MENU */

 .nav-links li.has-dropdown {
    position: relative;
 }

 .dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--color-white);
    min-width: 240px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 8px 0;
    z-index: 1001;
 }

 .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
 }

 .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
 }

 .dropdown-menu li {
    list-style: none;
 }

 .dropdown-menu li a {
    display: block;
    padding: 12px 20px !important;
    color: var(--color-primary) !important;
    font-size: 14px !important;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
 }

 .dropdown-menu li a:hover {
    background: var(--color-gray-50);
    color: var(--color-accent) !important;
    border-left-color: var(--color-accent);
 }

 .dropdown-menu li a::after {
    display: none !important;
 }

 /* MOBILE DROPDOWN */

 @media(max-width: 992px) {

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        border-radius: 0;
        min-width: 100%;
    }

    .has-dropdown.dropdown-open .dropdown-menu {
        max-height: 300px;
        padding: 5px 0;
    }

    .dropdown-menu li a {
        padding: 10px 20px 10px 40px !important;
        color: var(--color-gray-300) !important;
        font-size: 13px !important;
        border-left: none;
        border-left: 3px solid transparent;
    }

    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--color-accent) !important;
        border-left-color: var(--color-accent);
    }

    .has-dropdown > a::after {
        content: "\25B6";
        font-size: 8px;
        margin-left: 8px;
        transition: transform 0.3s ease;
        display: inline !important;
    }

    .has-dropdown.dropdown-open > a::after {
        transform: rotate(90deg);
    }
 }

 /* MOBILE MENU TOGGLE */

 .menu-toggle{
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    padding: 5px;
 }

 .menu-toggle span{
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition-base);
 }

 .menu-toggle.active span:nth-child(1){
    transform: rotate(45deg) translate(6px, 6px);
 }

 .menu-toggle.active span:nth-child(2){
    opacity: 0;
 }

 .menu-toggle.active span:nth-child(3){
    transform: rotate(-45deg) translate(6px, -6px);
 }

 /* RESPONSIVE HEADER */

 @media(max-width: 992px){

    .menu-toggle{
        display: flex;
    }

    .navbar{
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-primary);
        transition: var(--transition-smooth);
    }

    .navbar.active{
        left: 0;
    }

    .nav-links{
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 0;
    }

    .nav-links li{
        width: 100%;
        text-align: center;
    }

    .nav-links li a{
        display: block;
        padding: 15px 0;
        font-size: 18px;
    }
 }


/* =========================
   HERO SECTION
 ========================= */

 .hero-slider{
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
 }

 .hero-slider::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
 }

 /* SLIDE */

 .hero-slide{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .hero-slide.active{
    opacity: 1;
    visibility: visible;
 }

 .hero-slide.active .hero-text > *{
    animation: fadeInUp 0.8s ease forwards;
 }

 .hero-slide.active .hero-image img{
    animation: scaleIn 0.8s ease forwards;
 }

 @keyframes fadeInUp{
    from{
        opacity: 0;
        transform: translateY(30px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
 }

 @keyframes scaleIn{
    from{
        opacity: 0;
        transform: scale(0.9);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
 }

 /* CONTAINER */

 .hero-container{
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding-top: 80px;
 }

 /* LEFT TEXT */

 .hero-text{
    flex: 1;
    max-width: 600px;
 }

 .hero-subtitle{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: var(--color-accent-subtle);
    border-radius: 50px;
 }

 .hero-subtitle::before{
    content: "";
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
 }

 @keyframes pulse{
    0%, 100%{ opacity: 1; }
    50%{ opacity: 0.5; }
 }

 .hero-text h1{
    font-size: clamp(36px, 5vw, 64px);
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
 }

 .hero-text h1 span{
    color: var(--color-accent);
 }

 .hero-text p{
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-gray-300);
    margin-bottom: 40px;
 }

 /* BUTTONS */

 .hero-buttons{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
 }

 /* RIGHT IMAGE */

 .hero-image{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
 }

 .hero-image-wrapper{
    position: relative;
    width: 100%;
    max-width: 550px;
 }

 .hero-image-wrapper::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(40px);
 }

 .hero-image img{
    width: 100%;
    max-width: 550px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    animation: floatImage 6s ease-in-out infinite;
 }

 @keyframes floatImage{
    0%, 100%{ transform: translateY(0); }
    50%{ transform: translateY(-20px); }
 }

 /* SLIDER NAVIGATION */

 .slider-nav{
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
 }

 .slider-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
 }

 .slider-dot.active{
    background: var(--color-accent);
    width: 40px;
    border-radius: 10px;
 }

 .slider-arrows{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
 }

 .slider-btn{
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-base);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
 }

 .slider-btn:hover{
    background: var(--color-accent);
    border-color: var(--color-accent);
 }

 /* RESPONSIVE HERO */

 @media(max-width: 992px){

    .hero-container{
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        padding: 120px 20px 60px;
        gap: 40px;
    }

    .hero-text{
        max-width: 100%;
    }

    .hero-text h1{
        font-size: 38px;
    }

    .hero-text p{
        font-size: 16px;
    }

    .hero-buttons{
        justify-content: center;
    }

    .hero-image-wrapper{
        max-width: 400px;
    }

    .slider-arrows{
        display: none;
    }
 }

 @media(max-width: 768px){

    .hero-slider{
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-text h1{
        font-size: 30px;
    }

    .hero-subtitle{
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero-buttons{
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn{
        width: 100%;
    }

    .slider-nav{
        bottom: 20px;
    }
 }

/* SLIDE */

.hero-slide{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active{
    opacity: 1;
    z-index: 1;
}

/* OVERLAY */

.hero-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at top right,
        rgba(249,115,22,0.15),
        transparent 40%);
}

/* CONTAINER */

.hero-container{
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT TEXT */

.hero-text{
    flex: 1;
    color: #ffffff;
}

.hero-subtitle{
    display: inline-block;
    color: #f97316;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-text h1{
    font-size: 62px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text p{
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 35px;
    max-width: 650px;
}

/* BUTTONS */

.hero-buttons{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn{
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary{
    background: #f97316;
    color: #ffffff;
}

.btn-primary:hover{
    background: #ea580c;
    transform: translateY(-3px);
}

.btn-secondary{
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-secondary:hover{
    background: #ffffff;
    color: #0f172a;
    transform: translateY(-3px);
}

/* RIGHT IMAGE */

.hero-image{
    flex: 1;
    text-align: center;
}

.hero-image img{
    width: 100%;
    max-width: 650px;
    animation: floatImage 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */

@keyframes floatImage{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-15px);
    }

    100%{
        transform: translateY(0px);
    }
}

/* SLIDER BUTTONS */

.slider-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
}

.slider-btn:hover{
    background: #f97316;
}

.prev{
    left: 20px;
}

.next{
    right: 20px;
}

.hero-image img{
    background: transparent;
}

/* RESPONSIVE */

@media(max-width: 992px){

    .hero-container{
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 120px;
    }

    .hero-text h1{
        font-size: 42px;
    }

    .hero-text p{
        margin: auto;
        margin-bottom: 30px;
    }

    .hero-buttons{
        justify-content: center;
    }

    .hero-image img{
        max-width: 450px;
    }
}

@media(max-width: 768px){

    .hero-slider{
        height: auto;
        padding-bottom: 80px;
    }

    .hero-text h1{
        font-size: 34px;
    }

    .hero-text p{
        font-size: 16px;
    }

    .hero-image img{
        max-width: 100%;
    }

    .slider-btn{
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

@media(max-width: 480px){

    .hero-text h1{
        font-size: 28px;
    }

    .btn{
        width: 100%;
        text-align: center;
    }
}


/* =========================
   ABOUT SECTION
 ========================= */

 .about-section{
    width: 100%;
    padding: var(--section-padding) 0;
    background: var(--color-white);
    position: relative;
 }

 .about-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f8fafc' fill-opacity='0.7' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
 }

 /* CONTAINER */

 .about-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    position: relative;
 }

 /* LEFT IMAGE */

 .about-image{
    position: relative;
 }

 .about-image-wrapper{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
 }

 .about-image-wrapper::before{
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--color-accent);
    border-left: 3px solid var(--color-accent);
    border-radius: 20px 0 0 0;
 }

 .about-image-wrapper::after{
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 3px solid var(--color-accent);
    border-right: 3px solid var(--color-accent);
    border-radius: 0 0 20px 0;
 }

 .about-image img{
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    transition: var(--transition-smooth);
 }

 .about-image-wrapper:hover img{
    transform: scale(1.03);
 }

 /* RIGHT CONTENT */

 .about-content{
    padding: 20px 0;
 }

 .about-content .section-tag{
    text-align: left;
 }

 .about-content .section-tag::after{
    left: 0;
    transform: none;
 }

 .about-content h2{
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 25px;
 }

 .about-content > p{
    font-size: 17px;
    color: var(--color-gray-500);
    line-height: 1.9;
    margin-bottom: 30px;
 }

 /* FEATURES */

 .about-features{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
 }

 .feature-item{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 500;
 }

 .feature-item::before{
    content: "";
    width: 24px;
    height: 24px;
    background: var(--color-accent-subtle);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
 }

 /* BUTTON */

 .about-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
 }

 .about-btn:hover{
    background: var(--color-accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
 }

 .about-btn svg{
    transition: var(--transition-base);
 }

 .about-btn:hover svg{
    transform: translateX(5px);
 }

 /* RESPONSIVE */

 @media(max-width: 992px){

    .about-container{
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-content .section-tag{
        text-align: center;
    }

    .about-content .section-tag::after{
        left: 50%;
        transform: translateX(-50%);
    }

    .about-content h2{
        font-size: 34px;
    }

    .about-image{
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-features{
        justify-items: center;
    }

    .feature-item{
        justify-content: center;
    }
 }

 @media(max-width: 768px){

    .about-section{
        padding: var(--section-padding) 0;
    }

    .about-content h2{
        font-size: 28px;
    }

    .about-content > p{
        font-size: 16px;
    }

    .about-features{
        grid-template-columns: 1fr;
    }

    .about-btn{
        width: 100%;
        justify-content: center;
    }
 }


/* =========================
   PRODUCTS SECTION
 ========================= */

 .products-section{
    width: 100%;
    padding: var(--section-padding) 0;
    background: var(--color-gray-50);
 }

 .products-section .section-header{
    margin-bottom: 60px;
 }

 /* GRID */

 .products-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
 }

 /* CARD */

 .product-card{
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid var(--color-gray-100);
 }

 .product-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
 }

 .product-card:hover{
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
 }

 .product-card:hover::before{
    transform: scaleX(1);
 }

 /* IMAGE */

 .product-image{
    position: relative;
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-gray-50) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
 }

 .product-image::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.05), transparent);
 }

 .product-image img{
    width: 100%;
    max-width: 280px;
    max-height: 220px;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
 }

 .product-card:hover .product-image img{
    transform: scale(1.08) translateY(-10px);
 }

 /* BADGE */

 .product-badge{
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
 }

 /* CONTENT */

 .product-content{
    padding: 30px;
 }

 .product-content h3{
    font-size: 22px;
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.3;
 }

 .product-content p{
    font-size: 15px;
    color: var(--color-gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
 }

 /* SPECS */

 .product-specs{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
 }

 .spec-tag{
    font-size: 12px;
    color: var(--color-gray-500);
    background: var(--color-gray-100);
    padding: 6px 12px;
    border-radius: 6px;
 }

 /* BUTTON */

 .product-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--color-accent);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--color-accent);
    transition: var(--transition-smooth);
 }

 .product-btn:hover{
    background: var(--color-accent);
    color: var(--color-white);
 }

 /* RESPONSIVE PRODUCTS */

 @media(max-width: 992px){

    .products-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
 }

 @media(max-width: 768px){

    .products-grid{
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .product-image{
        height: 240px;
    }
 }



/* =========================
   WHY CHOOSE US
 ========================= */

 .why-us-section{
    padding: var(--section-padding) 0;
    background: var(--color-white);
 }

 .why-us-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
 }

 .why-card{
    position: relative;
    background: var(--color-gray-50);
    padding: 45px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--color-gray-100);
    overflow: hidden;
 }

 .why-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
 }

 .why-card:hover{
    transform: translateY(-10px);
    border-color: transparent;
 }

 .why-card:hover::before{
    opacity: 1;
 }

 .why-card > *{
    position: relative;
    z-index: 1;
 }

 .why-icon{
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--color-accent-subtle);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
 }

 .why-card:hover .why-icon{
    background: var(--color-accent);
 }

 .why-icon svg{
    width: 36px;
    height: 36px;
    stroke: var(--color-accent);
    transition: var(--transition-smooth);
 }

 .why-card:hover .why-icon svg{
    stroke: var(--color-white);
 }

 .why-card h3{
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-primary);
    transition: var(--transition-smooth);
 }

 .why-card p{
    color: var(--color-gray-500);
    line-height: 1.7;
    font-size: 15px;
    transition: var(--transition-smooth);
 }

 .why-card:hover h3,
 .why-card:hover p{
    color: var(--color-white);
 }

 /* RESPONSIVE WHY US */

 @media(max-width: 992px){

    .why-us-grid{
        grid-template-columns: repeat(2, 1fr);
    }
 }

 @media(max-width: 768px){

    .why-us-grid{
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
 }



/* =========================
   STATISTICS / COUNTER
 ========================= */

 .counter-section{
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    position: relative;
    overflow: hidden;
 }

 .counter-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
 }

 .counter-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
 }

 /* COUNTER BOX */

 .counter-box{
    text-align: center;
    padding: 30px 20px;
    position: relative;
 }

 .counter-box::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
 }

 .counter-box:last-child::after{
    display: none;
 }

 /* NUMBER */

 .counter-box .counter-number{
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
 }

 .counter-box .counter-number span{
    font-size: 32px;
 }

 /* TEXT */

 .counter-box .counter-label{
    color: var(--color-gray-300);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
 }

 /* ICONS */

 .counter-icon{
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: var(--color-accent-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
 }

 .counter-icon svg{
    width: 24px;
    height: 24px;
    stroke: var(--color-accent);
 }

 /* RESPONSIVE */

 @media(max-width: 992px){

    .counter-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .counter-box::after{
        display: none;
    }

    .counter-number{
        font-size: 48px;
    }
 }

 @media(max-width: 768px){

    .counter-grid{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .counter-box{
        padding: 20px;
    }

    .counter-number{
        font-size: 42px;
    }

    .counter-label{
        font-size: 14px;
    }
 }


/* =========================
   GALLERY
 ========================= */

 .gallery-section{
    padding: var(--section-padding) 0;
    background: var(--color-gray-50);
 }

 .gallery-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
 }

 .gallery-item{
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-gray-200);
 }

 .gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
 }

 .gallery-item:hover img{
    transform: scale(1.1);
 }

 .gallery-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
 }

 .gallery-item:hover .gallery-overlay{
    opacity: 1;
 }

 .gallery-overlay svg{
    width: 40px;
    height: 40px;
    stroke: var(--color-white);
    opacity: 0.8;
 }

 /* PLACEHOLDER FOR MISSING IMAGES */
 .gallery-placeholder{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gray-200) 0%, var(--color-gray-100) 100%);
 }

 .gallery-placeholder svg{
    width: 60px;
    height: 60px;
    stroke: var(--color-gray-400);
 }

 @media(max-width: 992px){

    .gallery-grid{
        grid-template-columns: repeat(2, 1fr);
    }
 }

 @media(max-width: 768px){

    .gallery-grid{
        grid-template-columns: 1fr;
    }
 }

 /* =========================
    CTA SECTION
 ========================= */

 .cta-section{
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
 }

 .cta-section::before{
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    animation: rotateGradient 20s linear infinite;
 }

 @keyframes rotateGradient{
    from{ transform: rotate(0deg); }
    to{ transform: rotate(360deg); }
 }

 .cta-container{
    position: relative;
    z-index: 1;
 }

 .cta-container h2{
    font-size: 48px;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
 }

 .cta-container h2 span{
    color: var(--color-accent);
 }

 .cta-container p{
    font-size: 18px;
    color: var(--color-gray-300);
    margin-bottom: 40px;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 .cta-buttons{
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
 }

 .btn-whatsapp{
    background: #25D366;
    color: var(--color-white);
    border-color: #25D366;
 }

 .btn-whatsapp:hover{
    background: #128C7E;
    border-color: #128C7E;
 }

 @media(max-width: 768px){

    .cta-container h2{
        font-size: 32px;
    }

    .cta-container p{
        font-size: 16px;
    }

    .cta-buttons{
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn{
        width: 100%;
        max-width: 280px;
    }
 }



/* =========================
   FOOTER
 ========================= */

 .footer{
    background: var(--color-primary-dark);
    padding-top: 80px;
    position: relative;
 }

 .footer::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
 }

 .footer-grid{
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
 }

 /* BRAND COLUMN */
 .footer-brand .logo{
    margin-bottom: 20px;
 }

 .footer-brand .logo a{
    font-size: 22px;
 }

 .footer-brand p{
    color: var(--color-gray-400);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
 }

 .social-links{
    display: flex;
    gap: 12px;
 }

 .social-link{
    width: 40px;
    height: 40px;
    background: var(--color-primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    transition: var(--transition-base);
 }

 .social-link:hover{
    background: var(--color-accent);
    color: var(--color-white);
 }

 .social-link svg{
     width: 18px;
     height: 18px;
  }

/* FLOATING CTA - Shriram yv Su */
.float-wrapper{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:999;
}
.float-btn{
    width:56px;height:56px;
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    color:#fff;
    box-shadow:0 8px 24px rgba(0,0,0,0.18);
    transition:all 0.3s ease;
}
.float-btn:hover{transform:translateY(-3px) scale(1.05);}
.float-call{background:linear-gradient(135deg,#0f172a 0%,#1e293b 100%);}
.float-whatsapp{background:#25D366;}
@media(max-width:768px){
    .float-wrapper{right:14px;bottom:14px;}
    .float-btn{width:50px;height:50px;}
}

 /* COLUMN TITLES */
 .footer-box h3{
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
 }

 .footer-box h3::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-accent);
 }

 /* LINKS */
 .footer-box ul{
    list-style: none;
 }

 .footer-box ul li{
    margin-bottom: 12px;
 }

 .footer-box ul li a{
    color: var(--color-gray-400);
    font-size: 15px;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
 }

 .footer-box ul li a::before{
    content: "";
    width: 6px;
    height: 6px;
    background: var(--color-gray-500);
    border-radius: 50%;
    transition: var(--transition-base);
 }

 .footer-box ul li a:hover{
    color: var(--color-accent);
    transform: translateX(5px);
 }

 .footer-box ul li a:hover::before{
    background: var(--color-accent);
 }

 /* CONTACT */
 .contact-info{
    display: flex;
    flex-direction: column;
    gap: 15px;
 }

 .contact-item{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-gray-400);
    font-size: 15px;
 }

 .contact-item svg{
    width: 18px;
    height: 18px;
    stroke: var(--color-accent);
    flex-shrink: 0;
    margin-top: 3px;
 }

 .contact-item a{
    color: var(--color-gray-400);
 }

 .contact-item a:hover{
    color: var(--color-accent);
 }

 /* BOTTOM */
 .footer-bottom{
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid var(--color-primary-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
 }

 .footer-bottom p{
    color: var(--color-gray-500);
    font-size: 14px;
 }

 .footer-bottom-links{
    display: flex;
    gap: 25px;
 }

 .footer-bottom-links a{
    color: var(--color-gray-500);
    font-size: 14px;
 }

 .footer-bottom-links a:hover{
    color: var(--color-accent);
 }

 /* RESPONSIVE FOOTER */

 @media(max-width: 992px){

    .footer-grid{
        grid-template-columns: repeat(2, 1fr);
    }
 }

 @media(max-width: 768px){

    .footer-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom{
        flex-direction: column;
        text-align: center;
    }

.footer-bottom-links{
        justify-content: center;
    }
  }

/* ========================================
   HOMEPAGE PREVIEW SECTIONS
======================================== */

/* ---- HOME ABOUT SECTION ---- */
.home-about-section{
    padding: var(--section-padding) 0;
    background: var(--color-white);
    position: relative;
}

.home-about-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f8fafc' fill-opacity='0.7' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.home-about-grid{
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.home-about-image{
    position: relative;
}

.home-about-image .about-image-wrapper{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.home-about-image .about-image-wrapper::before{
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    border-top: 3px solid var(--color-accent);
    border-left: 3px solid var(--color-accent);
    border-radius: 15px 0 0 0;
    z-index: 1;
}

.home-about-image .about-image-wrapper::after{
    content: "";
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    border-bottom: 3px solid var(--color-accent);
    border-right: 3px solid var(--color-accent);
    border-radius: 0 0 15px 0;
    z-index: 1;
}

.home-about-image img{
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage{
    0%, 100%{ transform: translateY(0); }
    50%{ transform: translateY(-10px); }
}

@keyframes fadeIn{
    from{ opacity: 0; }
    to{ opacity: 1; }
}

@keyframes fadeOut{
    from{ opacity: 1; }
    to{ opacity: 0; }
}

.home-about-image:hover img{
    transform: scale(1.03);
}

.home-about-image:hover img{
    animation: none;
    transform: scale(1.03);
}

.about-image-badge{
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-accent);
    padding: 25px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-accent);
    z-index: 2;
}

.about-image-badge .badge-number{
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.about-image-badge .badge-text{
    display: block;
    font-size: 12px;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.home-about-content .section-tag{
    text-align: left;
}

.home-about-content .section-tag::after{
    left: 0;
    transform: none;
}

.home-about-content h2{
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.home-about-content > p{
    font-size: 17px;
    color: var(--color-gray-600);
    line-height: 1.9;
    margin-bottom: 20px;
}

.home-about-features{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
}

.home-about-features .feature-item{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-primary);
    font-weight: 500;
}

.home-about-features .feature-item::before{
    content: "";
    width: 24px;
    height: 24px;
    background: var(--color-accent-subtle);
    border-radius: 6px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.about-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.about-btn:hover{
    background: var(--color-accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

.about-btn svg{
    transition: var(--transition-base);
}

.about-btn:hover svg{
    transform: translateX(5px);
}

/* ---- FEATURED PRODUCTS SECTION ---- */
.featured-products-section{
    padding: var(--section-padding) 0;
    background: var(--color-gray-50);
}

.featured-products-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 50px;
}

.featured-products-cta{
    text-align: center;
}

.featured-products-section .section-header{
    margin-bottom: 50px;
}

.featured-products-section .section-desc{
    max-width: 650px;
    margin: 0 auto;
}

/* ---- HOME GALLERY SECTION ---- */
.home-gallery-section{
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.home-gallery-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 20px;
    margin-bottom: 50px;
}

.home-gallery-grid .gallery-item{
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-gray-100);
}

.home-gallery-grid .gallery-item.large{
    grid-column: span 2;
    grid-row: span 2;
}

.home-gallery-grid .gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.home-gallery-grid .gallery-item:hover img{
    transform: scale(1.1);
}

.home-gallery-grid .gallery-overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    opacity: 0;
    transition: var(--transition-base);
    display: flex;
    align-items: flex-end;
}

.home-gallery-grid .gallery-item:hover .gallery-overlay{
    opacity: 1;
}

.home-gallery-grid .gallery-overlay span{
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
}

.home-gallery-cta{
    text-align: center;
}

/* ---- HOME VIDEO SECTION ---- */
.home-video-section{
    padding: var(--section-padding) 0;
    background: var(--color-gray-50);
}

/* .section-divider{
    border: none;
    height: 2px;
    background: var(--color-gray-200);
    margin: 0;
} */

.home-video-wrapper{
    max-width: 900px;
    margin: 0 auto;
}

.video-container{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--color-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-container iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ---- RESPONSIVE ---- */
@media(max-width: 1200px){
    .home-about-grid{
        gap: 50px;
    }
    
    .featured-products-grid{
        gap: 25px;
    }
    
    .home-gallery-grid{
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 220px);
    }
    
    .home-gallery-grid .gallery-item.large{
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media(max-width: 992px){
    .home-about-grid{
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .home-about-image{
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .home-about-content .section-tag{
        text-align: center;
    }
    
    .home-about-content .section-tag::after{
        left: 50%;
        transform: translateX(-50%);
    }
    
    .home-about-content h2{
        font-size: 34px;
    }
    
    .home-about-features{
        align-items: center;
    }
    
    .featured-products-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .home-gallery-grid{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    
    .home-gallery-grid .gallery-item.large{
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media(max-width: 768px){
    .home-about-section{
        padding: var(--section-padding) 0;
    }
    
    .home-about-content h2{
        font-size: 28px;
    }
    
    .home-about-content > p{
        font-size: 16px;
    }
    
    .about-image-badge{
        padding: 20px 25px;
    }
    
    .badge-number{
        font-size: 28px;
    }
    
    .featured-products-section{
        padding: var(--section-padding) 0;
    }
    
    .featured-products-grid{
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }
    
    .home-gallery-grid{
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .home-gallery-grid .gallery-item{
        height: 250px;
    }
    
    .home-gallery-grid .gallery-item.large{
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media(max-width: 480px){
    .about-btn{
        width: 100%;
        justify-content: center;
    }
}