/*
Theme Name: SolarGlow
Author: ModinaTheme
Author URI: https://themeforest.net/user/modinatheme/
Description: Solar Renewable Energy Html Template
Version: 1.0.0
*/

/*
=================================
|***    Table of contents:   ***|
=================================

Main Style file-> assets/css/main.css 

All the SCSS File in SCSS Folder of Assets Folder. You can read the doc file also for better understand.

// BASIC
@import 'basic';

// MIXIN
@import 'variables';

// TYPOGRAPHY
@import 'typography';

// MIX
@import 'mix';

// HELPER
@import 'helper';

// ICON FONTS
@import 'icon';

// ANIMATION
@import 'animation';

// Button 
@import 'btn';

// Colors 
@import 'colors';

// Preloader 
@import 'preloader';

/* ----------------------------------
    Template Section Styles
 ------------------------------------*/

 /* // Menu - Header Section 
 @import 'header';
 
 // Hero Slide - Section 
 @import 'hero';
 
 // Section Title - Heading 
 @import 'section';
 
 // About - Section 
 @import 'about';
 
 // Features - Section 
 @import 'features';
 
 // services - Section 
 @import 'services';
 
 // testimonial - Section 
 @import 'testimonial';
 
 // Portfolio - Cases - Section 
 @import 'project';
 
 // Price Table - Section 
 @import 'price';
 
 // Call To Action - Section 
 @import 'cta';
 
 // Content Block - Section 
 @import 'contentblock';
 
 // team - Section 
 @import 'team';
 
 // funfact - Section 
 @import 'funfact';
 
 // Download - Section 
 @import 'carousel';
 
 // FAQ - Section 
 @import 'faq';
 
 // Blog - Section 
 @import 'blog';
 
 // Contact Us - Section 
 @import 'contact';
 
 // footer - Section 
 @import 'footer';

/* Custom Styles */
.single-contact-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Custom 4-Column Contact Cards */
.custom-contact-card {
    background-color: #faf8f5; /* Light cream background from reference */
    border: 1px solid #0962aa; /* Beige/gold border from reference */
    padding: 40px 20px;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    border-radius: 20px;
}

.custom-contact-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--theme);
}

.custom-contact-card .card-icon {
    width: 70px;
    height: 70px;
    border: 1px solid #0962aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #0962aa;
    font-size: 24px;
    transition: all 0.3s ease-in-out;
}

.custom-contact-card:hover .card-icon {
    border-color: var(--theme);
    color: var(--theme);
}

.custom-contact-card .card-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--header);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.custom-contact-card .card-info {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.custom-contact-card .card-info p {
    margin-bottom: 5px;
}

.custom-contact-card .card-info p:last-child {
    margin-bottom: 0;
}

.custom-contact-card .card-info a {
    color: var(--text);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.custom-contact-card .card-info a:hover {
    color: var(--theme);
}

/* Client Cards Styling (Updated) */
.client-card {
    background-color: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--theme);
}

.client-logo-top {
    height: 140px;
    background-color: #faf8f5; /* Light cream background to match theme */
    border-bottom: 1px solid #e8e2d5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: all 0.3s ease-in-out;
}

.client-card:hover .client-logo-top {
    background-color: #fff;
    border-bottom-color: var(--theme);
}

.client-logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.client-card:hover .client-logo {
    transform: scale(1.05);
}

.client-card-body {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.client-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--header);
    margin-bottom: 8px;
    line-height: 1.4;
    text-align: center;
}

.client-sector {
    font-size: 12px;
    color: var(--theme-2);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: auto;
}

/* Capacity Cards (Overview Section) */
.capacity-card {
    background-color: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    padding: 15px 25px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.capacity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--theme);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.capacity-card:hover::before {
    transform: scaleY(1);
}

.capacity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--theme);
}

.capacity-image {
    height: 150px;
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 20px;
}

.capacity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.capacity-card:hover .capacity-image img {
    transform: scale(1.08);
}

.capacity-icon {
    width: 60px;
    height: 60px;
    background-color: #faf8f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 24px;
    color: var(--theme);
    transition: all 0.3s ease;
}

.capacity-card:hover .capacity-icon {
    background-color: var(--theme);
    color: #fff;
    transform: rotate(360deg);
}

.capacity-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--theme-2);
    margin: 10px 0;
}

.capacity-card p {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 0;
}

/* Director Profile Card */
.director-profile-card {
    background-color: #faf8f5;
    border: 1px solid #d9c8b2;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.director-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--theme);
}

.profile-avatar-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #d9c8b2;
    margin: 0 auto 25px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.profile-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-profile-card:hover .profile-avatar-img {
    border-color: var(--theme);
    transform: scale(1.05);
}

.profile-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--header);
    margin-bottom: 5px;
}

