@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --primary-color: #003366;
    --secondary-color: #0066cc;
    --text-color: #333333;
    --background-color: #ffffff;
    --accent-color: #ff9900;
}

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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #003366;
    /* Deep blue - keeping as requested */
    --secondary-color: #005792;
    /* Professional medium blue */
    --accent-color: #00A6FB;
    /* Bright blue for CTAs */
    --accent-hover: #0089d1;
    /* Darker blue for hover states */
    --text-color: #333333;
    /* Dark gray for text */
    --text-light: #666666;
    /* Light gray for secondary text */
    --background-color: #ffffff;
    /* White background */
    --feature-bg: rgba(240, 244, 248, 0.97);
    /* Light blue-gray for feature cards */
    --feature-shadow: rgba(0, 51, 102, 0.15);
    /* Blue-tinted shadow */
}

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

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

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

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

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-bar-item:hover {
    opacity: 0.8;
}

.top-bar-item i {
    margin-right: 5px;
}

.social-icon {
    color: white;
    font-size: 18px;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-color);
}


/* Header and Navigation */
.site-header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo img{
    width: 100%;
    max-width: 100px;
}
.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
}

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

.navbar-menu li {
    position: relative;
}

.navbar-menu a {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: var(--accent-color);
}


.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.navbar-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Dropdown styles */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--feature-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown a {
    padding: 10px 15px;
    display: block;
}


/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-bar-right {
        margin-top: 10px;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-menu-wrapper {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        min-height: 100vh;
        background-color: var(--feature-bg);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        display: none;
    }

    .navbar-menu-wrapper.active {
        right: 0;
        display: block;
    }

    .navbar-menu {
        flex-direction: column;
        padding-top: 70px;
    }

    .navbar-menu li {
        width: 100%;
    }

    .navbar-menu a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: rgba(0, 51, 102, 0.05);
    }

    .has-dropdown.active .dropdown {
        display: block;
    }

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

    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}


/* Home page Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 40px 20px;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 1s both;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--feature-shadow);
}

.hero-features {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin-top: 20px;
    padding: 0 20px;
}

.feature {
    background: var(--feature-bg);
    color: var(--text-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--feature-shadow);
    border: 1px solid rgba(0, 51, 102, 0.1);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px var(--feature-shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

    .hero-features {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .feature {
        padding: 25px;
    }
}



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

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

.section-tag {
    display: inline-block;
    background-color: rgba(0, 51, 102, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

.product-category {
    background-color: white;
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
    border: 1px solid rgba(0, 51, 102, 0.1);
}

.product-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.12);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.category-icon i {
    font-size: 1.8rem;
    color: white;
}

.product-category h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-category p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.category-features {
    list-style: none;
    margin-bottom: 25px;
}

.category-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-color);
}

.category-features li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: var(--accent-hover);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Applications Showcase */
.applications-showcase {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.showcase-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.application-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
    transition: all 0.3s ease;
}

.application-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.12);
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 51, 102, 0.7));
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.application-features {
    list-style: none;
    padding: 0;
}

.application-features li {
    color: var(--text-color);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 51, 102, 0.1);
}

.application-features li:last-child {
    border-bottom: none;
}

/* Key Features Section */
.key-features {
    padding: 100px 0;
    background-color: white;
}

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--feature-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

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

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

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

    .product-category,
    .application-card,
    .feature-card {
        max-width: 400px;
        margin: 0 auto;
    }
}





/* About Page Styles */
.about-hero {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.about-overview {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding-right: 40px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.8;
}

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

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

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

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.capabilities {
    padding: 100px 0;
    background-color: var(--feature-bg);
}

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

.capability-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.12);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.commitment {
    padding: 100px 0;
}

.commitment-content {
    text-align: center;
}

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

.commitment-item {
    padding: 30px;
    text-align: center;
}

.commitment-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

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

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

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

    .about-content {
        padding-right: 0;
    }

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

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


/* Products  */

.products-hero {
    position: relative;
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.products-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.7);
}

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

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

.products-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Search Section */
.products-search-section {
    padding: 40px 0;
    background-color: var(--feature-bg);
    border-bottom: 1px solid rgba(0, 51, 102, 0.1);
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}


.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-box input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid rgba(0, 51, 102, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}



.search-box input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}


.filter-box select {
    padding: 15px 30px;
    border: 1px solid rgba(0, 51, 102, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-box select:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Products Catalog */
.products-catalog {
    padding: 60px 0;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
    transition: all 0.3s ease;
}


.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.12);
}

.product-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-info {
    margin-top: 15px;
}

.product-info p {
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}


.product-info .cas-number {
    color: var(--accent-color);
    font-weight: 500;
}


/* Product Inquiry Section */
.product-inquiry {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

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

.inquiry-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.inquiry-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

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

    .sidebar {
        position: sticky;
        top: 20px;
    }
}

@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 2.5rem;
    }

    .search-container {
        flex-direction: column;
    }

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

    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }
}


/* Contact Page */
.contact-hero {
    position: relative;
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

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

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-contact-info {
    padding: 80px 0;
    background-color: var(--feature-bg);
}


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

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.12);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.contact-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-card a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--accent-hover);
}

