@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-orange: #EA5B23;
    --primary-green: #177B42;
    --text-color: #333333;
    --heading-color: #111111;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --border-color: #e5e5e5;
    
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition: all 0.3s ease-in-out;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--text-color); line-height: 1.7; background: var(--bg-light); overflow-x: hidden; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--heading-color); font-weight: 700; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.row { display: flex; flex-wrap: wrap; margin-left: -15px; margin-right: -15px; }
[class*="col-"] { padding: 0 15px; width: 100%; }

@media (min-width: 768px) {
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
}

@media (min-width: 992px) {
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Grid & Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.flex-grow-1 { flex-grow: 1; }

.m-0 { margin: 0; }
.p-0 { padding: 0; }
.mb-3 { margin-bottom: 15px; }
.mb-4 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 48px; }
.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 48px; }
.py-5 { padding-top: 48px; padding-bottom: 48px; }
.mx-0 { margin-left: 0; margin-right: 0; }

.border-right { border-right: 1px solid #e1e4ed; }
@media (max-width: 768px) {
    .border-right { border-right: none; }
    .pl-md-4 { padding-left: 0; }
}
@media (min-width: 768px) {
    .pl-md-4 { padding-left: 24px; }
}
.g-0 { margin-left: 0; margin-right: 0; }
.g-0 > [class*="col-"] { padding-left: 0; padding-right: 0; }

/* Unique Slanted Top Bar */
.header-top-unique { 
    display: flex; 
    height: 45px; 
    background: var(--primary-green); /* Logo Green */
    overflow: hidden; 
    font-size: 14px;
    position: relative;
    z-index: 1; /* For absolute shapes to stay behind */
}
/* Left Orange Shape */
.header-top-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    bottom: 0;
    width: 15%; /* Width of left piece */
    background: #de5929; /* Exact orange */
    border-radius: 0 0 20px 0; /* Bottom-right curve */
    transform: skewX(40deg); /* Exact angle */
    border-right: 5px solid #fff; /* White gap */
    z-index: -1;
}
/* Right Orange Shape */
.header-top-unique::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 40%; /* Width of right piece */
    height: 100%;
    background: #de5929; /* Exact orange */
    transform: skewX(40deg); /* Exact angle */
    border-radius: 20px 0 0 0; /* Top-left curve */
    border-left: 5px solid #fff; /* White gap */
    z-index: -1;
}

.top-bar-left {
    flex: 0 0 15%; /* Spacer to match the left shape */
    display: block; 
}