.profile-info span {
    font-size: 13px;
    color: var(--theme-2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.profile-info p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Leadership Features */
.leadership-feature-box {
    background-color: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.leadership-feature-box i {
    font-size: 24px;
    color: var(--theme);
    margin-bottom: 10px;
}

.leadership-feature-box h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--header);
    margin-bottom: 0;
    text-transform: uppercase;
}

.leadership-feature-box:hover {
    border-color: var(--theme);
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    transform: translateY(-3px);
}

/* Vision & Mission Cards */
.vision-mission-card {
    background-color: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    padding: 40px 30px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--theme);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vision-card::before {
    background-color: var(--theme);
}

.mission-card::before {
    background-color: var(--theme-2);
}

.vision-mission-card:hover::before {
    transform: scaleX(1);
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.vision-card:hover {
    border-color: var(--theme);
}

.mission-card:hover {
    border-color: var(--theme-2);
}

.card-header-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 26px;
    transition: all 0.3s ease;
}

.vision-card .card-header-icon {
    background-color: rgba(9, 98, 170, 0.08);
    color: var(--theme);
}

.mission-card .card-header-icon {
    background-color: rgba(248, 188, 38, 0.08);
    color: var(--theme-2);
}

.vision-card:hover .card-header-icon {
    background-color: var(--theme);
    color: #fff;
}

.mission-card:hover .card-header-icon {
    background-color: var(--theme-2);
    color: #fff;
}

.vision-mission-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--header);
    margin-bottom: 15px;
}

.vision-mission-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Leader Cards Styling (Screenshot Design) */
.leader-card {
    background-color: #fff;
    border-radius: 16px; /* Highly rounded corners like screenshot */
    border: 1px solid #eaeaea;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--theme);
}

.leader-image-wrap {
    width: 100%;
    height: 320px; /* Adjust height to crop bottom text of monesh.png */
    background-color: #f7f9fb; /* Light blue/grey background matching screenshot */
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-image-wrap img {
    width: 100%;
    height: 120%; /* Scale up slightly to make sure top position covers well */
    object-fit: cover;
    object-position: top; /* Crop bottom portion */
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-image-wrap img {
    transform: scale(1.05);
}

.leader-info {
    padding: 25px 20px;
    text-align: center;
    background-color: #fff;
}

.leader-name {
    font-size: 18px;
    font-weight: 700;
    color: #032b5f; /* Dark blue color matching screenshot */
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.leader-designation {
    font-size: 14px;
    color: #7b8893; /* Lighter grey/blue matching screenshot */
    font-weight: 500;
    display: block;
}

/* Product Card Items Styling */
.product-card-items {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease-in-out;
    border: 1px solid #f1f1f1;
}

.product-card-items:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--theme);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 240px; /* Fixed uniform height for all product card images */
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crop and scale nicely inside the container */
    transition: 0.5s;
}

.product-image img:nth-child(1) {
    perspective: 300px;
    transition: transform 500ms ease;
    transform-origin: top center;
    transform: translateX(0%) translateX(0px) scaleX(1) rotateY(0deg);
}

.product-image img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    transition: transform 700ms ease, top 700ms ease;
    transform: translateX(0%) translateX(150px) scaleX(0) rotateY(90deg);
    transform-origin: bottom center;
    width: 100%;
}

.product-card-items:hover .product-image img:nth-child(1) {
    transform-origin: bottom center;
    transform: translateX(-100%) translateX(150px) scaleX(0) rotateY(90deg);
}

.product-card-items:hover .product-image img:nth-child(2) {
    transition: transform 500ms ease, top 500ms ease;
    transform: translateX(0%) translateX(0px) scaleX(1) rotateY(0deg);
}

.product-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--header);
    margin-bottom: 10px;
}

.product-content p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.applications-box h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--header);
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.app-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.app-list li {
    font-size: 13.5px;
    color: var(--text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-list li i {
    color: var(--theme);
    font-size: 14px;
}

/* Why Choose Us checklist */
.choose-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.choose-list li {
    font-size: 15px;
    font-weight: 600;
    color: var(--header);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.choose-list li i {
    color: var(--theme-2);
    font-size: 18px;
}

/* Process Section */
@media (min-width: 992px) {
    .col-lg-2\.4 {
        width: 20%;
        flex: 0 0 20%;
    }
}

.process-step-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.process-step-box:hover {
    border-color: var(--theme);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--theme);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 20px auto;
    box-shadow: 0 5px 15px rgba(9, 98, 170, 0.2);
}

.process-step-box h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    margin-bottom: 12px;
}

.process-step-box p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Industries We Serve Card */
.industry-card {
    background-color: #faf8f5;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 25px 15px;
    transition: all 0.3s ease;
}

.industry-card:hover {
    background-color: var(--theme);
    border-color: var(--theme);
    transform: translateY(-3px);
}

.industry-card:hover h5, .industry-card:hover .industry-icon {
    color: #fff;
}

.industry-icon {
    font-size: 32px;
    color: var(--theme);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.industry-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--header);
    margin-bottom: 0;
    transition: color 0.3s ease;
}

/* Quality Assurance */
.quality-objectives-box {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(9, 98, 170, 0.15);
        background: #2c67ab;
    background: linear-gradient(90deg, rgba(44, 103, 171, 1) 0%, rgba(27, 67, 161, 1) 50%, rgba(0, 0, 0, 1) 100%);
}

