:root {
    --primary-blue: #1a73e8;
    --dark-blue: #0d47a1;
    --light-blue: #e8f0fe;
    --accent-blue: #4285f4;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


/* MARK: added later */
/* GLOBAL RESET & SCROLL FIX */
html {
    width: 100%;
    overflow-x: hidden;
    /* Essential for mobile to stop the white gap */
}

body {
    width: 100%;
    max-width: 100vw;
    /* Forces body to never exceed viewport width */
    overflow-x: hidden;
    /* Hides the scroll caused by animations */
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
    min-height: 100vh;
    position: relative;
    overflow-y: hidden;

    /* Ensures standard vertical scrolling */
}
/* ================================== */


/* body {
    background-color: #fff;
    color: #333;
    min-height: 100vh;
    overflow-x: hidden;
} */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation Styles */
nav.navbar {
    background-color: var(--primary-blue);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 80px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0 40px;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-text:hover {
    color: var(--accent-blue);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    padding-right: 92px;
}

.nav-links li {
    position: relative;
}

.nav-links a,
.dropdown-toggle {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.dropdown-toggle:hover {
    color: var(--accent-blue);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 230px;
    top: 100%;
    left: 0;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.dropdown-content a {
    color: var(--dark-gray);
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #005ea3;
    color: white;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

.show-dropdown {
    display: block !important;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--white);
    background: none;
    border: none;
    z-index: 1100;
}

@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        background-color: var(--primary-blue);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        display: none;
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-links.show-menu {
        display: flex;
    }

    .nav-links li {
        margin-bottom: 15px;
    }

    .dropdown-content {
        position: relative;
        background-color: var(--white);
        box-shadow: none;
        border-radius: 4px;
        margin-top: 10px;
    }

    .logo-text {
        font-size: 22px;
    }
}

/* Hero Section */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}

.hero-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.hero-slide {
    flex: 1 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-controls {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.hero-control {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
}

.hero-control.active {
    background-color: var(--primary-blue);
}
/* ========================== */
/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        /* reduce height for mobile */
    }

    .hero-slide {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .hero-controls {
        bottom: 40px;
        /* move dots slightly up */
        gap: 8px;
    }

    .hero-control {
        width: 10px;
        height: 10px;
    }
}

/* Extra small devices (phones under 480px) */
@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }

    .hero-slide {
        background-size: contain;
        background-position: center;
        margin-top: -80px;
        /* adjusts image alignment */
    }

    .hero-controls {
        bottom:155px;
        /* moves dots further up for small phones */
        gap: 6px;
    }

    .hero-control {
        width: 8px;
        height: 8px;
    }
}
/* ================= */
/* Marquee Section */
.marquee {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark-blue) 0%, rgba(13, 71, 161, 0) 100%);
}

.marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--dark-blue) 0%, rgba(13, 71, 161, 0) 100%);
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    display: inline-block;
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
}

.marquee-item i {
    color: var(--light-blue);
    margin-right: 10px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Services Section */
.services {
    padding: 80px 5%;
    background-color: white;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #005baa;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 30px 20px;
    width: 300px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: var(--primary-blue);
    transition: height 0.3s ease;
    z-index: 2;
}

.service-card:hover::before {
    height: 10px;
}

.service-card:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 30px;
    background-color: var(--primary-blue);
    color: var(--white);
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #fff;
    color: var(--primary-blue);
    transform: scale(1.1);
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    color: #222;
}

.service-card:hover .service-title {
    color: #fff;
}

.service-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    transition: color 0.3s ease;
}

.service-card:hover .service-desc {
    color: #fff;
}

/* Products Section */
.products-section {
    padding: 80px 5%;
    background: #ffffff;
    text-align: center;
}

.products-header {
    max-width: 750px;
    margin: 0 auto 60px auto;
    text-align:center;
}

.products-header h2 {
    font-size: 2.5rem;
    color: #005baa;
    margin-bottom: 10px;
}

.products-header p {
    color: #555;
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.product-item {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 91, 170, 0.2);
}

.product-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid rgba(0, 91, 170, 0.15);
}

.product-item h3 {
    font-size: 1.2rem;
    color: #005baa;
    margin-bottom: 10px;
}

.product-item p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 20px;
}

