/* Base Styles */
:root {
    --primary-color: #2c8a5a;
    --secondary-color: #f7931e;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --text-color: #555;
    --white: #fff;
    --black: #000;
    --gray: #ddd;
    --dark-gray: #777;
}

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

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

a {
    text-decoration: none;
    color: var(--dark-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1f6a44;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title p {
    font-size: 18px;
    color: var(--dark-gray);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
}

.navbar ul {
    display: flex;
}

.navbar ul li {
    margin-left: 30px;
}

.navbar ul li a {
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/scraping.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--white);
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
	padding-top: 2px;
}

.hero-content h1 span {
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.company-info {
    display: flex;
    margin-top: 30px;
    gap: 20px;
}

.info-item {
    text-align: center;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 8px;
    flex: 1;
}

.info-item i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Products Section */
.products {
    padding: 100px 0;
    background-color: var(--light-color);
}

.product-categories {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.category {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.category:hover {
    transform: translateY(-10px);
}

.category-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.category h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.category ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.ready-to-ship h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-details {
    padding: 20px;
}

.product-details h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.product-details p {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--dark-gray);
}

.product-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

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

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/philosophy-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-text p {
    font-size: 18px;
    margin-bottom: 40px;
}

.philosophy-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.stat-item p {
    font-size: 18px;
}

/* Gallery Preview */
.gallery-preview {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay h4 {
    font-size: 18px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

/* Testimonial Preview */
.testimonial-preview {
    padding: 100px 0;
    background-color: var(--light-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto 40px;
}

.testimonial {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.testimonial-author h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 16px;
    color: var(--dark-gray);
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(to right, var(--primary-color), #3aa56d);
    color: var(--white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col p {
    margin-bottom: 20px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--gray);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 18px;
    width: 20px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: var(--gray);
}
/* Updated Logo Styles */
.logo img {
    height: 40px;
    margin-right: 10px;
}

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

/* Improved Navigation */
.navbar ul li {
    position: relative;
    margin-left: 15px;
}

.navbar ul li a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar ul li a i {
    margin-right: 8px;
    font-size: 16px;
}

.navbar ul li a:hover {
    background-color: rgba(44, 138, 90, 0.1);
}

.navbar ul li a.active {
    background-color: var(--primary-color);
    color: white;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-menu li a {
    padding: 10px 15px;
    color: var(--text-color);
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding-left: 20px;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 20px 25px;
    border-radius: 8px;
    text-align: center;
    min-width: 180px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.25);
}

.feature-item i {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 500;
    color: white;
}
/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 75px;
    margin-right: 10px;
}

.logo span {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.logo span strong {
    color: #2c8a5a;
    font-weight: 700;
}

/* Navigation Styles */
.navbar ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    list-style: none;
    margin-left: 25px;
}

.navbar ul li:first-child {
    margin-left: 0;
}

.navbar ul li a {
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: #fff;
    background-color: #2c8a5a;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .navbar {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        transition: all 0.5s ease;
        padding: 20px;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
    }
    
    .navbar ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* ================ RESPONSIVE STYLES ================ */
@media (max-width: 1200px) {
    /* Adjustments for large desktop screens */
    .container {
        max-width: 1000px;
    }
    
    .hero-content {
        max-width: 600px;
		padding-top: 100px
    }
    
    .feature-item {
        min-width: 140px;
        padding: 1px;
    }
}

@media (max-width: 992px) {
    /* Tablet landscape and small desktop adjustments */
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    /* About section adjustments */
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    /* Footer adjustments */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Product categories */
    .product-categories {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Gallery adjustments */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Feature items */
    .feature-item {
        min-width: 140px;
        padding: 12px 15px;
    }
}

@media (max-width: 768px) {
    /* Tablet portrait adjustments */
    .header {
        padding: 10px 0;
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    /* Mobile menu */
    .navbar {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        transition: var(--transition);
        padding: 30px;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        gap: 0;
    }
    
    .navbar li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Hero section */
    .hero {
        min-height: 80vh;
        padding: 80px 0 40px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Philosophy stats */
    .philosophy-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    /* Section titles */
    .section-title h2 {
        font-size: 1.875rem;
    }
    
    /* Feature items */
    .hero-features {
        gap: 12px;
        margin-top: 40px;
    }
    
    .feature-item {
        min-width: calc(50% - 12px);
        padding: 12px;
    }
}

@media (max-width: 576px) {
    /* Mobile phone adjustments */
    .header {
        height: 60px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }
    
    /* Hero section */
    .hero {
        min-height: 70vh;
        padding: 70px 0 30px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 0.9375rem;
    }
    
    /* Section titles */
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Products */
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    /* Company info */
    .company-info {
        flex-direction: column;
    }
    
    /* Contact CTA */
    .contact-cta h2 {
        font-size: 1.5rem;
    }
    
    .contact-cta p {
        font-size: 1rem;
    }
    
    /* Feature items */
    .feature-item {
        min-width: 40%;
    }
    
    .feature-item h4 {
        font-size: 0.875rem;
    }
}

@media (max-width: 400px) {
    /* Small mobile adjustments */
    .hero {
        min-height: 60vh;
        padding: 60px 0 20px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-btns .btn {
        padding: 10px 15px;
        font-size: 0.875rem;
    }
    
    .feature-item {
        padding: 2px;
    }
    
    .feature-item i {
        font-size: 1.5rem;
    }
}
/* ================ ABOUT PAGE STYLES ================ */
/* Base Container */
.about-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.about-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.about-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.about-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-logo img {
    height: 40px;
    width: auto;
}

.about-logo-text {
    font-size: 1.375rem;
    font-weight: 600;
    color: #333;
}

.about-logo-text strong {
    color: #2c8a5a;
    font-weight: 700;
}

.about-nav-list {
    display: flex;
    gap: 15px;
}

.about-nav-item {
    position: relative;
}

.about-nav-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.about-nav-item a:hover {
    background-color: rgba(44, 138, 90, 0.1);
}

.about-active {
    background-color: #2c8a5a;
    color: #fff !important;
}

.about-mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    background: none;
    border: none;
}

/* Hero Section */
.about-hero-section {
    min-height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/about-hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.about-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero-title span {
    color: #f7931e;
}

.about-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto;
}

/* Overview Section */
.about-overview-section {
    padding: 100px 0;
    background-color: #fff;
}

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

.about-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.about-section-title span {
    color: #2c8a5a;
}

.about-section-description {
    font-size: 1.125rem;
    color: #777;
}

.about-overview-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-overview-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-facility-img {
    width: 100%;
    height: auto;
    display: block;
}

.about-experience-badge {
    position: absolute;
    bottom: -25px;
    right: 30px;
    background-color: #2c8a5a;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-overview-text {
    flex: 1;
}

.about-overview-heading {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-overview-paragraph {
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #555;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-stat-card {
    text-align: center;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-stat-icon {
    font-size: 1.75rem;
    color: #2c8a5a;
    margin-bottom: 10px;
}

.about-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.about-stat-text {
    font-size: 0.875rem;
    color: #555;
}

/* Mission Section */
.about-mission-section {
    padding: 100px 0;
    background-color: #f4f4f4;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-mission-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.about-mission-card:hover {
    transform: translateY(-10px);
}

.about-mission-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(44, 138, 90, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.about-mission-icon i {
    font-size: 2rem;
    color: #2c8a5a;
}

.about-mission-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
}

.about-mission-text {
    font-size: 0.9375rem;
    color: #555;
}

/* Team Section */
.about-team-section {
    padding: 100px 0;
    background-color: #fff;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-team-member {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    padding-bottom: 25px;
}

.about-team-member:hover {
    transform: translateY(-10px);
}

.about-member-photo {
    position: relative;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.about-member-img {
    width: 55%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-team-member:hover .about-member-img {
    transform: scale(1.05);
}

.about-member-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.about-team-member:hover .about-member-social {
    opacity: 1;
}

.about-member-social a {
    width: 35px;
    height: 35px;
    background-color: #2c8a5a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-member-social a:hover {
    background-color: #f7931e;
    transform: translateY(-3px);
}

.about-member-name {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: #333;
}

.about-member-position {
    color: #2c8a5a;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9375rem;
}

.about-member-bio {
    font-size: 0.875rem;
    padding: 0 20px;
    color: #555;
}

/* Certifications Section */
.about-certifications-section {
    padding: 100px 0;
    background-color: #f4f4f4;
}

.about-certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-certification-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.about-certification-card:hover {
    transform: translateY(-10px);
}

.about-certification-logo {
    height: 80px;
    width: auto;
    margin: 0 auto 20px;
    object-fit: contain;
}

.about-certification-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
}

.about-certification-text {
    font-size: 0.875rem;
    color: #555;
}

/* Footer */
.about-footer {
    background-color: #333;
    color: #fff;
    padding-top: 80px;
}

.about-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.about-footer-col {
    margin-bottom: 30px;
}

.about-footer-title {
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.about-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #2c8a5a;
}

.about-footer-text {
    margin-bottom: 20px;
    font-size: 0.875rem;
    color: #ddd;
}

.about-footer-social {
    display: flex;
    gap: 15px;
}

.about-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.about-footer-social a:hover {
    background-color: #2c8a5a;
    transform: translateY(-5px);
}

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

.about-footer-links a {
    color: #ddd;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.about-footer-links a:hover {
    color: #2c8a5a;
    padding-left: 5px;
}

.about-contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: #ddd;
}

.about-contact-info i {
    margin-right: 10px;
    color: #2c8a5a;
    font-size: 1.125rem;
    width: 20px;
}

.about-footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
    color: #ddd;
}

/* ================ RESPONSIVE STYLES ================ */
@media (max-width: 992px) {
    .about-overview-grid {
        flex-direction: column;
    }
    
    .about-overview-image {
        margin-bottom: 50px;
    }
    
    .about-experience-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -25px;
    }
    
    .about-nav-list {
        display: none;
    }
    
    .about-mobile-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 80px 0;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-mission-grid,
    .about-team-grid,
    .about-certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .about-member-photo {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        min-height: 40vh;
        padding: 60px 0;
    }
    
    .about-section-title {
        font-size: 1.75rem;
    }
    
    .about-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ================ PRODUCTS PAGE STYLES ================ */
/* Base Container */
.products-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.products-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.products-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.products-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-logo img {
    height: 40px;
    width: auto;
}

.products-logo-text {
    font-size: 1.375rem;
    font-weight: 600;
    color: #333;
}

.products-logo-text strong {
    color: #2c8a5a;
    font-weight: 700;
}

.products-nav-list {
    display: flex;
    gap: 15px;
}

.products-nav-item {
    position: relative;
}

.products-nav-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.products-nav-item a:hover {
    background-color: rgba(44, 138, 90, 0.1);
}

.products-active {
    background-color: #2c8a5a;
    color: #fff !important;
}

.products-mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    background: none;
    border: none;
}

/* Hero Section */
.products-hero-section {
    min-height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/products-hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 120px 0 60px;
    text-align: center;
}

.products-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.products-hero-title span {
    color: #f7931e;
}

.products-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto;
}

/* Categories Section */
.products-categories-section {
    padding: 80px 0;
    background-color: #f4f4f4;
}

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

.products-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.products-section-title span {
    color: #2c8a5a;
}

.products-section-description {
    font-size: 1.125rem;
    color: #777;
}

.products-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.products-category-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.products-category-card:hover {
    transform: translateY(-10px);
}

.products-category-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(44, 138, 90, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #2c8a5a;
}

.products-category-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.products-category-list {
    margin-bottom: 25px;
    text-align: left;
    padding-left: 20px;
}

.products-category-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
    position: relative;
}

.products-category-list li::before {
    content: "•";
    color: #2c8a5a;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.products-category-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2c8a5a;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.products-category-btn:hover {
    background-color: #1f6a44;
    transform: translateY(-3px);
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: #fff;
}

.products-alt-section {
    background-color: #f4f4f4;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.products-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.products-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.products-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.products-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.products-stock {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #2c8a5a;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.products-details {
    padding: 20px;
}

.products-name {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333;
}

.products-description {
    font-size: 0.875rem;
    margin-bottom: 15px;
    color: #555;
}

.products-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.8125rem;
    color: #777;
}

.products-meta i {
    margin-right: 5px;
    color: #2c8a5a;
}

.products-actions {
    display: flex;
    gap: 10px;
}

.products-enquire-btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #2c8a5a;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.875rem;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.products-enquire-btn:hover {
    background-color: #1f6a44;
}

.products-details-btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: transparent;
    color: #2c8a5a;
    border: 1px solid #2c8a5a;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.875rem;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.products-details-btn:hover {
    background-color: rgba(44, 138, 90, 0.1);
}

.products-view-all {
    text-align: center;
}

.products-view-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #2c8a5a;
    border: 2px solid #2c8a5a;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.products-view-btn:hover {
    background-color: #2c8a5a;
    color: #fff;
}

/* Inquiry Section */
.products-inquiry-section {
    padding: 80px 0;
    background-color: #2c8a5a;
    color: #fff;
    text-align: center;
}

.products-inquiry-content {
    max-width: 700px;
    margin: 0 auto;
}

.products-inquiry-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.products-inquiry-text {
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.products-inquiry-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f7931e;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.products-inquiry-btn:hover {
    background-color: #e07d0a;
    transform: translateY(-3px);
}

/* Footer */
.products-footer {
    background-color: #333;
    color: #fff;
    padding-top: 80px;
}

.products-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.products-footer-col {
    margin-bottom: 30px;
}

.products-footer-title {
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.products-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #2c8a5a;
}

.products-footer-text {
    margin-bottom: 20px;
    font-size: 0.875rem;
    color: #ddd;
}

.products-footer-social {
    display: flex;
    gap: 15px;
}

.products-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.products-footer-social a:hover {
    background-color: #2c8a5a;
    transform: translateY(-5px);
}

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

.products-footer-links a {
    color: #ddd;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.products-footer-links a:hover {
    color: #2c8a5a;
    padding-left: 5px;
}

.products-contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: #ddd;
}

.products-contact-info i {
    margin-right: 10px;
    color: #2c8a5a;
    font-size: 1.125rem;
    width: 20px;
}

.products-footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
    color: #ddd;
}

/* ================ RESPONSIVE STYLES ================ */
@media (max-width: 992px) {
    .products-nav-list {
        display: none;
    }
    
    .products-mobile-menu {
        display: block;
    }
    
    .products-hero-section {
        padding: 100px 0 40px;
    }
}

@media (max-width: 768px) {
    .products-hero-section {
        min-height: 40vh;
    }
    
    .products-categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-actions {
        flex-direction: column;
    }
    
    .products-enquire-btn,
    .products-details-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .products-hero-section {
        padding: 80px 0 30px;
    }
    
    .products-section-title {
        font-size: 1.75rem;
    }
    
    .products-footer-grid {
        grid-template-columns: 1fr;
    }
}
/* Gallery Page Specific Styles */
.gallery-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/gallery-hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--white);
    text-align: center;
}

.gallery-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gallery-hero-content h1 span {
    color: var(--secondary-color);
}

.gallery-hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Gallery Filter Controls */
.gallery-filter-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid var(--gray);
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Gallery Grid Layout */
.scrap-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.scrap-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.scrap-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.scrap-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.scrap-gallery-item:hover img {
    transform: scale(1.05);
}

.scrap-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.scrap-gallery-item:hover .scrap-gallery-overlay {
    opacity: 1;
}

.scrap-gallery-info {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.scrap-gallery-item:hover .scrap-gallery-info {
    transform: translateY(0);
}

.scrap-gallery-info h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 5px;
}

.scrap-gallery-info p {
    color: var(--gray);
    font-size: 14px;
}

/* Gallery CTA Section */
.gallery-cta {
    padding: 80px 0;
    background-color: var(--light-color);
    text-align: center;
}

.gallery-cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.gallery-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.gallery-load-more {
    text-align: center;
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .gallery-hero {
        height: 50vh;
    }
    
    .gallery-hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .scrap-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-filter-controls {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .gallery-hero-content h1 {
        font-size: 28px;
    }
    
    .gallery-hero-content p {
        font-size: 16px;
    }
    
    .scrap-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-cta-content h2 {
        font-size: 28px;
    }
}
/* Testimonial Page Specific Styles */
.testimonial-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/testimonial-hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--white);
    text-align: center;
}

