:root {
    --primary-color: #DB3E56; /* Updated to match Get Quote button color */
    --bprimary-color: #DB3E56; /* Orange color suitable for India */
    --secondary-color: #2E294E;
    --text-color: #333333;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --lemon-pastel: #FFFACD; /* Lemon pastel color */
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--lemon-pastel);
}

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

/* CTA Button in Navigation */
.cta-button {
    margin-left: 1rem;
}

.cta-button .btn-primary {
    padding: 0.7rem 1.4rem;
    white-space: nowrap;
    background-color: var(--bprimary-color);
    transition: background-color 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}
.cta-button .btn-primary:hover {
    background-color: #c0354a;
}

@media (max-width: 768px) {
    .cta-button {
        display: none; /* Hide on mobile to save space */
    }
}


/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 2.5rem; /* Adjusted horizontal padding */
    background: transparent;
    position: relative;
    height: 75px; /* Slightly reduced height */
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    margin-right: 2.5rem;
}

.nav-links a {
    color: #ffffff; /* White text for better visibility on all backgrounds */
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}
.nav-links a:hover, 
.navbar.scrolled .nav-links a {
    color: var(--text-color);
}

.nav-links a.active {
    color: #ff6b6b;
    background-color: rgba(146, 71, 71, 0.75);
    padding: 8px 16px;
    border-radius: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}



.nav-links a:hover {
    color: #FFFFFF;
    background-color: rgba(146, 71, 71, 0.75);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
}

.logo img {
    height: 70px;
    object-fit: contain;
}

.cta-button {
    display: flex;
    align-items: center;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 1.1rem;
        display: block;
        margin: 0 auto;
        max-width: 280px;
    }
}

.btn-primary {
    background: var(--bprimary-color);
    color: var(--white);
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background: transparent;
    color: var(--bprimary-color);
    border: 2px solid var(--bprimary-color);
}

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

/* Hero Section */
.hero {
    padding: 120px 0;
    position: relative;
    color: var(--white);
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0;
        min-height: 60vh;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0;
        min-height: 50vh;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/luxury-packaging-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.8);
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding: 25px 40px;
    padding-top: 35px;
    background-color: rgba(146, 71, 71, 0.675);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(146, 71, 71, 0.3);
}

.hero h1::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 25px solid rgba(146, 71, 71, 0.675);
}

.hero h1 span {
    display: block;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    letter-spacing: 0.8px;
    line-height: 1.6;
    white-space: nowrap;
    display: block;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    
}