.btn-readmore {
    display: inline-block;
    padding: 10px 22px;
    background-color: #005baa;
    color: #fff;
    border-radius: 25px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-readmore i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-readmore:hover {
    background-color: #003f7d;
    transform: translateY(-2px);
}

.btn-readmore:hover i {
    transform: translateX(4px);
}

.products-cta {
    margin-top: 60px;
    text-align: center;
}

/* About Section */
.about-section {
    background: #fff;
    position: relative;
    padding: 60px 5% 80px;
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: center;
}

.about-video {
    flex: 1 1 480px;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-video img,
.about-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    flex: 1 1 500px;
    max-width: 650px;
}

.about-content h2 {
    font-size: 2.3rem;
    color: #1976d2;
    margin: 0;
}

.about-content p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 16px 20px;
    border-radius: 10px;
    gap: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: default;
}

.feature-box:hover {
    transform: translateY(-5px);
    background-color: #1976d2;
    color: #fff;
}

.feature-box i {
    font-size: 1.5rem;
    color: #1976d2;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.feature-box:hover i {
    color: #fff;
}

.feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #222;
    transition: color 0.3s ease;
}

.feature-box:hover h3 {
    color: #fff;
}

.feature-box p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    transition: color 0.3s ease;
}

.feature-box:hover p {
    color: #f0f0f0;
}

/* Stats Section */
.stats-section {
    position: relative;
    background: #0d47a1;
    color: white;
    padding: 100px 20px 60px;
    text-align: center;
    overflow: hidden;

    /* MARK: added later */
    width: 100%;
}

.stats-waves {
    position: absolute;
    top: 0;
    left: 0;
    /* width: 200%; */
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.stats-waves svg {
    position: absolute;
    top: -100px;
    left: 0;
    width: 200%;
    height: 320px;
    animation: waveMove 10s linear infinite;
}

.stats-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(-45deg, #004d40, #0d47a1, #1565c0, #00695c);
    background-size: 400% 400%;
    animation: bgColorFlow 10s ease infinite;
    opacity: 0.2;
    z-index: -1;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes bgColorFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.stats-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.stat-item {
    flex: 1 1 220px;
    padding: 30px 20px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.stat-number .plus {
    margin-right: 4px;
    color: #fff;
}

.stat-text {
    font-size: 1.2rem;
    color: #ddd;
    letter-spacing: 0.5px;
}

/* Product Showcase */
.product-showcase {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.showcase-title {
    font-size: 2.2rem;
    color: #0d47a1;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.label-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: 0.3s ease;
}

.label-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.label-image {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 174px;
    display: block;
    padding-top: 1px;
}

.label-title {
    padding: 15px 10px;
    font-size: 1.15rem;
    color: white;
    background-color: #1a73e8;
    font-weight: 600;
}

.view-more-wrap {
    text-align: center;
    margin-top: 40px;
}

.view-more-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #0d47a1;
    color: #fff;
    font-size: 1rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-more-btn .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.view-more-btn:hover {
    background-color: #08306b;
}

.view-more-btn:hover .arrow {
    transform: translateX(5px);
}

/* Gallery Section */
.gallery {
    padding: 40px 5%;
    background: white;
    text-align: center;
}

.gallery .section-title {
    font-size: 2.5rem;
    color: #005baa;
    margin-bottom: 10px;
}

.gallery .section-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 40px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 91, 170, 0.65);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
    padding: 20px;
    text-align: center;
    font-weight: 500;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Section */
.cta-section {
    background: white;
    padding: 80px 5% 60px;
    position: relative;
    overflow: hidden;
}

.cta-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.cta-text {
    flex: 1 1 500px;
}

.cta-text h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.6;
}

.cta-buttons .btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    margin-right: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn.primary {
    background-color: #003366;
    color: #fff;
}

.btn.primary:hover {
    background-color: white;
    color: blue;
    border: 1px solid blue;
}

.btn.secondary {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
}

.btn.secondary:hover {
    background-color: #003366;
    color: #fff;
    border: 1px solid blue;
}

.cta-image {
    flex: 1 1 400px;
    position: relative;
}

.cta-image img {
    width: 100%;
    max-width: 450px;
    display: block;
    position: relative;
    top: -40px;
}

/* Location Section */
.location-section {
    padding: 80px 20px;
    background: white;
}

.location-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.location-content {
    flex: 1;
    min-width: 300px;
}

.location-content h2 {
    font-size: 32px;
    color: #005ea3;
    margin-bottom: 20px;
}

.location-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.location-info {
    background: #ffffff;
    padding: 20px;
    border-left: 4px solid #0a5ea7;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.location-info h4 {
    margin-bottom: 10px;
    color: #0a5ea7;
}

.location-map {
    flex: 1;
    min-width: 300px;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    background: linear-gradient(to right, #f5f7fa, #e0ecf8);
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #005ea3;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    text-align: left;
}

.contact-info,
.contact-form {
    flex: 1 1 45%;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    font-size: 1.6rem;
    color: #f47820;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    color: #005ea3;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-text h4 {
    margin: 0 0 4px;
    font-weight: 600;
    color: #0a5ea7;
}

.contact-text a,
.contact-text p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.95rem;
}

.submit-btn {
    background-color: #005ea3;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #f47820;
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 80px 5% 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,...') repeat;
    opacity: 0.05;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    color: white;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--light-blue);
    border-radius: 2px;
}

.footer-col p {
    color: #bbb;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: var(--light-blue);
    transform: translateX(6px);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--light-blue);
    color: var(--dark-blue);
    transform: translateY(-4px);
}

