﻿* {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
html,body{
    overflow-x:hidden;
}
html {
    scroll-behavior: smooth;
}

:root {
    /* Primary Colors */
    --primary: #0F2A45;

    /* Secondary Colors */
    --secondary: #9AC72C;

    /* Neutral Shades */
    --black: #000000;
    --white: #ffffff;

    /* Background Colors */
    --bg-light: #f6f6f6;
    --bg-dark: #1a1a1a;
}
/*-------- font ---------*/
.oswald-regular {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.oswald-semibold {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.inter-regular {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.inter-light {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}
/*--------- custom classess ----------*/
.themePrimary {
    color: var(--primary);
}

.themePrimary-bg {
    background-color: var(--primary);
}

.themeSecondary {
    color: var(--secondary);
}

.themeSecondary-bg {
    background-color: var(--secondary);
}

.custom-border-radius {
    border-radius: 22px 22px 22px 0;
}

.heading {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.1;
}

.sub-heading {
    font-size: 18px;
    line-height: 1.6;
}
.arrow-link {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
}

    .arrow-link span {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 36px;
        height: 36px;
        border: 2px solid var(--secondary);
        border-radius: 8px 8px 8px 0;
        transition: 0.3s ease;
    }

    .arrow-link:hover span {
        background: var(--primary);
        color: #fff;
        transform: translateX(5px);
    }
    .arrow-link:hover{
        color:var(--primary);
    }
.btn:focus,
.btn:active,
.btn.show {
    outline: none !important;
    box-shadow: none !important;
}

#topBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: var(--primary);
    color: white;
    border: 1px solid #fff;
    border-radius: 8px 8px 8px 0;
    padding: 8px 13px;
    cursor: pointer;
    z-index: 1000;
}
/*=================== Layout page =================*/
.logo{
    height:70px;
}
.custom-navbar {
    background: #fff;
    padding: 12px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

    .custom-navbar .navbar-brand {
        font-size: 1.4rem;
        letter-spacing: .5px;
    }

    .custom-navbar .nav-link {
        padding: 10px 16px !important;
        font-size: 1rem;
        color: #333 !important;
        font-weight: 500;
        transition: .3s;
    }

        .custom-navbar .nav-link:hover {
            color: var(--secondary) !important;
        }

    .custom-navbar .dropdown-menu {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255,255,255,0.4);
        border-radius: 12px;
        padding: 10px 8px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        animation: fadeDown 0.3s ease;
    }

    .custom-navbar .dropdown-item {
        padding: 10px 14px;
        border-radius: 8px;
        font-weight: 500;
    }

        .custom-navbar .dropdown-item:hover {
            background: var(--secondary);
            color: #fff;
        }

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.enquiry-btn {
    background: var(--secondary);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 12px 12px 12px 0;
    font-weight: 600;
    text-decoration: none;
}

    .enquiry-btn:hover {
        background: var(--primary);
        color: #fff;
    }

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
    border: none;
}

/*-- footer --*/
footer {
    font-size: 15px;
    line-height: 1.7;
    border-radius:22px 22px 0 0;
}
.footer-text-color {
    color: rgba(255,255,255,0.85) !important;
}

.footer-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .footer-list li {
        margin-bottom: 8px;
    }

    .footer-list a {
        text-decoration: none;
        color: rgba(255,255,255,0.85) !important;
        transition: .3s;
    }

        .footer-list a:hover {
            padding-left: 5px;
            color: var(--secondary) !important;
        }

    .footer-contact i {
        margin-right: 10px;
    }

.footer-social {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255,255,255,0.15);
    border-radius: 8px 8px 8px 0;
    margin-right: 8px;
    color: white !important;
    transition: .3s;
    text-decoration:none;
}
    .footer-social:hover {
        background-color: white;
        color: #000 !important;
        transform: translateY(-3px);
    }
/*--------- Home page ----------*/
/*.hero {
    height: 90vh;
    background: url('../images/aerial-view-grass-field-hockey.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}*/
.hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0,0,0,0.1);*/ /* dark overlay */
    z-index: 1;
}

/* Hero Content */
/*.hero-box {
    position: relative;
    text-align: center;
    z-index: 2;
}*/

/*.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
}*/

.hero-box {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 40px 30px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 22px 22px 22px 0;
    backdrop-filter: blur(8px);
    z-index: 2;
    /*    animation: fadeUp 1.2s ease forwards;
*/ /*transform: translateY(20px);*/
    /*    opacity: 0;
*/
}

    .hero-box h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: 12px;
        color: #fff;
    }

    .hero-box p {
        font-size: 1.15rem;
        opacity: 0.95;
        margin-bottom: 25px;
        color: #f1f1f1;
    }

.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 26px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.primary {
    background: var(--primary);
    color: #fff;
}

    .primary:hover {
        background: var(--secondary);
        transform: translateY(-2px);
    }

