:root {
    /* Primary Colors */
    --primary-color: #1C76BB;
    --secondary-color: #ff6600;

    /* Background Colors */
    --bg-dark: #000;
    --bg-light: #f8f9fa;
    --bg-grey: lightgrey;

    /* Text Colors */
    --text-light: #fff;
    --text-dark: #000;
    --text-muted: #666;
    --text-grey: #ccc;

    /* Border / Divider */
    --border-color: #333;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif!important;
}

h1,h2{font-family: 'Lobster', cursive;}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.site-header {
    background: var(--primary-color);
    padding: 15px 0;
    position: relative; /* IMPORTANT */
    z-index: 1000;
}

/* FLEX LAYOUT */
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding a {
  color: var(--text-light);
    font-size: 24px;
    text-decoration: none;
    font-family: 'Lobster', cursive;
}

/* MENU FIX */
.menu {
    list-style: none;
    display: flex;
    align-items: center; /* ✅ ensures li are centered */
    margin: 0;
    padding: 0;
}

/* MENU ITEMS */
.menu li {
    margin-left: 30px;
    display: flex;
    align-items: center; /* ✅ aligns link inside li */
}

/* LINKS */
.menu li a {
    display: flex;              /* ✅ KEY FIX */
    align-items: center;        /* ✅ vertical alignment */
    height: 100%;               /* optional but helps */
    color: var(--text-light);
    text-decoration: none !important;
    font-weight: 600;
    transition: 0.3s;
}

/* ============================= */
/* MOBILE MENU */
/* ============================= */

.menu-toggle {
    display: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
}

/* ============================= */
/* MOBILE OVERLAY */
/* ============================= */

@media (max-width: 768px) {

    .header-flex {
        flex-wrap: wrap;
    }

    /* Show hamburger */
    .menu-toggle {
        display: block;
    }

    /* OVERLAY MENU */
  
    
}
@media (max-width: 768px) {

    /* OVERLAY MENU */
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        display: none;
        padding: 15px 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    }

    /* Show menu */
    .main-navigation.active {
        display: block;
    }

    /* Align menu to RIGHT */
    .menu {
        flex-direction: column;
        align-items: flex-end;   /* ✅ KEY FIX */
        width: 100%;
    }

    .menu li {
        margin: 10px 0;
    }

    .menu li a {
        text-align: right;       /* ✅ text alignment */
    }
}

/* ============================= */
/* FOOTER */
/* ============================= */

.footer {
    background: var(--bg-dark);
    color: #ccc;
}

/* Headings */
.footer h5 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 18px;
}

/* Text */
.footer p {
    font-size: 14px;
    line-height: 1.7;
}

/* Links */
.footer a {
    color: var(--text-grey);
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: var(--accent-color);
}

/* FOOTER MENU */
.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

/* ICONS */
.footer i {
    margin-right: 8px;
    color: var(--text-light);
}


/* DIVIDER */
.footer hr {
    border-top: 1px solid #fff;
}

/* COPYRIGHT */
.footer .text-center p {
    font-size: 13px;
 }

/* HERO SECTION */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px;
    color:  var(--text-light);
    text-align: center;
     min-height: 600px; /* 👈 increase height */
        display: flex;
    align-items: center; /* vertical center content */

   
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* dark overlay */
    z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.hero .container {
    position: relative;
    z-index: 2;
}

/* HEADING */
.hero h1 {
    color: var(--text-light);
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* DESCRIPTION */
.hero p {
    color: var(--text-light);
    
    font-size: 18px;
    margin-bottom: 25px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        padding: 80px 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }
}

.section-about h2,.section-about p{
    color:var(--text-light);
}

/* SECTION */
.services {
    background: var(--bg-grey);
    padding: 60px 0;
}

/* GRID FIX (equal height) */
.services .row {
    display: flex;
    flex-wrap: wrap;
}

.services .col-md-4 {
    display: flex;
}

/* UnderLine*/

.section-about h2 {
    position: relative;
    display: inline-block; /* IMPORTANT */
}

.section-about p {
    margin-top:20px;
}

.section-about h2::after {
    content: "";
    width: 120px;
    height: 4px;
    
    background: linear-gradient(90deg, #ffffff, #ffffff, #e0f7ff);
    position: absolute;
    left: 0;              /* 👈 align with text start */
    bottom: -10px;
    border-radius: 50px;
    animation: lineGrow 0.6s ease forwards;
}

/* Animation */
@keyframes lineGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

/*UnderLine */

/* CARD */
.service-box {
    background: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* HOVER EFFECT */
.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* IMAGE WRAPPER */
.service-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

/* IMAGE */
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* IMAGE HOVER ZOOM */
.service-box:hover .service-img img {
    transform: scale(1.1);
}

/* OPTIONAL OVERLAY */
.service-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
}

/* CONTENT */
.service-content {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* TITLE */
.service-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* DESCRIPTION */
.service-content p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 15px;
    flex-grow: 1; /* pushes button down */
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .service-img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .services .row {
        display: block;
    }

    .services .col-md-4 {
        display: block;
        margin-bottom: 20px;
    }

    .service-img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .service-img {
        height: 160px;
    }

    .service-content h4 {
        font-size: 18px;
    }

    .service-content p {
        font-size: 14px;
    }
}

/* SECTION BACKGROUND */
.our-ranges {
    background: var(--primary-color);
}

.our-ranges h2,.our-ranges p{
    color: var(--text-light);
}


/* CARD */
.range-box {
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-light);
    padding-bottom: 15px;
    transition: 0.3s;
}

