﻿ /* =========================
       Theme Variables
    ========================== */
:root {
    --color-primary:#003D7C;
    --color-secondary:#000000;
    --color-light: #FFFfff;
    --color-gray-100: #f8f9fa;
    --color-gray-300: #dee2e6;
    --color-gray-600: #6c757d;
    --color-gray-800: #333333;
    --container-width: 1200px;
    --transition: all 0.3s ease;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 6px;
}

 /* Reset + Base */
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-gray-800);
    line-height: 1.6;
}

 h1,
 h2,
 h3,
 nav,
 .logo {
   font-family: 'Poppins', sans-serif;
 }
.btn-contact {
    background: var(--color-primary);
    color: var(--color-light);
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    border-radius:5px;
    font-size: 14px;
    transition: background 0.3s ease;
}
.mb-0 {
    margin-bottom: 0 !important;
}
 .pb-0 {
   padding-bottom: 0 !important;
 }
 .text-start{
     text-align:start !important;
 }
 .container {
   max-width: var(--container-width);
   margin: 0 auto;
   padding: 60px 10px;
 }
.bg-light {
       background: var(--color-gray-100) !important;
}
.bg-light::after {
    background: var(--color-gray-100) !important;
}
 .desc {
   color: var(--color-gray-600);
   max-width: 900px;
   margin: 0 auto;
   margin-bottom:20px;
 }
p, .unique-card-description, .aboutShowcase-text, .aboutShowcase-visionText, ul {
    font-size: 14px;
}
 a {
   color: var(--color-primary);
   text-decoration: none !important;
   transition: var(--transition);
 }

 a:hover {
   text-decoration: underline;
 }

 ul {
   list-style: none;
 }

 .ellipsis-1 {
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 1;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: normal;
 }
.ellipsis-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
.ellipsis-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
.text-danger{
    color:red;
    font-size:14px;
}
.mt-10 {
    margin-top: 10px !important;
}
.mt-20 {
    margin-top: 20px !important;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.mb-10 {
    margin-bottom: 10px !important;
}
.d-none {
    display: none !important;
}
/* Enhanced Top Bar */
.top-bar {
    background: var(--color-secondary);
    color: var(--color-light);
    font-size: 0.9rem;
    padding: 5px 0;
    display:none;
}
 .gallery-section {
    display: none;
}
.top-bar-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

 .top-bar .left,
 .top-bar .right {
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .top-bar a {
   color: var(--color-light);
   text-decoration: none;
   transition: var(--transition);
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 5px 10px;
   border-radius: var(--border-radius);
 }

 .top-bar a:hover {
   background: rgba(255, 255, 255, 0.15);
   transform: translateY(-1px);
 }

 .top-bar i {
   font-size: 0.9rem;
 }

 .top-bar .divider {
   width: 1px;
   height: 20px;
   background: rgba(255, 255, 255, 0.3);
 }

 /* Enhanced Navbar */
 nav {
   position: sticky;
   top: 0;
   width: 100%;
   background: var(--color-light);
   z-index: 1000;
   box-shadow: var(--shadow);
   border-bottom: 1px solid var(--color-gray-300);
 }

 .nav-container {
   max-width: var(--container-width);
   margin: 0 auto;
   padding: 0 10px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   height: 60px;
 }
.abt-btns {
    margin-top: 10px;
    display: none;
    justify-content:center;
   gap:15px;
}
/* Enhanced Logo */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

 .logo img {
   height: 50px;
 }

 /* Enhanced Nav Links */
 .nav-links {
   display: flex;
   gap: 0px;
   align-items: center;
 }

 .nav-links>a,
 .nav-links>.dropdown>a {
   color: var(--color-gray-800);
   text-decoration: none;
   font-size: 1rem;
   font-weight: 500;
   transition: var(--transition);
   padding: 16px 14px;
   border-radius: var(--border-radius);
   position: relative;
 }

 .nav-links a:hover {
   color: var(--color-primary);
   background: var(--color-gray-100);
 }

/* Main dropdown */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    transition: var(--transition);
}

.nav-links .dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background: var(--color-light);
    width: 250px;
    height: auto;
    display: none;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 9999;
    opacity: 0;
    /*    transform: translateY(-10px);*/
    transition: var(--transition);
}

.dropdown:hover .dropdown-content {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Category block */
.category-block {
    position: relative;
}

.sub-dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 100%; 
    background: var(--color-light);
    width: 300px;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Show sub-dropdown on hover */
.category-block:hover .sub-dropdown {
    display: flex;
}

/* Generic dropdown links */
.dropdown-content a,
.sub-dropdown a {
    padding: 5px 12px;
    color: var(--color-gray-800);
    text-decoration: none;
    display:flex;
    font-size: 0.95rem;
}

/* Ensure sub-dropdown links inherit same styles */
.dropdown-content .sub-dropdown a {
    padding: 5px 12px;
    color: var(--color-gray-800);
    text-decoration: none;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

.sub-dropdown a:hover,
.dropdown-content a:hover {
    background: var(--color-primary);
    color: var(--color-light);
    width:100%;
    display:flex;
}

.sub-dropdown a:last-child,
.dropdown-content a:last-child {
    border-bottom: none;
}

 /* Enhanced Mobile Menu Button */
 .menu-toggle {
   display: none;
   font-size: 1.6rem;
   cursor: pointer;
   color: var(--color-gray-800);
   padding: 8px;
   border-radius: var(--border-radius);
   transition: var(--transition);
 }

 .menu-toggle:hover {
   background: var(--color-gray-100);
   color: var(--color-primary);
 }

 /* Hero section styles */
 .carousel-container {
   position: relative;
/*   max-width: 1200px;*/
   margin: 0 auto;
   overflow: hidden;
 }

 .carousel-wrapper {
   display: flex;
   transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
 }

 .carousel-slide {
   min-width: 100%;
   position: relative;
   height:90vh;
   display: flex;
   align-items: center;
   justify-content: space-between;
   overflow: hidden;
 }

 .slide-background {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-position: center;
   opacity: 1;
 }

 .slide-background img {
   width: 100%;
   height: 100%;
/*   object-fit: contain;*/
 }

 .carousel-nav {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   background: var(--color-primary);
   border: none;
   color: white;
   height: 50px;
   width: 50px;
   border-radius: 50%;
   cursor: pointer;
   font-size: 1rem;
   display: flex;
   justify-content: center;
   align-items: center;
   transition: all 0.3s ease;
   z-index: 3;
 }

 .carousel-nav:hover {
   transform: translateY(-50%) scale(1.1);
 }

 .nav-prev {
   left: 1rem;
 }

 .nav-next {
   right: 1rem;
 }

 .carousel-indicators {
   position: absolute;
   bottom: 2rem;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   gap: 0.5rem;
   z-index: 3;
 }

 .indicator {
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: var(--color-light);
   cursor: pointer;
   transition: all 0.3s ease;
 }

 .indicator.active {
   background: var(--color-primary);
   transform: scale(1.2);
 }

 /* Product Section  */
 .productShowcase-header {
   text-align: center;
   margin-bottom: 20px;
 }

 /* Grid Layout */
.productShowcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, auto));
    gap: 20px;
}

 /* Card */
