/* ==========================================================
   GLOBAL RESET & BASE
========================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #021B48; /* Indian Cricket Blue */
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ==========================================================
   HEADER
========================================================== */
.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    background: rgba(1, 14, 40, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 48px;
}

.logo-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.6px;
}

/* Desktop Nav */
.nav-desktop a {
    margin-left: 24px;
    text-decoration: none;
    color: #D9E5FF;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-desktop a:hover {
    color: #FFD857;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #FFD857;
    border-radius: 3px;
}

/* Mobile Menu */
.nav-mobile {
    display: none;
    flex-direction: column;
    background: rgba(1,14,40,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile a {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    text-decoration: none;
    color: #D9E5FF;
    font-size: 16px;
}

.nav-mobile a:hover {
    background: rgba(255,255,255,0.06);
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-mobile.show {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   HERO SECTION
========================================================== */
.hero-section {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 90px;
}

.hero-bg {
    background: url('../images/hero-tech-blue.jpg') center / cover no-repeat;
    position: absolute;
    inset: 0;
    z-index: 1;
    filter: brightness(0.55);
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 680px;
    animation: fadeUp 1.1s ease forwards;
}

.hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-section p {
    color: #dbe5ff;
    margin-bottom: 28px;
    font-size: 17px;
}

/* Buttons */
.btn-primary,
.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #FFC300;
    color: #000;
}

.btn-primary:hover {
    background: #ffdb55;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #FFF;
    color: #FFF;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.hero-tags {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-tags span {
    background: rgba(255,255,255,0.12);
    padding: 7px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 13px;
}

/* ==========================================================
   SECTIONS
========================================================== */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    text-align: center;
    margin-bottom: 40px;
    color: #FFD857;
}

/* ==========================================================
   SERVICES
========================================================== */
/* ==========================================================
   SERVICES – STRONG VISUAL + TYPOGRAPHY UPGRADE
========================================================== */

#services {
    background: radial-gradient(circle at top, #062a6f 0%, #021b48 70%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 34px;
    margin-top: 50px;
}

/* CARD */
.service-card {
    background: linear-gradient(
        180deg,
        rgba(8, 48, 120, 0.95) 0%,
        rgba(4, 26, 78, 0.98) 100%
    );
    padding: 36px 28px 38px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.14);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* BIGGER IMAGE */
.service-card img {
    height: 90px;
    margin-bottom: 22px;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.45));
}

/* HEADING – CLEAR DIFFERENT FONT FEEL */
.service-card h3 {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #ffffff;
    margin-bottom: 12px;
}

/* DESCRIPTION – Lighter & CLEAN */
.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #cfe0ff;
}

/* HOVER – PREMIUM LIFT */
.service-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 24px 50px rgba(0,0,0,0.5),
        inset 0 0 0 1px rgba(255,216,87,0.28);
}

/* ==========================================================
   MOBILE
========================================================== */
@media (max-width: 600px) {
    .service-card img {
        height: 80px;
    }

    .service-card h3 {
        font-size: 19px;
    }

    .service-card p {
        font-size: 14.5px;
    }
}

/* ==========================================================
   PRODUCTS
========================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
}

.product-card {
    background: #03255C;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.product-card h3 {
    margin: 16px;
    font-size: 18px;
}

.product-card p {
    margin: 0 16px 20px;
    font-size: 14px;
    color: #cdd9ff;
}

/* ==========================================================
   BRANDS
========================================================== */
.brands-row {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0 10px;
}

.brands-row img {
    height: 42px;
    opacity: 0.95;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.brands-row img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ==========================================================
   ABOUT
========================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

.about-text ul li {
    margin: 8px 0;
}

.about-photos {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.owner-card {
    background: #02193D;
    border-radius: 16px;
    overflow: hidden;
    padding-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.15);
}

.owner-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.owner-card h3 {
    text-align: center;
    margin-top: 12px;
    color: #FFD857;
}

.shop-photo {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ==========================================================
   CONTACT
========================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background: #03255C;
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 14px;
    color: #fff;
    font-family: inherit;
}

.contact-form textarea {
    resize: none;
}

.full {
    width: 100%;
}

/* ==========================================================
   FOOTER – FINAL STABLE VERSION
========================================================== */

.footer {
    background: #010A1F;
    padding: 26px 0;
    color: #ADC0EF;
    font-size: 14px;
}

.footer-inner {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Credit container */
.footer-credit {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* LOGO — controlled by WIDTH (not height) */
.footer-credit img {
    width: 140px;          /* THIS is the key */
    height: auto;
    max-height: 48px;      /* safety cap */
    object-fit: contain;
    display: block;
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-credit img {
        width: 160px;      /* clearly visible on phones */
        max-height: 56px;
    }
}

/* ================= WHATSAPP FLOAT BUTTON ================= */

.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

/* Hover */
.whatsapp-float:hover {
    transform: scale(1.08);
    transition: 0.25s ease;
}

/* Mobile */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 58px;
        height: 58px;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}

/* ==========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 900px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-section h1 {
        font-size: 36px;
    }
}

@media (max-width: 520px) {
    .hero-section h1 {
        font-size: 30px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        margin-bottom: 12px;
        text-align: center;
    }
}

/* ==========================================================
   ANIMATIONS
========================================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