.range-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* IMAGE */
.range-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.range-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

/* IMAGE HOVER */
.range-box:hover .range-img img {
    transform: scale(1.1);
}

/* TITLE */
.range-box h5 {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .range-img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .range-img {
        height: 180px;
    }
}

/* SECTION BACKGROUND */
.section-light {
    background: var(--primary-color);
}

/* SECTION TITLE */
.section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

/* ICON BOX CARD */
.icon-box {
    background: var(--text-light);
    padding: 35px 25px;
    border-radius: 12px;
   box-shadow: 0 8px 20px rgba(28, 118, 187, 0.25);
    transition: all 0.3s ease;
    height: 100%;
}

/* HOVER EFFECT */
.icon-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* ICON STYLE (Bootstrap or Font Awesome) */
.icon-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
    transition: 0.3s;
}

/* HOVER ICON EFFECT */
.icon-box:hover i {
    transform: scale(1.1);
}

/* TITLE */
.icon-box h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* DESCRIPTION */
.icon-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* GRID SPACING (Bootstrap already handles, but safe fix) */
.icon-box {
    margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .icon-box {
        padding: 25px 20px;
    }

    .icon-box i {
        font-size: 34px;
    }
}

/* CTA SECTION */
.cta-strip {
    background: var(--bg-grey);
    color: var(--text-light);
    position: relative;
}

/* TITLE */
.cta-title {
    font-size: 32px;
    color: black;
    font-weight: 700;
    margin-bottom: 10px;
}

/* DESCRIPTION */
.cta-desc {
    color:black;
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}
/* CTA BUTTON FIXED */
.cta-strip .cta-btn {
    background: var(--text-light) !important;
    color: var(--bg-dark) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
    border: 2px solid var(--text-light) !important;
}

/* HOVER */
.cta-strip .cta-btn:hover {
    background: transparent !important;
    color: var(--text-light) !important;
    border: 2px solid var(--text-light) !important;
    transform: translateY(-3px);
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .cta-title {
        font-size: 24px;
    }

    .cta-desc {
        font-size: 14px;
    }
}


/* ============================= */
/* PRODUCT BANNER */
/* ============================= */

.product-banner {
    background: linear-gradient(90deg, #f8f9fa, #eef3ff); /* light gradient */
    padding: 60px 20px;
    text-align: center;
}

.banner-title {
    font-size: 36px;
    font-weight: 600;
    color: #000;
}

/* Optional subtle underline */
.banner-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #0d6efd;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.product-image {
    max-width: 450px;   /* control size */
    margin: auto;       /* center image */
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


.product-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px; /* slightly smaller text */
}

/* Reduce row height */
.product-content td {
    border: 1px solid #1C76BB;
    padding: 6px 10px;   /* ↓ reduced from 10px */
    line-height: 1.4;    /* tighter text */
}

/* Header rows */
.product-content tr td[colspan="2"] {
    background: #1C76BB;
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 8px; /* slightly bigger than normal rows */
}

/* Alternate rows */
.product-content tr:nth-child(even) {
    background: #ffffff;
}

.product-content tr:nth-child(odd) {
    background: #f3f8fd;
}

/* Hover */
.product-content tr:hover {
    background: #e2f0fb;
}

/* CATEGORY BUTTONS */
.product-categories {
    margin-bottom: 30px;
}

.cat-btn {
    display: inline-block;
    margin: 5px;
    padding: 8px 18px;
    background: #eee;
    color: #000;
    border-radius: 20px;
    text-decoration: none;
}

.cat-btn:hover {
    background: #1C76BB;
    color: #fff;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.btn-view {
    display: inline-block;
    padding: 8px 15px;
    background: #1C76BB;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ============================= */
/* BANNER */
/* ============================= */
.products-banner {
    background: linear-gradient(135deg, #1C76BB, #000);
    color: #fff;
    padding: 80px 20px;
}

.products-banner h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.products-banner p {
    font-size: 18px;
}
.category-card {
    background: var(--primary-color);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}
.category-img {
    width: 100%;
    height: 240px;              /* fixed uniform height */
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-img img {
    width: 50%;
    height: 100%;
    object-fit: cover;          /* KEY FIX */
    object-position: center;    /* keeps focus centered */
    transition: transform 0.4s ease;
}

/* optional nice hover effect */
.category-card:hover .category-img img {
    transform: scale(1.08);
}

.category-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
}

.btn-view {
    display: inline-block;
    padding: 8px 18px;
    background: #000;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-view:hover {
    background: #333;
}

/* About Page */


/* ========================= */
/* HERO SECTION */
/* ========================= */
.about-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    color: #fff;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}

/* ========================= */
/* ABOUT SECTION */
/* ========================= */
.about-company h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* ========================= */
/* VALUES SECTION */
/* ========================= */
/* ========================= */
/* VALUE CARDS */
/* ========================= */
.about-values {
    background: var(--primary-color);
}

.value-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* ICON */
/* ========================= */
/* ABOUT ICON CIRCLE */
/* ========================= */
.about-icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: var(--primary-color);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon-box i {
    color: #fff;
    font-size: 26px;
    line-height: 1;
}

/* TEXT */
.value-card h3 {
    font-size: 20px;
    font-weight: 600;
}

.value-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
/* ========================= */
/* CTA SECTION */
/* ========================= */

/* About Page */