/* CSS Variables for Color Scheme */
:root {
    --primary-navy: #0b2a72;
    --primary-blue: #1e40af;
    --accent-blue: #3b82f6;
    --success-green: #059669;
    --warning-orange: #ea580c;
    --pure-white: #ffffff;
    --light-background: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #374151;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Legacy variables for backward compatibility */
    --primary-dark-blue: var(--primary-navy);
    --secondary-blue: var(--accent-blue);
    --white: var(--pure-white);
    --light-gray: var(--light-background);
    --border-color: var(--border-light);
}

/* Reset and Base Styles */
* {
    margin: 0 ;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--pure-white);
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lora", serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--pure-white);

}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.875rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.text-large {
    font-size: 1.125rem;
    line-height: 1.7;
}

.text-small {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.text-caption {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Button Typography */
.btn {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.btn-sm {
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-lg {
    font-size: 1.125rem;
    font-weight: 600;
}

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

}

.prod .container {
    padding-top: 5%;
}

/* Header Styles */


.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2563eb;
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-navy);
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-utilities {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: var(--light-background);
}

.login-btn {
    background-color: var(--warning-orange);
    color: var(--pure-white);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #dc2626;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

/* .hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
} */
.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(18 20 26 / 43%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dna" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dna)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(32 35 43 / 38%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 15% 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: "Lexend", sans-serif;
    color: var(--pure-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #0ba4db;
    color: var(--pure-white);
    padding: 0.8rem 1.8rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    background-color: #0e7ba3f1;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-navy);

    font-family: "Lexend", sans-serif;
}

/* Vendors Section */
.vendors-section {
    padding: 5rem 0;
    background-color: rgb(225 235 255);
}

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

.vendor-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px dashed var(--primary-dark-blue);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vendor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vendor-logo {
    height: 60px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.vendor-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-dark-blue);
}

.vendor-card p {
    color: var(--text-secondary);
}

/* Value Propositions Section */
.value-props-section {
    padding: 5rem 0;
}

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

.value-prop-card {
    text-align: center;
    padding: 2rem;
}

.value-prop-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-baby-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-dark-blue);
}

.center .value-prop-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-baby-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-blue);
}

.center h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-blue) !important;
}

.value-prop-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark-blue);
}

.value-prop-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.element.style {
    display: flex !important;
}

/* Featured Products Section */
.featured-products-section {
    padding: 5rem 0;
    background-color: rgb(225 235 255);
}

.products-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    position: relative;
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Ensure all cards have same height */
    min-height: 450px;
    /* Set minimum height for consistency */
    padding-top: 20px;
    width: 350px;
}

/* Create border corners */
.product-card::before,
.product-card::after {
    content: "";
    position: absolute;
    border: 2px solid var(--primary-dark-blue);
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    border-radius: 1rem;
}

/* Top-left corner */
.product-card::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

/* Bottom-right corner */
.product-card::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.product-card:hover::before,
.product-card:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
    /* Prevent image from shrinking */
}

.product-content {
    padding: 1.5rem;
    background-color: rgba(225, 235, 255, 0.975);
    width: 90%;
    border-radius: 8px;
    margin: 20px auto;
    /* Center the content box */
    border: 1px dashed var(--primary-dark-blue);
    flex: 1;
    /* Allow content to grow and fill remaining space */
    display: flex;
    flex-direction: column;
    min-height: 200px;
    /* Ensure consistent content height */
}

.product-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--primary-dark-blue);
    line-height: 1.3;
    min-height: 3.2rem;
    /* Reserve space for 2 lines of title */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit title to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    flex: 1;
    /* Allow description to take available space */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Limit description to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.5rem;
    /* Reserve space for 3 lines */
}

.learn-more-btn {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-top: auto;
    /* Push button to bottom */
    padding: 0.5rem 0;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.learn-more-btn:hover {
    color: var(--primary-dark-blue);
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 4px;
}

/* Ensure all cards in the same row have equal height */
.products-carousel {
    align-items: stretch;
    /* Make all cards stretch to same height */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .products-carousel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        min-height: 400px;
        width: auto;
    }

    .product-content {
        margin: 15px auto;
        padding: 1rem;
    }

    .product-content h3 {
        font-size: 1.1rem;
        min-height: 2.8rem;
    }

    .product-content p {
        -webkit-line-clamp: 2;
        /* Show only 2 lines on mobile */
        min-height: 3rem;
    }
}