.outline {
    border: 2px solid #fff;
    color: #fff;
}

    .outline:hover {
        background: rgba(255,255,255,0.15);
    }

/* Animation */
/*@keyframes fadeUp {
    to {
        transform: translateY(0px);
        opacity: 1;
    }
}*/

/*--- intro section ---*/
.sig-container {
    max-width: 1250px;
    margin: auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.sig-left {
    flex: 1;
}

.sig-sub {
    margin-top: 20px;
    font-size: 18px;
    max-width: 450px;
    color: #555;
    line-height: 1.6;
}

.sig-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-left: 3px solid #dde2e8;
    padding-left: 40px;
}

.sig-divider {
    height: 1px;
    background: #eee;
    width: 100%;
}

.sig-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

.sig-item p {
    color: #666;
    line-height: 1.6;
}
/*--stat --*/
.stat-card {
    padding: 5px 15px;
    border-right: 3px solid white;
}

    .stat-card:last-child {
        border-right: none;
    }

.stat-number {
    font-family: "Oswald", sans-serif;
    font-size: clamp(2rem, 5vw, 50px);
    margin-bottom: 8px;
    color: var(--secondary);
    font-weight: 600;
}

.stat-text {
    font-size: 20px;
    font-weight: 500;
    color: white;
}
/*-services ------*/
.service-card-img {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

    .service-card-img img {
        width: 100%;
        height: 330px;
        object-fit: cover;
        transition: 0.4s ease;
    }

    .service-card-img h5 {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 16px 20px;
        background: rgba(0, 0, 0, 0.60);
        color: var(--white);
        font-weight: 600;
        letter-spacing: 0.3px;
        text-align: center;
    }

    .service-card-img:hover img {
        transform: scale(1.08);
    }

/*----- why us-----*/
.bg-text {
    font-size: 110px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    letter-spacing: 4px;
    margin: 0;
    position: relative;
    top: 20px;
    pointer-events: none;
}

.main-title {
    margin: 0;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.tagline {
    margin-top: 12px;
    font-size: 18px;
    color: #555;
    font-weight: 400;
    opacity: 0.9;
}

.why-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.why-block {
    display: grid;
    grid-template-columns: 250px auto;
    gap: 180px;
    align-items: start;
    position: relative;
}


    .why-block::before {
        content: "";
        width: 60px;
        height: 2px;
        background: var(--secondary);
        position: absolute;
        bottom: 5px;
    }

.label {
    font-size: 46px;
    font-weight: 800;
    color: #e1e1e1;
    text-transform: uppercase;
    min-width: 200px;
    letter-spacing: 2px;
}

.why-block p {
    font-size: 19px;
    line-height: 1.75;
    color: #333;
    max-width: 700px;
}
/*-- cta section --*/
.cta-section {
    background-image: url('../images/cta-bg-img.webp');
    height: 70vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: white;
}

    .cta-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background: rgba(0, 0, 0, 0.4);*/ /* Overlay effect */
    }

    .cta-section .content {
        position: relative;
        z-index: 2;
    }

    .cta-section h2 {
        font-size: clamp(1.5rem, 8vw,3rem);
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .cta-section p {
        font-size: clamp(18px, 8vw,1.3rem);
        margin-bottom: 20px;
    }

    .cta-section .btn {
        background: #fff;
        color: #000;
        padding: 10px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        transition: 0.3s;
    }

        .cta-section .btn:hover {
            background: #000;
            color: #fff;
        }

/* Product Section */
.product-section {
    padding: 60px 0;
    background: var(--bg-light);
}

    .product-section h2.heading {
        font-size: clamp(32px, 4vw, 48px);
        margin-bottom: 35px;
        color: var(--primary);
    }

.product-carousel {
    position: relative;
}

.product-wrapper {
    overflow: hidden;
}

.product-track {
    display: flex;
    gap: 25px;
    transition: transform 0.6s ease-in-out;
    padding-bottom: 10px;
}

.product-card {
    flex: 0 0 calc(100% / 4.3); /* Desktop: 4 items, with spacing */
    background: #fff;
    text-align: center;
    border-radius: 18px 18px 18px 0;
    padding: 18px;
    cursor: pointer;
}

    .product-card img {
        width: 100%;
        height: 210px;
        object-fit: cover;
        border-radius: 14px 14px 14px 0;
        transition: 0.4s ease;
    }

    .product-card:hover img {
        transform: scale(1.04);
    }

    .product-card h4 {
        margin-top: 15px;
        font-size: 1.12rem;
        font-weight: 600;
    }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px 10px 10px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

    .carousel-btn:hover {
        background: var(--primary);
        color: #fff;
    }

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.product-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}
/*-- project --*/
.project-card {
    min-width: 100%;
    flex-shrink: 0;
    height: 400px;
    border-radius: 22px 22px 22px 0;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease;
    cursor: pointer;
    border: 10px double var(--primary);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-label {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.project-track {
    display: flex;
    gap: 20px; 
    transition: transform 0.4s ease;
}

.project-wrapper {
    overflow: hidden;
    position: relative;
    display: flex;
}

.project-prev {
    left: -10px;
}

.project-next {
    right: -10px;
}
/*-- testimonial --*/
.testimonial-carousel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.testimonial-track {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--bg-light);
    border-radius: 22px 22px 22px 0;
    padding: 20px 15px 40px 15px;
    text-align: center;
}

.quote-bubble {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    font-style: italic;
    color: #333;
}

    .quote-bubble::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        border-width: 10px;
        border-style: solid;
        border-color: #fff transparent transparent transparent;
    }

.client-info {
    margin-top: 20px;
}

    .client-info img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid #fff;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .client-info h5 {
        margin: 10px 0 5px;
        font-weight: 600;
    }

    .client-info span {
        font-size: 14px;
        color: #777;
    }

