/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #0A0F1C;
    color: #E6F1FF;
    padding-top: 90px; /* space for fixed navbar */
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 15, 28, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.logo img {
    width: 300px;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #E6F1FF;
    font-size: 15px;
    position: relative;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #00F0FF;
}

nav ul li a.active {
    color: #00F0FF;
    border-bottom: 2px solid #00F0FF;
}

/* HERO */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10,15,28,0.8), rgba(10,15,28,0.8)),
                url('../images/hero/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #00F0FF;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 25px;
    color: #7B3CFF;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(90deg, #00F0FF, #7B3CFF);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.btn-primary:hover {
    opacity: 0.8;
}

.btn-secondary {
    border: 2px solid #00F0FF;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: #00F0FF;
    transition: 0.3s;
}

.btn-secondary:hover {
    background-color: #00F0FF;
    color: #0A0F1C;
}
/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
/* SERVICES OVERVIEW */
.services-overview {
    padding: 100px 50px;
    text-align: center;
}

.services-overview h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #00F0FF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: #121A2F;
    padding: 40px 25px;
    border-radius: 15px;
    text-decoration: none;
    color: #E6F1FF;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #aaa;
}

.service-card:hover {
    transform: translateY(-10px);
    border: 1px solid #00F0FF;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
}
}
/* TRUSTED BY */
.trusted-section {
    padding: 80px 50px;
    text-align: center;
    background: #0E1424;
}

.trusted-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #7B3CFF;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
    align-items: center;
}

.brands-grid img {
    max-width: 150px;
    margin: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.brands-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}
/* MSME SECTION */
.msme-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(90deg, #00F0FF20, #7B3CFF20);
    border-top: 1px solid #1c243a;
    border-bottom: 1px solid #1c243a;
}

.msme-content h2 {
    font-size: 30px;
    color: #00F0FF;
    margin-bottom: 10px;
}

.msme-content p {
    font-size: 16px;
    color: #ccc;
}