.testimonial-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.testimonial-hero-content h1 span {
    color: var(--secondary-color);
}

.testimonial-hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Testimonial Main Section */
.client-testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonial-section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-section-intro h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.testimonial-section-intro h2 span {
    color: var(--primary-color);
}

.testimonial-section-intro p {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Testimonial Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured {
    border: 2px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.featured-badge i {
    margin-right: 5px;
}

.testimonial-rating {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-rating i {
    margin-right: 3px;
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 50px;
    color: rgba(44, 138, 90, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

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

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author-info p {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.author-company img {
    height: 20px;
    width: auto;
    opacity: 0.8;
}

/* Testimonial CTA */
.testimonial-cta {
    text-align: center;
    padding: 40px;
    background-color: var(--light-color);
    border-radius: 10px;
    margin-bottom: 60px;
}

.testimonial-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.testimonial-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--text-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Client Logos Section */
.client-logos {
    padding: 60px 0;
    background-color: var(--light-color);
    text-align: center;
}

.client-logos h3 {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.logo-carousel {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.logo-item {
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0);
}

.logo-item img {
    height: 100px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .testimonial-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .testimonial-hero {
        height: 40vh;
    }
    
    .testimonial-hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .testimonial-hero {
        padding: 100px 0 60px;
    }
    
    .testimonial-section-intro h2 {
        font-size: 30px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .logo-carousel {
        gap: 30px;
    }
    
    .logo-item img {
        height: 30px;
    }
}

@media (max-width: 576px) {
    .testimonial-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .testimonial-hero-content h1 {
        font-size: 28px;
    }
    
    .testimonial-hero-content p {
        font-size: 16px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-section-intro h2 {
        font-size: 26px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a {
        width: 100%;
    }
    
    .logo-carousel {
        gap: 20px;
    }
    
    .logo-item img {
        height: 25px;
    }
}
/* Contact Page Specific Styles */
.contact-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contact-hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--white);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero-content h1 span {
    color: var(--secondary-color);
}

.contact-hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Contact Main Section */
.contact-main {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-section h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-form-section p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* Contact Form Styles */
.scrap-contact-form {
    margin-top: 30px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 138, 90, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 30px;
}

.form-submit button {
    width: 100%;
}

/* Contact Info Section */
.contact-info-section {
    position: relative;
}

.contact-info-card {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-info-card p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-details p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.emergency-contact {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff8e6;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    display: flex;
    gap: 15px;
}

.emergency-icon {
    color: var(--secondary-color);
    font-size: 24px;
}

.emergency-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.emergency-content p {
    font-size: 14px;
    margin-bottom: 10px;
}

.emergency-phone {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

/* Map Section */
.contact-map {
    padding: 0 0 80px;
}

.contact-map h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(to right, var(--primary-color), #3aa56d);
    color: var(--white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .contact-hero {
        height: 40vh;
    }
    
    .contact-hero-content h1 {
        font-size: 36px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-map h2 {
        font-size: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .contact-hero-content h1 {
        font-size: 28px;
    }
    
    .contact-hero-content p {
        font-size: 16px;
    }
    
    .contact-form-section h2 {
        font-size: 28px;
    }
    
    .contact-info-card {
        padding: 25px;
    }
    
    .contact-method {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-map h2 {
        font-size: 26px;
    }
    
    .contact-cta h2 {
        font-size: 28px;
    }
    
    .contact-cta p {
        font-size: 16px;
    }
}
/* WhatsApp Widget Styles */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    font-family: 'Arial', sans-serif;
}

.whatsapp-widget a {
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: #25D366;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp-widget a:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.whatsapp-icon {
    font-size: 30px;
    margin-right: 10px;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 15px;
}

/* Animation for attention */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.whatsapp-widget a {
    animation: pulse 2s infinite;
}

/* Hide text on small screens */
@media (max-width: 480px) {
    .whatsapp-text {
        display: none;
    }
    .whatsapp-widget a {
        padding: 12px;
    }
}