.productShowcase-card {
    background: var(--color-light);
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* ensures full height for alignment */
}
 /* Image Section */
 .productShowcase-image {
   position: relative;
   width: 100%;
   height: 200px;
   overflow: hidden;
 }

 .productShowcase-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.4s ease;
 }

 .productShowcase-card:hover .productShowcase-image img {
/*   transform: scale(1.03);*/
 }

 /* Badge */
 .productShowcase-badge {
   position: absolute;
   top: 12px;
   left: 12px;
   background: var(--color-primary);
   color: var(--color-light);
   font-size: 12px;
   font-weight: 600;
   padding: 4px 12px;
   border-radius: 50px;
   box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
 }

 /* Content */
.productShowcase-content {
    padding: 20px;
    text-align:left;
    flex-grow: 1; /* takes remaining space */
    display: flex;
    flex-direction: column; /* so we can push button down */
}

 .productShowcase-title {
   font-size: 16px;
   font-weight: 700;
   line-height:1.2;
   text-align:left;
   color: var(--color-secondary);
   margin-bottom: 5px;
 }

.productShowcase-offer {
    font-size: 14px;
    color: var(--color-gray-800);
    margin-bottom: 10px;
    text-transform: capitalize !important;
}

 /* Button */
.productShowcase-btn {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-weight: 600;
    width: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: auto; /* push button to bottom */
    align-self: center; /* center horizontally */
}

 /* About section */
 .about {
   background: var(--color-gray-100);
 }

 .about-section {
   display: grid;
   grid-template-columns:1fr;
   gap: 20px;
   align-items: center;
   text-align:center;
 }

 small {
   color: var(--color-primary);
   font-weight: bold;
   letter-spacing: 1px;
   font-size: 14px;
   text-transform: uppercase;
   display:none;
 }

 h2 {

   font-size: 32px;
   line-height: normal;
   margin-bottom:10px;
 }

 .about-content p {
   color: var(--color-gray-600);
 }

 .about-image img {
   width: 100%;
 }
.unique-product-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    max-width: var(--container-width);
    margin: 0 auto;
    background-color: var(--color-gray-100);
    justify-content: center; /* center grid if fewer items */
}

.unique-product-card {
    background-color: var(--color-light);
    border-radius: 10px;
    border: 1px solid rgb(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.unique-card-image {
    width: 100%;
    height: 300px;
    border-radius:25px;
    padding:20px;
    object-fit: contain;
}

.unique-card-content {
    padding: 0 20px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align:start;
}

.unique-card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-primary);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

    .unique-card-title:hover {
        color: var(--color-secondary);
    }

.unique-card-description {
/*    font-size: 0.95rem;*/
    color: var(--color-gray-600);
    flex-grow: 1;
}

.blue-banner {
    background-color:var(--color-primary); /* Primary blue */
    color: #fff;
/*    padding: 60px 0;*/
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner-text h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom:5px;
}

.banner-text p {
    font-size: 1rem;
    margin-bottom: 25px;
}

.cta-btn {
    background-color: var(--color-gray-100);
    color: var(--color-primary);
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--color-light);
}

    .cta-btn:hover {
        background-color: var(--color-primary);
        color: var(--color-light);
        border: 1px solid var(--color-light);
    }
.cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
/* Stats Section */
.stats-section {
    background: var(--color-primary);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    text-align: center;
    width: 100%;
}