.contact-form-section {
    padding: 100px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 51, 102, 0.1);
}

.form-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.map-section {
    height: 400px;
}

#map {
    width: 100%;
    height: 100%;
}

.faq-section {
    padding: 100px 0;
    background-color: var(--feature-bg);
}

.faq-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.12);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

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

    .form-container {
        padding: 30px;
    }

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


/* Custom Page  */

.custom-hero {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.custom-hero .container {
    position: relative;
    z-index: 2;
}
.custom-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

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

.custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.custom-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.custom-content p {
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.custom-.custom-bottom {
    color: var(--text-light);
    line-height: 1.8;
}

.custom-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.1);
}

.why-choose-us {
    background-color: var(--feature-bg);
    padding: 80px 0;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.12);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.our-approach {
    padding: 80px 0;
}

.our-approach h2 {
    text-align: center;
    margin-bottom: 50px;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.industries-served {
    background-color: var(--feature-bg);
    padding: 80px 0;
}

.industries-served h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.industry-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.12);
}

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

.industry-card h3 {
    padding: 20px;
    text-align: center;
    color: var(--primary-color);
}

.quality-safety {
    padding: 80px 0;
    text-align: center;
}

.quality-safety h2 {
    margin-bottom: 30px;
}

.quality-safety p {
    max-width: 800px;
    margin: 0 auto 40px;
}

.certifications {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.certifications img {
    max-width: 150px;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-grid {
        grid-template-columns: 1fr;
    }

    .custom-image {
        order: -1;
    }

    .approach-steps,
    .industries-grid {
        grid-template-columns: 1fr;
    }
}




/* Bulk Manufacturing Page Styles */

.bulk-hero {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.bulk-hero .container {
    position: relative;
    z-index: 2;
}
.bulk-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

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

.bulk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bulk-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.bulk-content p {
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.bulk-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.1);
}

.our-services {
    background-color: var(--feature-bg);
    padding: 80px 0;
}

.our-services h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.12);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.how-we-work {
    padding: 80px 0;
}

.how-we-work h2 {
    text-align: center;
    margin-bottom: 50px;
}

.work-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
/* Key features */

.key-features {
    background-color: var(--feature-bg);
    padding: 80px 0;
}

.key-features h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.12);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.industries-served {
    padding: 80px 0;
}

.industries-served h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.industry-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.12);
}

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

.industry-card h3 {
    padding: 20px;
    text-align: center;
    color: var(--primary-color);
}

.commitment {
    background-color: var(--feature-bg);
    padding: 80px 0;
    text-align: center;
}

.commitment h2 {
    margin-bottom: 30px;
}

.commitment p {
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.commitment-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.12);
}

.commitment-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bulk-grid {
        grid-template-columns: 1fr;
    }

    .bulk-image {
        order: -1;
    }

    .work-steps,
    .industries-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }
}


/* Gallery  */

.gallery h2{
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 50px 0;
  }
  
  .gallery-item {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
  }
  
  .gallery-item:hover {
    transform: scale(1.05);
  }
  
  /* Lightbox Modal */
  .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .lightbox-content {
    max-width: 90%;
    max-height: 80%;
    margin: 0 auto;
    display: block;
  }
  
  .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: white;
    cursor: pointer;
  }
  
  .close:hover {
    color: #ff5733;
  }



/* Specialty Chemicals Page Styles */

.specialty-hero {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}


.specialty-hero .container {
    position: relative;
    z-index: 2;
}
.specialty-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

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

.specialty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.specialty-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.specialty-content p {
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.specialty-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.1);
}

.our-offerings {
    background-color: var(--feature-bg);
    padding: 80px 0;
}

.our-offerings h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.offering-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.12);
}

.offering-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.why-choose-us {
    padding: 80px 0;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.12);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.industries-served {
    background-color: var(--feature-bg);
    padding: 80px 0;
}

.industries-served h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.industry-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.12);
}

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

.industry-card h3 {
    padding: 20px;
    text-align: center;
    color: var(--primary-color);
}

.applications {
    padding: 80px 0;
}

.applications h2 {
    text-align: center;
    margin-bottom: 30px;
}

.applications p {
    text-align: center;
    margin-bottom: 30px;
}

.applications-list {
    max-width: 600px;
    margin: 0 auto;
    list-style-type: none;
    padding: 0;
}

.applications-list li {
    background: white;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 51, 102, 0.05);
    transition: all 0.3s ease;
}

.applications-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.1);
}

.commitment {
    background-color: var(--feature-bg);
    padding: 80px 0;
    text-align: center;
}

.commitment h2 {
    margin-bottom: 30px;
}

.commitment p {
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .specialty-grid {
        grid-template-columns: 1fr;
    }

    .specialty-image {
        order: -1;
    }

    .offerings-grid,
    .features-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
}











/* Footer */

.site-footer {
    background-color: var(--primary-color);
    color: white;
}

.footer-top {
    padding: 80px 0 40px;
}

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

.footer-col h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

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

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

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info i {
    color: var(--accent-color);
}

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

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

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}