/* Al Samar Metals Industries LLC - Multi-Green Theme CSS */

:root {
    /* Brand Color Palette */
    --primary-color: #4CAF50; /* Brand Color */
    --secondary-color: #95C11F; /* Light Green */
    --accent-color: #008D36; /* Dark Green */
    --light-green: #F0FFF0; /* Honeydew */
    --medium-green: #95C11F; /* Light Green accent */
    --dark-gray: #7A7A7A; /* Gray accent */
    --lime-green: #95C11F; /* Consistent lime green */
    
    /* Supporting Colors */
    --dark-text: #333333; /* Standard dark text */
    --light-text: #7A7A7A; /* Gray text */
    --white: #ffffff;
    --overlay-green: rgba(0, 141, 54, 0.9);
    --gradient-green: linear-gradient(135deg, #008D36 0%, #4CAF50 50%, #95C11F 100%);
    --gradient-light: linear-gradient(135deg, #F0FFF0 0%, #E8F5E8 50%, #E0F2E0 100%);
    --gradient-brand: linear-gradient(135deg, #008D36 0%, #4CAF50 25%, #95C11F 75%, #95C11F 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.text-white {
    color: var(--white) !important;
}

/* Navigation Styles */
.navbar {
    background: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0, 141, 54, 0.15);
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-brand);
    border-radius: 25px;
    transition: left 0.3s ease;
    z-index: -1;
}

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
    left: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}
.navbar-toggler-icon {
    background-image: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide[data-bg]:not([data-bg="video"]) {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, 
        rgba(0, 141, 54, 0.8) 0%, 
        rgba(76, 175, 80, 0.7) 50%, 
        rgba(149, 193, 31, 0.6) 100%); */
    z-index: 2;
    background: rgb(0 0 0 / 50%)
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    width: 100%;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInUp 1s ease-out;
    color: var(--lime-green);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: slideInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 30px;
    margin: 0 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 4;
    transform: translateY(-50%);
}

.carousel-prev,
.carousel-next {
    background: rgba(0, 141, 54, 0.3);
    border: 2px solid var(--white);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-color);
    border-color: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(149, 193, 31, 0.6);
}

/* Button Styles */
.btn-primary {
    background: var(--gradient-brand);
    border: 2px solid transparent;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--gradient-brand);
    --bs-btn-border-color: #95C11F;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #95C11F;
    --bs-btn-hover-border-color: #95C11F;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #95C11F;
    --bs-btn-active-border-color: #95C11F;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #95C11F;
    --bs-btn-disabled-border-color: #95C11F;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #95C11F 0%, #4CAF50 50%, #008D36 100%);
    transition: left 0.3s ease;
    opacity: 0.4;
}

.btn-primary:hover:before {
    left: 0;
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(76, 175, 80, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    border: none !important;
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(149, 193, 31, 0.4);
}

/* Section Styles */
.section {
    padding: 80px 0;
}
section#team {
    background-color: transparent;
    background-image: linear-gradient(40deg, #CAE978 10%, #F6FFDE 30%);
}
/* section#gallery {
    background-color: var(--accent-color);
} */
 section#gallery h2 {
    color: var(--light-green);
 }

  section#gallery .section-title h2:after {
    background: var(--light-green);
 }

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    position: relative;
}
#team .section-title h2 {
    color: var(--lime-green);
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.bg-light-green {
    background: var(--gradient-light);
}
.bg-accent-green {
    background: var(--accent-color);
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 141, 54, 0.15);
    border: 3px solid transparent;
    background: var(--gradient-brand);
    background-clip: padding-box;
}

.about-text h3 {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--light-text);
    font-size: 1.1rem;
}

.feature-list li:before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 10px;
}

/* Stats Section */
.stats {
    background: var(--gradient-brand);
    color: var(--white);
    padding: 60px 0;
    position: relative;
}

.stats:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0, 141, 54, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 141, 54, 0.1);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover:before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 141, 54, 0.2);
    border-color: var(--secondary-color);
}

.service-image {
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin: -2rem -2rem 1.5rem -2rem;
    position: relative;
}