.footer-logo h1 {
    font-family: 'Prata', serif;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-card {
        width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 20px;
    }

    .service-card {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .about-wrapper {
        flex-direction: column;
    }

    .about-content h2 {
        font-size: 1.9rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-img {
        width: 160px;
        height: 160px;
    }

    .cta-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .cta-buttons .btn {
        margin: 10px 10px 0 0;
    }

    .cta-image img {
        max-width: 80%;
        top: -20px;
        margin: 0 auto;
    }

    .showcase-title {
        font-size: 1.6rem;
    }

    .label-title {
        font-size: 1rem;
    }

    .label-image {
        height: 160px;
    }

    .location-container {
        flex-direction: column;
    }

    .location-map {
        height: 300px;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        flex: 1 1 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-bottom {
        font-size: 13px;
        padding-top: 15px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-header {
        text-align: center;
    }

    .products-header h2,
    .products-header p {
        text-align: center;
    }

    .footer-bottom {
        font-size: 12px;
        line-height: 1.5;
        padding-top: 12px;
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
        margin-bottom:-200px;
    }

    .marquee-item {
        font-size: 14px;
    }

    .services {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        width: 100%;
        padding: 20px 15px;
    }

    .service-icon {
        font-size: 25px;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }

    .service-title {
        font-size: 18px;
    }

    .about-section {
        padding: 40px 15px 50px;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .features-grid {
        gap: 10px;
    }

    .feature-box {
        padding: 12px 15px;
    }

    .feature-box i {
        font-size: 1.3rem;
    }

    .feature-box h3 {
        font-size: 1rem;
    }

    .feature-box p {
        font-size: 0.9rem;
    }

    .product-showcase {
        padding: 40px 15px;
    }

    .product-title h2 {
        font-size: 1.8rem;
    }

    .product-title p {
        font-size: 0.9rem;
    }

    .product-card {
        padding: 20px;
    }

    .product-image {
        width: 180px;
        height: 180px;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    .product-card p {
        font-size: 0.9rem;
    }

    .read-more-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 40px 15px 30px;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }

    .cta-text p {
        font-size: 0.95rem;
    }

    .cta-buttons .btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .showcase-title {
        font-size: 1.5rem;
    }

    .label-image {
        height: 140px;
    }

    .label-title {
        font-size: 0.95rem;
        padding: 12px 8px;
    }

    .gallery {
        padding: 25px 15px;
    }

    .gallery .section-title {
        font-size: 1.8rem;
    }

    .gallery .section-subtitle {
        font-size: 0.9rem;
    }

    .location-section {
        padding: 40px 15px;
    }

    .location-content h2 {
        font-size: 24px;
    }

    .location-content p {
        font-size: 14px;
    }

    .location-info {
        padding: 15px;
    }

    .location-map {
        height: 250px;
    }

    .contact {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .contact-info,
    .contact-form {
        padding: 20px;
    }

    .contact-info h3 {
        font-size: 1.4rem;
    }

    .contact-item {
        margin-bottom: 15px;
    }

    .contact-icon {
        font-size: 1.3rem;
    }

    .form-control {
        padding: 10px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .footer {
        padding: 50px 15px 20px;
    }

    .footer-col h3 {
        font-size: 18px;
    }

    .footer-logo h1 {
        font-size: 1.2rem;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
        padding-top: 15px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}