.testimonial-dots {
    margin-top: 20px;
    text-align: center;
}

    .testimonial-dots span {
        display: inline-block;
        width: 12px;
        height: 12px;
        background: #ccc;
        border-radius: 50%;
        margin: 0 5px;
        cursor: pointer;
        transition: all 0.3s;
    }

        .testimonial-dots span.active {
            background: #333;
        }

/*=========================================================================
    Inner banner classes
  ==========================================================================*/
.inner-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

   
.hero-content {
    background: rgba(0, 0, 0, 0.45);
    padding: 30px;
    max-width: 550px;
    border-radius: 22px 22px 22px 0;
}

.hero-title,
.hero-subtitle,
.breadcrumb-wrapper {
    text-align: left;
}

.hero-subtitle {
    font-size: 18px;
    margin: 10px 0;
    opacity: 0.9;
}

.breadcrumb-wrapper {
    font-size: 14px;
}

    .breadcrumb-wrapper span {
        margin: 0 5px;
    }

.inner-hero.about-hero {
    background: url('../images/banner/about-banner.jpg');
}
.inner-hero.service-hero {
    background-image: url('../images/banner/service-banner.jpg');
}
.inner-hero.service-detail-hero {
    background-image: url('../images/banner/cricket-service-banner.jpg');
}
.inner-hero.testim-hero {
    background-image: url('../images/banner/testim-banner.jpg');
}
.inner-hero.product-hero{
    background-image: url('../images/banner/product-banner.jpg');
}
.inner-hero.contact-hero{
    background-image: url('../images/banner/banner.jpg');
}
.inner-hero.project-hero {
    background-image: url('../images/banner/project-banner.jpg');
}
.inner-hero.enquiry-hero {
    background-image: url('../images/banner/enquiry-banner.jpg');
}
/*================================================
            About Us
  ==============================================*/
.mission-vision {
    background-color: var(--bg-light);
}

.sport-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--secondary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sport-card h6 {
    margin-top: 12px;
    font-weight: 600;
}

.sport-card:hover img {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.outline-cta {
    padding: 50px 0;
}

.cta-box {
    border: 2px solid var(--primary);
    text-align: center;
    border-radius: 18px 18px 18px 0;
}

.outline-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    border: 2px solid var(--secondary);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px 12px 12px 0;
    transition: all 0.3s ease;
}

    .outline-btn:hover {
        background: var(--secondary);
        color: var(--primary);
    }

.procedure-card {
    padding: 30px;
    border-radius: 18px 18px 18px 0;
    background: var(--white);
    box-shadow: 0 6px 18px rgba(15,42,69,0.10);
    transition: all 0.3s ease;
}

.step-no {
    width: 60px;
    height: 60px;
    border-radius: 8px 0 8px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    font-family: "Oswald", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.procedure-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(15,42,69,0.18);
}
/*.step-no {
    font-family: "Oswald", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    margin-bottom: 10px;
}
*/
.procedure-card h5 {
    color: var(--primary);
    font-weight: 700;
}

.procedure-card p {
    color: #555;
}

/*==================================================
    Service Page
====================================================*/
.service-points {
    padding-left: 0;
    list-style: none;
}

    .service-points li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 8px;
    }

        .service-points li::before {
            content: "\2713";
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: 600;
        }

/*-----service detail page---*/
.service-intro .col-md-6 img {
    max-height: 450px; 
    object-fit: cover;
    width: 100%;
}
.service-features{
    background-color:var(--bg-light);
}
.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 15px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-card:hover {
        box-shadow: 0 18px 50px rgba(0,0,0,0.15);
    }

.feature-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 28px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-circle {
    transform: scale(1.2);
}