.stat-box {
    background: var(--color-light);
    border-radius: 10px;
    padding: 32px 10px;
    transition: all 0.3s ease;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background:var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

    .stat-icon i {
        font-size: 20px;
        color: #fff;
    }

.stat-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.stat-subtitle {
    font-size: 0.9rem;
    color: #333;
    font-weight: 400;
}

 /* Services Section */
 .appliance-services {
/*   background: var(--color-gray-100);*/
 }

 /* Header */
 .appliance-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 20px;
 }

 .appliance-header h2 {
   margin: 5px 0 0;
 }

 .appliance-header small {
   color: var(--color-gray-800);
   font-weight: 600;
   text-transform: uppercase;
 }

 .appliance-header p {
   color: var(--color-gray-800);
   margin-bottom:20px;
 }

 .appliance-btn-outline {
   border: 1px solid var(--color-primary);
   color: var(--color-primary);
   padding: 8px 15px;
   text-decoration: none;
   font-weight: 600;
   transition: 0.3s;
 }

 /* Grid */
 .appliance-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
 }

 /* Card */
 .appliance-card {
/*   background: var(--color-light);*/
   padding: 25px 20px;
   text-align: center;
   border: 1px solid var(--color-primary);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 /* Icon Container */
 .appliance-icon {
   font-size: 36px;
   color: var(--color-primary);
   margin-bottom: 16px;
   display: inline-block;
   transition: transform 0.3s ease;
   transform-style: preserve-3d;
 }

 /* Flip on hover */
 .appliance-card:hover .appliance-icon {
   transform: rotateY(360deg);
 }

 /* Icon */
 .appliance-icon {
   font-size: 40px;
   color: var(--color-primary);
   margin-bottom: 15px;
 }

 /* Title */
 .appliance-title {
   font-size: 18px;
   font-weight: 700;
   margin-bottom: 5px;
 }

 /* Text */
 .appliance-text {
   font-size: 14px;
   color:var(--color-gray-800);
   margin-bottom: 15px;
 }

 /* Link */
 .appliance-link {
   font-size: 14px;
   font-weight: 600;
   color: var(--color-primary);
   text-decoration: none;
   transition: color 0.3s;
 }

 .appliance-link span {
   margin-left: 5px;
   font-weight: bold;
 }

 .appliance-link:hover {
   color: var(--color-primary);
 }

 .appliance-card-page:hover .appliance-icon {
   transform: rotateY(360deg);
 }

 /* Project section  */
 .services {
/*   background: var(--color-gray-100);*/
 }

 .services-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 20px;
 }

 .btn-outline {
   border: 1px solid var(--color-primary);
   padding: 10px 20px;
   color: var(--color-primary);
   text-decoration: none;
   transition: 0.3s;
 }

 .services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 20px;
 }

 .service-card {
   position: relative;
   overflow: hidden;
   background-size: cover;
   background-position: center;
   height: 300px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   transition: transform 0.5s ease;
 }

 .service-card:hover {
   transform: scale(1.01);
 }

 .service-card .overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
   transition: 0.3s;
 }

 .service-card:hover .overlay {
   background: rgba(0, 0, 0, 0.6);
 }

 .icon-box {
   position: absolute;
   top: 15px;
   left: 15px;
   background: var(--color-primary);
   color: var(--color-light);
   width: 40px;
   height: 40px;
   border-radius: 6px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
 }

 .service-card h3 {
   color: var(--color-light);
   position: relative;
   z-index: 2;
   font-size: 20px;
   /* margin-bottom: 10px; */
 }

 .service-card p {
   font-weight: normal;
   position: relative;
   z-index: 2;
   font-size: 14px;
   opacity: 0;
   max-height: 0;
   overflow: hidden;
   transition: all 1s ease;
   color: var(--color-light);
 }

 .service-card:hover p {
   opacity: 1;
   max-height: 100px;
 }

 .learn-more {
   position: relative;
   z-index: 2;
   font-size: 14px;
   color: var(--color-gray-100);
   text-decoration: none;
   opacity: 1;
   transform: translateY(10px);
   transition: all 0.3s ease;
 }

 .service-card:hover .learn-more {
   opacity: 1;
   transform: translateY(0);
   margin-top: 10px;
 }

 /* Gallery section  */
 .gallery-section p {
   color: var(--color-gray-600);
   max-width: 900px;
   margin-bottom:20px;
 }

 .gallery-item {
   margin-top: 20px;
   position: relative;
   overflow: hidden;
   cursor: pointer;
 }

 .gallery-item img {
   width: 100%;
   height: 250px;
   object-fit: cover;
   display: block;
   transition: transform 0.3s ease;
 }

 .gallery-item:hover img {
   transform: scale(1.05);
 }

 .gallery-item .overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.6);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: opacity 0.3s ease;
 }

 .gallery-item:hover .overlay {
   opacity: 1;
 }

 .gallery-item .overlay i {
   color: var(--color-light);
   font-size: 28px;
   pointer-events: none;

 }

 /* Testimonial Section  */
 .testimonials {
   text-align: center;
   background-color:var(--color-gray-100);
 }

 .testimonial-card {
   background: var(--color-light);
   padding: 20px;
   box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   margin: 20px 0 10px 0;
 }

 .testimonial-img img {
   width: 80px;
   height: 80px;
   object-fit: cover;
   border-radius: 50%;
   border: 3px solid var(--color-primary);
   margin-bottom: 15px;
   display: none;
 }

 .testimonial-text {
   font-style: italic;
   color: #333;
   margin-bottom: 10px;
   line-height: 1.5;
 }

 .testimonial-text i {
   color: var(--color-primary);
 }

 .stars i {
   color: #FFD700;
   margin: 0 2px;
   font-size: 1.1rem;
 }

 .testimonial-info h3 {
   margin: 5px 0 3px;
   font-size: 1.1rem;
 }

 .testimonial-info span {
   font-size: 0.9rem;
   color: #666;
 }

 /* Blog Section  */
 .blog-section {
/*   background-color: var(--color-gray-100);*/
 }

 .blog-section p {
   color: var(--color-gray-600);
   margin-bottom:10px;
 }

.blog-card {
    background-color: var(--color-gray-100);
    overflow: hidden;
    margin: 20px 0 10px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.09);
}

 .blog-card:hover .blog-img img {
   transform: scale(1.05);
 }

 .blog-img img {
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   width: 100%;
   height: 200px;
   object-fit: cover;
   display: block;
 }

 .blog-content {
   padding: 14px;
   text-align: left;
 }

