:root {
    /* Base font sizes */
    --font-sm: 14px;
    --font-md: 16px;
    --font-lg: 18px;
    --font-xl: 20px;

    --line-height-base: 1.6;

    /* Color */
    --primary-color: #E14D2A;
    --primary-color-bg: rgba(225, 77, 42, 0.08);
    --secondary-color: #2D2D2D;
    --accent-backgroun-color: #F5F5F5;
    --text-primary: #1E1E1E;
    --text-secondary: #555555;
    --border-lines-color: #DDDDDD;
    --white-color: #fff;

    /* Link */
    --link-color: var(--primary-color);
    --link-hover-color: #C63D20;

    /* Padding */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Margins */
    --margin-xs: 4px;
    --margin-sm: 8px;
    --margin-md: 16px;
    --margin-lg: 24px;
    --margin-xl: 32px;
    --margin-2xl: 48px;
    --margin-3xl: 64px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 18px;
    line-height: 1.4;
    font-family: 'Overpass';
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: 'Overpass', sans-serif;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

/* Responsive container adjustments */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
}

.fullflex {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 480px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 640px) {
    .container {
        max-width: 600px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1460px;
    }
}


h1 {
    font-size: 56px;
    color: var(--primary-color);
}

h2 {
    font-size: 40px;
    color: var(--secondary-color);
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
    color: var(--text-secondary);
}

p {
    font-size: var(--font-md);
    line-height: var(--line-height-base);
    color: var(--text-secondary);
    margin-bottom: var(--margin-md);
    font-family: 'Overpass', sans-serif;
}


a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

a:hover,
a:focus {
    text-decoration: none;
}

section {
    padding: var(--space-2xl);
    /* margin-bottom: var(--margin-2xl); */
}

