/* ================= GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f4f6f8;
    color: #222;
}

/* ================= TOPBAR ================= */
.topbar {
    background: #000;
    color: #FFD700;
    text-align: center;
    padding: 8px 10px;
    font-size: 14px;
}

/* ================= MAIN NAV ================= */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between; /* logo left, nav+search right */
    background: #000;
    padding: 15px 30px;
    flex-wrap: wrap;
}

/* LOGO */
.main-nav .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-nav .logo img {
    width: 150px;
}

.main-nav .logo h1 {
    font-size: 52px;
    color: #FFD700;
}

/* NAV + SEARCH WRAPPER */
.nav-search-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* NAV MENU */
nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #FFD700;
    font-weight: bold;
    padding: 8px 12px;
    display: block;
    border-radius: 4px;
}

nav ul li a:hover {
    color: #fff;
    background: #222;
}

/* DROPDOWN */
.dropdown:hover .submenu {
    display: block;
}

nav .submenu {
    display: none;
    position: absolute;
    background: #000;
    margin-top: 8px;
    list-style: none;
    padding: 8px 0;
    min-width: 180px;
    border-top: 3px solid #FFD700;
    z-index: 999;
}

.submenu li a {
    display: block;
    padding: 8px 16px;
    color: #FFD700;
}

.submenu li a:hover {
    background: #222;
    color: #fff;
}

/* ================= SEARCH BAR ================= */
.search-box {
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 8.5px 12px;
    border: none;
    outline: none;
    border-radius: 4px 0 0 4px;
    font-size: 12px;
}

.search-box button {
    padding: 8.5px 14px;
    border: none;
    background: #FFD700;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: background 0.3s ease;
}

.search-box button:hover {
    background: #ffcc00;
}

/* ================= SERVICE BANNER ================= */
.service-banner {
    background: url("../images/banner-armed.png") center/cover no-repeat;
    color: #000;
    text-align: center;
    padding: 40px 20px;
    font-size: 28px;
    font-weight: bold;
    height:550px;
}

.service-banner h2 {
	color: #ff0000;
	margin-top: 400px;
	font-size:72px;
	font-weight: bold;

}

/* ================= SERVICE CONTENT ================= */
.service-content {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 30px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.service-content img {
    max-width: 380px;
    width: 100%;
    border-radius: 6px;
    flex-shrink: 0;
}

.text-content {
    flex: 1;
}

.text-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #000;
}

.text-content p {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.text-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.text-content ul li {
    font-size: 18px;
    margin: 6px 0;
    list-style: disc;
}

/* ================= FOOTER ================= */
footer {
    background: #000;
    color: #FFD700;
    text-align: center;
    padding: 20px;
    font-size: 15px;
    border-top: 3px solid #FFD700;
}

footer .footer-info p {
    margin-bottom: 6px;
}

footer .social-icons {
    margin-bottom: 15px;
}

footer .social-icons a {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

footer .social-icons a:hover {
    transform: scale(1.2);
}

footer .social-icons img {
    width: 30px;
    height: 30px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .service-content {
        flex-direction: column;
        padding: 30px 15px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 10px;
    }

    .nav-search-wrapper {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .submenu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        border-top: none;
    }

    .search-box {
        width: 100%;
    }

    .search-box input {
        width: 100%;
    }

    .service-banner {
        font-size: 22px;
        padding: 30px 15px;
    }

    .text-content h3 {
        font-size: 22px;
    }

    .text-content p,
    .text-content ul li {
        font-size: 16px;
    }

    .service-content img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .service-banner {
        font-size: 20px;
        padding: 25px 10px;
    }

    .text-content h3 {
        font-size: 20px;
    }

    .text-content p,
    .text-content ul li {
        font-size: 15px;
    }

    .main-nav .logo h1 {
        font-size: 18px;
    }
    
    .service-banner h2 {
	color: #ff0000;
	margin-top: 400px;
	font-size:36px;
	font-weight: bold;
	}
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

/* Mobile Friendly */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 15px;
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}

/* ===== Justdial Floating Button with Icon ===== */
.justdial-float {
    position: fixed;
    right: 25px;
    bottom: 100px;       /* WhatsApp se thoda upar */
    width: 60px;
    height: 60px;
    background-color: #fff;   /* white background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
    z-index: 99999;
    transition: transform 0.3s ease;
}

.justdial-float img {
    width: 36px;
    height: 36px;
}

.justdial-float:hover {
    transform: scale(1.1);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .justdial-float {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 15px;
    }

    .justdial-float img {
        width: 28px;
        height: 28px;
    }
}

/* ===== IndiaMART Floating Button with Icon ===== */
.indiamart-float {
    position: fixed;
    right: 25px;
    bottom: 170px;       /* WhatsApp + Justdial se thoda upar */
    width: 60px;
    height: 60px;
    background-color: #fff;   /* IndiaMART blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
    z-index: 99999;
    transition: transform 0.3s ease;
}

.indiamart-float img {
    width: 36px;
    height: 36px;
}

.indiamart-float:hover {
    transform: scale(1.1);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .indiamart-float {
        width: 50px;
        height: 50px;
        bottom: 150px;     /* WhatsApp + Justdial spacing */
        right: 15px;
    }

    .indiamart-float img {
        width: 28px;
        height: 28px;
    }
}

.service-banner {
    background: url("../images/banner-armed.png") center/cover no-repeat;
    color: #000;
    text-align: center;
    padding: 40px 20px;
    font-size: 28px;
    font-weight: bold;
    height:550px;
}

.highlight {
    background: yellow;
    color: black;
    padding: 2px 4px;
    border-radius: 3px;
}



