:root {
    --primary: #1A365D;
    /* Deep Corporate Blue */
    --primary-light: #2C5282;
    --accent: #C5A021;
    /* Elegant Gold */
    --accent-hover: #D4AF37;
    --text-dark: #2D3748;
    --text-light: #718096;
    --bg-light: #F7FAFC;
    --white: #FFFFFF;
    --black: #1A202C;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    line-height: 1.2;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary);
}

.text-white {
    color: var(--white) !important;
}

.text-accent {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--accent);
    color: var(--primary);
    /* High contrast navy text on gold */
}

.btn-gold:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    /* Subtle warmth */
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header.scrolled .logo-text {
    color: var(--primary);
}

header.scrolled .nav-links a {
    color: var(--primary);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    /* Adjust based on logo proportions */
    width: auto;
    transition: var(--transition);
}

header.scrolled .logo-img {
    height: 50px;
    /* Slightly smaller on scroll */
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 46, 0.7);
    /* Deep Dark Navy with 70% opacity */
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    max-width: 800px;
    text-align: left;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 64px;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 800;
}

.hero p {
    font-size: 20px;
    margin-bottom: 45px;
    color: #CBD5E0;
    /* Modern Light Grey */
    line-height: 1.6;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Stats Bar */
.stats-bar {
    background: var(--primary);
    padding: 40px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Section Common */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.section-header.text-center .section-title::after {
    left: 50%;
}

.about-grid .section-title::after {
    left: 0;
    transform: none;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent);
    color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 10px 10px 30px rgba(197, 160, 33, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.check-list {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.check-list i {
    color: var(--accent);
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: var(--accent);
    color: var(--white);
}

/* Services Tabs */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
    display: flex;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-img {
    flex: 1;
    min-height: 200px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    flex: 1.5;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Leadership Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.team-info h3 {
    color: var(--accent);
}

.team-info .role {
    font-size: 14px;
    opacity: 0.8;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.info-items {
    margin: 40px 0;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.info-item h4 {
    margin-bottom: 5px;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    outline: none;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent);
}

.whatsapp-btn {
    background: #25D366 !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    width: auto !important;
    font-weight: 600;
}

/* Footer */
footer {
    background: #0D1B2E;
    color: var(--white);
    padding: 80px 0 30px;
}

footer .logo-text {
    color: var(--white);
    font-size: 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-links h4,
.footer-newsletter h4 {
    color: var(--accent);
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border-radius: 4px 0 0 4px;
    border: none;
    outline: none;
}

.newsletter-form button {
    padding: 12px 25px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 14px;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 992px) {

    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 42px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .features-grid,
    .team-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--accent-hover);
}

/* Redesigned Major Operations Section */
.operations-layout {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.subtitle {
    display: block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title.left {
    text-align: center;
    margin-bottom: 30px;
}

.section-title.left::after {
    left: 50%;
    transform: translateX(-50%);
}

.description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partner-badge {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    transition: var(--transition);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.partner-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.partner-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 50%;
}

.badge-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 600;
}

.partner-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.loc-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    border: 1px solid transparent;
}

.loc-card i {
    color: var(--accent);
    font-size: 22px;
}

.loc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(197, 160, 33, 0.2);
    color: var(--accent);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid #E2E8F0;
    padding-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-item i {
    color: var(--accent);
    font-size: 18px;
}

@media (max-width: 992px) {
    .operations-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 600px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Redesigned Operational Excellence Section */
.excellence-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.excellence-header {
    text-align: center;
    margin-bottom: 70px;
}

.label-text {
    display: block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.excellence-header .section-title {
    margin-bottom: 20px;
    display: inline-block;
}

.excellence-header .section-title::after {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent), var(--accent-hover));
    transition: width 0.5s ease;
    left: 50%;
    transform: translateX(-50%);
}

.excellence-header:hover .section-title::after {
    width: 150px;
}

.excellence-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.excellence-card {
    background: var(--white);
    border-radius: 16px;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: fit-content;
    text-align: center;
}

.excellence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.exc-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border-radius: 50%;
    margin: 0 auto 30px;
    transition: var(--transition);
}

.excellence-card:hover .exc-icon {
    background: var(--accent);
    color: var(--white);
}

.exc-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.exc-desc {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.exc-details {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.excellence-card.active .exc-details {
    max-height: 1200px;
}

.exc-list {
    list-style: none;
    padding: 25px 0 10px;
    border-top: 1px solid #edf2f7;
    text-align: left;
}

.exc-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.exc-list li i {
    color: var(--accent);
    font-size: 14px;
    width: 20px;
}

.exc-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 15px;
    padding: 10px;
}

.exc-toggle i {
    transition: transform 0.3s ease;
}

.excellence-card.active .exc-toggle i {
    transform: rotate(180deg);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    border-top: 1px solid #edf2f7;
    padding-top: 60px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.trust-badge i {
    color: var(--accent);
    font-size: 18px;
}

@media (max-width: 992px) {
    .excellence-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .excellence-grid {
        grid-template-columns: 1fr;
    }

    .trust-indicators {
        gap: 15px;
    }

    .trust-badge {
        width: calc(50% - 10px);
        justify-content: center;
    }
}

/* Redesigned Customer Feedback Loop (CRM) Section */
.feedback-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.feedback-header {
    text-align: center;
    margin-bottom: 80px;
}

.model-label {
    display: block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.feedback-header .section-title {
    color: var(--white);
    margin-bottom: 20px;
}

.feedback-header .section-title::after {
    background: var(--accent);
}

.process-flow {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
    gap: 20px;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent);
    margin: 0 auto 20px;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(5px);
}

.process-step:hover .step-icon-wrap {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(197, 160, 33, 0.4);
}

.step-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    border: 2px solid var(--accent);
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    padding: 0 10px;
}

.feedback-metrics {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.metric-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--white);
}

.metric-badge i {
    color: var(--accent);
    font-size: 16px;
}

@media (max-width: 992px) {
    .process-flow {
        flex-direction: column;
        gap: 50px;
    }

    .process-flow::before {
        display: none;
    }

    .process-step {
        display: flex;
        text-align: left;
        align-items: center;
        gap: 30px;
    }

    .step-icon-wrap {
        margin: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .feedback-section {
        padding: 80px 0;
    }

    .metric-badge {
        width: 100%;
        justify-content: center;
    }
}

/* Redesigned Sustainability Section */
.sustainability-section {
    background-color: var(--white);
    padding: 120px 0;
    position: relative;
}

.sustainability-header {
    text-align: center;
    margin-bottom: 80px;
}

.sustainability-header .section-title::after {
    background: linear-gradient(to right, #2ecc71, #27ae60);
    transition: width 0.5s ease;
}

.sustainability-header:hover .section-title::after {
    width: 120px;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.sustainability-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    text-align: center;
}

.sustainability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.15);
    border-color: #2ecc71;
}

.eco-icon-wrap {
    width: 80px;
    height: 80px;
    background: #f0fff4;
    color: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.sustainability-card:hover .eco-icon-wrap {
    background: #2ecc71;
    color: var(--white);
    transform: rotate(15deg);
}

.eco-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.eco-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #edf2f7;
}

.metric-item {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    transition: var(--transition);
}

.metric-item:hover {
    background: #f0fff4;
    transform: scale(1.05);
}

.metric-val {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 5px;
}

.metric-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sustainability-footer {
    text-align: center;
    margin-top: 60px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.sustainability-footer i {
    color: #2ecc71;
    font-size: 20px;
}

@media (max-width: 992px) {
    .sustainability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sustainability-grid {
        grid-template-columns: 1fr;
    }

    .impact-metrics {
        grid-template-columns: 1fr;
    }

    .sustainability-footer {
        flex-direction: column;
        text-align: center;
    }
}

/* Redesigned Visual Showcase Section */
.showcase-section {
    background-color: #f8fafc;
    padding: 120px 0;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-header .section-title::after {
    background: var(--accent);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.2);
}

.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.overlay-cat {
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    transition-delay: 0.1s;
}

.overlay-title {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    transition-delay: 0.2s;
}

.gallery-card:hover .overlay-cat,
.gallery-card:hover .overlay-title {
    transform: translateY(0);
}

.showcase-trust {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e2e8f0;
}

.trust-badge-mini {
    text-align: center;
}

.trust-val {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.trust-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .gallery-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid-modern {
        grid-template-columns: 1fr;
    }

    .showcase-trust {
        flex-wrap: wrap;
        gap: 30px;
    }
}