.blog-title {
    line-height: 1.5;
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

 .blog-excerpt {
   font-size: 0.80rem;
   color: #555;
   line-height: 1.4;
   margin-bottom: 15px;
 }

 .blog-meta {
   font-size: 0.75rem;
   color: var(--color-primary);
   display: flex;
   font-weight:bold;
   justify-content: space-between;
 }

 .blog-meta i {
   margin-right: 5px;
 }

 /* Footer section  */
 .footer {
   background: #000;
   color: var(--color-light);
 }

 .footer-grid {
   display: grid;
   grid-template-columns: 1.5fr 0.7fr 1fr 1.6fr 2fr;
   gap: 20px;
 }

 .footer-col h4 {
   margin-bottom: 15px;
   font-size: 18px;
   font-weight: 600;
   color: var(--color-light);
   position: relative;
 }

 .footer-col h4::after {
   content: "";
   display: block;
   width: 40px;
   height: 2px;
   background: var(--color-light);
   margin-top: 6px;
 }

 .footer-col p {
   margin: 8px 0;
   color: #ccc;
   font-size: 16px;
   line-height: 1.6;
 }

 .footer-logo img {
   width: 90%;
 }

 .footer-links {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .footer-links li {
   margin-bottom: 10px;
 }

 .footer-links a {
   color: #ccc;
   text-decoration: none;
   font-size: 16px;
   transition: all 0.3s ease;
 }

 .footer-links a i {
   margin-right: 8px;
   color: var(--color-light);
 }

 .footer-links a:hover {
   color: var(--color-primary);
   padding-left: 1px;
 }

 .social-icons a {
   display: inline-block;
   justify-content: center;
   align-items: center;
   padding: 10px 15px;
   border: 1px solid var(--color-light);
   font-size: 16px;
   color: var(--color-light);
   transition: color 0.3s ease;
 }

 .social-icons a:hover {
   color: var(--color-primary);
 }

 .footer-col iframe {
   border: 0;
   width: 100%;
   height: 160px;
 }

 .footer-bottom {
   background: var(--color-secondary);
   text-align: center;
   padding: 8px 5px;
 }

 .footer-bottom p {
   margin: 0;
   color: #aaa;
   font-size: 14px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }

 .footer-bottom a {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   margin-left: 5px;
   transition: opacity 0.3s ease;
 }

 .footer-bottom a:hover {
   opacity: 0.9;
 }

 .footer-bottom a img {
   height: 40px;
 }

 /* Breadcrumb Section  */
 .breadcrumb-section {
   position: relative;
   background-size: cover;
   background-position:top;
   height: 250px;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   color: var(--color-light);
 }

 .breadcrumb-section .overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.7);
 }

 .breadcrumb-content {
   position: relative;
   padding:10px;
   z-index: 1;
 }

 .breadcrumb-content h1 {
   font-size: 2rem;
   margin: 0;
 }

 .breadcrumb-nav {
   background-color: transparent;
   border: none;
   font-size: 1rem;
   margin-top: 10px;
 }

 .breadcrumb-nav a {
   color: var(--color-light);
   text-decoration: none;
 }

 .breadcrumb-nav a:hover {
   text-decoration: underline;
 }

 .breadcrumb-nav span {
   color: var(--color-light);
 }

/* Contact Us page  
/* Container for social icons */
.social-media-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* Base style for all social icons */
.smi-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

    /* Hover effect */
    .smi-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

/* Platform colors */
.smi-facebook {
    background-color: #1877F2;
}

.smi-instagram {
    background-color: #E1306C;
}

.smi-linkedin {
    background-color: #0077B5;
}

.smi-whatsapp {
    background-color: #25D366;
}

.smi-call {
    background-color: #00B894;
}

 .contact-section {
   background: var(--color-gray-100);
 }

 .contact-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   height: fit-content;
 }

 .contact-info {
   padding: 0 20px;
 }

 .contact-info h2 {
   font-size: 24px;
   color: var(--color-primary);
   margin-bottom: 10px;
 }

 .contact-item {
   display: flex;
   align-items: flex-start;
   margin-bottom: 10px;
   padding: 20px;
   background: var(--color-light);
   box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
 }

 .contact-icon {
   width: 50px;
   height: 50px;
   background: var(--color-primary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-right: 20px;
   flex-shrink: 0;
 }

 .contact-icon svg {
   width: 24px;
   height: 24px;
   fill: var(--color-light);
 }

 .contact-details h3 {
   font-size: 18px;
   font-weight: 600;
   /* margin-bottom: 8px; */
   color: var(--color-gray-800);
 }

 .contact-details p {
   color: var(--color-gray-600);
   font-size: 16px;
 }

 .contact-details a {
   color: var(--color-primary);
   text-decoration: none;
   transition: var(--transition);
 }

 .contact-details a:hover {
   text-decoration: underline;
 }

 /* Contact Form */
 .contact-form {
   padding: 20px;
   background-color: var(--color-light);
 }

 .contact-form h2 {
   font-size: 24px;
   color: var(--color-primary);
   margin-bottom: 10px;
 }

 .form-group {
   margin-bottom: 8px;
 }

 .form-group label {
   display: block;
   margin-bottom: 5px;
   font-weight: 500;
   color: var(--color-gray-800);
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
   width: 100%;
   padding: 8px;
   border: 2px solid var(--color-gray-300);
   border-radius: var(--border-radius);
   font-size: 15px;
   transition: var(--transition);
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
   outline: none;
   border-color: var(--color-primary);
   box-shadow: 0 0 0 3px rgba(57, 48, 133, 0.1);
 }

 .form-group textarea {
   resize: vertical;
   min-height: 80px;
 }

 .form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 10px;
 }

 .submit-btn {
   background: var(--color-primary);
   color: var(--color-light);
   padding: 15px 40px;
   border: none;
   font-size: 16px;
   font-weight: 600;
   cursor: pointer;
   transition: var(--transition);
   width: 100%;
 }

 .submit-btn:hover {
   background: var(--color-primary);
 }

 /* Map Section */
 .map-section {
   border-radius: var(--border-radius);
   overflow: hidden;
   box-shadow: var(--shadow);
   height: 400px;
 }

 .map-container {
   width: 100%;
   height: 100%;
   background: var(--color-gray-300);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--color-gray-600);
   font-size: 18px;
 }

 /* why Choose us  */
 .why-section {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   height: auto;
 }

 .why-left {
   flex: 1;
   padding: 40px 0px;
   height: 400px;
 }

 .why-left {
   position: relative;
/*   background: var(--color-primary);*/
/*   color: var(--color-light);*/
   z-index: 1;
 }

 .why-content {
   max-width: 600px;
   justify-self: end;
 }

 /* angled stretch */
 .why-left::after {
   content: "";
   position: absolute;
   top: 0;
   right: -85px;
   width: 120px;
   height: 100%;
   background: var(--color-light);
   transform: skewX(-10deg);
   z-index: -1;
 }

 .why-image {
   flex: 1;
   height: 400px;
 }

 .why-image img {
   height: 100%;
   width: 100%;
   object-fit: cover;
 }

 .why-sub {
   font-size: 14px;
   color: var(--color-light);
 }
.why-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    margin-top: 20px;
    max-width: var(--container-width);
}

    .why-list li {
        background: var(--color-gray-100);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        text-align: center;
        padding:15px;
        transition: var(--transition);
    }