.objectives-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.objectives-list li {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.objectives-list li i {
    color: var(--theme-2);
}

/* Esteemed Customers Logo */
.customer-logo-box {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    max-width: 220px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    margin: 0 auto;
}

.customer-logo-box:hover {
    border-color: var(--theme);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.customer-logo-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Why Leading Companies Choose Us Card Styling */
.choose-client-card {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.choose-client-card:hover {
    border-color: var(--theme);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.choose-client-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(9, 98, 170, 0.08); /* light theme color */
    color: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.choose-client-card:hover .choose-client-icon {
    background-color: var(--theme);
    color: #fff;
}

.choose-client-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--header);
    margin-bottom: 12px;
}

.choose-client-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0;
}
section.highlights-section.fix.section-padding.bg-cover {
    background: #2c67ab;
    background: linear-gradient(90deg, rgba(44, 103, 171, 1) 0%, rgba(27, 67, 161, 1) 50%, rgba(0, 0, 0, 1) 100%);
}

/* Machine Card Styles */
.machine-card {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease-in-out;
}

.machine-card:hover {
    border-color: var(--theme);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.machine-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--header);
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.machine-spec-table {
    width: 100%;
    margin-bottom: 20px;
}

.machine-spec-table td {
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px dashed #f1f1f1;
}

.machine-spec-table tr:last-child td {
    border-bottom: none;
}

.machine-spec-table td.spec-label {
    font-weight: 600;
    color: var(--header);
    width: 45%;
}

.machine-spec-table td.spec-value {
    color: var(--text);
}

.machine-features-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--header);
    margin-top: 15px;
    margin-bottom: 10px;
}

.machine-features-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.machine-features-list li {
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.machine-features-list li i {
    color: var(--theme);
    font-size: 11px;
}

/* Machine Image Sizing & 3D Flipping Hover Animation */
.machine-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 200px;
}

.machine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.machine-image img:nth-child(1) {
    perspective: 300px;
    transition: transform 500ms ease;
    transform-origin: top center;
    transform: translateX(0%) translateX(0px) scaleX(1) rotateY(0deg);
}

.machine-image img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    transition: transform 700ms ease, top 700ms ease;
    transform: translateX(0%) translateX(150px) scaleX(0) rotateY(90deg);
    transform-origin: bottom center;
    width: 100%;
}

.machine-card:hover .machine-image img:nth-child(1) {
    transform-origin: bottom center;
    transform: translateX(-100%) translateX(150px) scaleX(0) rotateY(90deg);
}

.machine-card:hover .machine-image img:nth-child(2) {
    transition: transform 500ms ease, top 500ms ease;
    transform: translateX(0%) translateX(0px) scaleX(1) rotateY(0deg);
}


section.quality-commitment-section.section-padding {
    background: #2c67ab;
    background: linear-gradient(90deg, rgba(44, 103, 171, 1) 0%, rgba(27, 67, 161, 1) 50%, rgba(0, 0, 0, 1) 100%);
    padding: 20px 0;
}

/* Premium Product Card Spec (Screenshot Design) */
.product-card-spec {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    text-align: left;
}

.product-card-spec:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--theme);
}

.product-card-spec-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-card-spec-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-spec:hover .product-card-spec-image img {
    transform: scale(1.03);
}

.product-card-spec-code {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0962aa; /* Primary Theme Color */
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-card-spec-body {
    padding: 24px;
}

.product-card-spec-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1e25; /* Dark color */
    margin-bottom: 12px;
}

.product-card-spec-body p {
    font-size: 13.5px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    height: 65px; /* Fixed height for text to keep card sizes equal */
    overflow: hidden;
}

.product-card-spec-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.spec-tag {
    background: #f1f3f5;
    color: #495057;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

/* Gallery Filtering & Lightbox Styles */
.gallery-filter-btn {
    background: #f8f9fa;
    color: var(--header);
    border: 1px solid #e9ecef;
    padding: 10px 24px;
    margin: 5px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-filter-btn.active, .gallery-filter-btn:hover {
    background: var(--theme);
    color: #ffffff;
    border-color: var(--theme);
    box-shadow: 0 4px 15px rgba(9, 98, 170, 0.2);
}

.gallery-item {
    display: block;
    transition: all 0.5s ease;
}

.gallery-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    border-color: var(--theme);
}

.gallery-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-image img {
    transform: scale(1.05);
}

.gallery-card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 98, 170, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-card-hover-overlay {
    opacity: 1;
}

.gallery-card-hover-overlay i {
    color: #ffffff;
    font-size: 24px;
}

.gallery-card-body {
    padding: 15px;
    text-align: center;
}

.gallery-card-body h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--header);
    margin: 0;
}

/* Custom Lightbox Modal */
.custom-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-content-wrap {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav-btn:hover {
    background: var(--theme);
    color: #ffffff;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: -30px;
    }
    .lightbox-next {
        right: -30px;
    }
    .lightbox-content-wrap {
        max-width: 90%;
    }
}

/* Home Page Our Gallery Section */
.gallery-card-home {
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.gallery-card-home:hover {
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}
.gallery-card-home:hover .gallery-img-wrap img {
    transform: scale(1.1);
}