/* --- Global Styles and Variables --- */
:root {
        --primary-color: #0056b3;
        --secondary-color:#e4b55b;
        --text-color-dark: #111;
        --text-color-light: #fff;
        --bg-light: #fff;
        --bg-dark: #222;
        --bg-gray: #f8f9fa;
    --transition-speed: 0.4s;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: var(--bg-light);
    color: var(--text-color-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Top Bar Styling --- */
.top-bar {
    background: var(--primary-color);
    color: var(--text-color-light);
    font-size: 0.85rem;
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--text-color-light);
    color: var(--primary-color);
}

/* --- Main Navigation (Navbar) Styling --- */
.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: var(--bg-light);
}

.navbar {
    background: var(--bg-light);
    /* padding:3px 0; */
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Desktop Menu Links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    transition: all var(--transition-speed);
}

.nav-links>li {
    padding: 0 15px;
    position: relative;
}

.nav-links a {
    display: block;
    padding: 10px 0;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Dropdown Menu Styling (Desktop) */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-light);
    min-width: 250px;
    box-shadow: var(--box-shadow);
    list-style: none;
    z-index: 10;
    border-top: 3px solid var(--primary-color);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.dropdown-menu a {
    padding: 12px 20px;
    white-space: nowrap;
    font-weight: 400;
    color: var(--primary-color);
    border-bottom: 1px solid #eee;
}

.dropdown-menu a:hover {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

/* Show dropdown on hover (Desktop) */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* --- Mobile Menu & Hamburger --- */
.menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    color: var(--primary-color);
}

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    width: 100%;
    height:792px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    -top:60px;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease-in-out;
}

.hero-slide.hero-active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-box {
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--text-color-light);
    text-align: center;
    padding: 40px 60px;
    border-radius: var(--border-radius);
    max-width: 80%;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide-box h1 {
    font-size: 3em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-slide-box p {
    font-size: 1.3em;
    margin-bottom: 25px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--text-color-light);
    text-decoration: none;
    font-weight: bold;
    border-radius: var(--border-radius);
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:hover {
    background-color: #e05a00;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-color-light);
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 2em;
    opacity: 0.7;
    border-radius: var(--border-radius);
    z-index: 10;
    transition: opacity 0.3s;
}

.hero-arrow:hover {
    opacity: 1;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.6);
    border: 2px solid var(--text-color-light);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.hero-dot.hero-active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

/* --- Marquee Section --- */
.marquee-section {
    background: var(--primary-color);
    color: var(--text-color-light);
    padding: 15px 0;
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    font-weight: bold;
    font-size: 1.1rem;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* --- Section Styling --- */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.title-underline {
    height: 3px;
    width: 80px;
    background: var(--secondary-color);
    margin: 0 auto;
}

/* --- About Section --- */


.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-color-dark);
}

.stat-item h3::after {
    content: "+";
    color: var(--primary-color);
    font-size: 2rem;
    margin-left: 4px;
}

.about-image {
    flex: 1;
}

.image-placeholder {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-color-light);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- Gallery Section --- */
.gallery-section {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-color-light);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* --- Quality Section --- */
.quality-section {
    background: var(--bg-light);
}

.quality-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.quality-text {
    flex: 1;
}

.quality-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.quality-image {
    flex: 1;
}

/* --- Products Section --- */
.products-section {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 1.5rem;
    margin: 20px 20px 10px;
    color: var(--primary-color);
}

.product-card p {
    color: #666;
    line-height: 1.6;
    margin: 0 20px 20px;
}

.view-all-products {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--text-color-light);
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: var(--secondary-color);
}

/* --- Why Choose Us Section --- */
.why-choose-section {
    /* background: var(--bg-gray); */
    padding: 80px 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-choose-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
}