.why-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 10px auto;
}

.why-list h4 {
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}
 /* Blog Page  */
 .blog-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 20px;
 }

 /* Blog Detail Page  */
.blog-detail {
    background: var(--color-light);
    box-shadow: var(--shadow);
    padding:10px;
}

 .blog-detail-grid {
   display: grid;
   grid-template-columns: 3fr 1fr;
   gap: 20px;
 }

 .blog-detail img {
   width: 100%;
   height: 400px;
   object-fit: cover;
   margin-bottom: 10px;
 }

 .blog-detail h1 {
   font-size: 22px;
   margin-bottom: 5px;
 }

 .blog-detail-meta {
   font-size: 14px;
   color: var(--color-gray-600);
   margin-bottom: 10px;
 }

 .blog-detail p {
   margin-bottom: 20px;
   color: var(--color-gray-800);
 }

 /* Sidebar */
 .sidebar {
   background: var(--color-light);
   padding: 20px;
   height: fit-content;
   box-shadow: var(--shadow);
 }

 .sidebar h3 {
   font-size: 20px;
   margin-bottom: 20px;
   border-bottom: 2px solid var(--color-gray-300);
   padding-bottom: 10px;
 }

 .recent-post {
   display: flex;
   gap: 15px;
   margin-bottom: 20px;
 }

 .recent-post img {
   width: 80px;
   height: 60px;
   object-fit: cover;
 }

 .recent-post-info {
   flex: 1;
 }

 .recent-post-info h4 {
   font-size: 16px;
   /* margin-bottom: 5px; */
 }

 .recent-post-info p {
   font-size: 14px;
   color: var(--color-gray-600);
 }

 /* Gallery Page  */
 .gallery-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 20px;
 }

 /* About us page  */
 .repair-section {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-direction:column;
   gap: 0px;
 }

 .repair-content {
     text-align:center;
   flex: 1;
 }

    .repair-content p {
        color: var(--color-gray-600);
        line-height: 1.6;
        margin-bottom: 15px;
    }

 .repair-list {
   display: flex;
/*   flex-wrap: wrap;*/
   gap: 0px;
   margin-top: 20px;
 }

 .repair-list li {
   list-style: none;
   width: 45%;
   color: var(--dark-color);
   font-weight: 500;
   display:none;
 }

 .repair-list li i {
   color: var(--color-primary);
   margin-right: 5px;
 }

 .repair-image {
   flex: 1;
   text-align: center;
   position: relative;
   display:none;
 }

 .repair-image img {
   max-width: 100%;
 }

 .client-box {
   position: absolute;
   bottom: 20px;
   left: 20px;
   background: var(--color-primary);
   color: var(--color-light);
   padding: 15px 25px;
   font-size: 16px;
   font-weight: 500;
 }

 .client-box span {
   font-size: 28px;
   font-weight: bold;
   display: block;
 }

 .aboutShowcase-section {
   background-color: var(--color-gray-100);
 }

 .abts {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr;
   gap: 20px;
 }

 .aboutShowcase-text,
 .aboutShowcase-visionText {
   font-size: 16px;
   line-height: 1.6;
   color: var(--color-gray-600);
   margin-bottom: 20px;
 }

 .aboutShowcase-founder {
   display:none;
   align-items: center;
   gap: 15px;
 }

 .aboutShowcase-founderImg {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   object-fit: cover;
 }

 .aboutShowcase-founderName {
   font-size: 14px;
   font-weight: bold;
   color: var(--color-primary);
   display: block;
 }

 .aboutShowcase-founderRole {
   font-size: 12px;
   color: var(--color-gray-800);
 }

.aboutShowcase-vision {
    background-color: var(--color-light);
    padding: 15px;
    font-size: 16px;
    color: var(--color-primary);
}
.aboutShowcase-label{
    font-weight:600;
}
.clienteleShowcase-section {
    background-color: var(--color-gray-100);
    /*   color: var(--color-light) !important;*/
    text-align: center;
}

 .clienteleShowcase-slider {
   position: relative;
   width: 100%;
   overflow: hidden;
   margin-top: 20px;
 }

 .clienteleShowcase-track {
   display: flex;
   align-items: center;
   gap: 10px;
   height: 100px;
   animation: clienteleScroll 25s linear infinite;
 }

 .clienteleShowcase-track img {
   height: 100%;
   width: 150px;
   object-fit: cover;
   flex-shrink: 0;
/*   filter: grayscale(100%);*/
   transition: filter 0.3s ease;
 }

 .clienteleShowcase-track img:hover {
   filter: grayscale(0%);
 }

 @keyframes clienteleScroll {
   0% {
     transform: translateX(0);
   }

   100% {
     transform: translateX(-50%);
   }
 }

/* Awards Page */
.awards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Award Card Styling */
.award-card {
    background: #fff;
    box-shadow: 0 6px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

    .award-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

    .award-card img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-bottom: 1px solid #eee;
    }

    .award-card h5 {
        font-weight: 600;
        margin:0px 0 10px;
        font-size: 1.1rem;
    }

    .award-card p {
        font-size: 0.95rem;
        color: #555;
        padding: 0 10px 15px;
        line-height: 1.4;
    }

 /*Projects Page */
.myproj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
/*    max-width: 1400px;*/
    margin: 0 auto;
}

.myproj-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    background: white;
    height: 450px;
}

    .myproj-card:hover {
/*        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);*/
    }

.myproj-img-container {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.myproj-img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.myproj-card:hover .myproj-img {
    transform: scale(1.05);
}

/* Commercial Label */
.commercial-label {
    position: absolute;
    top: 20px;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    z-index: 2;
}

/* Info Icon */
.info-icon {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    z-index: 2;
    transition: all 0.3s ease;
}

.myproj-card:hover .info-icon {
    background: rgba(200, 150, 100, 0.95);
    transform: scale(1.1);
}

/* Bottom Info Box - Hidden by default, shows on hover */
.myproj-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    padding: 20px 25px;
    transform: translateY(100%);
    transition: all 0.4s ease;
    z-index: 3;
}

