/* ===== New Redesigned Index Page Styles ===== */

/* ===== HERO SECTION REDESIGN ===== */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(96, 211, 208, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 14px 45px;
    background-color: var(--primaryColor);
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: white;
    color: var(--primaryColor);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== WELCOME SECTION REDESIGN ===== */
.welcome-section {
    background: white;
    padding: 80px 0;
}

.welcome-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondaryColor);
}

.welcome-section .text-primary {
    color: var(--primaryColor);
}

.welcome-content .lead {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(96, 211, 208, 0.1) 0%, rgba(96, 211, 208, 0.05) 100%);
    padding: 20px;
    border-left: 4px solid var(--primaryColor);
    border-radius: 6px;
}

.highlight-box p {
    color: var(--secondaryColor);
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 12px 0;
    color: #555;
    font-size: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--primaryColor);
    font-size: 16px;
    font-weight: bold;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #eee;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primaryColor);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    border-color: var(--primaryColor);
    box-shadow: 0 10px 30px rgba(96, 211, 208, 0.15);
    transform: translateY(-5px);
}

.stat-item:hover:before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primaryColor);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--secondaryColor);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature Boxes */
.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-box i {
    font-size: 24px;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-box h5 {
    margin-bottom: 8px;
    color: var(--secondaryColor);
}

.feature-box p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Stats Cards */
.stats-card {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primaryColor);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.stats-icon {
    font-size: 40px;
    color: var(--primaryColor);
    margin-bottom: 15px;
}

.stats-card h5 {
    color: var(--secondaryColor);
    margin-bottom: 10px;
    font-size: 18px;
}

.stats-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Vision & Mission Cards */
.vision-mission-section {
    padding: 40px 0;
}

.vm-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    position: relative;
    overflow: visible;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.vm-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondaryColor);
    position: relative;
    z-index: 2;
}

.vm-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.vm-icon {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 150px;
    color: rgba(96, 211, 208, 0.12);
    z-index: 0;
    line-height: 1;
    opacity: 0.8;
}

.vm-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primaryColor), #4cb8b5);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.vm-card:hover .vm-accent {
    transform: scaleX(1);
}

.vision-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(96, 211, 208, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.mission-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(96, 211, 208, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

/* Values Boxes */
.values-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #eee;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.values-box:hover {
    border-color: var(--primaryColor);
    box-shadow: 0 8px 25px rgba(96, 211, 208, 0.15);
    transform: translateY(-5px);
    background: white;
}

.values-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primaryColor), #4cb8b5);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.values-box:hover::before {
    transform: scaleX(1);
}

.values-icon {
    font-size: 42px;
    color: var(--primaryColor);
    margin-bottom: 15px;
}

.values-box h5 {
    color: var(--secondaryColor);
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.values-box p {
    color: #666;
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

/* Vision Cards (Old) */
.vision-card {
    background: var(--primaryColor);
    color: white;
    padding: 15px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.vision-card:hover {
    background: #4cb8b5;
    padding-left: 25px;
}

.vision-card i {
    font-size: 20px;
    flex-shrink: 0;
}

.vision-card span {
    font-weight: 500;
    margin: 0;
}

/* ===== MODERN PRODUCT CARDS (New Design) ===== */
.product-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
    cursor: pointer;
}

.product-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    border: 1px solid #f0f0f0;
}

.product-card-link:hover .product-card-modern {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primaryColor);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primaryColor);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(96, 211, 208, 0.3);
}

.product-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9f8 0%, #f8f9fa 100%);
}

.product-img-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card-modern:hover .product-img-modern {
    transform: scale(1.15) rotate(2deg);
}

.product-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--primaryColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 15px rgba(96, 211, 208, 0.3);
}

.product-card-modern:hover .product-icon {
    opacity: 1;
    transform: scale(1);
}