.why-choose-item:hover {
    transform: translateY(-10px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--text-color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.why-choose-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.why-choose-item p {
    color: #666;
    line-height: 1.6;
}

/* --- Process Section --- */
.process-section {
    /* background: var(--bg-gray); */
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-image {
    height: 150px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* --- Certificates Section --- */
.certificates-section {
    /* background: var(--bg-gray); */
}

.certificates-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.certificate-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
}

.certificate-card:hover {
    transform: translateY(-10px);
}

.certificate-image {
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.certificate-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.certificate-card p {
    color: #666;
    line-height: 1.6;
}

.certificate-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.certificate-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.certificate-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.certificate-item p {
    color: #666;
    line-height: 1.6;
}

/* --- Product Slider Section --- */
.product-slider-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.slider-container {
    overflow-x: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

/* Hide scrollbar for a cleaner look */
.slider-container::-webkit-scrollbar {
    display: none;
}

.slider-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Slider Wrapper: Holds all the cards in a single line */
.slider-wrapper {
    display: flex;
    gap: 20px;
}

/* Individual Product Card Styling */
.product-card-slider {
    display: inline-block;
    flex: 0 0 auto;
    width: 300px;
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
}

.product-card-slider img {
    max-width: 100%;
    height: 200px;
    border-radius: 4px;
    margin-bottom: 15px;
    object-fit: contain;
}

.product-card-slider h3 {
    font-size: 1.2em;
    margin: 0 0 5px 0;
    white-space: normal;
}

.product-card-slider .price {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 15px;
    white-space: normal;
}

.product-card-slider .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    white-space: normal;
}

.product-card-slider .btn:hover {
    background-color: #0b69a3;
}

/* Manual Navigation Buttons */
.slider-controls {
    text-align: center;
    margin-top: 20px;
}

.slider-controls button {
    padding: 10px 15px;
    margin: 0 5px;
    cursor: pointer;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    transition: opacity 0.3s;
}

.slider-controls button:hover {
    background-color: var(--secondary-color);
}

/* --- Contact Section --- */
.gf-contact-section {
    padding: 80px 20px;
    color: #002a5c;
    font-family: 'Poppins', sans-serif;
}

.gf-contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: flex-start;
}

/* Left Info Section */
.gf-contact-info {
    flex: 1 1 45%;
}

.gf-contact-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.gf-contact-text {
    margin-bottom: 25px;
    color: #333;
    line-height: 1.6;
}

.gf-contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gf-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #004080;
}

.gf-contact-item i {
    background: var(--primary-color);
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.gf-contact-item:hover i {
    transform: scale(1.1);
}

/* Right Form Section */
.gf-contact-form {
    flex: 1 1 45%;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.gf-input-group {
    margin-bottom: 20px;
}

.gf-input-group input,
.gf-input-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.gf-input-group input:focus,
.gf-input-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.gf-btn-submit {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gf-btn-submit:hover {
    background-color: #003d80;
    transform: translateY(-2px);
}

/* --- Map Section --- */
/* ---------------- Map Section ---------------- */
   /* ---------------- Map Section ---------------- */
   /* ---------------- Map Section ---------------- */
 
/* --- Footer --- */
.main-footer {
    background: var(--bg-dark);
    color: var(--text-color-light);
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
    border-radius:50px;
}

.footer-section p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-color-light);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info-footer p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info-footer i {
    margin-right: 10px;
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

/* --- Animation Classes --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

    /* --- Media Queries for Responsiveness (Mobile View) --- */
    @media (max-width: 992px) {
        .menu-toggle {
            display: block;
        }

        .nav-links {
            display: flex;
            flex-direction: column;
            width: 75%;
            height: 100vh;
            position: fixed;
            top: 80px;
            right: -75%;
            background: var(--bg-light);
            padding: 20px 0;
            box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 999;
            overflow-y: auto;
        }

        .nav-links.active {
            right: 0;
        }

        .nav-links>li {
            width: 100%;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .nav-links a {
            padding: 15px 20px;
            color: var(--primary-color);
        }

        .dropdown-menu {
            position: static;
            width: 100%;
            box-shadow: none;
            border: none;
            border-top: 1px solid #eee;
            padding-left: 15px;
            background: var(--bg-light);
        }

        .dropdown-menu a {
            padding: 10px 20px;
            background: transparent;
            color: var(--primary-color);
        }

        .top-bar-content {
            flex-direction: column;
            gap: 5px;
        }

        .welcome-message {
            display: none;
        }

        .contact-info {
            font-size: 0.75rem;
        }

        .hero-slider {
            height: 500px;
        }

        .hero-slide-box h1 {
            font-size: 2rem;
        }

        .hero-slide-box p {
            font-size: 1rem;
        }

    .about-content,
    .quality-content {
        flex-direction: column;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .gf-contact-container {
        flex-direction: column;
    }

    .gf-contact-info,
    .gf-contact-form {
        flex: 1 1 100%;
    }

    .gf-contact-form {
        margin-top: 40px;
    }

    .process-steps,
    .certificates-content {
        flex-direction: column;
    }

    .product-card-slider {
        width: 250px;
    }
}

@media (max-width: 576px) {
    .top-bar {
        display: none;
    }

    .nav-links {
        top: 60px;
        width: 90%;
        right: -90%;
    }

    .nav-links.active {
        right: 0;
    }

    .logo img {
        height: 45px;
    }

    .hero-slider {
        height: 400px;
        margin-top:-18px;
    }

    .hero-slide-box {
        padding: 20px;
    }

    .hero-slide-box h1 {
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .product-card-slider {
        width: 220px;
    }
}