.myproj-card:hover .myproj-info {
    transform: translateY(0);
}

.myproj-name {
    margin: 0 0 8px 0;
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.myproj-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

    .myproj-link::after {
        content: '»';
        margin-left: 8px;
        font-size: 18px;
        transition: margin-left 0.3s ease;
    }

.myproj-card:hover .myproj-link::after {
    margin-left: 12px;
}

/* Dark overlay on hover */
.myproj-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.myproj-card:hover .myproj-overlay {
    opacity: 1;
}

 /* Project Details Page  */
 .project-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0;
}

/* Text Section */
.project-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    position: relative;
}
.project-content h2::after {
    content: "";
    width: 50px;
    height: 3px;
    background-color:var(--color-primary);
    display: block;
    margin-top: 6px;
}
.project-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Testimonial */
.project-quote {
    margin: 25px 0;
    padding: 15px 20px;
    border-left: 4px solid var(--color-primary);
    background: #f9f9f9;
}
.project-quote p {
    font-style: italic;
    margin: 0;
}
    .project-quote .quote-author {
        margin-top: 12px;
        font-weight: 600;
        font-style: normal;
        color: var(--color-primary);
        display: block;
    }

/* Image Grid */
.project-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 15px;
}
.project-images a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
}
.project-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.project-images a:hover img {
    transform: scale(1.05);
}
/* Services details Page */

.hvac-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.hvac-service-card {
    background: var(--color-light);
    padding: 30px 25px;
    text-align: left;
    border: 2px solid var(--color-primary);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.hvac-service-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-light);
    font-size: 24px;
    line-height: 60px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
}

.hvac-price-badge {
    background: var(--color-primary);
    color: var(--color-light);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    display: none;
    margin-bottom: 10px;
    border-radius: var(--border-radius);
}

.hvac-service-heading {
    color: var(--color-gray-800);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hvac-service-description {
    color: var(--color-gray-600);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.hvac-service-info {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--color-gray-300);
}

.hvac-feature-list {
    list-style: none;
    margin: 15px 0;
}

.hvac-feature-item {
    font-size: 13px;
    color: var(--color-gray-600);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

    .hvac-feature-item:before {
        content: "✓";
        color: #28a745;
        font-weight: bold;
        position: absolute;
        left: 0;
    }

.hvac-cta-button {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
    display:none;
    align-items: center;
    gap: 5px;
}

    .hvac-cta-button:hover {
        color: var(--color-gray-800);
    }

/* Contact Section */
.hvac-contact-section {
    background: var(--color-primary);
    color: var(--color-light);
    text-align: center;
    padding: 40px 0;
}

.hvac-contact-title {
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 700;
}

.hvac-contact-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.hvac-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
/*    margin-top: 20px;*/
}

.hvac-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hvac-contact-icon {
    font-size: 20px;
}

.hvac-contact-text {
    font-size: 16px;
    font-weight: 500;
    color:white;
}

 /* Product Detail Page  */
 .product-wrapper {
   display: grid;
   grid-template-columns: 1fr;
   gap: 20px;
   align-items: flex-start;
 }

 .product-gallery {
   text-align: center;
 }

 .product-gallery .main-image {
   width: 100%;
   height: 350px;
   object-fit: contain;
   border-radius: 10px;
   border: 1px solid rgba(0, 0, 0, 0.1);
 }

 .product-gallery .thumbs {
   display: flex;
   justify-content: center;
   gap: 10px;
   margin-top: 15px;
 }

    .product-gallery .thumbs img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        border: 1px solid rgba(0,0,0,0.2);
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s ease;
    }

 .product-gallery .thumbs img:hover {
   border-color: var(--color-primary);
 }

.product-info h2 {
    font-size:22px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--color-dark);
}

 .product-info .price {
   font-size: 1.5rem;
   color: var(--color-primary);
   font-weight: bold;
   margin-bottom: 15px;
 }

 .product-info .price span {
   text-decoration: line-through;
   font-size: 1rem;
   color: #777;
   margin-left: 10px;
 }

 .product-info .desc {
   color: #555;
   margin-bottom: 20px;
   line-height: 1.6;
 }

 .product-info .features {
   list-style: none;
   padding: 0;
   display:flex;
   gap:10px;
 }

    .product-info .features li {
        /*   margin: 8px 0;*/
        font-size: 0.95rem;
        font-weight: 600;
        color: #333;
    }

 .product-info .features i {
   color: var(--color-secondary);
   margin-right: 8px;
 }
/* Layout: product + sidebar */
.product-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap:10px;
    
}