.btn-primary {
    background: var(--bprimary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

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

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    background: transparent;
}

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

/* Welcome Section */
.welcome-section {
    background-color: #E1EEF4;
    padding: 80px 0;
    text-align: center;
}

.welcome-section h2 {
    color: #2B2B5E;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.welcome-section p {
    color: #4A4A4A;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.welcome {
    padding: 80px 0;
    background-color: #F7E8E8; /* Soft pink */
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.welcome h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.welcome p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.welcome .btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.values-section {
    background-color: #FAFAD2;
    padding: 80px 0;
}

.values-section h2 {
    text-align: center;
    color: #2B2B5E;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item h3 {
    color: #2B2B5E;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: #4A4A4A;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Core Values Section */
.core-values {
    padding: 80px 0;
    background-color: var(--light-gray) !important; /* Added !important to override any conflicts */
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.value-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-icon-wrapper {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.value-item h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .value-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .value-item h3 {
        font-size: 1.8rem;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    padding: 0.5rem;
    background: var(--white);
}

@media (max-width: 768px) {
    .service-card img {
        height: 250px;
    }
    
    .service-card {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .service-card img {
        height: 200px;
    }
}

.service-card h3 {
    color: var(--secondary-color);
    margin: 0.5rem 1rem;
}

.service-card p {
    color: #666;
    margin: 0.5rem 1rem 1.5rem;
}

/* Industries Section */
.industries {
    padding: 80px 0;
    background-color: #F9F1E6; /* Soft peach */
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .industry-item {
        padding: 15px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

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

.industry-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: #F0DCD2; /* Pastel version of #DB3E56 */
    color: var(--text-color);
    text-align: center;
}

.cta h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.cta p {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.cta .btn-primary {
    background-color: var(--bprimary-color);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(219, 62, 86, 0.2);
}

.cta .btn-primary:hover {
    background-color: #c0354a;
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color:  rgba(118, 36, 36, 0.75); 
    /* background-color: rgba(146, 71, 71, 0.75); */
    color: var(--white);
    padding: 60px 0 30px;
}

.footer a {
    color: var(--white);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #E86A58;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

.footer-col h4 {
    margin-bottom: 1.5rem;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

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

@media (max-width: 768px) {
    .social-links a {
        width: 45px;
        height: 45px;
        margin: 0 5px;
    }
    
    .social-links a i {
        font-size: 1.2rem;
    }
}

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

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background-color: #ffffff; 
    transition: var(--transition);
}

.navbar.scrolled .mobile-menu span {
    background-color: var(--text-color);
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        color: var(--text-color);
        margin: 10px 0;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a:hover {
        background-color: rgba(146, 71, 71, 0.1);
        border-radius: 0;
        width: 100%;
    }

    .mobile-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
        padding: 20px 15px;
    }
    
    .hero p {
        font-size: 1.2rem;
        white-space: normal;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, .btn-outline, .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(255, 179, 156, 0.75), rgba(255, 150, 120, 0.75)), url('../images/About.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    padding: 180px 0;
    margin-bottom: 60px;
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

.company-overview {
    padding: 80px 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .overview-text {
        text-align: center;
    }
}

.overview-text h2 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.overview-text p {
    margin-bottom: 1.5rem;
    color: #666;
}

.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    padding: 80px 0;
    background: var(--light-gray);
}

.mission-box,
.vision-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mission-points,
.vision-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.point {
    text-align: center;
    padding: 1.5rem;
}

.point i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.values {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.values h2 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.values .value-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.values .value-card:hover {
    transform: translateY(-5px);
}

.values .value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.values .value-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team {
    padding: 80px 0;
    background: #FFFACD;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-member img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    background-color: #f5f5f5;
    padding: 10px;
}

.team-member h3 {
    margin: 1.5rem 0 0.5rem;
    color: var(--secondary-color);
}

.team-member p {
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .values .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .overview-content {
        grid-template-columns: 1fr;
    }

    .mission-points,
    .vision-points,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Hero Section */
.services-hero {
    background: linear-gradient(rgba(147, 112, 219, 0.3), rgba(138, 43, 226, 0.2)), url('../images/OurServices.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    height: 60vh;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.main-services {
    padding: 80px 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-item.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-item.reverse .service-content {
    direction: ltr;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-content {
    padding: 2rem;
}

.service-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-content p {
    margin-bottom: 2rem;
    color: #666;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 1rem;
}

.additional-services {
    padding: 80px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -25%;
    width: 50%;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}

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

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }

    .service-item,
    .service-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }

    .step:not(:last-child)::after {
        display: none;
    }
    .process-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-top: 3rem;
        position: relative;
        padding: 0 1rem;
    }

    .step:not(:last-child)::after {
        display: none;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(45, 45, 95, 0.85), rgba(45, 45, 95, 0.85)), url('../images/ContactUs.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    padding: 180px 0;
    margin-bottom: 60px;
    position: relative;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 10px;
}

.contact-info h2 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.info-item p {
    color: #666;
}

.social-links h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

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

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

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

    .contact-form,
    .contact-info {
        padding: 2rem;
    }
}

/* Products Page Styles */
.products-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(46, 41, 78, 0.8), rgba(46, 41, 78, 0.8)), url('../images/products-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    height: 60vh;
    display: flex;
    align-items: center;
}

.products-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.product-categories {
    padding: 80px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-content {
    padding: 1.5rem;
}

.category-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.category-features {
    list-style: none;
    margin-top: 1rem;
}

.category-features li {
    margin-bottom: 0.5rem;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.category-features li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.industry-solutions {
    padding: 80px 0;
    background: var(--light-gray);
}

.industry-tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

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

.tab-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.industry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.industry-content img {
    width: 100%;
    border-radius: 10px;
}

.industry-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.industry-info ul {
    list-style: none;
    margin: 1.5rem 0;
}

.industry-info li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.industry-info li:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.product-features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.sample-request {
    padding: 80px 0;
    background: var(--light-gray);
}

.request-form {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    background: var(--white);
}

/* Responsive Design for Products Page */
@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 2.5rem;
    }

    .tab-buttons {
        flex-wrap: wrap;
    }

    .industry-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .request-form {
        padding: 1.5rem;
    }
}

/* Sustainability Hero Section */
.sustainability-hero {
    background: linear-gradient(rgba(45, 45, 95, 0.85), rgba(45, 45, 95, 0.85)), url('../images/sustainability.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    padding: 180px 0;
    margin-bottom: 60px;
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
}

.sustainability-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.sustainability-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .sustainability-hero {
        padding: 120px 0;
    }
    
    .sustainability-hero h1 {
        font-size: 2.5rem;
    }
    
    .sustainability-hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

/* Sustainability Page Styles */
.sustainability-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(46, 41, 78, 0.8), rgba(46, 41, 78, 0.8)), url('../images/sustainability-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.sustainability-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.environmental-impact {
    padding: 80px 0;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-text h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.impact-text p {
    margin-bottom: 2rem;
    color: #666;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.impact-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sustainable-practices {
    padding: 80px 0;
    background: var(--light-gray);
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.practice-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.practice-card:hover {
    transform: translateY(-5px);
}

.practice-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.certifications {
    padding: 80px 0;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.certification-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.certification-card img {
    height: 100px;
    margin-bottom: 1.5rem;
}

.sustainability-goals {
    padding: 80px 0;
    background: var(--light-gray);
}

.goals-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.goal-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
}

.goal-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.goal-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.community-impact {
    padding: 80px 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-list {
    list-style: none;
    margin: 2rem 0;
}

.impact-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.impact-list li:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.eco-products {
    padding: 80px 0;
    background: var(--light-gray);
}

.eco-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.eco-product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.eco-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.eco-product-card h3,
.eco-product-card p {
    padding: 1.5rem;
    margin: 0;
}

.eco-product-card h3 {
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
}

/* Responsive Design for Sustainability Page */
@media (max-width: 768px) {
    .sustainability-hero h1 {
        font-size: 2.5rem;
    }

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

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

    .goal-item {
        flex-direction: column;
        text-align: center;
    }

    .goal-icon {
        margin: 0 auto 1rem;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #F0F7F4; /* Mint cream */
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #F5E6E8; /* Light rose */
}

.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.info-item p {
    margin-bottom: 5px;
    color: #666;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--secondary-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-item i {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 2rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}

.map-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

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

/* Contact Form Styles */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--bprimary-color);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #c0354a;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }
    
    .form-control {
        padding: 14px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-btn {
        width: 100%;
        padding: 16px 30px;
        font-size: 1.1rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #E8F0F7; /* Powder blue */
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.3rem 1.5rem;
        height: 65px;
    }
    
    .nav-links {
        gap: 1.5rem;
        margin-right: 1.5rem;
    }
}

/* Products Hero Section */
/* Products Hero Section */
.products-hero {
    background: linear-gradient(rgba(219, 62, 86, 0.4), rgba(219, 62, 86, 0.4)), url('../images/Product.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    padding: 180px 0;
    margin-bottom: 60px;
    position: relative;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 0;
}

.products-hero .container {
    position: relative;
    z-index: 1;
}

.products-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.products-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .products-hero {
        padding: 120px 0;
    }
    
    .products-hero h1 {
        font-size: 2.5rem;
    }
    
    .products-hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

/* Services Hero Section */
.services-hero {
    background: linear-gradient(rgba(45, 45, 95, 0.85), rgba(45, 45, 95, 0.85)), url('../images/OurServices.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    padding: 180px 0;
    margin-bottom: 60px;
    position: relative;
    height: 60vh; /* Added to match other pages */
    display: flex; /* Added for vertical centering */
    align-items: center; /* Added for vertical centering */
}

.services-hero .container {
    width: 100%; /* Added to ensure proper container width */
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.services-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .services-hero {
        padding: 120px 0;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

/* Sustainability Hero Section */
.sustainability-hero {
    background: linear-gradient(rgba(45, 45, 95, 0.85), rgba(45, 45, 95, 0.85)), url('../images/sustainability.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    padding: 180px 0;
    margin-bottom: 60px;
    position: relative;
}

.sustainability-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.sustainability-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .sustainability-hero {
        padding: 120px 0;
    }
    
    .sustainability-hero h1 {
        font-size: 2.5rem;
    }
    
    .sustainability-hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(rgba(45, 45, 95, 0.85), rgba(45, 45, 95, 0.85)), url('../images/ContactUs.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    padding: 180px 0;
    margin-bottom: 60px;
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Common container style for all hero sections */
.about-hero .container,
.products-hero .container,
.services-hero .container,
.sustainability-hero .container,
.contact-hero .container {
    width: 100%;
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}