.msme-note {
    margin-top: 15px;
    font-size: 14px;
    color: #7B3CFF;
}
/* FOOTER */
.footer {
    background: #0A0F1C;
    padding: 60px 50px 20px;
    border-top: 1px solid #1c243a;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h3,
.footer-col h4 {
    color: #00F0FF;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #7B3CFF;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    padding-top: 15px;
    border-top: 1px solid #1c243a;
    color: #888;
}
/* PAGE BANNER */
.page-banner {
    height: 40vh;
    background: linear-gradient(rgba(10,15,28,0.8), rgba(10,15,28,0.8)),
                url('../images/hero/hero-bg.jpg') center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

.page-banner h1 {
    font-size: 40px;
    color: #00F0FF;
}
/* SERVICE DETAILS */
.service-details {
    padding: 100px 50px;
    text-align: center;
}

.service-details h2 {
    margin-bottom: 40px;
    color: #00F0FF;
}

/* BOTTOM TABS */
.bottom-tabs {
    padding: 60px 20px;
    text-align: center;
    background: #0E1424;
}

.bottom-tabs h3 {
    margin-bottom: 25px;
    color: #7B3CFF;
}

.tabs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tabs-grid a {
    padding: 10px 20px;
    border: 1px solid #00F0FF;
    border-radius: 25px;
    text-decoration: none;
    color: #00F0FF;
    transition: 0.3s;
}

.tabs-grid a:hover {
    background: #00F0FF;
    color: #0A0F1C;
}
/* IT PAGE BANNER */
.it-banner {
    height: 45vh;
    background: linear-gradient(rgba(10,15,28,0.85), rgba(10,15,28,0.85)),
                url('../images/services/it-bg.jpg') center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-intro {
    text-align: center;
    max-width: 900px;
    margin: 40px auto;
    font-size: 16px;
    color: #ccc;
}
/* ============================= */
/* IT INFRASTRUCTURE PAGE STYLE */
/* ============================= */

/* IT Banner */
.it-banner {
    height: 45vh;
    background: linear-gradient(rgba(10,15,28,0.85), rgba(10,15,28,0.85)),
                url('../images/services/it-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.it-banner h1 {
    font-size: 42px;
    color: #00F0FF;
}

/* Intro */
.service-intro {
    text-align: center;
    max-width: 900px;
    margin: 60px auto 20px auto;
    font-size: 16px;
    color: #ccc;
}

/* Service Cards Section */
.service-details {
    padding: 80px 50px;
    text-align: center;
}

.service-details h2 {
    margin-bottom: 40px;
    color: #00F0FF;
}

/* Image Section */
.service-images {
    padding: 100px 50px;
    text-align: center;
}

.service-images h2 {
    margin-bottom: 50px;
    color: #7B3CFF;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.image-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.4s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
}
/* SURVEILLANCE BANNER */
.surveillance-banner {
    height: 45vh;
    background: linear-gradient(rgba(10,15,28,0.85), rgba(10,15,28,0.85)),
                url('../images/services/surveillance-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.surveillance-banner h1 {
    font-size: 42px;
    color: #00F0FF;
}
/* SURVEILLANCE BANNER UPGRADE */
.surveillance-banner {
    height: 50vh;
    background: linear-gradient(rgba(5,10,20,0.9), rgba(5,10,20,0.9)),
                url('../images/services/surveillance-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.surveillance-banner h1 {
    font-size: 44px;
    color: #00F0FF;
    letter-spacing: 1px;
}
/* Surveillance cards special accent */
.service-details .service-card {
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.service-details .service-card:hover {
    border: 1px solid #7B3CFF;
    box-shadow: 0 0 25px rgba(123, 60, 255, 0.5);
}
/* SERVICE CTA */
.service-cta {
    padding: 80px 20px;
    text-align: center;
    background: #0E1424;
}

.service-cta h2 {
    margin-bottom: 15px;
    color: #00F0FF;
}

.service-cta p {
    margin-bottom: 25px;
    color: #ccc;
}
/* INTERIOR BANNER */
.interior-banner {
    height: 50vh;
    background: linear-gradient(rgba(10,15,28,0.85), rgba(10,15,28,0.85)),
                url('../images/services/interior-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.interior-banner h1 {
    font-size: 44px;
    color: #00F0FF;
}
/* PRINTING BANNER */
.printing-banner {
    height: 50vh;
    background: linear-gradient(rgba(10,15,28,0.85), rgba(10,15,28,0.85)),
                url('../images/services/printing-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.printing-banner h1 {
    font-size: 42px;
    color: #00F0FF;
}
/* SMART CLASSROOM BANNER */
.smart-banner {
    height: 50vh;
    background: linear-gradient(rgba(10,15,28,0.85), rgba(10,15,28,0.85)),
                url('../images/services/smart-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.smart-banner h1 {
    font-size: 42px;
    color: #00F0FF;
}

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.web-banner h1 {
    font-size: 42px;
    color: #00F0FF;
}
/* INDUSTRIES BANNER */
.industry-banner {
    height: 45vh;
    background: linear-gradient(rgba(10,15,28,0.85), rgba(10,15,28,0.85)),
                url('../images/services/interior-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.industry-banner h1 {
    font-size: 42px;
    color: #00F0FF;
}

/* INDUSTRY GRID */
.industry-section {
    padding: 100px 50px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.industry-card {
    background: #121A2F;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: 0.4s;
}

.industry-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.industry-card h3 {
    padding: 20px;
    color: #00F0FF;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0,240,255,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
}
/* WHY CHOOSE US BANNER */
.contact-banner {
    height: 45vh;
    background: linear-gradient(rgba(10,15,28,0.9), rgba(10,15,28,0.9)),
                url('images/banners/contact-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.why-banner h1 {
    font-size: 42px;
    color: #00F0FF;
}

/* WHY SECTION */
.why-section {
    padding: 100px 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.why-card {
    background: #121A2F;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
}

.why-card h3 {
    margin-bottom: 15px;
    color: #00F0FF;
}

.why-card p {
    color: #ccc;
    font-size: 14px;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0,240,255,0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-banner h1 {
    font-size: 42px;
    color: #00F0FF;
}

/* CONTACT SECTION */
.contact-section {
    padding: 100px 20px;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 30px;
    color: #00F0FF;
}

.contact-section form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section input,
.contact-section select,
.contact-section textarea {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #121A2F;
    color: #fff;
}

.contact-section input:focus,
.contact-section select:focus,
.contact-section textarea:focus {
    outline: 1px solid #00F0FF;
}

.contact-info {
    text-align: center;
    padding: 50px 20px;
    background: #0E1424;
    color: #ccc;
}

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-banner h1 {
    font-size: 42px;
    color: #00F0FF;
}

/* ABOUT SECTION */
.about-section {
    padding: 100px 50px;
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.about-text h2 {
    margin: 25px 0 10px 0;
    color: #00F0FF;
}

.about-text p {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 15px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
}

/* STATS */
.about-stats {
    padding: 80px 20px;
    background: #0E1424;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.stat-box h3 {
    font-size: 36px;
    color: #00F0FF;
}

.stat-box p {
    color: #ccc;
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= FIXED BANNERS ================= */

/* ABOUT */
.about-banner {
    height: 45vh;
    background: linear-gradient(rgba(10,15,28,0.85), rgba(10,15,28,0.85)),
                url('../images/banners/about-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* WHY */
.why-banner {
    height: 45vh;
    background: linear-gradient(rgba(10,15,28,0.85), rgba(10,15,28,0.85)),
                url('../images/banners/why-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* CONTACT */
.contact-banner {
    height: 45vh;
    background: linear-gradient(rgba(10,15,28,0.85), rgba(10,15,28,0.85)),
                url('../images/banners/contact-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* INDUSTRY */
.industry-banner {
    height: 45vh;
    background: linear-gradient(rgba(10,15,28,0.85), rgba(10,15,28,0.85)),
                url('../images/banners/about-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
/* BROCHURE SECTION */
.brochure-section {
    padding: 80px 20px;
    text-align: center;
    background: #0E1424;
}

.brochure-section h2 {
    color: #00F0FF;
    margin-bottom: 15px;
}

.brochure-section p {
    color: #ccc;
    margin-bottom: 25px;
}
/* PRINTING BANNER */
.printing-banner { ... }

/* SMART CLASSROOM BANNER */
.smart-banner { ... }

/* WEBSITE & MARKETING BANNER */
.web-banner {
    height: 50vh;
    background: linear-gradient(rgba(10,15,28,0.85), rgba(10,15,28,0.85)),
                url('../images/services/web-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.web-banner h1 {
    font-size: 42px;
    color: #00F0FF;
}
/* =========================
   LOCATION PAGES STYLING
========================= */

.location-hero {
    background: linear-gradient(135deg, #0a1f3c, #08142a);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.location-hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #00e5ff;
}

.location-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
}

.location-content {
    padding: 60px 20px;
    background: #0b1220;
    color: #fff;
}

.location-content h2 {
    text-align: center;
    color: #00e5ff;
    margin-bottom: 30px;
}

.location-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.location-services .service-box {
    background: #111c33;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
    text-align: center;
}

.location-services .service-box:hover {
    background: #16274a;
    transform: translateY(-5px);
}

.other-cities {
    background: #08142a;
    padding: 50px 20px;
    text-align: center;
}

.other-cities h3 {
    color: #00e5ff;
    margin-bottom: 20px;
}

.city-links a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background: #00e5ff;
    color: #000;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.city-links a:hover {
    background: #00bcd4;
}
.other-locations {
    padding: 60px 20px;
    text-align: center;
    background: #0c1220;
}

.other-locations h2 {
    margin-bottom: 40px;
    font-size: 28px;
    color: #00e5ff;
}

.locations-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.location-card {
    background: #111a2f;
    padding: 25px;
    width: 280px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
}

.location-card:hover {
    background: #00e5ff;
    color: #000;
}
.location-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
margin-top: 20px;
}

.location-card {
background: #0f1a2b;
padding: 25px;
border-radius: 10px;
text-decoration: none;
color: white;
transition: 0.3s;
border: 1px solid rgba(255,255,255,0.1);
}

.location-card:hover {
transform: translateY(-5px);
background: #16263d;
}

.location-card h3 {
margin-bottom: 8px;
color: #00e0ff;
}
/* Mobile Menu */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

@media (max-width: 768px) {

    nav ul {
        display: none;
        flex-direction: column;
        background: #000;
        width: 100%;
        text-align: center;
    }

    nav.active ul {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.location-card {
    background: #0d1b2a;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.location-card:hover {
    background: #1b263b;
    transform: translateY(-5px);
}