.feature-card h6 {
    font-weight: 600;
    color: var(--primary);
    font-size: 16px;
    margin-top: 10px;
}
/*--process--*/
.step-number {
    font-family: "Oswald", sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

.process-step h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.process-step p {
    color: #555;
    font-size: 17px;
    line-height: 1.6;
}

.process-step:hover h4 {
    color: var(--secondary);
}

/*-- why choose --*/
.why-choose-phoenix {
    background: var(--bg-light);
}


    .why-choose-phoenix p {
        color: #555;
        line-height: 1.8;
    }

.why-list-service {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .why-list-service li {
        margin-bottom: 18px;
        padding-left: 28px;
        position: relative;
        color: #555;
        line-height: 1.6;
    }

        .why-list-service li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--secondary);
            font-size: 22px;
        }

/*=======================================================
 News Page   
 ============================================================*/

.news-card {
    overflow: hidden;
    height: 100%;
    border:1px solid var(--primary);
}
  
.news-img {
    position: relative;
}

    .news-img img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

.news-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--secondary);
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 8px 8px 8px 0;
}

.news-content {
    padding: 22px;
}
    .news-content p {
        font-size: 14px;
        color: #555;
        margin: 12px 0;
    }
.read-more {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
}
.read-more:hover{
    color:var(--primary);
}

/*============= product page =================*/
.products-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.product-row {
    background-color: #fff;
    border-radius: 18px 18px 18px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

    .product-row:hover {
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

.product-image-wrapper {
    overflow: hidden;
}

.product-image {
    height: 400px;
    border-radius: 18px 18px 18px 0;
    transition: transform 0.5s ease;
}

.product-image-wrapper:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 30px;
}

.product-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 15px;
}

.product-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

    .product-features li {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 5px;
        color: #374151;
    }

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

    .product-features li {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        color: #374151;
    }

.product-application h5 {
    font-size: 1.1rem;
}

.application-list {
    list-style: square inside;
    padding-left: 15px;
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

/*---=============== contact form =========================---*/
.contact-form {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .contact-form:hover {
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .contact-form input,
    .contact-form textarea {
        border-radius: 10px;
        border: 1px solid #ddd;
        padding: 0.75rem 1rem;
        transition: border-color 0.3s ease;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--primary); 
            box-shadow: 0 0 8px rgba(18, 95, 18, 0.2);
        }

.btn-primary {
    border-radius: 10px;
    font-weight: 600;
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    border: none;
}

    .btn-primary:hover {
        background: linear-gradient(120deg, var(--secondary), var(--primary));
    }

.contact-info p {
    margin: 0;
    color: #555;
}

.contact-info i {
    color: var(--secondary);
}

/*================ project page ================*/

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 21px;
    padding: 10px 10px;
    border-radius: 3px;
}

    .lightbox-nav.prev {
        left: -50px;
    }

    .lightbox-nav.next {
        right: -50px;
    }

    .lightbox-nav:hover {
        background: rgba(0,0,0,0.85);
    }
/* FILTER WRAPPER */
.project-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* FILTER BUTTON */
.filter-btn {
    padding: 8px 18px;
    border-radius: 8px 8px 8px 0;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background-color: #ffffff;
    transition: all 0.25s ease-in-out;
}

    /* HOVER */
    .filter-btn:hover {
        background-color: var(--primary);
        border-color: var(--secondary);
        color: #fff;
        transform: translateY(-1px);
    }

    /* ACTIVE */
    .filter-btn.active {
        background-color: var(--primary);
        border-color: var(--secondary);
        color: #fff;
    }

/* MOBILE */
@media (max-width: 576px) {
    .filter-btn {
        padding: 7px 14px;
        font-size: 13px;
    }
}

/*================= enquiry form ====================*/
.enquiry-card{
    box-shadow:1px 2px 2px 1px rgba(0,0,0,0.3);
}

.enquiry-card input,
.enquiry-card textarea,
.enquiry-card select {
    font-size: 15px !important;
    border-radius: 10px !important;
    border: 1px solid #ddd !important;
    padding: 0.75rem 1rem !important;
    transition: border-color 0.3s ease;
}
    .enquiry-card input:focus,
    .enquiry-card textarea:focus,
    .enquiry-card select:focus {
        border-color: var(--primary) !important;
        box-shadow: 0 0 8px rgba(18, 95, 18, 0.2);
    }
.enquiry-card textarea {
    resize: none;
}

.enquiry-info {
    font-size: 15px;
    background-color: var(--bg-light);
    border:1px solid var(--primary);
}

.enquiry-points li {
    margin-bottom: 10px;
}

.gallery-img{
    height:300px;
    object-fit:cover;
    cursor:pointer;
	width:100%;
}
.projectDetailImg {
    max-height: 450px;
    object-fit: cover;
    border: 10px double var(--primary);
}

#imageLightbox img {
    max-height: 85vh; 
    width: auto;
    object-fit: contain;
}