/* Recent Products Sidebar */
.recent-products {
    background: #fff;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    height: fit-content;
}

    .recent-products h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        color: var(--color-dark);
        border-bottom: 2px solid var(--color-primary);
        padding-bottom: 8px;
    }

    .recent-products ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .recent-products li {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 5px;
    }
        .recent-products li:last-child {
            margin-bottom: 0;
        }

    .recent-products img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 8px;
        margin-right: 12px;
        transition: transform 0.3s;
        padding:5px;
    }

    .recent-products a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: var(--color-dark);
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.3s;
    }

        .recent-products a:hover {
            color: var(--color-primary);
        }

 .actions {
   display: flex;
   align-items: center;
   gap: 15px;
 }

 .actions .qty {
   width: 60px;
   padding: 8px;
   border: 1px solid #ddd;
   border-radius: 8px;
   text-align: center;
 }

 .actions .btn {
   background: var(--color-primary);
   color: var(--color-light);
   border: none;
   padding: 12px 25px;
   font-weight: 600;
   cursor: pointer;
   font-size:14px;
   transition: background 0.3s ease;
   margin-top:10px;
 }

 .actions .btn:hover {
   background: var(--color-primary);
 }

 /* ==== Modal Styles ==== */
 .modal {
   display: none;
   position: fixed;
   z-index: 9999;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.6);
   justify-content: center;
   align-items: center;
   padding: 20px;
 }

 /* Modal content box */
 .modal-content {
   background: var(--color-light);
   padding: 25px 30px;
   max-width: 500px;
   width: 100%;
   position: relative;
   animation: fadeIn 0.3s ease;
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
 }

 /* Close button */
 .close-btn {
   position: absolute;
   top: 12px;
   right: 15px;
   font-size: 1.5rem;
   cursor: pointer;
   color: #333;
   transition: color 0.3s;
 }

 .close-btn:hover {
   color: var(--color-primary);
 }

 /* Modal heading */
 .modal-content h2 {
   margin-bottom: 20px;
   font-size: 1.4rem;
   color: var(--color-primary);
   text-align: center;
 }

 /* Form styles */
 .enquiry-form .form-group {
   margin-bottom: 10px;
   text-align: left;
 }

 .enquiry-form label {
   display: block;
   font-size: 0.9rem;
   margin-bottom: 5px;
   font-weight: 500;
   color: #333;
 }

 .enquiry-form input,
 .enquiry-form textarea {
   width: 100%;
   padding: 10px 12px;
   border: 1px solid #ddd;
   border-radius: 5px;
   outline: none;
   font-size: 0.95rem;
   transition: border-color 0.3s;
 }

 .enquiry-form input:focus,
 .enquiry-form textarea:focus {
   border-color: var(--color-primary);
 }

 .enquiry-form input[readonly] {
   background: #f4f4f4;
   cursor: not-allowed;
 }

 /* Submit button */
 .enquiry-form .btn {
   width: 100%;
   background: var(--color-primary);
   color: var(--color-light);
   border: none;
   padding: 12px;
   font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
   transition: background 0.3s ease;
 }

 .enquiry-form .btn:hover {
   background: var(--color-primary);
 }

 /* career Form */
 .form-row {
   display: flex;
   gap: 10px;
 }

 .form-row .form-group {
   flex: 1;
 }
.career-intro{
    background-color:var(--color-primary);
    color:white;
}
.career-form-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    
    flex-wrap: wrap;
}

.form-wrapper {
    flex: 1 1 500px; /* grows/shrinks and minimum width */
}

.image-wrapper {
    flex: 1 1 400px;
    text-align: center;
}

.career-side-image {
    max-width: 100%;
    height:475px;
    border-radius: 8px;
}
/* ===== Open Positions ===== */
.open-positions {
    background-color: var(--color-gray-100);
}
.op-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.op-card {
    display: flex;
    flex-direction: column; /* stack content vertically */
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%; /* ensure it fills its container if needed */
}

.op-job-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.op-info {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.op-btn {
    padding: 8px 15px;
    font-size: 14px;
    color: #fff;
    background: var(--color-primary);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width:fit-content;
    margin-top: auto; /* pushes the button to the bottom */
}


/* ===== Custom Modal ===== */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: rgba(0,0,0,0.6);
}

.custom-modal-content {
    background: #fff;
    margin: 60px auto;
    padding: 25px;
    border-radius: 12px;
    max-width: 800px;
    position: relative;
    animation: fadeIn 0.4s ease-in-out;
}

.custom-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #555;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.modal-table {
    width: 100%;
    border-collapse: collapse;
}

    .modal-table th,
    .modal-table td {
        padding: 10px 15px;
        text-align: left;
        border: 1px solid #e0e0e0;
    }

    .modal-table th {
        background: #f4f4f4;
        width: 25%;
    }

.modal-actions {
    margin-top: 20px;
    text-align: right;
}

.op-apply-btn, .op-close-btn {
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
}

.op-apply-btn {
    background: var(--color-primary);
    color: #fff;
    margin-right: 10px;
}

.op-close-btn {
    background: #ccc;
    color: #333;
}

    .op-close-btn:hover {
        background: #999;
    }

/* Modal Animation */
@@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
}