.service-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(46, 139, 87, 0.1) 100%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h4 {
    color: var(--dark-text);
    margin-bottom: 1rem;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Process Flow */
.process-step {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.process-step:not(:last-child):after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

/* Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    background: var(--gradient-green);
    background-clip: padding-box;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(46, 139, 87, 0.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(31, 95, 63, 0.9));
    color: white;
    padding: 20px;
    border-radius: 0 0 12px 12px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
}

/* Team Section */
.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(46, 139, 87, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(46, 139, 87, 0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 139, 87, 0.2);
    border-color: var(--secondary-color);
}

.team-image {
    width: 100%;
    height: 410px;
    overflow: hidden;
    position: relative;
}

.team-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(46, 139, 87, 0.1) 100%);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-info .position {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-info p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--gradient-light);
}

.contact-form {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(46, 139, 87, 0.1);
    border: 1px solid rgba(46, 139, 87, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid rgba(46, 139, 87, 0.2);
    border-radius: 8px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(60, 179, 113, 0.25);
    outline: none;
}

.contact-info {
    background: var(--gradient-green);
    color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
}

.contact-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.2;
    border-radius: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
    color: var(--lime-green);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-text) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.footer-company {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-contact-info {
    margin-top: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--lime-green);
    width: 20px;
    margin-right: 10px;
    font-size: 1rem;
}