.product-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-details h4 {
    color: var(--secondaryColor);
    font-size: 20px;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.product-details p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.price-badge {
    background: linear-gradient(135deg, rgba(96, 211, 208, 0.1) 0%, rgba(96, 211, 208, 0.05) 100%);
    color: var(--primaryColor);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 1px solid rgba(96, 211, 208, 0.2);
}

.product-btn {
    color: var(--primaryColor);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.product-btn:hover {
    color: var(--secondaryColor);
    gap: 10px;
}

/* Product Cards - Old Design (keeping for compatibility) */
.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #f8f9fa;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h5 {
    color: var(--secondaryColor);
    margin-bottom: 12px;
    font-size: 16px;
}

.product-content p {
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.read-more {
    color: var(--primaryColor);
    font-weight: 500;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondaryColor);
    gap: 12px;
}

.read-more i {
    font-size: 11px;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
    color: white;
    font-weight: 600;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #4cb8b5;
    border-color: #4cb8b5;
    color: white;
}

.btn-primary.btn-lg {
    padding: 15px 50px;
    font-size: 16px;
}

.btn-light {
    background-color: white;
    color: var(--primaryColor);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: var(--primaryColor);
    color: white;
}

/* Section Heading */
.section-heading h2 {
    font-size: 36px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-heading h2 span {
    color: var(--primaryColor);
}

.section-heading .line {
    width: 60px;
    height: 3px;
    background: var(--primaryColor);
    margin: 15px auto 0;
}

/* Welcome Section */
.welcome.bg-1 {
    background: #f8f9fa;
    padding-top: 60px;
    padding-bottom: 60px;
}

.welcome h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.welcome p {
    color: #666;
    line-height: 1.8;
}

.welcome .lead {
    font-size: 16px;
    color: var(--secondaryColor);
}

/* Why Choose Section */
.why-choose {
    background: white;
    padding: 60px 0;
}

.why-choose h2 {
    font-size: 40px;
    margin-bottom: 50px;
}

/* Our Products Section */
.our-product {
    background: #f8f9fa;
    padding: 60px 0;
}

.our-product h2 {
    font-size: 40px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 42px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .welcome-section h2 {
        font-size: 28px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .welcome h2 {
        font-size: 28px;
    }

    .why-choose h2 {
        font-size: 28px;
    }

    .our-product h2 {
        font-size: 28px;
    }

    .product-image-wrapper {
        height: 180px;
    }

    .feature-box {
        margin-bottom: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PAGE BANNER MODERN ===== */
.page-banner-modern {
    position: relative;
    background: linear-gradient(135deg, var(--secondaryColor) 0%, #023a6b 100%);
    padding: 80px 0 60px;
    overflow: hidden;
}

.page-banner-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/black-banner1.png') center/cover;
    opacity: 0.3;
}

.page-banner-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(96, 211, 208, 0.1), transparent);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.breadcrumb-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-modern li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.breadcrumb-modern li a {
    color: var(--primaryColor);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-modern li a:hover {
    color: white;
}

.breadcrumb-modern li::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-modern li:last-child::after {
    display: none;
}

/* ===== MODERN CONTACT FORM ===== */
.contact-form-modern {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-modern h3 {
    font-size: 28px;
    color: var(--secondaryColor);
    margin-bottom: 30px;
    text-align: center;
}

.contact-form-modern .form-group {
    margin-bottom: 20px;
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
    border-color: var(--primaryColor);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(96, 211, 208, 0.1);
}

.contact-form-modern textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-modern .btn-submit {
    width: 100%;
    padding: 15px 30px;
    background: var(--primaryColor);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-modern .btn-submit:hover {
    background: #4cb8b5;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(96, 211, 208, 0.4);
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primaryColor);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-info-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primaryColor) 0%, #4cb8b5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-card .icon i {
    font-size: 28px;
    color: white;
}

.contact-info-card h5 {
    color: var(--secondaryColor);
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info-card p,
.contact-info-card a {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--primaryColor);
}

/* Map Container */
.map-container-modern {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 400px;
}

.map-container-modern iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* ===== MODERN TABS ===== */
.spec-tabs-modern {
    border: none;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.spec-tabs-modern .nav-link {
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    color: #666;
    background: white;
    transition: all 0.3s ease;
}

.spec-tabs-modern .nav-link:hover {
    color: var(--primaryColor);
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.spec-tabs-modern .nav-link.active {
    background: var(--primaryColor);
    color: white;
    box-shadow: 0 5px 15px rgba(96, 211, 208, 0.4);
}

.tab-content-modern {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tab-content-modern .spec-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.tab-content-modern .spec-header .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(96, 211, 208, 0.1) 0%, rgba(96, 211, 208, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-content-modern .spec-header .icon img {
    width: 30px;
    height: 30px;
}

.tab-content-modern .spec-header h5 {
    color: var(--secondaryColor);
    font-size: 20px;
    margin: 0;
}

/* Spec Table */
.spec-table-modern {
    width: 100%;
}

.spec-table-modern tr {
    border-bottom: 1px solid #f0f0f0;
}

.spec-table-modern tr:last-child {
    border-bottom: none;
}

.spec-table-modern td {
    padding: 15px 0;
    vertical-align: top;
}

.spec-table-modern td:first-child {
    font-weight: 600;
    color: var(--secondaryColor);
    width: 35%;
}

.spec-table-modern td:last-child {
    color: #666;
}

/* Strength Grid */
.strength-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.strength-item-modern {
    text-align: center;
    padding: 25px 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.strength-item-modern:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(96, 211, 208, 0.15);
    transform: translateY(-5px);
}

.strength-item-modern img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.strength-item-modern p {
    color: var(--secondaryColor);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Features Table Modern */
.features-table-modern td {
    padding: 12px 15px;
    position: relative;
    padding-left: 35px;
}

.features-table-modern td::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 10px;
    color: var(--primaryColor);
    font-size: 14px;
}

/* ===== INFRASTRUCTURE GALLERY ===== */
.infra-gallery-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item-modern {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.gallery-item-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-modern:hover img {
    transform: scale(1.1);
}

.gallery-item-modern .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(1, 40, 81, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-modern:hover .overlay {
    opacity: 1;
}

.gallery-item-modern .overlay span {
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.gallery-item-modern .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: var(--primaryColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.gallery-item-modern:hover .zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* ===== EXPORT MAP SECTION ===== */
.export-map-section {
    position: relative;
}

.export-map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.export-map-wrapper img {
    width: 100%;
    transition: transform 0.5s ease;
}

.export-map-wrapper:hover img {
    transform: scale(1.02);
}

/* ===== PRODUCT CARD NEW (for inner pages) ===== */
.product-card-new {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-card-new .product-header {
    position: relative;
    overflow: hidden;
}

.product-card-new .product-image-wrapper {
    height: 200px;
    background: linear-gradient(135deg, #f0f9f8 0%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-card-new .product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card-new:hover .product-img {
    transform: scale(1.08);
}

.product-card-new .product-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card-new .product-body h5 {
    color: var(--secondaryColor);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-card-new .product-body p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-card-new .product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.product-card-new .product-features li {
    padding: 8px 0;
    color: #555;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.product-card-new .product-features li:last-child {
    border-bottom: none;
}

.product-card-new .product-features li i {
    color: var(--primaryColor);
    font-size: 12px;
}

.product-card-new .product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primaryColor);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-card-new .product-link:hover {
    color: var(--secondaryColor);
    gap: 12px;
}

.product-card-new .product-link i {
    font-size: 12px;
}

/* ===== QUALITY PILLARS ===== */
.quality-pillar-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.quality-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primaryColor), #4cb8b5);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quality-pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.quality-pillar-card:hover::before {
    transform: scaleX(1);
}

.quality-pillar-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(96, 211, 208, 0.15) 0%, rgba(96, 211, 208, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.quality-pillar-card .icon-wrapper img {
    width: 45px;
    height: 45px;
}

.quality-pillar-card h4 {
    color: var(--secondaryColor);
    font-size: 20px;
    margin-bottom: 15px;
}

.quality-pillar-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.about-intro-section {
    background: white;
    padding: 80px 0;
}

.about-intro-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondaryColor);
    margin-bottom: 20px;
}

.about-intro-section h2 span {
    color: var(--primaryColor);
}

.achievements-section {
    background: #f8f9fa;
    padding: 80px 0;
}

/* ===== OTHER PRODUCTS SECTION ===== */
.other-products-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.other-products-section h2 {
    font-size: 36px;
    color: var(--secondaryColor);
    margin-bottom: 15px;
}

.other-products-section h2 span {
    color: var(--primaryColor);
}

/* ===== RESPONSIVE FOR NEW COMPONENTS ===== */
@media (max-width: 992px) {
    .page-banner-content h1 {
        font-size: 36px;
    }

    .infra-gallery-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .spec-tabs-modern {
        justify-content: center;
    }

    .strength-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-banner-modern {
        padding: 60px 0 40px;
    }

    .page-banner-content h1 {
        font-size: 28px;
    }

    .contact-form-modern {
        padding: 25px;
    }

    .spec-tabs-modern .nav-link {
        padding: 10px 16px;
        font-size: 13px;
    }

    .tab-content-modern {
        padding: 20px;
    }

    .infra-gallery-modern {
        grid-template-columns: 1fr;
    }

    .strength-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card-new .product-image-wrapper {
        height: 160px;
    }
}