hr {
    border: none;
    height: 2px;
    background-color: var(--border-lines-color);
    margin: var(--margin-lg) 0;
    width: 100%;
    opacity: 0.6;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 0;
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: var(--link-hover-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.section-label {
    display: inline-block;
    background: var(--primary-color-bg);
    color: var(--primary-color);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: var(--margin-md);
    text-transform: uppercase;
}

main {
    margin-top: 98px;
}

/* header */
header {
    width: 100%;
    border: 1px solid var(--border-lines-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: transform 0.4s ease-in-out;
    background: #fff; /* Keep background visible */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

header.hide {
  transform: translateY(-100%);
}

header.show {
  transform: translateY(0);
}

.header-wraper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
    padding: 0 var(--space-md);
}

/* Ensure proper spacing on very small screens */
@media (max-width: 480px) {
    .header-wraper {
        padding: 0 var(--space-sm);
    }
}

.logo {
    height: 90px;
    width: auto;
    flex-shrink: 0;
}

/* Ensure logo doesn't get too small on mobile */
@media (max-width: 480px) {
    .logo {
        height: 60px;
    }
}

.logo a {
    height: 100%;
    width: 100%;
    display: block;
}

.logo a img {
    width: 100%;
    height: 100%;
}

header nav {
    height: 100%;
    display: flex;
    align-items: center;
}

header nav>ul {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

header nav>ul li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

header nav>ul li a {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--text-secondary);
    line-height: normal;
}

header nav>ul li a:hover {
    color: var(--primary-color);
}

header nav>ul ul.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 210px;
    padding: var(--space-sm);
    background-color: var(--white-color);
    border: 1px solid var(--border-lines-color);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
    z-index: 10;
}

header nav>ul ul.submenu li {
    padding: var(--space-sm);
}

header nav>ul ul.submenu li+li {
    border-top: 1px solid var(--border-lines-color);
}

header nav>ul li:hover ul.submenu {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    min-width: 44px; /* Ensure touch target is large enough */
    min-height: 44px;
}

.hamburger-btn span {
    width: 24px;
    height: 3px;
    background-color: var(--text-secondary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white-color);
    z-index: 1000;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
    display: none;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-lines-color);
}

.mobile-menu-header .logo {
    height: 60px;
    width: auto;
    flex-shrink: 0;
}

/* Responsive mobile menu header */
@media (max-width: 480px) {
    .mobile-menu-header .logo {
        height: 50px;
    }
    
    .mobile-menu-header {
        padding: 12px 15px;
    }
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
}

.mobile-nav {
    padding: 20px;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav li {
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-lines-color);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    padding: 16px 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

.mobile-nav a:hover {
    color: var(--primary-color);
}

.mobile-nav .has-submenu {
    position: relative;
}

.submenu-toggle {
    position: absolute;
    right: 0;
    top: 3px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
    min-width: 44px; /* Ensure touch target is large enough */
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submenu-toggle.active {
    transform: rotate(180deg);
}

.mobile-nav .submenu {
    display: none;
    padding-left: 20px;
    background: var(--accent-backgroun-color);
    margin: 0 -20px;
    padding: 0 20px 0 40px;
    border-top: 1px solid var(--border-lines-color);
}

/* Responsive submenu adjustments */
@media (max-width: 480px) {
    .mobile-nav .submenu {
        padding: 0 15px 0 30px;
        margin: 0 -15px;
    }
}

.mobile-nav .submenu.active {
    display: block;
}

.mobile-nav .submenu li {
    border-bottom: none;
}

.mobile-nav .submenu a {
    padding: 12px 0;
    font-size: 16px;
    text-transform: none;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--border-lines-color);
    margin-top: auto;
    background: var(--accent-backgroun-color);
}

/* Ensure mobile menu footer is properly positioned */
@media (max-height: 600px) {
    .mobile-menu-footer {
        position: relative;
        margin-top: 20px;
    }
}

/* Additional responsive improvements */
@media (max-width: 360px) {
    .mobile-nav a {
        font-size: 16px;
        padding: 14px 0;
    }
    
    .mobile-nav .submenu a {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .mobile-menu-header {
        padding: 10px 12px;
    }
    
    .mobile-nav {
        padding: 10px 12px;
    }
    
    .mobile-menu-footer {
        padding: 10px 12px;
    }
}

/* Ensure proper spacing on ultra-wide screens */
@media (min-width: 1600px) {
    .header-wraper {
        height: 110px;
    }
    
    .logo {
        height: 100px;
    }
    
    header nav > ul {
        gap: 35px;
    }
    
    header nav > ul li a {
        font-size: 19px;
    }
}

.mobile-contact h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 18px;
}

.mobile-contact a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 16px;
}

.mobile-contact a:hover {
    color: var(--primary-color);
}

/* header */

/* header-sidebar */
.header-sidebar {
    width: 30%;
    position: fixed;
    right: -100%;
    top: 0;
    height: 100%;
    background-color: var(--white-color);
    border-left: 1px solid var(--border-lines-color);
    z-index: 100;
    padding: var(--space-lg);
    text-align: center;
    transition: all .3s ease-in-out;
    overflow-y: auto;
}

.header-sidebar-backdrop {
    position: fixed;
    opacity: 0;
    z-index: 90;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    transition: all .3s ease-in-out;
    height: 100%;
    background-color: black;
}
body.header-sidebar-open {
    overflow: hidden;
}
body.header-sidebar-open .header-sidebar-backdrop {
    opacity: .3;
    visibility: visible;
}

.header-sidebar .logo {
    width: 50%;
    margin: 0 auto;
}

.header-sidebar .close {
    position: absolute;
    top: 108px;
    left: 0;
}

.header-sidebar .close a {
    color: var(--white-color);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
}

.header-sidebar_box {
    margin-top: var(--margin-2xl);
}

.header-sidebar_box a {
    display: block;
}

.header-sidebar_box a+a {
    margin-top: var(--margin-md);
}

.header-sidebar_box p {
    margin-top: var(--margin-md);
}

.header-sidebar .social-box {
    gap: 20px;
    margin-top: var(--margin-xl);
}

.header-sidebar .social-box a {
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.header-sidebar .social-box a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.header-sidebar h3 {
    text-transform: uppercase;
}

body.header-sidebar-open .header-sidebar {
    right: 0;
}

/* header-sidebar */


/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    padding: var(--space-3xl) 0;
    overflow: hidden;
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-banner .imgbox {
    filter: brightness(.67);
}

.hero-banner .imgbox img {
    width: 100%;
    height: 100%;
}

.hero-banner .text h1,
.hero-banner .text p,
.hero-banner .text {
    text-align: left;
}

/* .hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.9));
    z-index: 0;
} */

.hero-bg-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1200px;
    height: auto;
    opacity: 0.05;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-bg-watermark img {
    width: 100%;
    height: auto;
}

.hero-banner .container {
    max-width: 1200px;
    padding: 0 var(--space-md);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: var(--margin-md);
}

.hero-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: var(--margin-lg);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Banner */


/* aboutus-section */
.aboutus-section {
    padding: var(--space-3xl);
}

.aboutus-section .imgbox {
    position: relative;
}

.aboutus-section .imgbox .imgwrap {
    overflow: hidden;
    height: calc(100% - 180px);
}

.aboutus-section .imgbox .imgwrap img {
    z-index: 1;
    position: relative;
}

.aboutus-section .imgbox::before {
    position: absolute;
    content: '';
    right: -40px;
    bottom: -40px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
}

.aboutus-section .text .btnbox {
    margin-top: var(--margin-xl);
}

/* Mobile responsive improvements for about us section */
@media (max-width: 991px) {
    .aboutus-section {
        padding: var(--space-2xl) var(--space-lg);
    }
    
    .aboutus-section .row {
        flex-direction: column;
    }
    
    .aboutus-section .imgbox {
        margin-bottom: var(--space-xl);
    }
    
    .aboutus-section .imgbox .imgwrap {
        height: auto;
        max-height: 400px;
    }
    
    .aboutus-section .imgbox::before {
        right: -20px;
        bottom: -20px;
    }
}

@media (max-width: 767px) {
    main {
        margin-top: 72px;
    }
    .hero-banner .btnbox {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .aboutus-section {
        padding: var(--space-xl) var(--space-md);
    }
    
    .aboutus-section .text h2 {
        font-size: 28px;
    }
    
    .aboutus-section .imgbox .imgwrap {
        max-height: 300px;
    }
    
    .aboutus-section .imgbox::before {
        right: -15px;
        bottom: -15px;
    }
}

@media (max-width: 575px) {
    .aboutus-section {
        padding: var(--space-lg) var(--space-sm);
    }
    
    .aboutus-section .text h2 {
        font-size: 24px;
    }
    
    .aboutus-section .imgbox .imgwrap {
        max-height: 250px;
    }
    
    .aboutus-section .imgbox::before {
        right: -10px;
        bottom: -10px;
    }
}

/* aboutus-section */


/* Section Background */
section.what-drives-us {
    background-color: #FFF7F4;
    /* Light version of #E14D2A background */
    padding: 60px 0;
}

/* Heading */
.what-drives-us h2 {
    color: #E14D2A;
    font-weight: 700;
    text-transform: uppercase;
}

/* Description Text */
.what-drives-us p.section-desc {
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #6c757d;
}

/* Number Style */
.what-drives-us .card .display-6 {
    font-size: 2.8rem;
    color: #E14D2A;
    opacity: 0.9;
}

/* Icon */
.what-drives-us .card i {
    color: #E14D2A;
    margin-bottom: 10px;
}

/* Card Title */
.what-drives-us .card-title {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Card Paragraph */
.what-drives-us .card-text {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Card Hover */
.what-drives-us .card {
    border-radius: 0;
    border: none;
    background: #fff;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.what-drives-us .card::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #E14D2A;
    transition: all 0.4s ease;
    z-index: -1;
}

.what-drives-us .card:hover::before {
    top: 0;
}

.what-drives-us .card:hover .card-title,
.what-drives-us .card:hover .card-text,
.what-drives-us .card:hover i,
.what-drives-us .card:hover .display-6 {
    color: #fff !important;
    transition: color 0.3s ease;
}


.our-journey {
    background: #fdfaf9;
    padding: 60px 0;
    margin: 0;
}

.our-journey .stat-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    text-align: center;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    color: #333;
    /* Default text color */
}

.our-journey .stat-card i {
    font-size: 32px;
    color: #E14D2A;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.our-journey .stat-card h5,
.our-journey .stat-card p {
    margin: 0;
    transition: color 0.3s ease;
}

/* Hover State */
.our-journey .stat-card:hover {
    background-color: #E14D2A;
    color: #fff;
}

.our-journey .stat-card:hover i,
.our-journey .stat-card:hover h5,
.our-journey .stat-card:hover p {
    color: #fff !important;
    /* Forces white color even if icon has inline styles */
}


.preforms-section {
    background-image: url(../images/light-orange-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.7);
    background-blend-mode: overlay;
    background-attachment: fixed;
    margin-bottom: 0;
}

.preforms-box {
    background-color: #fff;
    padding: var(--space-md);
    border: 1px solid #eee;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: block;
    transition: all 0.3s ease;
}
.preforms-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.preforms-box h6 {
    margin: 15px 0 0 0;
    text-align: center;
}

.preforms-box .imgbox {
    width: 100%;
    height: 100%;
    overflow: hidden;
    max-height: 252px;
}

.preforms-box .imgbox img {
    width: 100%;
    height: 100%;
}


.get-in-touch-section {
    background: linear-gradient(to bottom, #fffaf7 0%, #fff1ec 40%, #ffe2d9 70%, #fdd6cb 100%);
    margin-bottom: 0;
}

.get-in-touch-section .section-heading {
    font-size: 40px;
    justify-content: flex-start;
    color: var(--secondary-color);
}

.get-in-touch-section p {
    font-size: var(--font-md);
    line-height: var(--line-height-base);
    color: var(--text-secondary);
    margin-bottom: var(--margin-md);
    font-family: 'Overpass', sans-serif;
}

.custom-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: var(--space-sm) var(--space-md);
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: var(--font-sm);
    transition: background-color 0.3s ease;
    border-radius: 0;
}

.custom-btn:hover {
    background-color: var(--link-hover-color);
    color: var(--white-color);
}

.shop-sec {
    padding: 0;
    margin: 0;
    overflow: hidden;
    /* max-height: 80vh; */
}

.shop-sec .imgbox img,
.shop-sec .imgbox {
    width: 100%;
    height: 100%;
}

.testimonials-slide {
    padding: var(--space-xl);
    border: 1px solid var(--primary-color);
}

.testimonials-slide h6 {
    margin: 0;
}

.ourcertificates-sec img {
    width: 100%;
    height: 100%;
}

.ourcertificates-sec .title {
    margin-bottom: var(--margin-2xl);
}

.our-clients-sec .title {
    margin-bottom: var(--margin-lg);
}

.our-clients-slide {
    border: 1px solid var(--border-lines-color);
    padding: var(--space-md);
}


.footer-section {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.footer-title {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.footer-subtext {
    font-size: var(--font-sm);
    color: var(--text-secondary);
}
.footer-section a {
    color: var(--white-color);
}
.footer-section a:hover {
    color: var(--link-hover-color);
}
.footer-section ul li {
    margin-bottom: 6px;
    color: var(--white-color);
    font-size: var(--font-sm);
}
.footer-section ul li a {
    color: var(--white-color);
}
.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section p,
.footer-section strong {
    color: var(--white-color);
    font-size: var(--font-sm);
    margin-bottom: 8px;
}

.footer-socials a {
    color: var(--white-color);
    font-size: 20px;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-lines-color);
    padding-top: var(--space-md);
    font-size: var(--font-sm);
}

.form-control {
    border-radius: 0;
}


/* ============================================================================ */
/* About Page */
/* ============================================================================ */

    .section-label span {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #E14D2A;
    text-transform: uppercase;
    letter-spacing: 1px;
    }

    .section-title {
    font-weight: 700;
    margin: 15px 0;
    }

    .eco-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .eco-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    }

    .eco-icon {
    font-size: 36px;
    color: #E14D2A;
    }


.fixed-height {
    height: 480px;   /* set any height you want */
    object-fit: cover; /* ensures image won’t stretch, it will crop nicely */
    width: 100%; /* keep full width responsive */
    border-radius: 8px; /* optional: smooth corners */
}

.logo-img {
    height: 400px;   /* set any height you want */
    object-fit: cover; /* ensures image won’t stretch, it will crop nicely */
    width: 100%; /* keep full width responsive */
    border-radius: 8px; /* optional: smooth corners */
}

.about-hero {
    /* background-image: url('../images/preforms-about-big.png'); */
    background-position: 0px -120px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #E14D2A; /* your theme color */
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.about-hero p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}



.about-us-section .section-title .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #E14D2A;
}

.about-us-section .section-title h6 {
    color: #E14D2A;
    font-weight: 600;
}

.about-us-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
}

.about-us-section p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}


.manufacturing-units-section {
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

.manufacturing-units-section .section-heading {
    color: #009FE3;
    /* Blue from screenshot */
    font-weight: 700;
    font-size: 1.8rem;
}

.manufacturing-units-section h5 {
    font-size: 1.2rem;
    color: #222;
}

.manufacturing-units-section p {
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
}



.manufacturing-section {
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    position: relative;
    display: inline-block;
}

.section-header .highlight {
    color: #E14D2A;
}

.section-header .divider {
    height: 4px;
    width: 60px;
    background-color: #E14D2A;
    margin-top: 8px;
    border-radius: 4px;
}

.unit-card {
    background-color: #fff;
    border-left: 6px solid #E14D2A;
    padding: 25px 20px;
    margin-top: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
}

.unit-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.unit-card .sub-title {
    font-weight: 500;
    color: #555;
}

.unit-card p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 10px;
}


.theme-text {
    color: #E14D2A !important;
    /* YOUR THEME COLOR */
}

.stats-row i {
    display: block;
}


.values-section {
    background-color: #fff;
}

.value-title {
    color: #E14D2A;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-text {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================================================ */
/* About Page */
/* ============================================================================ */


/* ============================================================================ */
/* Why us Page */
/* ============================================================================ */

.why-frystal {
    background: #fff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.why-frystal .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.section-heading h2 {
    font-size: 32px;
    color: #1e1e1e;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
}

.section-heading .dot {
    width: 10px;
    height: 30px;
    border-radius: 5px;
    background-color: #E14D2A;
    display: inline-block;
}

.why-frystal p {
    max-width: 900px;
    margin: 10px auto;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.why-frystal .highlight {
    font-weight: 600;
    margin-top: 20px;
    color: #E14D2A;
}

.frystal-image {
    margin: 40px 0;
}

.frystal-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 26px;
    }

    .why-frystal p {
        font-size: 15px;
    }
}


.why-us {
    background-color: #fff;
    padding: 80px 20px;
}

.why-us .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.why-text {
    flex: 1 1 500px;
}

.section-title {
    font-size: 24px;
    color: #1e1e1e;
    margin-bottom: 20px;
    font-weight: 700;
}

.features-list {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    font-size: 16px;
    margin-bottom: 15px;
    color: #111;
    display: flex;
    align-items: start;
    gap: 8px;
}

.features-list .icon {
    color: #000;
    font-size: 18px;
    line-height: 1.2;
}

.why-image {
    flex: 1 1 500px;
    text-align: center;
}

.why-image img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

@media (max-width: 768px) {
    .why-us .container {
        flex-direction: column;
        text-align: center;
    }

    .features-list li {
        justify-content: center;
        display: block;
    }
}


.capable-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.capable-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.capable-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.capable-text {
    flex: 1;
    min-width: 320px;
}

.points {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.points li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #111;
    font-size: 16px;
    line-height: 1.6;
}

.points li::before {
    content: '⬤';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
    color: #E14D2A;
}

.capable-section {
    background-color: #f9f9f9;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #E14D2A;
}

.points li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #111;
    font-size: 16px;
    line-height: 1.6;
}

.points li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #E14D2A;
    font-size: 18px;
    line-height: 1;
}