.footer-title {
    color: var(--lime-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.footer-subtitle {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.2rem 0;
}

.footer-links-list a:hover {
    color: var(--lime-green);
    padding-left: 10px;
}

/* Social Media Icons */
.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.social-icon:hover:before {
    left: 100%;
}

.social-icon.linkedin {
    background: linear-gradient(135deg, #0077B5, #005582);
    color: white;
}

.social-icon.linkedin:hover {
    background: linear-gradient(135deg, #005582, #2E8B57);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877F2, #166FE5);
    color: white;
}

.social-icon.facebook:hover {
    background: linear-gradient(135deg, #166FE5, #2E8B57);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

.social-icon.twitter {
    background: linear-gradient(135deg, #1DA1F2, #1A91DA);
    color: white;
}

.social-icon.twitter:hover {
    background: linear-gradient(135deg, #1A91DA, #20B2AA);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.4);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #F56040, #E1306C, #C13584, #833AB4, #5B51D8);
    color: white;
}

.social-icon.instagram:hover {
    background: var(--gradient-green);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

.social-icon.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
}

.social-icon.youtube:hover {
    background: linear-gradient(135deg, #CC0000, #228B22);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.4);
}

.social-icon.email {
    background: var(--gradient-green);
    color: white;
}

.social-icon.email:hover {
    background: linear-gradient(135deg, #32CD32, #20B2AA);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.4);
}

/* Business Hours */
.footer-hours {
    border-top: 1px solid rgba(50, 205, 50, 0.3);
    padding-top: 1rem;
    position: relative;
    z-index: 1;
}

.hours-info {
    margin-top: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
}

.hours-item span:first-child {
    font-weight: 500;
    color: var(--sage-green);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(50, 205, 50, 0.2);
    position: relative;
    z-index: 1;
}

/* ISO Certification */
.iso-certification {
    padding: 1rem 0;
    border-top: 1px solid rgba(50, 205, 50, 0.2);
    border-bottom: 1px solid rgba(50, 205, 50, 0.2);
}

.iso-certification img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    background: white;
    padding: 8px;
}

.iso-certification img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 0.2rem 0;
}

.footer-bottom-links a:hover {
    color: var(--lime-green);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--sage-green);
    font-style: italic;
    margin: 0;
}

/* Enhanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 139, 87, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 139, 87, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 139, 87, 0);
    }
}

/* Fade in animation on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Green-themed Components */
.service-card:hover .service-icon {
    animation: pulseGreen 2s infinite;
}

.process-step:hover .process-number {
    animation: pulseGreen 2s infinite;
}

/* Special gradient text for headings */
.gradient-text {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Additional green accents */
.accent-border {
    border: 2px solid transparent;
    background: var(--gradient-green);
    background-clip: padding-box;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .service-card .service-image {
        height: 150px !important;
    }

    .gallery-item img {
        height: 200px !important;
    }

    .gallery-overlay {
        transform: translateY(0) !important;
        position: relative !important;
        background: rgba(31, 95, 63, 0.9) !important;
        margin-top: -5px;
    }

    .process-step:not(:last-child):after {
        content: '↓';
        right: auto;
        left: 50%;
        top: auto;
        bottom: -15px;
        transform: translateX(-50%);
        color: var(--secondary-color);
    }

    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(46, 139, 87, 0.1);
        border: 1px solid rgba(46, 139, 87, 0.1);
    }

    .team-image {
        height: 410px !important;
    }

    .carousel-nav {
        padding: 0 1rem;
    }

    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .footer-social-icons {
        justify-content: center;
    }
    .navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card .service-image {
        height: 120px !important;
        margin: -1.5rem -1.5rem 1rem -1.5rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    .carousel-dots {
        bottom: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .footer-social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar with green theme */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-green);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1F5F3F, #228B22);
}

/* Selection color */
::selection {
    background: rgba(60, 179, 113, 0.3);
    color: var(--dark-text);
}

/* Preloader with green theme */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-green);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Loading animation for images */
.loading-placeholder {
    background: linear-gradient(90deg, var(--light-green) 25%, rgba(46, 139, 87, 0.1) 50%, var(--light-green) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
/* ============================================
   NEW PRODUCTS SECTION STYLES
   ============================================ */

/* Product Showcase */
.product-showcase {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 141, 54, 0.1);
    margin-bottom: 4rem;
}

.product-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.product-image-wrapper:hover .product-main-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-brand);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    animation: pulseGreen 2s infinite;
}

.product-badge i {
    font-size: 1.1rem;
}

.product-content {
    padding-left: 2rem;
}

.product-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-subtitle {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
}

.product-description {
    margin-bottom: 2rem;
}

.product-description p {
    color: var(--light-text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.product-highlights {
    display: grid;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--light-green);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.highlight-item span {
    color: var(--dark-text);
    font-weight: 500;
}

.highlight-item:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

.highlight-item:hover span {
    color: var(--white);
}

.highlight-item:hover i {
    color: var(--white);
}

/* Featured Products Section */
.featured-products-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.section-divider {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.section-divider h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-divider p {
    font-size: 1.1rem;
    color: var(--light-text);
    font-style: italic;
}

.featured-product-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 141, 54, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #e0f2e0;
    position: relative;
    overflow: hidden;
}

.featured-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-brand);
}

.featured-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 141, 54, 0.2);
    border-color: var(--primary-color);
}

.featured-product-card-highlight {
    background: linear-gradient(135deg, #f0fff0 0%, #e8f5e8 100%);
    border: 2px solid var(--primary-color);
}

.featured-product-card-highlight::before {
    height: 7px;
}

.featured-product-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.featured-product-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.badge-featured {
    background: var(--gradient-brand);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-product-card h4 {
    font-size: 1.6rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-category {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-desc {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding: 0.6rem 0;
    color: var(--dark-text);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.product-features li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    font-size: 1rem;
}

/* Responsive adjustments for featured products */
@media (max-width: 991px) {
    .featured-product-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-divider h3 {
        font-size: 1.8rem;
    }
    
    .featured-product-card h4 {
        font-size: 1.4rem;
    }
    
    .featured-product-icon i {
        font-size: 2rem;
    }
}

/* Alloy Grades Section */
.alloy-grades-section {
    margin-top: 4rem;
}

.grades-header {
    text-align: center;
    margin-bottom: 3rem;
}

.grades-header h3 {
    font-size: 2rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.grades-header p {
    color: var(--light-text);
    font-size: 1.1rem;
}

.alloy-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.alloy-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.alloy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
    border-left-color: var(--primary-color);
}

.alloy-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-green);
    border-radius: 10px;
    flex-shrink: 0;
}

.alloy-info h5 {
    color: var(--dark-text);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.alloy-tag {
    display: inline-block;
    background: var(--gradient-brand);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.alloy-info p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Custom Solutions Card */
.custom-solutions-card {
    background: var(--gradient-brand);
    color: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.custom-solutions-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.custom-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.custom-icon i {
    font-size: 2rem;
    color: var(--white);
}

.custom-solutions-card h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.custom-solutions-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.custom-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.custom-features li {
    color: var(--white);
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.custom-features li i {
    color: var(--white);
    font-size: 0.8rem;
}

.custom-solutions-card .btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.custom-solutions-card .btn:hover {
    background: var(--light-green);
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Product Dimensions Section */
.product-dimensions-section {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 141, 54, 0.1);
    border: 2px solid #e8f5e8;
}

.dimensions-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.dimensions-header p {
    color: var(--light-text);
    font-size: 1.05rem;
}

.dimensions-image-container {
    position: relative;
    background: linear-gradient(135deg, #f0fff0 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary-color);
}

.dimensions-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.dimension-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.4);
}

.dimension-badge i {
    font-size: 1.1rem;
}

.specifications-card {
    background: linear-gradient(135deg, #f9fff9 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e0f2e0;
    height: 100%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.specifications-card h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.specifications-card h4 i {
    font-size: 1.3rem;
}

.spec-group {
    margin-bottom: 2rem;
}

.spec-group h5 {
    color: var(--dark-text);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid #e8f5e8;
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--light-text);
    font-weight: 500;
    font-size: 0.95rem;
}

.spec-value {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.feature-tag {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}

.feature-tag i {
    font-size: 0.9rem;
}

.spec-note {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.spec-note i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.spec-note p {
    margin: 0;
    color: var(--dark-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Design for Dimensions Section */
@media (max-width: 991px) {
    .dimensions-image-container {
        margin-bottom: 2rem;
    }
    
    .dimension-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .product-dimensions-section {
        padding: 2rem 1rem;
    }
    
    .dimensions-header h3 {
        font-size: 1.6rem;
    }
    
    .dimensions-image-container {
        padding: 1rem;
    }
    
    .specifications-card {
        padding: 1.5rem;
    }
    
    .feature-tags {
        gap: 0.6rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Responsive Design for New Products Section */
@media (max-width: 992px) {
    .product-showcase {
        padding: 2rem;
    }
    
    .product-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .alloy-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-solutions-card {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .product-showcase {
        padding: 1.5rem;
    }
    
    .product-title {
        font-size: 1.6rem;
    }
    
    .product-subtitle {
        font-size: 1rem;
    }
    
    .product-description p {
        font-size: 1rem;
    }
    
    .highlight-item {
        font-size: 0.9rem;
    }
    
    .alloy-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .alloy-number {
        margin: 0 auto;
    }
    
    .grades-header h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .product-badge {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .product-badge span {
        display: none;
    }
    
    .alloy-info h5 {
        font-size: 1rem;
    }
}
/* ============================================
   CERTIFICATION SECTION STYLES - ULTRA COMPACT
   ============================================ */

.certification-section {
    background: linear-gradient(135deg, #F0FFF0 0%, #E8F5E8 100%);
    position: relative;
    overflow: hidden;
    padding: 30px 0 !important;
}

.certification-section .section-title {
    margin-bottom: 25px;
}

.certification-section .section-title h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.certification-section .section-title p {
    font-size: 0.9rem;
}

/* ISO Logo Card - Ultra Compact */
.iso-logo-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 141, 54, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.iso-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-brand);
}

.iso-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 18px rgba(0, 141, 54, 0.18);
}

.iso-logo-wrapper {
    background: var(--light-green);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.iso-logo-img {
    max-width: 90px;
    height: auto;
    transition: transform 0.3s ease;
}

.iso-logo-card:hover .iso-logo-img {
    transform: scale(1.05);
}

.iso-logo-card h4 {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.iso-logo-card p {
    color: var(--light-text);
    line-height: 1.5;
    font-size: 0.75rem;
}

/* Certificate Card - Ultra Compact */
.certificate-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 3px 12px rgba(0, 141, 54, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.certificate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-brand);
}

.certificate-title {
    color: var(--dark-text);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.certificate-subtitle {
    color: var(--primary-color);
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.certificate-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-height: 350px;
}

.certificate-image-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.certificate-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    max-height: 350px;
    object-fit: cover;
}

.certificate-image-wrapper:hover .certificate-img {
    transform: scale(1.02);
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 141, 54, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
}

.certificate-image-wrapper:hover .certificate-overlay {
    opacity: 1;
}

.certificate-overlay i {
    font-size: 1.75rem;
    margin-bottom: 0.4rem;
}

.certificate-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Certification Highlights - Ultra Compact */
.certification-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.cert-highlight-item {
    background: var(--white);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-color);
}

.cert-highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.15);
    border-left-color: var(--secondary-color);
}

.cert-highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.cert-highlight-item h5 {
    color: var(--dark-text);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.cert-highlight-item p {
    color: var(--light-text);
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   LIGHTBOX MODAL STYLES
   ============================================ */

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--secondary-color);
    text-decoration: none;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fff;
    padding: 15px 0;
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Design for Certification Section */
@media (max-width: 992px) {
    .certification-section {
        padding: 25px 0 !important;
    }
    
    .certification-section .section-title h2 {
        font-size: 1.5rem;
    }
    
    .iso-logo-card,
    .certificate-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .iso-logo-wrapper {
        padding: 0.6rem;
    }
    
    .iso-logo-img {
        max-width: 80px;
    }
    
    .certificate-image-wrapper,
    .certificate-img {
        max-height: 300px;
    }
    
    .certification-highlights {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .certification-section {
        padding: 20px 0 !important;
    }
    
    .certification-section .section-title {
        margin-bottom: 20px;
    }
    
    .certification-section .section-title h2 {
        font-size: 1.4rem;
    }
    
    .certificate-title {
        font-size: 0.95rem;
    }
    
    .certificate-image-wrapper,
    .certificate-img {
        max-height: 250px;
    }
    
    .certificate-overlay i {
        font-size: 1.5rem;
    }
    
    .certificate-overlay span {
        font-size: 0.8rem;
    }
    
    .cert-highlight-item {
        padding: 0.85rem;
    }
    
    .cert-highlight-item i {
        font-size: 1.3rem;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 35px;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-caption {
        font-size: 0.9rem;
        width: 90%;
    }
}

@media (max-width: 576px) {
    .certification-section {
        padding: 15px 0 !important;
    }
    
    .certification-section .section-title h2 {
        font-size: 1.3rem;
    }
    
    .iso-logo-card,
    .certificate-card {
        padding: 0.85rem;
    }
    
    .iso-logo-img {
        max-width: 70px;
    }
    
    .iso-logo-card h4 {
        font-size: 0.85rem;
    }
    
    .iso-logo-card p {
        font-size: 0.7rem;
    }
    
    .certificate-title {
        font-size: 0.9rem;
    }
    
    .certificate-subtitle {
        font-size: 0.7rem;
    }
    
    .certificate-image-wrapper,
    .certificate-img {
        max-height: 200px;
    }
    
    .cert-highlight-item {
        flex-direction: row;
        padding: 0.75rem;
    }
    
    .cert-highlight-item h5 {
        font-size: 0.85rem;
    }
    
    .cert-highlight-item p {
        font-size: 0.7rem;
    }
}
/* ============================================
   QUALITY & SUSTAINABILITY SECTION STYLES
   ============================================ */

.quality-sustainability-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Main Overview */
.quality-overview {
    background: var(--light-green);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0, 141, 54, 0.1);
}

.quality-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.quality-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.quality-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-brand);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.quality-badge i {
    font-size: 1.2rem;
}

.quality-content {
    padding-left: 2rem;
}

.quality-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.quality-content p {
    color: var(--dark-text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.quality-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.2);
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.stat-box h4 {
    color: var(--dark-text);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.stat-box p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0;
}

/* Quality Pillars */
.quality-pillars {
    margin-bottom: 3rem;
}

.pillar-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(76, 175, 80, 0.2);
}

.pillar-card-highlighted {
    background: var(--gradient-brand);
    color: var(--white);
    border-top-color: var(--white);
}

.pillar-card-highlighted h4,
.pillar-card-highlighted p,
.pillar-card-highlighted .pillar-highlight span {
    color: var(--white);
}

.pillar-card-highlighted .pillar-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.pillar-card-highlighted .pillar-highlight i {
    color: var(--white);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    transform: rotateY(360deg);
}

.pillar-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.pillar-card h4 {
    text-align: center;
    color: var(--dark-text);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.pillar-content p {
    color: var(--dark-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.pillar-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(0, 141, 54, 0.1);
}

.pillar-card-highlighted .pillar-highlight {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.pillar-highlight i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.pillar-highlight span {
    color: var(--dark-text);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Quality Culture Statement */
.quality-culture-statement {
    margin-top: 2rem;
}

.culture-card {
    background: linear-gradient(135deg, #008D36 0%, #4CAF50 50%, #95C11F 100%);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 141, 54, 0.3);
}

.culture-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.quote-icon {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.culture-card h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.culture-card p {
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .quality-overview {
        padding: 2rem;
    }
    
    .quality-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .quality-content h3 {
        font-size: 1.75rem;
    }
    
    .quality-stats {
        grid-template-columns: 1fr;
    }
    
    .pillar-card {
        margin-bottom: 1.5rem;
    }
    
    .culture-card h3 {
        font-size: 1.6rem;
    }
    
    .culture-card p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .quality-overview {
        padding: 1.5rem;
    }
    
    .quality-content h3 {
        font-size: 1.5rem;
    }
    
    .quality-content p {
        font-size: 0.95rem;
    }
    
    .quality-badge {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .stat-box {
        padding: 1rem;
    }
    
    .stat-box i {
        font-size: 2rem;
    }
    
    .pillar-card {
        padding: 1.5rem;
    }
    
    .pillar-icon {
        width: 60px;
        height: 60px;
    }
    
    .pillar-icon i {
        font-size: 1.75rem;
    }
    
    .pillar-card h4 {
        font-size: 1.2rem;
    }
    
    .culture-card {
        padding: 2rem;
    }
    
    .culture-card h3 {
        font-size: 1.4rem;
    }
    
    .quote-icon {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .quality-badge {
        position: static;
        margin-bottom: 1rem;
        display: inline-flex;
    }
    
    .quality-content h3 {
        font-size: 1.3rem;
    }
    
    .stat-box {
        flex-direction: column;
        text-align: center;
    }
    
    .pillar-highlight {
        flex-direction: row;
    }
    
    .culture-card {
        padding: 1.5rem;
    }
    
    .culture-card h3 {
        font-size: 1.2rem;
    }
    
    .culture-card p {
        font-size: 0.9rem;
    }
}

/* ============================================
   PRODUCTION PROCESS FLOW STYLES
   ============================================ */

.production-process-section {
    background: linear-gradient(135deg, #f0fff0 0%, #ffffff 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 141, 54, 0.1);
}

.process-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.process-header p {
    font-size: 1.1rem;
    color: var(--light-text);
}

.process-flow-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(76, 175, 80, 0.2);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-brand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}

.step-content {
    flex-grow: 1;
}

.step-icon {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.step-content h5 {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--light-text);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2rem;
    color: var(--primary-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Process step with inputs */
.process-step-with-inputs {
    position: relative;
}

.step-inputs {
    position: absolute;
    right: -220px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    min-width: 200px;
}

.step-inputs::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 20px solid var(--primary-color);
}

.input-label span {
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.input-label ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.input-label ul li {
    color: var(--dark-text);
    font-size: 0.85rem;
    padding: 0.2rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.input-label ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Process step with QC */
.process-step-with-qc {
    border-left: 4px solid var(--primary-color);
}

.qc-badge {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}

.qc-badge i {
    font-size: 1rem;
}

/* Process step with branch (dross) */
.process-step-with-branch {
    margin-bottom: 4rem;
}

.dross-branch {
    position: absolute;
    left: 25px;
    bottom: -3.5rem;
    display: flex;
    align-items: center;
}

.branch-arrow {
    width: 2px;
    height: 40px;
    background: var(--light-text);
    position: relative;
    margin-right: 1rem;
}

.branch-arrow::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--light-text);
}

.branch-items {
    display: flex;
    gap: 1rem;
}

.branch-item {
    background: #f5f5f5;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--dark-text);
    border: 1px solid #ddd;
}

.branch-item i {
    color: var(--accent-color);
}

/* Final step */
.process-step-final {
    background: linear-gradient(135deg, #4CAF50 0%, #95C11F 100%);
    color: var(--white);
    border: 3px solid var(--primary-color);
}

.process-step-final .step-number {
    background: var(--white);
    color: var(--primary-color);
}

.process-step-final .step-icon {
    background: rgba(255, 255, 255, 0.2);
}

.process-step-final .step-icon i {
    color: var(--white);
}

.process-step-final .step-content h5 {
    color: var(--white);
}

.process-step-final .step-content p {
    color: rgba(255, 255, 255, 0.9);
}

.process-step-final:hover {
    transform: scale(1.02);
}

/* Responsive Design for Production Process */
@media (max-width: 1200px) {
    .step-inputs {
        right: -200px;
        min-width: 180px;
        font-size: 0.85rem;
    }
}

@media (max-width: 991px) {
    .step-inputs {
        position: static;
        transform: none;
        margin-top: 1rem;
        width: 100%;
    }
    
    .step-inputs::before {
        display: none;
    }
    
    .qc-badge {
        position: static;
        transform: none;
        margin-top: 1rem;
        width: fit-content;
    }
}

@media (max-width: 768px) {
    .production-process-section {
        padding: 2rem 1rem;
    }
    
    .process-header h3 {
        font-size: 1.6rem;
    }
    
    .process-step {
        flex-direction: column;
        padding: 1rem;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .step-arrow {
        font-size: 1.5rem;
    }
    
    .dross-branch {
        left: 10px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .branch-items {
        flex-direction: column;
    }
}

/* ============================================
   WHY SMI IS DIFFERENT & CORE VALUES STYLES
   ============================================ */

.why-smi-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 141, 54, 0.12);
    border-top: 5px solid var(--primary-color);
}

.why-smi-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.why-smi-intro {
    text-align: center;
    color: var(--dark-text);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.technical-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-green);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.technical-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.feature-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-brand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.feature-content h5 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--dark-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Core Values Card */
.core-values-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 141, 54, 0.12);
    height: 100%;
    border-left: 5px solid var(--primary-color);
}

.core-values-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.core-value-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 141, 54, 0.1);
}

.core-value-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.core-value-item h5 {
    color: var(--dark-text);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.core-value-item p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Why Choose SMI Card */
.why-choose-smi-card {
    background: var(--gradient-brand);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(76, 175, 80, 0.3);
    height: 100%;
    color: var(--white);
}

.why-choose-smi-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.why-choose-item i {
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.why-choose-item p {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.cta-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.cta-text {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-box .btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
}

.cta-box .btn:hover {
    background: var(--light-green);
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* ============================================
   MODERN MANAGEMENT TEAM STYLES
   ============================================ */

.management-team-section {
    background: linear-gradient(135deg, #CAE978 10%, #F6FFDE 30%);
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.7;
}

.team-card-modern {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 141, 54, 0.25);
}

.team-header {
    background: var(--gradient-brand);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.team-image-modern {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.team-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.team-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.team-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.team-title-section h4 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-title-section .position {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.expertise-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--white);
    font-size: 0.9rem;
}

.expertise-tag i {
    font-size: 1rem;
}

.team-content {
    padding: 2rem;
}

.team-content p {
    color: var(--dark-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.expertise-areas {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-green);
}

.expertise-areas h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem;
    background: var(--light-green);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

.expertise-item:hover i,
.expertise-item:hover span {
    color: var(--white);
}

.expertise-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.expertise-item span {
    color: var(--dark-text);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-smi-section {
        padding: 2rem;
    }
    
    .why-smi-title {
        font-size: 1.6rem;
    }
    
    .technical-feature {
        padding: 1.25rem;
    }
    
    .core-values-card,
    .why-choose-smi-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .team-header {
        padding: 1.5rem;
    }
    
    .team-content {
        padding: 1.5rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why-smi-section {
        padding: 1.5rem;
    }
    
    .why-smi-title {
        font-size: 1.4rem;
    }
    
    .why-smi-intro {
        font-size: 1rem;
    }
    
    .technical-feature {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .feature-number {
        margin: 0 auto 1rem;
    }
    
    .core-values-card h3,
    .why-choose-smi-card h3 {
        font-size: 1.5rem;
    }
    
    .team-image-modern {
        width: 120px;
        height: 120px;
    }
    
    .team-title-section h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .why-smi-title {
        font-size: 1.2rem;
    }
    
    .technical-feature {
        margin-bottom: 1.5rem;
    }
    
    .feature-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .feature-content h5 {
        font-size: 1rem;
    }
    
    .core-values-card,
    .why-choose-smi-card {
        padding: 1.5rem;
    }
    
    .team-card-modern {
        margin-bottom: 2rem;
    }
}