/* --- GLOBAL RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
:root {
    --primary-color: #f59e0b;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
}
body {
    background-color: #fff;
    color: var(--text-color);
    line-height: 1.6;
}

/* --- FIXED NAVBAR STYLING --- */
header {
    background-color: var(--dark-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    height: 70px; /* Base height fixed */
}
.logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.logo span { color: var(--primary-color); }

/* Main Desktop Links List */
.nav-links {
    list-style: none;
    display: flex; /* Links ko ek line me lane ke liye */
    align-items: center;
}
.nav-links > li { 
    margin-left: 25px; 
    position: relative; /* Dropdown placement ke liye critical hai */
}
.nav-links a {
    color: #e0e0e0 !important; /* Blue color override clear karne ke liye */
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s;
    display: inline-block;
}
.nav-links a:hover, .nav-links a.active { 
    color: var(--primary-color) !important; 
}

/* Menu Toggle Button Hidden on Desktop */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
}
.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
}
/* --- PREMIUM BLACK FOOTER STYLING --- */
        .main-footer {
            background-color: var(--dark-color);
            color: #cbd5e1;
            padding: 70px 20px 20px 20px;
            border-top: 4px solid var(--primary-color);
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 40px;
        }
        .footer-about-text {
            font-size: 14px;
            line-height: 1.75;
            color: #94a3b8;
            margin-top: 15px;
        }
        .footer-col h4 {
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 35px;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 14px;
        }
        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
            display: inline-block;
        }
        .footer-links a:hover {
            color: var(--primary-color);
            transform: translateX(4px);
        }
        .footer-contact {
            list-style: none;
        }
        .footer-contact li {
            font-size: 14px;
            margin-bottom: 18px;
            line-height: 1.6;
            color: #94a3b8;
            display: flex;
            align-items: flex-start;
        }
        .footer-contact li span.icon {
            margin-right: 12px;
            font-size: 15px;
            color: gold;
            display: inline-block;
            width: 16px;
            text-align: center;
            margin-top: 2px;
        }
        .footer-contact a {
            color: inherit; 
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer-contact a:hover {
            color: gold;
        }

        /* --- SOCIAL MEDIA LINKS --- */
        .footer-socials {
            margin-top: 25px;
            display: flex;
            gap: 12px;
        }
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background-color: #1e1e1e;
            color: #94a3b8;
            border-radius: 50%;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            border: 1px solid #2a2a2a;
        }
        .social-icon.fb:hover {
            background-color: #1877f2;
            color: #ffffff;
            border-color: #1877f2;
            transform: translateY(-3px);
        }
        .social-icon.insta:hover {
            background-color: #e1306c;
            color: #ffffff;
            border-color: #e1306c;
            transform: translateY(-3px);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 50px auto 0 auto;
            padding-top: 25px;
            border-top: 1px solid #222222;
            text-align: center;
        }
        .footer-bottom p {
            font-size: 13px;
            color: #576574;
            font-weight: 500;
        }


/* --- DROPDOWN LOGIC FOR DESKTOP --- */
.arrow {
    font-size: 9px;
    margin-left: 4px;
    display: inline-block;
    vertical-align: middle;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #222222;
    list-style: none; /* List bullets remove */
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    padding: 10px 0;
    border-top: 3px solid var(--primary-color);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 999;
}
.dropdown-menu li {
    margin: 0 !important;
    width: 100%;
}
.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    color: #cbd5e1 !important;
    font-weight: normal;
    width: 100%;
}
.dropdown-menu a:hover {
    background-color: #333333;
    color: var(--primary-color) !important;
    padding-left: 25px;
}
/* Navbar ke links ko kaale background par white dikhane ke liye */
.navbar .nav-links li a {
    color: #ffffff !important;
}

/* Jab koi links par mouse le jaye toh gold color ka effect aaye */
.navbar .nav-links li a:hover {
    color: #f59e0b !important; 
}