.top-bar-center {
    flex: 1; /* Takes remaining center space */
    display: flex;
    align-items: center;
    justify-content: center; /* Centers perfectly in the maroon area */
    padding-left: 0; 
}
.unskew-content {
    transform: none; /* No unskewing needed anymore */
    display: flex;
    gap: 35px;
}
.unskew-content a {
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
}
.unskew-content a:hover { color: #de5929; }
.unskew-content i { color: #fff; }

.top-bar-right {
    flex: 0 0 35%; /* Width stays within the right shape */
    display: flex;
    align-items: center;
    justify-content: center; /* Centers perfectly in the orange area */
    padding-left: 0; 
}
.social-wrapper {
    transform: none; /* No unskewing needed anymore */
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}
.social-wrapper span { font-weight: 500; font-size: 14px; }
.social-wrapper a { color: #fff; transition: var(--transition); font-size: 15px; }
.social-wrapper a:hover { color: #a02426; transform: translateY(-2px); display: inline-block; }

/* Responsive adjustments for top bar */
@media (max-width: 992px) {
    .unskew-content a[href^="mailto:"] { display: none; } /* Hide email */
    .social-wrapper span { display: none; } /* Hide "Follow Us:" text */
}

/* Main Header */
.site-header { background: #fff; padding: 15px 0; border-bottom: 1px solid var(--border-color); position: relative; z-index: 1000; }
.site-header.scrolled { position: fixed; top: 0; width: 100%; box-shadow: var(--shadow); animation: slideDown 0.5s ease; }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.nav-container { display: flex; justify-content: space-between; align-items: center; position: relative; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links > a, .nav-links > .dropdown > a { font-family: var(--font-heading); font-size: 16px; font-weight: 600; color: var(--heading-color); text-transform: capitalize; cursor: pointer; padding: 10px 0; }
.nav-links > a:hover, .nav-links > .dropdown:hover > a { color: var(--primary-orange); }

/* Dropdown */
.desktop-arrow { margin-left: 6px; font-size: 12px; transition: transform 0.3s ease; }
.dropdown:hover .desktop-arrow { transform: rotate(180deg); color: var(--primary-orange); }
.mobile-submenu-toggle { display: none; }
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: #fff; min-width: 250px; padding: 15px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transition: var(--transition); border-top: 3px solid var(--primary-orange); z-index: 100; transform: translateY(15px); }
.dropdown:hover > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 20px; font-weight: 500; color: var(--text-color); transition: var(--transition); }
.dropdown-menu a:hover { color: var(--primary-orange); padding-left: 25px; }

/* Nested Submenu Dropdown */
.dropdown-submenu { position: relative; }
.dropdown-submenu > .dropdown-menu { top: 0; left: 100%; margin-top: -15px; border-top: none; border-left: 3px solid var(--primary-orange); }
.dropdown-submenu:hover > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

/* Mega Menu */
.mega-menu { position: static !important; }
.mega-menu .dropdown-menu.mega-menu-content { 
    width: 100%; 
    left: 0; 
    right: 0; 
    display: flex; 
    flex-wrap: wrap; 
    padding: 30px; 
    justify-content: space-between; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); 
    border-radius: 0 0 10px 10px;
}
.mega-menu-column { flex: 1; min-width: 250px; padding: 0 20px; border-right: 1px solid #f0f0f0; }
.mega-menu-column:last-child { border-right: none; }
.mega-menu-title { font-size: 18px !important; font-weight: 800 !important; color: var(--primary-green) !important; padding: 0 0 15px 0 !important; margin-bottom: 15px; border-bottom: 2px solid var(--primary-orange); text-transform: uppercase; letter-spacing: 1px; }
.mega-menu-title:hover { color: var(--primary-orange) !important; padding-left: 0 !important; }
.mega-menu-links { display: flex; flex-direction: column; }
.mega-menu-links a { padding: 10px 0 !important; font-size: 15px; border-bottom: 1px dashed #f0f0f0; transition: var(--transition); display: block; }
.mega-menu-links a:last-child { border-bottom: none; }
.mega-menu-links a:hover { padding-left: 10px !important; color: var(--primary-orange) !important; background: transparent !important; }

/* Buttons */
.theme-btn { display: inline-block; padding: 14px 35px; background: var(--primary-orange); color: #fff; font-family: var(--font-heading); font-weight: 600; border-radius: 4px; border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.theme-btn:hover { background: var(--heading-color); color: #fff; }
.theme-btn2 { display: inline-block; padding: 14px 35px; background: var(--primary-green); color: #fff; font-family: var(--font-heading); font-weight: 600; border-radius: 4px; border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.theme-btn2:hover { background: var(--heading-color); color: #fff; }



/* Hero Slider */
.hero-slider-wrap { position: relative; }
.hero-slide { position: relative; padding: 180px 0; display: flex; align-items: center; background-size: cover; background-position: center; z-index: 1; }
.hero-slide::before { display: none; }
.hero-sub-title { color: var(--primary-orange); font-size: 18px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; }
.hero-title { font-size: 60px; color: #fff; margin-bottom: 25px; line-height: 1.1; }
.hero-title span { color: var(--primary-orange); }
.hero-slide p { color: #fff; font-size: 18px; max-width: 600px; margin-bottom: 40px; }
.hero-btn { display: flex; gap: 20px; }
@media (max-width: 768px) { .hero-title { font-size: 40px; } }

/* Section Title */
.site-heading { margin-bottom: 50px; }
.site-title-tagline { color: var(--primary-orange); font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 10px; }
.site-title { font-size: 42px; color: var(--heading-color); line-height: 1.2; }
.site-title span { color: var(--primary-orange); }

/* About Section */
.about-area { padding: 100px 0; }
.about-left { position: relative; }
.about-img {
    position: relative;
    height: 500px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-img::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5%;
    width: 60%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 3px solid var(--primary-orange);
    z-index: -1;
}
.about-img::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 5%;
    width: 60%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 3px solid var(--primary-orange);
    z-index: -1;
}
.about-img .img-1 {
    position: absolute;
    left: 15px;
    top: calc(5% + 15px);
    width: calc(60% - 30px);
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: none;
    display: block;
}
.about-img .img-2 {
    position: absolute;
    bottom: calc(5% + 15px);
    right: 15px;
    width: calc(60% - 30px);
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #fff;
    box-shadow: none;
    z-index: 2;
}
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}
.about-experience {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-orange);
    color: #fff;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    text-align: center;
    border: 8px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.about-experience h5 { font-size: 42px; color: #fff; margin: 0; line-height: 1; font-weight: 700; }
.about-experience h5 span { color: #fff; font-size: 26px; vertical-align: top; }
.about-experience p { margin: 5px 0 0 0; font-size: 13px; font-weight: 600; text-transform: capitalize; line-height: 1.2; }
.about-right { padding-left: 40px; }
.about-text { margin-bottom: 25px; }

/* Product Slider New Design */
.product-slider-area {
    background: var(--primary-green);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.product-slider-area::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiPgo8cmVjdCB3aWR0aD0iOCIgaGVpZ2h0PSI4IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiPjwvcmVjdD4KPC9zdmc+');
    opacity: 0.5;
}
.product-left-content {
    color: #fff;
    padding-right: 30px;
}
.product-left-content h2 {
    color: #fff;
    font-size: 45px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.product-left-content h2 span {
    color: var(--primary-orange);
}
.product-left-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}
.newProductSwiper .swiper-slide {
    height: auto; /* Forces slides to stretch to the tallest slide */
}
.new-product-card {
    background: #fff;
    border-radius: 30px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.new-product-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}
.new-product-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.new-product-card:hover .new-product-img img {
    transform: scale(1.08);
}
.new-product-title {
    color: var(--primary-orange);
    font-size: 22px;
    margin-bottom: 15px;
    padding: 0 10px;
}
.new-product-list {
    margin: 0 0 20px 0;
    padding: 0 10px;
    list-style: none;
    flex-grow: 1;
}
.new-product-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
    border-bottom: 1px dashed #eee;
}
.new-product-list li:last-child {
    border-bottom: none;
}
.new-product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 10px;
    margin-top: auto;
}
.new-product-btn {
    background: var(--primary-orange);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}
.new-product-btn:hover {
    background: var(--heading-color);
    color: #fff;
}
.new-product-number {
    font-size: 50px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-orange);
    line-height: 1;
    font-family: var(--font-heading);
}

/* Swiper navigation for products */
.product-slider-wrap {
    position: relative;
    padding: 0 20px; /* Space for arrows */
}
.product-nav-next, .product-nav-prev {
    width: 45px;
    height: 45px;
    background: var(--primary-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(234, 91, 35, 0.4);
    transition: var(--transition);
}
.product-nav-next:hover, .product-nav-prev:hover {
    background: #fff;
    color: var(--primary-orange);
}
.product-nav-prev { left: -15px; }
.product-nav-next { right: -15px; }
@media (max-width: 992px) {
    .product-left-content { margin-bottom: 50px; text-align: center; padding-right: 0; }
}
.swiper-pagination-bullet-active { background: var(--primary-orange) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--primary-orange) !important; }

/* Footer */
/* Footer */
.footer-area {
    background-color: #0f1c15; /* Deep premium green/black */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    color: #a0aab0;
    padding: 80px 0 0;
    position: relative;
    border-top: 4px solid var(--primary-orange);
}

.footer-row {
    justify-content: space-between;
}

.footer-col-about {
    flex: 0 0 280px;
    max-width: 280px;
    padding: 0 15px;
}
.footer-col-links {
    flex: 0 0 auto;
    width: auto;
    padding: 0 15px;
}
.footer-col-contact {
    flex: 0 0 250px;
    max-width: 250px;
    padding: 0 15px;
}

@media (max-width: 1199px) {
    .footer-col-about { flex: 0 0 25%; max-width: 25%; }
    .footer-col-contact { flex: 0 0 22%; max-width: 22%; }
}

@media (max-width: 991px) {
    .footer-col-about, .footer-col-links, .footer-col-contact {
        flex: 0 0 50%;
        max-width: 50%;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .footer-col-about, .footer-col-links, .footer-col-contact {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
}

.footer-widget { margin-bottom: 40px; }
.footer-logo { margin-bottom: 25px; }
.footer-logo img {
    max-width: 220px;
    height: auto;
}
.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}
.footer-widget h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}
.footer-widget h4::after {
    content: ''; position: absolute;
    left: 0; bottom: 0;
    width: 30px; height: 2px;
    background: var(--primary-orange);
}
.footer-links li { margin-bottom: 15px; }
.footer-links li a {
    color: #a0aab0;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.footer-links li a i { font-size: 12px; transition: var(--transition); }
.footer-links li a:hover { color: var(--primary-orange); }
.footer-links li a:hover i { transform: translateX(5px); }

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.footer-contact li .icon {
    width: 40px; height: 40px;
    background: rgba(234, 91, 35, 0.1);
    color: var(--primary-orange);
    display: flex; align-items: center; justify-content: center;
    border-radius: 5px;
    flex-shrink: 0;
    transition: var(--transition);
}
.footer-contact li:hover .icon {
    background: var(--primary-orange);
    color: #fff;
}
.footer-contact li .text h6 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
}
.footer-contact li .text p {
    margin: 0;
    font-size: 14px;
}
.footer-contact li .text p a { color: #a0aab0; transition: var(--transition); }
.footer-contact li .text p a:hover { color: var(--primary-orange); }

.footer-bottom {
    background: #0a130e;
    padding: 25px 0;
    text-align: center;
    color: #667279;
    margin-top: 20px;
    font-size: 14px;
}

/* Utilities */
.mb-40 { margin-bottom: 40px; }
.pb-20 { padding-bottom: 20px; }
.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }
.pt-80 { padding-top: 80px; }
.pb-80 { padding-bottom: 80px; }
.pt-60 { padding-top: 60px; }
.pb-60 { padding-bottom: 60px; }
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-50 { margin-bottom: 50px; }
.ml-30 { margin-left: 30px; }
.bg-light { background-color: var(--bg-gray); }

/* Read More Button */
.read-more-btn { color: var(--primary-green); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; font-size: 15px; }
.read-more-btn:hover { color: var(--primary-orange); gap: 12px; }

/* Expertise */
.expertise-card { background: #fff; padding: 40px 30px; border-radius: 10px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); border-bottom: 3px solid transparent; height: 100%; }
.expertise-card:hover { transform: translateY(-10px); border-bottom-color: var(--primary-green); }
.expertise-card .icon { font-size: 40px; color: var(--primary-orange); margin-bottom: 20px; }
.expertise-card h4 { margin-bottom: 15px; }

/* Counters Premium Design */
.counter-area {
    position: relative;
    background: var(--primary-green); /* Solid brand color matching the reference */
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+PHBhdGggZD0iTTU0LjYyNyAwTDYwIDUuMzczdi4wMDEtLjAwMWwtNS4zNzMgNS4zNzItMi4xNDItMi4xNDIgMy4yMzEtMy4yMzFINC4yOTl2LTJIMzIuNTE1bDcuNDcxIDcuNDcxLTkuNjQzIDkuNjQzLTEuNDEtMS40MTQgOC4yMjktOC4yMjktNi4wNTgtNi4wNThsLTExLjkyIDExLjkxOSAxMS45MiAxMS45MiA2LjA1OC02LjA1OC04LjIyOS04LjIyOSAxLjQxNC0xLjQxNCA5LjY0MyA5LjY0My03LjQ3MSA3LjQ3MUg0LjI5OXYtMmgyOC4yMTZsLTMuMjMxLTMuMjMxIDIuMTQyLTIuMTQyIDUuMzczIDUuMzczTDU0LjYyNyA2MEw2MCA1NC42Mjd2LjAwMS0uMDAxbC01LjM3My01LjM3My0yLjE0MiAyLjE0MiAzLjIzMSAzLjIzMUg0LjI5OXYtMmgyOC4yMTZsNy40NzEtNy40NzEtOS42NDMtOS42NDMtMS40MSAxLjQxNCA4LjIyOSA4LjIyOS02LjA1OCA2LjA1OGwtMTEuOTItMTEuOTE5IDExLjkyLTExLjkyIDYuMDU4IDYuMDU4LTguMjI5IDguMjI5IDEuNDE0IDEuNDE0IDkuNjQzLTkuNjQzLTcuNDcxLTcuNDcxSDQuMjk5di0yaDI4LjIxNmwzLjIzMS0zLjIzMXoiIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNCIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+'); /* Subtle pattern */
    z-index: 1;
}
.counter-heading {
    margin-bottom: 40px;
    color: #fff;
    text-align: center;
}
.counter-heading h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 15px;
}
.counter-heading .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.counter-heading .divider span {
    width: 60px;
    height: 3px;
    background: #fff;
    position: relative;
}
.counter-heading .divider span::after {
    content: '';
    position: absolute;
    left: 10px; right: 10px; top: 0; height: 100%;
    background: var(--primary-orange);
}
.counter-heading p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}
.counter-box {
    text-align: center;
    padding: 40px 20px;
    background: transparent;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Thin subtle border */
    height: 100%;
    transition: var(--transition);
    position: relative;
}
.counter-box:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.03);
}
.counter-box .icon-circle {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px; /* Center it horizontally and add space below */
    font-size: 30px;
    color: var(--primary-orange); /* Orange icon on white circle */
}
.counter-val {
    display: flex;
    align-items: baseline;
    justify-content: center;
}
.counter-box h2 {
    font-size: 45px;
    display: inline-block;
    margin: 0;
    color: #fff;
    line-height: 1;
    font-weight: 700;
}
.counter-box span {
    font-size: 30px;
    color: #fff; /* Plus signs in white matching screenshot */
    font-weight: 500;
    margin-left: 2px;
}
.counter-box p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    margin-top: 10px;
}

/* Reviews */
.reviewSwiper .swiper-slide { height: auto; }
.review-item { background: var(--bg-gray); padding: 40px; border-radius: 10px; position: relative; margin: 15px; transition: var(--transition); border-left: 4px solid var(--primary-orange); display: flex; flex-direction: column; height: calc(100% - 30px); }
.review-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quote-icon { position: absolute; top: 30px; right: 30px; font-size: 60px; color: rgba(234, 91, 35, 0.1); }
.review-text { font-size: 18px; font-style: italic; margin-bottom: 30px; color: var(--heading-color); line-height: 1.8; }
.reviewer-info { margin-top: auto; }
.reviewer-info h5 { margin: 0; color: var(--primary-green); font-size: 20px; }
.reviewer-info span { font-size: 14px; color: #777; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* Clients Dual Marquee */
.marquee-container {
    overflow: hidden;
    width: 100%;
}
.marquee-row {
    display: flex;
    white-space: nowrap;
}
.marquee-content {
    display: flex;
    animation: marquee-scroll linear infinite;
}
.marquee-left .marquee-content {
    animation-duration: 35s;
}
.marquee-right .marquee-content {
    animation-direction: reverse;
    animation-duration: 40s;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.dummy-logo {
    min-width: 220px;
    height: 80px;
    background: #fff;
    margin: 0 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary-green);
    font-size: 18px;
    font-family: var(--font-heading);
    transition: var(--transition);
    cursor: pointer;
}
.dummy-logo i {
    margin-right: 12px;
    font-size: 24px;
    color: var(--primary-orange);
}
.dummy-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(234, 91, 35, 0.15);
    color: var(--primary-orange);
}

/* Quote Section Premium Design */
.premium-quote-card {
    background: #fff;
    border-radius: 30px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}
.quote-img-premium {
    height: 100%;
    min-height: 500px;
    background-image: url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}
.quote-img-premium::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}
.quote-form-wrap {
    padding: 60px 50px;
    background: #fff;
}
.premium-input {
    background: #f4f7f9 !important;
    border: 1px solid transparent !important;
    border-radius: 12px !important;
    padding: 15px 20px !important;
    font-size: 15px;
    color: var(--text-color);
    box-shadow: none !important;
    transition: var(--transition);
}
.premium-input:focus {
    background: #fff !important;
    border-color: var(--primary-orange) !important;
    box-shadow: 0 10px 20px rgba(234, 91, 35, 0.1) !important;
    outline: none;
}
.premium-input::placeholder {
    color: #999;
}

/* Restored Form Control */
.form-control { width: 100%; padding: 15px 20px; border: 1px solid var(--border-color); border-radius: 5px; font-family: var(--font-body); font-size: 16px; outline: none; transition: var(--transition); background: var(--bg-gray); }
.form-control:focus { border-color: var(--primary-green); background: #fff; }

/* Missing Utility Classes */
.w-100 { width: 100% !important; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mb-30 { margin-bottom: 30px; }

/* GSAP utility classes (initial state before animation) */
.gsap-fade-up, .gsap-fade-left, .gsap-fade-right { opacity: 0; visibility: hidden; }

/* ==========================================================================
   Premium Product Redesign
   ========================================================================== */
.premium-hero { position: relative; padding: 100px 0; background: linear-gradient(135deg, var(--primary-green) 0%, #0a3d20 100%); color: #fff; overflow: hidden; }
.premium-hero::before { content: ''; position: absolute; top: -50%; left: -10%; width: 50%; height: 200%; background: var(--primary-orange); transform: rotate(15deg); opacity: 0.9; z-index: 1; }
.premium-hero-content { position: relative; z-index: 2; }
.premium-hero-title { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); }
.premium-hero-subtitle { font-size: 1.25rem; opacity: 0.9; max-width: 600px; margin-bottom: 0; }
@media (max-width: 768px) {
    .premium-hero::before { width: 100%; left: -30%; }
    .premium-hero-title { font-size: 2.5rem; }
}

.premium-section { padding: 50px 0; position: relative; z-index: 1; overflow: hidden; }
.premium-section.bg-light-pattern { background-color: #f8fcf9; background-image: radial-gradient(var(--primary-green) 1px, transparent 1px); background-size: 30px 30px; }
.premium-section.bg-dark-pattern { background-color: #fcf9f8; background-image: radial-gradient(var(--primary-orange) 1px, transparent 1px); background-size: 30px 30px; }

.premium-card-wrapper { position: relative; display: flex; align-items: center; justify-content: center; z-index: 2; margin-top: 20px; margin-bottom: 20px; }
.premium-img-box { position: relative; width: 100%; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.15); transition: var(--transition); z-index: 1; }
.premium-img-box::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 20px; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.2); pointer-events: none; }
.premium-img-box img { width: 100%; height: auto; object-fit: contain; transition: transform 0.7s ease; display: block; background: transparent; }
.premium-card-wrapper:hover .premium-img-box img { transform: scale(1.05); }

/* The overlapping text box */
.premium-text-box { background: #fff; padding: 50px; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); position: relative; z-index: 3; transition: var(--transition); margin-top: -80px; margin-left: 15px; margin-right: 15px; }
@media (min-width: 992px) {
    .premium-text-box.offset-left { margin-top: 0; margin-left: -100px; margin-right: 0; }
    .premium-text-box.offset-right { margin-top: 0; margin-right: -100px; margin-left: 0; }
}
.premium-text-box:hover { transform: translateY(-5px); box-shadow: 0 35px 65px rgba(234, 91, 35, 0.15); border-bottom: 4px solid var(--primary-orange); }
.premium-text-box.border-green:hover { box-shadow: 0 35px 65px rgba(23, 123, 66, 0.15); border-bottom: 4px solid var(--primary-green); }

.premium-badge { display: inline-block; padding: 8px 20px; background: rgba(234, 91, 35, 0.1); color: var(--primary-orange); border-radius: 30px; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; border: 1px solid rgba(234, 91, 35, 0.2); }
.premium-badge.green { background: rgba(23, 123, 66, 0.1); color: var(--primary-green); border: 1px solid rgba(23, 123, 66, 0.2); }

.premium-list { list-style: none; padding: 0; margin: 30px 0 0 0; }
.premium-list li { display: flex; align-items: flex-start; margin-bottom: 15px; padding: 15px; background: #f8f9fa; border-radius: 12px; transition: var(--transition); border-left: 3px solid transparent; }
.premium-list li:hover { background: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transform: translateX(5px); border-left-color: var(--primary-orange); }
.premium-list.green li:hover { border-left-color: var(--primary-green); }
.premium-list-icon { width: 35px; height: 35px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-orange); box-shadow: 0 4px 10px rgba(234, 91, 35, 0.2); flex-shrink: 0; margin-right: 15px; font-size: 0.9rem; }
.premium-list.green .premium-list-icon { color: var(--primary-green); box-shadow: 0 4px 10px rgba(23, 123, 66, 0.2); }
.premium-list-text { font-size: 0.95rem; font-weight: 500; color: var(--text-color); margin-top: 4px; line-height: 1.5; }

/* Kit Cards */
.premium-kit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.premium-kit-card { background: #fff; border-radius: 20px; padding: 40px 30px; text-align: center; box-shadow: 0 15px 35px rgba(0,0,0,0.05); transition: var(--transition); position: relative; overflow: hidden; border: 1px solid rgba(0,0,0,0.02); height: 100%; }
.premium-kit-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--primary-green), var(--primary-orange)); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; }
.premium-kit-card:hover { transform: translateY(-10px); box-shadow: 0 25px 45px rgba(234, 91, 35, 0.1); }
.premium-kit-card:hover::before { transform: scaleX(1); }
.premium-kit-icon-wrap { width: 90px; height: 90px; margin: 0 auto 25px; background: linear-gradient(135deg, rgba(23,123,66,0.1), rgba(234,91,35,0.1)); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; }
.premium-kit-icon-wrap::after { content: ''; position: absolute; top: -5px; left: -5px; right: -5px; bottom: -5px; border: 2px dashed rgba(234,91,35,0.3); border-radius: 50%; animation: rotate 10s linear infinite; }
@keyframes rotate { 100% { transform: rotate(360deg); } }
.premium-kit-icon-wrap i { font-size: 2rem; color: var(--primary-orange); background: -webkit-linear-gradient(45deg, var(--primary-green), var(--primary-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.premium-kit-title { font-size: 1.25rem; font-weight: 700; color: var(--heading-color); margin-bottom: 15px; }
.premium-kit-desc { font-size: 0.95rem; color: var(--text-color); line-height: 1.6; margin: 0; }

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Tablet & Mobile Large (max-width: 991px) */
@media (max-width: 991px) {
    /* Quote Section */
    .premium-quote-card {
        flex-direction: column;
    }
    .quote-img-premium {
        min-height: 300px;
        width: 100%;
    }
    .quote-form-wrap {
        padding: 40px 30px;
    }
    
    /* Spacing Helpers */
    .pt-100 { padding-top: 60px; }
    .pb-100 { padding-bottom: 60px; }
    
    /* Marquee */
    .marquee-left .marquee-content { animation-duration: 25s; }
    .marquee-right .marquee-content { animation-duration: 30s; }
}

/* Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
    /* Typography */
    .hero-title { font-size: 36px; line-height: 1.2; }
    .hero-content p { font-size: 16px; margin-bottom: 25px; }
    .site-title { font-size: 28px; }
    
    /* Hero Area */
    .hero-slide { min-height: 500px; padding: 100px 0; }
    .hero-btn { flex-direction: column; gap: 15px; }
    .hero-btn a { width: 100%; text-align: center; }
    
    /* Global Spacing */
    .expertise-card, .counter-box { margin-bottom: 30px; }
    
    /* Reviews */
    .review-item { padding: 25px 20px; }
    .quote-icon { font-size: 40px; top: 15px; right: 15px; }
    .review-text { font-size: 16px; }
    
    /* Marquee */
    .dummy-logo {
        min-width: 160px;
        height: 60px;
        font-size: 15px;
        padding: 0 10px;
    }
    .dummy-logo i {
        font-size: 18px;
    }
    
    /* Header Main Nav */
    .mobile-toggle { display: block !important; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        text-align: left;
        padding: 0;
        margin: 0;
        border-top: 1px solid #eeeeee;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1050;
    }
    .nav-links > a, .nav-links > .dropdown > a {
        display: block;
        padding: 15px 25px;
        border-bottom: 1px solid #f5f5f5;
        color: var(--heading-color);
        font-weight: 600;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .dropdown { position: relative !important; display: block; width: 100%; }
    .nav-links > .dropdown > a i { transition: transform 0.3s ease; }
    .dropdown.active-dropdown > a i { transform: rotate(180deg); color: var(--primary-orange); }
    .nav-links.active { display: block; }
    .nav-container { flex-wrap: wrap; justify-content: space-between; align-items: center; }
    .nav-container > div { flex: 0 0 auto; }
    .logo img { transform: scale(1.4) !important; transform-origin: left center !important; height: 40px !important; margin-left: 10px; }
    
    .header-action-wrap > .theme-btn { display: none !important; }
    .mobile-nav-btn { display: inline-block !important; width: 80%; margin: 10px auto 0; color: #fff !important; }
}

.mobile-nav-btn { display: none; }

/* New Expertise Area */
.expertise-area-new {
    background-color: #fff;
    overflow: hidden;
}
.expertise-title-new {
    color: var(--primary-orange);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: var(--font-heading);
}

.expertise-list-new {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.expertise-item-new {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.expertise-item-new .icon-wrap {
    width: 65px;
    height: 65px;
    border: 2px dashed var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    flex-shrink: 0;
}

.expertise-item-new .icon-inner {
    background-color: var(--primary-orange);
    color: #fff;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.expertise-item-new .content h4 {
    color: var(--primary-orange);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.expertise-item-new .content p {
    color: #555;
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Right side images */
.expertise-images-wrapper {
    position: relative;
    padding-left: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expertise-center-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--primary-green);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.expertise-img-top,
.expertise-img-bottom {
    position: relative;
    overflow: hidden;
}

.expertise-img-top img,
.expertise-img-bottom img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.expertise-img-top {
    border-top-left-radius: 120px;
}

.expertise-img-bottom {
    border-top-right-radius: 120px;
}

/* Responsive adjustments for Expertise */
@media (max-width: 991px) {
    .expertise-images-wrapper {
        padding-left: 0;
        margin-top: 60px;
    }
    .expertise-center-icon {
        left: 50%;
        top: 0;
        transform: translate(-50%, -50%);
    }
    .expertise-img-top, .expertise-img-bottom {
        border-radius: 40px; /* smaller radius on mobile */
    }
}

/* Page Banner */
.page-banner-wrap {
    position: relative;
    padding: 130px 0 110px;
    background-color: var(--primary-green);
    overflow: hidden;
    margin-top: 0;
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    z-index: 0;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(23,123,66,0.92) 0%, rgba(10,61,32,0.85) 100%);
    z-index: 1;
}

.banner-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.banner-shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}

.banner-shape-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

.banner-bottom-slant {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--bg-light);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
    z-index: 2;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.page-banner-title {
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.breadcrumb {
    font-size: 15px;
}
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: ">>";
    font-size: 13px;
    margin-top: 2px;
}

/* Main Logo Scaling */
.main-logo-img {
    height: 60px;
    object-fit: contain;
    transform: scale(1.8);
    transform-origin: left center;
}

/* ==========================================================================
   Comprehensive Mobile Responsiveness Updates
   ========================================================================== */

/* Tablet & Mobile Large (max-width: 991px) */
@media (max-width: 991px) {
    /* Header Top Bar */
    .header-top-unique { justify-content: space-between; padding: 0 15px; }
    .header-top-unique::before, .header-top-unique::after { display: none; }
    .top-bar-left { display: none; }
    .header-action-wrap .theme-btn, .header-action-wrap .theme-btn2 { display: none !important; }
    .logo { margin-right: auto !important; margin-left: 0 !important; padding-left: 0 !important; flex: 0 0 auto !important; height: 60px !important; }
    .site-header { padding: 5px 0 !important; }
    .main-logo-img { 
        height: 60px !important; 
        width: auto !important;
        transform: none !important; 
        margin: 0 !important; 
        object-fit: contain !important;
        object-position: left center !important;
    }
    .top-bar-right { display: flex; flex: 0 0 auto; padding: 0; justify-content: flex-end; }
    .top-bar-center { flex: 0 0 auto; padding: 0; justify-content: flex-start; }
    
    /* Mobile Menu Buttons Fix */
    .nav-links .mobile-nav-btn {
        display: inline-block !important;
        width: 240px !important;
        align-self: flex-start !important;
        margin-left: 20px !important;
        margin-bottom: 15px !important;
        padding: 12px 20px !important;
        border-radius: 6px !important;
        text-align: center !important;
    }
    .nav-links .mobile-nav-btn:last-child {
        margin-bottom: 30px !important;
    }

    /* Mobile Dropdown & Mega Menu Fix */
    .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        border-left: 2px solid var(--primary-orange) !important;
        margin-top: 15px !important;
        transform: none !important;
        display: none !important;
    }
    .dropdown.active-dropdown > .dropdown-menu {
        display: flex !important;
        opacity: 1;
        visibility: visible;
        width: 100%;
    }
    .mega-menu .dropdown-menu.mega-menu-content { flex-direction: column; padding: 15px; }
    .mega-menu-column { min-width: 100%; border-right: none; border-bottom: 1px solid #f0f0f0; margin-bottom: 15px; padding-bottom: 15px; padding-left: 0; padding-right: 0; }
    .mega-menu-column:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

    /* Premium Kit Grid */
    .premium-kit-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}

/* Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
    /* Global Padding */
    .pt-100 { padding-top: 50px; }
    .pb-100 { padding-bottom: 50px; }
    .premium-section { padding: 30px 0; }

    /* Premium Text Box (Solar Power / EPC) */
    .premium-text-box { margin-top: -30px; margin-left: 0; margin-right: 0; padding: 30px 20px; border-radius: 15px; }
    
    /* Product Slider Images */
    .new-product-img img { height: 250px; }

    /* Page Banner */
    .page-banner-wrap { padding: 100px 0 60px; }
    .page-banner-title { font-size: 32px; }

    /* Expertise Section */
    .expertise-title-new { font-size: 28px; text-align: center; }
    .expertise-img-top img, .expertise-img-bottom img { height: 200px; }
    .expertise-center-icon { width: 70px; height: 70px; font-size: 30px; }
    
    /* Typography */
    .hero-title { font-size: 32px !important; }

    /* About Section Mobile */
    .about-right { padding: 0 15px; }
    .about-img { height: 350px; margin-bottom: 50px; margin-top: 30px; padding: 0; }
    .about-img::before, .about-img::after { border-width: 2px; }
    .about-img .img-2 { border-width: 4px; }
    .about-img .img-1 { border-width: 4px; left: 10px; top: calc(5% + 10px); width: calc(60% - 20px); }
    .about-experience { width: 110px; height: 110px; border-width: 5px; top: 50%; bottom: auto; left: 50%; padding: 0; }
    .about-experience h5 { font-size: 26px; }
    .about-experience h5 span { font-size: 16px; }
    .about-experience p { font-size: 10px; margin-top: 2px; }
}