/* Media Queries */
@media (max-width: 1024px) {
    .btn-contact{
        display:none;
    }
    .carousel-slide {
        height: 370px;
    }
    .unique-product-section {
        grid-template-columns: repeat(3, 1fr); /* 3 columns */
        gap: 10px;
        padding: 18px;
    }

}

    @media (max-width: 768px) {
        .text-center-mobile {
            text-align: center !important;
        }
        .top-bar-container {
            flex-direction: column;
            gap: 10px;
            text-align: center;
            padding: 12px 16px;
            display: none;
        }
        .unique-product-section {
            grid-template-columns: repeat(2, 1fr); /* 2 columns */
            gap: 18px;
            padding: 18px;
        }
        .features, .carousel-indicators,small {
            display: none !important;
        }
        .why-list {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .top-bar .left,
        .top-bar .right {
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .banner-text h1{
            font-size:22px;
        }
        .banner-text p{
            font-size:14px;
            margin-bottom:15px;
        }
        .cta-btn{
            padding:6px 20px;
            font-size:15px;
        }
        .btn-contact {
            display: none;
        }

        .nav-container {
            height: 70px;
            padding: 0 10px;
        }

        .logo {
            font-size: 1.6rem;
        }

        .nav-links {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--color-light);
            flex-direction: column;
            align-items: stretch;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            box-shadow: var(--shadow);
            border-top: 1px solid var(--color-gray-300);
            gap: 0;
        }

            .nav-links.active {
                max-height: 500px;
            }

            .nav-links > a,
            .nav-links > .dropdown > a {
                margin: 0;
                padding: 10px 20px;
                border-bottom: 1px solid var(--color-gray-100);
                border-radius: 0;
                font-size: 1.05rem;
            }

                .nav-links > a:last-child {
                    border-bottom: none;
                }

        .menu-toggle {
            display: block;
        }

        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--color-light);
            flex-direction: column;
            gap: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

            .nav-links.active {
                max-height: 1000px; /* Enough to show all items */
            }

            .nav-links > a,
            .nav-links .dropdown > a {
                padding: 14px 20px;
                width: 100%;
            }

        .dropdown-content,
        .sub-dropdown {
            position: relative;
            left: 0;
            top: 0;
            box-shadow: none;
            margin-left:10px;
        }

        .category-block:hover .sub-dropdown {
            display: none; /* Hide hover dropdown on mobile */
        }

        .category-block.active .sub-dropdown {
            display: flex;
            flex-direction: column;
        }

        .container {
            padding: 20px 10px;
        }

        .carousel-slide {
            height: 300px;
            flex-direction: column;
            text-align: center;
            padding: 2rem 1rem;
        }

        .slide-image {
            position: relative;
            width: 100%;
            height: 200px;
            clip-path: none;
            border-radius: 10px;
            margin-top: 1rem;
        }

        .carousel-nav {
            padding: 0.8rem;
            font-size: 1rem;
            display: none;
        }

        .nav-prev {
            left: 1rem;
        }

        .nav-next {
            right: 1rem;
        }

        h2 {
            text-align: center;
            font-size: 22px;
        }

        small {
            text-align: center !important;
            width: 100%;
            display: inline-block;
            font-size: 13px;
        }
        .project-content h2 {
            text-align: start;
            font-size: 22px;
        }
        .why-list i {
            color: white;
            background-color: transparent;
        }

        .logo img {
            height: 40px;
        }

        .about-section {
            display: flex;
            flex-wrap: wrap;
        }

        .about-content p {
            text-align: center !important;
        }

        .stats {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .productShowcase-grid {
            gap: 20px;
        }

        .appliance-header,
        .services-header {
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }

        .gallery-section p {
            text-align: center;
        }

        .why-section {
            flex-direction: column;
        }

        .why-content {
            text-align: center;
            justify-self: center;
            padding: 0 10px;
        }

        .why-left {
            width: 100%;
        }

            .why-left::after {
                display: none;
            }

        .aboutShowcase-text {
            text-align: center;
        }

        .aboutShowcase-vision {
            padding: 10px;
        }

        .aboutShowcase-text,
        .aboutShowcase-visionText {
            margin-bottom: 0;
        }
        .appliance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        }
            .footer-grid {
            grid-template-columns: 1fr;
        }

        .footer-bottom p {
            display: grid;
        }

        .repair-section {
            flex-direction: column;
            text-align: center;
        }

        .repair-content p {
            margin-top: 10px;
            margin-bottom: 0px;
        }

        .repair-list {
            display: none;
        }

        .breadcrumb-section {
            height: 200px;
        }

        .abts {
            display: grid;
            grid-template-columns: 1fr;
        }

         .product-layout, .myproj-grid {
            grid-template-columns: 1fr 1fr;
        }
        .blog-detail-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .blog-detail img{
            height:300px;
        }
        .blog-detail h1{
            font-size:22px;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        .contact-info,
        .contact-form {
            padding: 40px 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
        }
        .myproj-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .myproj-card {
            height: 400px;
        }
        .project-wrapper {
            grid-template-columns: 1fr;
        }

        .project-images {
            grid-template-areas:
                "img1"
                "img2"
                "img3";
            grid-template-columns: 1fr;
        }

        .hvac-service-grid {
            grid-template-columns: 1fr 1fr;
        }

        .hvac-main-title {
            font-size: 2rem;
        }

        .hvac-contact-info {
            flex-direction: column;
            gap: 20px;
        }

        .hvac-service-card {
            padding: 25px 20px;
        }

        .hvac-contact-section {
            display: none;
        }

        .career-intro {
            text-align: center;
        }
        .breadcrumb-content h1 {
            font-size:1.5rem;
        }
        .breadcrumb-nav {
            font-size: 0.85rem;
        }
        .product-layout {
            display: grid;
            grid-template-columns: 1fr;
        }
    }
/* Medium devices (tablet) */
@media (min-width: 601px) and (max-width: 900px) {
    .unique-product-section {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 18px;
        padding: 18px;
    }
}

/* Large devices (desktop) */
@media (min-width: 901px) and (max-width: 1200px) {
    .unique-product-section {
        grid-template-columns: repeat(3, 1fr); /* 3 columns */
    }
}

    @media (max-width: 480px) {
        .unique-product-section {
            grid-template-columns: 1fr; /* single column */
            gap: 10px;
            padding: 0px;
        }
        .appliance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }
        .top-bar {
            font-size: 0.85rem;
        }
            .product-info h2{
                font-size:22px;
                text-align:start;
            }
            .top-bar .left,
            .top-bar .right {
                gap: 12px;
            }

            .top-bar a {
                padding: 4px 8px;
                font-size: 0.85rem;
            }

        .logo {
            font-size: 1.4rem;
        }

        .nav-links > a,
        .nav-links > .dropdown > a {
            padding: 10px;
            font-size: 1rem;
        }

        .dropdown-content a {
            padding: 10px;
        }
        .breadcrumb-section {
            height: 170px;
        }
        .contact-info{
            padding:0;
        }
        .contact-form {
            padding: 30px 15px;
        }

        .carousel-slide {
            height: 150px;
            flex-direction: column;
            text-align: center;
            padding: 2rem 1rem;
        }
        .stat-box {
            grid-template-columns: repeat(1fr);
        }
        .hvac-service-grid, .myproj-grid, .blog-grid {
            gap: 10px;
            grid-template-columns: 1fr;
        }

        .hvac-service-card {
            padding: 20px 15px;
        }

        .hvac-main-title {
            font-size: 1.8rem;
        }

        .hvac-contact-title {
            font-size: 1.8rem;
        }

        /* Additional Utilities */
        .hvac-text-center {
            text-align: center;
        }

        .hvac-text-left {
            text-align: left;
        }

        .hvac-text-right {
            text-align: right;
        }

        .hvac-mb-10 {
            margin-bottom: 10px;
        }

        .hvac-mb-15 {
            margin-bottom: 15px;
        }

        .hvac-mb-20 {
            margin-bottom: 20px !important;
        }

        .hvac-mt-10 {
            margin-top: 10px;
        }

        .hvac-mt-15 {
            margin-top: 15px;
        }

        .hvac-mt-20 {
            margin-top: 20px;
        }
        .stats {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns:1fr;
            gap: 10px;
            width:100%;
        }
        .actions .btn {
            background: var(--color-primary);
            color: var(--color-light);
            border: none;
            padding: 10px 20px;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.3s ease;
            margin-top: 10px;
        }
        .blog-detail h1{
            font-size:18px;
        }
    }