/* Hover over parent list triggers dropdown */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- RESPONSIVE MOBILE VIEW --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: var(--dark-color);
        padding: 20px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    .nav-links.show {
        display: flex;
    }
    .nav-links > li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: #111111;
        box-shadow: none;
        border-top: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.3s ease-out;
    }
    .dropdown.open .dropdown-menu {
        max-height: 300px;
        padding: 10px 0;
    }
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 26px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}
.floating-btn:hover {
    transform: scale(1.1);
}
.float-call {
    left: 20px;
    background-color: #0088cc;
}
.float-whatsapp {
    right: 20px;
    background-color: #25d366;
}

@media (max-width:576px){
    .floating-btn{
        width:48px;
        height:48px;
        font-size:22px;
        bottom:15px;
    }
    .float-call{left:15px;}
    .float-whatsapp{right:15px;}
}

/* --- BANNER SLIDER BASE --- */
.slider-container {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;
    background-color: #000;
}
.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-1 {
    background-image:url('image/gg-banner1.jpeg') !important;
}

.slide-2 {
    background-image:url('image/gg-banner2.jpeg') !important;
}

.slide-3 {
    background-image:url('image/gg-banner3.jpeg') !important;
}

.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5); color: white;
    padding: 15px 20px; border: none; cursor: pointer; font-size: 24px; z-index: 10;
}
.slider-btn:hover { background-color: var(--primary-color); }
.prev { left: 20px; } .next { right: 20px; }

/* Global Sections */
.section { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; font-size: 32px; margin-bottom: 40px; text-transform: uppercase; }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background-color: var(--primary-color); margin: 10px auto 0; }

/* Grids Layout */
.about-grid, .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-text h3 { font-size: 24px; margin-bottom: 15px; }
.about-img img { width: 100%; border-radius: 8px; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.product-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; text-align: center; }
.product-img { background-color: #eee; height: 180px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.product-info { padding: 20px; }

/* Forms */
.contact-form form { display: flex; flex-direction: column; }
.contact-form input, .contact-form textarea { padding: 12px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 4px; }
.contact-form button { background-color: var(--dark-color); color: #fff; padding: 12px; border: none; border-radius: 4px; cursor: pointer; font-weight: bold; text-transform: uppercase; }
.contact-form button:hover { background-color: var(--primary-color); }

/* --- PREMIUM BLACK FOOTER STYLING --- */
.main-footer {
    background-color: #111111; /* Rich Dark Black */
    color: #cbd5e1; /* Subtle Light Grey Text */
    padding: 60px 20px 20px 20px;
    margin-top: 60px;
    border-top: 4px solid var(--primary-color); /* Red Accent top border */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr; /* Perfect Column Spacing */
    gap: 40px;
}

.footer-col .footer-logo {
    color: #ffffff;
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.footer-col .footer-logo span {
    color: var(--primary-color);
}

.footer-about-text {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Heading ke niche red color ki chhoti underline decoration */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 35px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Hover karne par text red hoga aur halka sa right me slide hoga */
.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #94a3b8;
    display: flex;
    align-items: flex-start;
}

.footer-contact li span {
    margin-right: 12px;
    font-size: 16px;
}

/* Bottom Copyright Bar */
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid #2d3748; /* Thin divider line */
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #64748b;
}

/* Responsive Footer for Mobile Devices */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; /* Tablet view me 2 columns */
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr; /* Mobile view me 1 column stack */
        gap: 30px;
    }
    .main-footer {
        padding: 40px 20px 20px 20px;
    }
}

/* --- RESPONSIVE MOBILE VIEW (MAX-WIDTH: 768px) --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Mobile me toggle button dikhega */
    }
    .nav-links {
        display: none; /* By default hidden rahega */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: var(--dark-color);
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    .nav-links.show {
        display: flex; /* Jab toggle class click ho to menu open ho jaye */
    }
    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    .about-grid, .contact-container { grid-template-columns: 1fr; }
    .slider-container { height: 40vh; }
}
/* --- Why Choose Us Button Style --- */
.footer-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 12px 35px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

/* Hover karne par premium transparent look aayega */
.footer-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}