/* Main Styles for Jalkom Website */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --primary-color: #0d2240;
    --secondary-color: #f26522;
    --light-bg: #f5f5f5;
    --text-color: #333;
    --white: #fff;
}

body {
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.social-icons a {
    color: var(--white);
    text-decoration: none;
}

/* Header */
header {
    background-color: rgba(73, 107, 130, 0.8);
    padding: 15px 0;
}

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

.logo img {
    height: 60px;
}

.features {
    display: flex;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

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

.feature-text {
    font-size: 14px;
}

.feature-text strong {
    display: block;
    font-size: 16px;
}

/* Navigation */
nav {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    position: relative;
}

.menu li a {
    display: block;
    padding: 20px 15px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.menu li a:hover, 
.menu li a.active {
    color: var(--secondary-color);
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.search-bar button {
    background-color: var(--white);
    border: 1px solid #ddd;
    border-left: none;
    padding: 8px 12px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.contact-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #e55a14;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url('https://images.unsplash.com/photo-1628352081506-83c43123ed6d?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    color: var(--text-color);
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Features Section */
.features-section {
    padding: 50px 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

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

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

.feature-card .icon {
    width: 70px;
    height: 70px;
    background-color: rgba(242, 101, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card .icon i {
    font-size: 30px;
    color: var(--secondary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Company History Section */
.history-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.history-text {
    flex: 1;
}

.history-image {
    flex: 1;
}

.history-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.subtitle {
    display: block;
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.history-text h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.history-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

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

.contact-details h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-details a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.quote-btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.quote-btn:hover {
    background-color: #e55a14;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    line-height: 1.6;
    color: #ccc;
}

.footer-links, 
.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-links h4, 
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after, 
.footer-contact h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

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

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.footer-contact p i {
    color: var(--secondary-color);
    width: 20px;
}

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

.footer-bottom p {
    color: #ccc;
}

/* Animation for feature cards */
.feature-card.animate {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .features {
        display: none;
    }
    
    .features-grid {
        flex-direction: column;
    }
    
    .menu {
        display: none;
    }
    
    .menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .history-content {
        flex-direction: column;
    }
    
    .history-text h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

/* About Page Styles */
.page-banner {
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.banner-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb .separator {
    font-size: 12px;
}

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

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

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.separator {
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0 auto;
}

.about-welcome {
    padding: 80px 0;
}

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

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

.about-image {
    flex: 1;
}

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

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

.vm-boxes {
    display: flex;
    gap: 30px;
}

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

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

.vm-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(242, 101, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vm-icon i {
    font-size: 36px;
    color: var(--secondary-color);
}

.vm-box h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.vm-box p {
    color: #666;
    line-height: 1.6;
}

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

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 120px;
    width: 3px;
    background-color: #eee;
}

.timeline-item {
    position: relative;
    padding-left: 150px;
    margin-bottom: 50px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.timeline-content {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.team-grid {
    display: flex;
    gap: 30px;
}

.team-member {
    flex: 1;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: 25px;
}

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

.position {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.member-info p {
    color: #666;
    line-height: 1.6;
}

.customer-satisfaction {
    padding: 80px 0;
    background-color: var(--white);
}

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

.satisfaction-text {
    flex: 1;
}

.satisfaction-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.satisfaction-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

.signature {
    margin-top: 30px;
}

.signature p {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.signature span {
    color: var(--secondary-color);
    font-size: 14px;
}

.satisfaction-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.satisfaction-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.satisfaction-images img:hover {
    transform: scale(1.05);
}

/* PVC Information Section */
.pvc-info-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.pvc-info-content {
    display: flex;
    gap: 50px;
}

.pvc-info-left {
    flex: 1;
}

.pvc-info-left h3 {
    color: #666;
    font-size: 18px;
    margin-bottom: 20px;
}

.pvc-info-left h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--primary-color);
}

.pvc-info-right {
    flex: 1;
}

.pvc-info-block {
    margin-bottom: 30px;
}

.pvc-info-block h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.pvc-info-block p {
    line-height: 1.6;
    color: #666;
}

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

.highlight-text {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.5;
    border-left: 3px solid var(--secondary-color);
    padding-left: 20px;
}

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background-color: var(--white);
}

.certificates-container {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

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

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

.certificate-image {
    height: 300px;
    overflow: hidden;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s;
}

.certificate-info {
    padding: 25px;
}

.certificate-info h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 20px;
}

.certificate-info p {
    color: #666;
    line-height: 1.6;
}

/* Products Page Styles */
.products-intro {
    padding: 80px 0 40px;
    text-align: center;
}

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

.intro-content h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Product Guarantee Section */
.product-guarantee {
    padding: 40px 0 80px;
    background-color: var(--white);
}

.guarantee-content {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.guarantee-text {
    flex: 1;
}

.guarantee-text h2 {
    font-size: 28px;
    line-height: 1.4;
    color: var(--primary-color);
}

.guarantee-info {
    flex: 1;
}

.guarantee-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.product-showcase {
    margin-top: 40px;
}

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

.product-box {
    flex: 1;
    text-align: center;
}

.product-image {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.product-box:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.product-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 10px;
}

.products-categories {
    padding: 40px 0 80px;
}

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

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

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

.category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.view-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.view-more:hover {
    background-color: #e55a14;
}

.category-info {
    padding: 25px;
}

.category-info h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 20px;
}

.category-info p {
    color: #666;
    line-height: 1.6;
}

.product-benefits {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

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

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(242, 101, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--secondary-color);
}

.benefit-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://sarhadplastics.com/wp-content/uploads/2021/06/pipes-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

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

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

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #e55a14;
}

@media (max-width: 992px) {
    .about-content,
    .vm-boxes,
    .team-grid,
    .satisfaction-content,
    .pvc-info-content,
    .certificates-container,
    .categories-grid,
    .benefits-grid {
        flex-direction: column;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline:before {
        left: 40px;
    }
    
    .timeline-item {
        padding-left: 80px;
    }
    
    .timeline-year {
        width: 70px;
        height: 30px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .categories-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Showcase Section */
.product-showcase-section {
    padding: 80px 0;
    background-color: var(--white);
}

.showcase-heading {
    text-align: center;
    margin-bottom: 50px;
}

.showcase-heading h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.showcase-heading h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.showcase-heading p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.showcase-items {
    display: flex;
    gap: 30px;
}

.showcase-item {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.showcase-item img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding: 20px;
}

.showcase-content {
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.showcase-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.showcase-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.showcase-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

.showcase-content .tagline {
    font-size: 18px;
    font-weight: 600;
    color: #00a0e3;
}

.logo-badge {
    margin: 15px 0;
}

.logo-badge img {
    width: 80px;
    height: auto;
}

.certification-badges {
    display: flex;
    gap: 5px;
    margin-top: 20px;
}

.certification-badges span {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 3px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.feature-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-size: 14px;
}

.feature-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .showcase-items {
        flex-direction: column;
    }
}

/* Schedule Estimate Section */
.schedule-estimate-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

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

.celebration-image img {
    width: 100%;
    height: auto;
    display: block;
}

.years-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.years-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
}

.celebrating {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.years-number {
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    color: var(--secondary-color);
}

.years-label {
    font-size: 24px;
    font-weight: 600;
}

.since {
    font-size: 16px;
    margin-top: 5px;
}

.celebration-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 10px;
    margin: 0;
    font-size: 14px;
    text-align: center;
}

.estimate-info {
    flex: 1;
    padding: 20px;
}

.estimate-info .subtitle {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.estimate-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.estimate-info p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #666;
}

.estimate-info .contact-info-box {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 300px;
}

.estimate-info .contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.estimate-info .contact-icon i {
    color: var(--white);
    font-size: 20px;
}

.estimate-info .contact-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.estimate-info .contact-details a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 992px) {
    .schedule-content {
        flex-direction: column;
    }
    
    .celebration-image,
    .estimate-info {
        width: 100%;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-image: linear-gradient(rgba(13, 34, 64, 0.9), rgba(13, 34, 64, 0.9)), url('https://sarhadplastics.com/wp-content/uploads/2021/06/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.contact-wrapper {
    display: flex;
    gap: 50px;
}

.contact-info-box, 
.contact-form-container {
    flex: 1;
    padding: 40px;
    border-radius: 10px;
}

.contact-info-box {
    background-color: rgba(13, 34, 64, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-box h2, 
.contact-form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 300;
}

.contact-info-box h2 .highlight-text {
    color: var(--white);
    font-weight: 600;
}

.contact-info-box p, 
.contact-form-container p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #a7b3c6;
    font-size: 14px;
}

.address-blocks {
    margin-bottom: 30px;
}

.address-block {
    margin-bottom: 20px;
}

.address-block h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--white);
}

.address-block .address {
    margin-bottom: 5px;
    color: #a7b3c6;
    font-size: 14px;
}

.map-link {
    display: flex;
    align-items: center;
}

.map-link a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
}

.map-link i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--white);
}

.contact-detail a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
}

.email-link {
    display: flex;
    align-items: center;
}

.email-link i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

/* Product Gallery Section */
.product-gallery {
    padding: 50px 0;
    background-color: var(--light-bg);
}

.gallery-images {
    display: flex;
    gap: 20px;
}

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

.gallery-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

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

@media (max-width: 992px) {
    .about-content,
    .vm-boxes,
    .team-grid,
    .satisfaction-content,
    .pvc-info-content,
    .certificates-container,
    .categories-grid,
    .benefits-grid,
    .contact-wrapper,
    .contact-details,
    .gallery-images {
        flex-direction: column;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline:before {
        left: 40px;
    }
    
    .timeline-item {
        padding-left: 80px;
    }
    
    .timeline-year {
        width: 70px;
        height: 30px;
        font-size: 14px;
    }
}

/* Contact Page Styles */
.contact-page-banner {
    background-image: url('images/breadcrums.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.contact-page-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.contact-page-banner .container {
    position: relative;
    z-index: 2;
}

.contact-page-banner h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.contact-page-banner h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-page-banner .breadcrumb {
    font-size: 16px;
}

.contact-page-banner .breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.contact-page-banner .breadcrumb .separator {
    margin: 0 10px;
    color: var(--secondary-color);
}

.contact-page-banner .breadcrumb .current-page {
    color: var(--secondary-color);
}

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

.map-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
}

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

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