/* Newsroom Section */
.newsroom-section {
    padding: 5rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.featured-article {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0px 1px 7px 2px rgba(0, 0, 0, 0.1);
    ;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.news-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-content {
    padding: 2rem;
    background-color:  rgb(223 233 250 / 84%);;
    border-radius: 8px;
    margin: 20px 0;
    width: 96%;
}

.news-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.news-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0.5rem 0 1rem;
    color: var(--primary-dark-blue);
    font-family: "Lexend", sans-serif;
}

.news-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.read-more-btn {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-dark-blue);
}

.recent-articles h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-dark-blue);
    font-family: "Lexend", sans-serif;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-item {
    padding: 1rem;
    background-color: rgb(231, 237, 248);
    border-radius: 0.5rem;
}

.article-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.article-item h5 {
    margin-top: 0.5rem;
}

.article-item a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-item a:hover {
    color: var(--secondary-blue);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: rgb(231, 237, 248);
}

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

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--primary-dark-blue);
}


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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-dark-blue);
}

.submit-btn {
    background-color: var(--primary-dark-blue);
    color: var(--white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-blue);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 16%;
}

.contact-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-dark-blue);
    font-family: "Lexend", sans-serif;
}

.contact-item p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-logo img {
    width: 200px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(231, 237, 248);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.5s ease;
}

.footer-links a:hover {
    color: var(--primary-baby-blue);
    font-size: 16px;
}

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


}

.social-links svg:hover {
    background-color: rgb(4, 4, 201);
}

.social-links a {
    color: white;
    transition: color 0.3s ease;

}

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

.footer-bottom {
    border-top: 1px solid rgba(147, 197, 253, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: var(--primary-baby-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {

        margin-top: auto;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .value-props-grid {
        grid-template-columns: 1fr;
    }

    .products-carousel {
        grid-template-columns: 1fr;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

}

@media (max-width: 480px) {
    /* .container {
        padding: 0 15px;
    } */

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}


/* Page Header Styles */
.prod {
    background: linear-gradient(135deg, #35383f5b, #26282c5b), url(../images/pexels-tima-miroshnichenko-9574327.jpg);
    color: var(--white);
        background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px 60px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;;
    
}
@media (max-width: 992px) {
    .prod {
        background-attachment: scroll; /* Prevents "zoomed-in" blurry effect on mobile */
        background-position: top center; /* Keep important part visible */
        padding: 80px 20px 40px;
    }
}

@media (max-width: 600px) {
    .prod {
        background-size: cover; /* Show the full image instead of cropping */
        background-repeat: no-repeat;
        min-height: 80vh; /* Still fills the screen nicely */
    }
}

.page-header {
    background: linear-gradient(135deg, #2c2e3179 0%, #2c2e3179 100%), url(../images/colleagues-working-together-call-center-office-with-coffee.jpg);
    color: var(--white);
    padding: 8rem 0 6rem;

    background-size: cover;

}

.breadcrumbs {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.breadcrumbs a {
    color: var(--primary-baby-blue);
    text-decoration: none;
}

.breadcrumbs span {
    margin: 0 0.5rem;
    opacity: 0.7;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;

    font-family: "Lexend", sans-serif !important;

}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Product Categories Section */
.product-categories-section {
    padding: 5rem 0;
    background-color: rgb(231, 237, 248);
}

.product-categories-section .section-title {
    color: #1e3a8a;
}

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

.category-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px dashed var(--primary-dark-blue);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-baby-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-dark-blue);
}

.category-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-dark-blue);
}

.category-card p {
    color: var(--text-secondary);
}

/* Product Filters Section */
.product-filters-section {
    padding: 3rem 0 0;
    background-color: rgb(225 235 255);
    border-bottom: 1px solid var(--border-color);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.filters-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-dark-blue);
      font-family: "Lexend", sans-serif !important;
}

.filters-controls {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.product-search {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    min-width: 250px;
    transition: border-color 0.3s ease;
}

.product-search:focus {
    outline: none;
    border-color: var(--secondary-blue);
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-primary);
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Products Grid Section */
.products-grid-section {
    padding: 3rem 0 5rem;
}

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

/* .product-card {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
} */

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}


.product-vendor {
    font-size: 0.875rem;
    color: var(--secondary-blue);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--primary-dark-blue);
    font-family: "Lexend", sans-serif;
}

.product-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background-color: var(--primary-baby-blue);
    color: var(--primary-dark-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-btn {
    display: inline-block;
    background-color: var(--primary-dark-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.product-btn:hover {
    background-color: var(--secondary-blue);
}

/* Vendor Page Styles */
.vendor-hero {
    background-color: var(--light-gray);
    padding: 3rem 0;
    text-align: center;
}

.vendor-logo-large {
    height: 100px;
    margin-bottom: 2rem;
}

.vendor-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.vendor-products-section {
    padding: 5rem 0;
}

/* News and Media Styles */
.news-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.news-card-content {
    padding: 1.5rem;
}

.news-card-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.news-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark-blue);
}

.news-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Media Gallery Styles */
.media-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.media-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.media-item:hover {
    transform: scale(1.05);
}

.media-item img,
.media-item video {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

/* Contact Page Styles */
.contact-page-section {
    background-color:  rgb(223 233 250);;
    padding: 5rem 0;
    width: 100%;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    gap: 4rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background-color: rgb(231, 237, 248);
    border: 1px solid #1e3a8a;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark-blue);
}

.contact-map {
    width: 100%;
    height: 300px;
    border-radius: 0.5rem;
    border: none;
}

/* Responsive Design for New Styles */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .filters-header {
        flex-direction: column;
        align-items: stretch;
    }

    .filters-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .product-search {
        min-width: auto;
        width: 100%;
    }

    .filter-buttons {
        justify-content: center;
    }

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

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .news-grid-page {
        grid-template-columns: 1fr;
    }

    .media-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


/* Contact Page Specific Styles */
.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-dark-blue);
    font-family: "Lexend", sans-serif;

}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-dark-blue);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    flex-shrink: 0;
}