.btn-theme {
    background-color: #E14D2A;
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.btn-theme:hover {
    background-color: #c43f20;
}

/* ============================================================================ */
/* Why us Page */
/* ============================================================================ */

.partner-logo {
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.contact-section .row {
    display: flex;
    align-items: stretch; /* makes columns same height */
}
.contact-section .row > * {
    margin: 0;
}

.contact-info,
.form-wrapper {
    background: #fff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%; /* ensures both expand equally */
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.contact-info .info-item:last-child {
    border-bottom: none;
}


.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #E14D2A;
}

.section-subtitle {
    color: #555;
    font-size: 1rem;
    max-width: 500px;
    margin: 10px auto 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #E14D2A;
    outline: none;
}

.btn-theme {
    display: inline-block;
    background-color: #E14D2A;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-theme:hover {
    background-color: #c63f22;
}

.form-message {
    max-width: 600px;
    margin: 20px auto;
    padding: 15px;
    border-radius: 6px;
    font-size: 1rem;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


.product-card {
    display: block;
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    font-family: var(--font-family);
}

.card-top {
    background: var(--primary-color);
    /* Your theme color */
    text-align: center;
    padding: 20px;
    position: relative;
    border-bottom-left-radius: 40% 10%;
    border-bottom-right-radius: 40% 10%;
}

.preform-img {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 100%;
    padding: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.card-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
}

.product-main .row [class^="col-"] {
    margin-bottom: 30px;
}

.card-bottom {
    padding: 16px 16px 20px 16px ;
    max-height: 180px;
    overflow-y: auto;
    position: relative;
    height: 100%;
}
/* .card-bottom::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    content: '';
    background-color: white;
} */

.card-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.card-row span{
    color: var(--text-color, #333);
}

.card-row:last-child {
    border-bottom: none;
}

.card-header {
    font-weight: 600;
    color: var(--secondary-color);
}

.product-detail-section {
    font-family: var(--main-font, Arial, sans-serif);
    color: var(--text-color, #333);
}

.breadcrumb-nav a {
    color: var(--theme-color, #E14D2A);
    text-decoration: none;
}

.breadcrumb-nav span {
    color: #888;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-color, #E14D2A);
}

.product-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.product-specs li {
    padding: 0.3rem 0;
    font-size: 16px;
    border-bottom: 1px solid #eee;
}
.product-specs li strong {
    font-size: 18px;
}

.product-description {
    margin-top: 1rem;
    line-height: 1.6;
}

.product-image-wrapper {
    background: #fafafa;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
.product-image-wrapper img {
    width: 100%;
    height: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-tabs .nav-link.active {
    background-color: var(--theme-color, #E14D2A);
    color: #fff;
}

.nav-tabs .nav-link {
    color: var(--theme-color, #E14D2A);
}

.office-section {
  padding: 60px 0;
  background: #f9fafc;
}

.office-info {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.office-info h3 {
  font-size: 22px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.testimonials-slider {
    overflow: hidden;
}
.testimonials-slider .owl-item {
    flex: 1 0 auto;
    padding: 0 5px;
}
        
.testimonials-slider .owl-stage {
    display: flex;
}
.testimonials-slide {
    height: 100%;
}

.husky-section {
  padding: 80px 0;
  background-color: #fff;
}

.husky-text {
  padding-right: 30px;
}

.husky-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.btn-theme {
  display: inline-block;
  padding: 12px 28px;
  background-color: #E14D2A;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-theme:hover {
  background-color: #c63d1f;
}

.husky-image img {
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.tab-pane li + li {
    margin-top: 12px;
}
.tab-pane p {
    font-size: 18px;
}

.tab-pane ul {
    padding: 0 16px;
}
.tab-pane ul , .tab-pane ul strong {
    display: block;
    max-width: 500px;
    width: 100%;
}
.tab-pane ul li {
    display: flex;
    align-items: center; 
    justify-content: space-between;
}
.tab-pane ul li.strong * {
    font-weight: bold;
}
.tab-pane ul li span {
    min-width: 200px;
    display: block;
}