        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #4da923;
            --secondary: #2c2802;
            --dark: #121212;
            --light: #f8f9fa;
            --gray: #6c757d;
            --accent: #eebb23;
            --accent-dark: #d4a61c;
            --purple: #6f42c1;
            --blue: #0d6efd;
            --red: #dc3545;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            background-color: #fff;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--primary);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: white;
            border-radius: 5px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .btn:hover {
            background-color: var(--secondary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--primary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 15px auto 0;
        }
        
        /* Mega Menu Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .top-bar {
            background-color: var(--secondary);
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
        }
        
        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .top-bar-left a {
            color: var(--accent);
            font-weight: 600;
        }
        
        .top-bar-right a {
            margin-left: 15px;
            color: white;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            position: relative;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
        }
        
        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            margin-left: 10px;
        }
        
        .logo-text span {
            color: var(--primary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links > li {
            margin-left: 30px;
            position: relative;
        }
        
        .nav-links > li > a {
            font-weight: 500;
            color: var(--secondary);
            display: flex;
            align-items: center;
            padding: 10px 0;
        }
        
        .nav-links > li > a:hover {
            color: var(--primary);
        }
        
        .nav-links > li > a .arrow {
            margin-left: 5px;
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }
        
        .nav-links > li:hover > a .arrow {
            transform: rotate(180deg);
        }
        
        /* Mega Menu */
        .mega-menu {
            position: absolute;
            left: 0;
            
            background-color: white;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 10px 10px;
            padding: 30px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 100;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .nav-links > li:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .mega-menu-column h3 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
            color: var(--secondary);
        }
        
        .mega-menu-links {
            list-style: none;
        }
        
        .mega-menu-links li {
            margin-bottom: 12px;
        }
        
        .mega-menu-links a {
            color: var(--gray);
            display: flex;
            align-items: center;
            padding: 5px 0;
        }
        
        .mega-menu-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .mega-menu-links i {
            margin-right: 10px;
            color: var(--primary);
            width: 20px;
            text-align: center;
        }
        
        .mega-menu-featured {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            grid-column: span 1;
        }
        
        .mega-menu-featured h3 {
            color: var(--primary);
            border-bottom: none;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            color: var(--secondary);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(44, 40, 2, 0.85), rgba(44, 40, 2, 0.9)), url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 100px;
            margin-top: 100px;
        }
        
        .hero-content {
            max-width: 700px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .hero-btns {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        /* Services Section */
        .services {
            background-color: #f8f9fa;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            padding: 40px 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(77, 169, 35, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary);
            font-size: 2rem;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .about-text h2 {
            color: var(--secondary);
            font-size: 2.5rem;
        }
        
        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 10px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
        }
        
        .stat-text {
            font-size: 1rem;
            color: var(--gray);
        }
        
        /* Portfolio Section */
        .portfolio-filter {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-btn {
            padding: 8px 20px;
            background-color: #f8f9fa;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background-color: var(--primary);
            color: white;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .portfolio-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .portfolio-img {
            height: 250px;
            overflow: hidden;
        }
        
        .portfolio-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .portfolio-item:hover .portfolio-img img {
            transform: scale(1.1);
        }
        
        .portfolio-info {
            padding: 25px;
            background-color: white;
        }
        
        .portfolio-info h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        /* Technologies Section */
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .tech-category {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .tech-category h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .tech-list {
            list-style: none;
        }
        
        .tech-list li {
            margin-bottom: 10px;
            padding: 8px 0;
            border-bottom: 1px dashed #f0f0f0;
            display: flex;
            align-items: center;
        }
        
        .tech-list li:last-child {
            border-bottom: none;
        }
        
        .tech-list i {
            color: var(--primary);
            margin-right: 10px;
            width: 20px;
        }
        
        /* Industries Section */
        .industries {
            background-color: #f8f9fa;
        }
        
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .industry-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .industry-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .industry-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(77, 169, 35, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .industry-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0;
        }
        
        /* Contact Section */
        .contact-form {
            background-color: #f8f9fa;
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .contact-info {
            margin-top: 50px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .info-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(77, 169, 35, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--primary);
            bottom: 0;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 1100px) {
            .mega-menu {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-img {
                order: 2;
            }
            
            .about-text {
                order: 1;
            }
            
            .mega-menu {
                grid-template-columns: repeat(2, 1fr);
                left: -100px;
                width: 800px;
            }
        }
        
        @media (max-width: 850px) {
            .mega-menu {
                width: 700px;
                left: -150px;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 100px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 30px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                max-height: 80vh;
                overflow-y: auto;
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-links > li {
                margin: 0 0 20px 0;
                width: 100%;
            }
            
            .mega-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding: 20px 0 0 20px;
                width: 100%;
                grid-template-columns: 1fr;
                display: none;
            }
            
            .nav-links > li:hover .mega-menu {
                display: grid;
            }
            
            .mega-menu-featured {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 150px 0 80px;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .stats {
                grid-template-columns: 1fr;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
            
            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
 
 
 .breadcrumb {
    background-color: #f8f9fa;
    padding: 20px 0;
    margin-top: 10px;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--gray);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    margin: 0 10px;
    color: var(--gray);
}

.breadcrumb .current {
    color: var(--secondary);
    font-weight: 600;
}

.service-detail {
    padding: 80px 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.service-main h2 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.service-features {
    margin: 40px 0;
}

.service-features h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

.feature-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.service-process {
    margin: 50px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.service-sidebar {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
}

.service-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ddd;
    color: var(--secondary);
}

.sidebar-list {
    list-style: none;
    margin-bottom: 30px;
}

.sidebar-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
}

.demo-section {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.demo-section h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.demo-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.portfolio-detail {
    padding: 80px 0;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-header h1 {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.portfolio-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}

.meta-item i {
    color: var(--primary);
}

.portfolio-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.portfolio-gallery {
    margin-bottom: 40px;
}

.main-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover, .thumbnail.active {
    border-color: var(--primary);
}

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

.portfolio-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.portfolio-details h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--secondary);
}

.detail-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.tech-badge {
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.btn-demo {
    background-color: var(--accent);
    color: var(--secondary);
}

.btn-demo:hover {
    background-color: var(--accent-dark);
}

.hero {
    background: linear-gradient(rgba(44, 40, 2, 0.85), rgba(44, 40, 2, 0.9)), url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0; /* Changed from 180px to 100px for internal pages */
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap; /* Added for better mobile responsiveness */
}

@media (max-width: 1100px) {
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .portfolio-content {
        grid-template-columns: 1fr;
    }
}

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

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.3rem;
    }
    
    .portfolio-header h1 {
        font-size: 2.3rem;
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



.k-card {
    transition: all 0.3s ease;
}

.k-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1.25rem 2.5rem rgba(0,0,0,.15) !important;
}

.k-icon {
    width: 64px;
    height: 64px;
}

.k-icon img {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.k-icon .icon-hover {
    opacity: 0;
}

.k-card:hover .icon-default {
    opacity: 0;
}

.k-card:hover .icon-hover {
    opacity: 1;
}
.inner-banner-image {
	padding-bottom: 25%;
	min-height: 480px;
}
.img-holder {
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-bottom: 100%;
	margin: 0 auto 0;
}
.img-holder figure {
	position: absolute;
	inset: 0;
	display: block;
	margin: 0;
	text-align: center;
	padding: 0;
}

 

/* overlay */
.banner-hero {
    margin: 0 !important;
    padding: 0 !important;
}

/* 2. Full-width background section */
.banner-hero .hero-section {
    width: 100%;
    min-height: 50vh;
    margin-top: 50px;
    padding: 0;

    background: url("https://global.kingdee.com/wp-content/uploads/2025/07/制造-1.jpg")
                center center / cover no-repeat;

    display: flex;
    align-items: center;
    position: relative;
}

/* 3. Overlay (optional but recommended) */
.banner-hero .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* 4. Container should NOT add height */
.banner-hero .container {
    position: relative;
    z-index: 2;
}

/* 5. Text styling */
.banner-hero .hero-content {
    color: #fff;
    max-width: 720px;
}