.contact-info-card {
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark-blue);
}

.contact-info-card p {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-info-card a {
    color: var(--secondary-blue);
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-info-card small {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background-color: white;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map {
    width: 100%;
    height: 400px;
    border: none;
}

/* FAQ Section */
.faq-section {

    padding: 5rem 0;
}

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

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: #1e3a8a 1px solid;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark-blue);
}

.faq-item p {
    color: rgb(95, 94, 94);
    line-height: 1.6;
}

/* Vendors Page Styles */
.vendors-showcase {
    padding: 5rem 0;
}

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

.vendor-showcase-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vendor-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vendor-showcase-logo {
    height: 80px;
    margin-bottom: 2rem;
    object-fit: contain;
}

.vendor-showcase-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark-blue);
}

.vendor-showcase-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.vendor-btn {
    display: inline-block;
    background-color: var(--secondary-blue);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.vendor-btn:hover {
    background-color: var(--primary-dark-blue);
}

/* Newsroom Page Styles */
.featured-news-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.featured-news-card {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.featured-news-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-news-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-news-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.featured-news-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-dark-blue);
}

.featured-news-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.news-articles-section {
    padding: 5rem 0;
}

/* Media Page Styles */
.media-page-section {
    padding: 5rem 0;
}

.media-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.media-filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-primary);
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.media-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.media-item img,
.media-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(30, 58, 138, 0.9));
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.media-overlay h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.media-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-baby-blue);
    border-top: 2px solid var(--secondary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    color: var(--white);
    font-weight: 500;
    z-index: 10000;
    max-width: 350px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background-color: #10b981;
}

.notification-error {
    background-color: #ef4444;
}

.notification-info {
    background-color: var(--secondary-blue);
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .featured-news-card {
        grid-template-columns: 1fr;
    }

    .featured-news-image {
        height: 250px;
    }

    .featured-news-content {
        padding: 2rem;
    }

    .featured-news-content h2 {
        font-size: 1.5rem;
    }

    .media-gallery {
        grid-template-columns: 1fr;
    }

    .vendors-showcase-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-map {
        height: 300px;
    }


}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: flex;
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        justify-content: center;

    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .partners-grid,
    .products-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {

    .header,
    .footer,
    .nav-utilities,
    .hamburger {
        display: none;
    }

    .page-header {
        margin-top: 0;
    }

    * {
        color: black !important;
        background: white !important;
    }
}

/* @media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex; 
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-menu .nav-link {
        padding: 0.75rem 1rem;
        display: block;
        text-align: center;
    }

    .nav-utilities {
        display: none; 
    }

    .hamburger {
        display: flex; 
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1; 
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid,
    .props-grid,
    .products-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
} */

/* @media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
} */





/* Contact Form Enhancements */
.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    min-height: 1rem;
}

.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-group input:focus:invalid:not(:placeholder-shown),
.form-group textarea:focus:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-group input:focus:valid:not(:placeholder-shown),
.form-group textarea:focus:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

.submit-btn {
    position: relative;
    transition: all 0.3s ease;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}