* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

:root {
    --accent: #dc2626;
    --accent-dark: #991b1b;
    --black: #0a0a0a;
    --white: #ffffff;
}

/* Typography Smoothness */
h1, h2, h3, h4, .section-title, .hero-content h1, .service-card h4, .why-card h4 {
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p, .service-card p, .why-card p {
    line-height: 1.65;
    letter-spacing: -0.01em;
}

/* ---------- SECTION STYLES ---------- */
.section-black {
    background: var(--black);
    color: var(--white);
    padding: 100px 20px;
}

.section-white {
    background: var(--white);
    color: var(--black);
    padding: 100px 20px;
}

.section-red {
    background: linear-gradient(135deg, #ffffff 0%, #242424 60%);
    color: var(--white);
    padding: 100px 20px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Watermark Headers */
.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    font-weight: 900;
    letter-spacing: 20px;
    opacity: 0.09;
    white-space: nowrap;
    pointer-events: none;
    text-transform: uppercase;
    color: var(--white);
}

.section-white .watermark {
    color: #000;
    opacity: 0.05;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    display: inline-block;
    letter-spacing: -0.02em;
}

.section-title span {
    color: var(--accent);
}

.section-red .section-title span {
    color: #e72424;
}

.section-subtitle {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.section-red .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -8px rgba(220, 38, 38, 0.4);
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #424242 !important;
    backdrop-filter: blur(12px);
    padding: 0 100px;
    height: 90px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    border-radius:0 0 20px 20px !important;
    
}

.navbar-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    flex-direction: column;      /* vertical stack */
    align-items: center;     /* left align */
    justify-content: center;
    gap: 6px;                    /* space between image and text */
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    height: 100%;
}

.logo img {
    height: 35px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 2px;
}

.logo-tagline {
    font-size: 13px;
    font-weight: 400;
    color: #e72424;
    letter-spacing: 1px;
    white-space: nowrap;
    line-height: 1.3;
    font-family: Georgia, "Times New Roman", serif;
    margin-top: 5px;
}
.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Cambria', serif!important;
}
.nav-link{
    font-size: 18px!important;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Desktop Dropdown */
.dropdown-wrapper {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #ffffff;
    font-weight: 500;
 font-family: 'Cambria', serif!important;
 font-size: 18px!important;
}
.swiper-slide img {
    transform: scale(1);
    transition: transform 6s ease;
}

.swiper-slide-active img {
    transform: scale(1.08);
}
.dropdown-toggle:hover {
    color: var(--accent);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 28px);
    right: 0 !important;
    background: #0a0a0a;
    backdrop-filter: blur(12px);
    min-width: 280px;
    border-radius: 20px;
    padding: 12px 0;
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 1001;
}

.dropdown-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-category-wrapper {
    position: relative;
}

.dropdown-category {
    padding: 12px 20px;
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: default;
}

.dropdown-category i {
    color: var(--accent);
    width: 22px;
}

.nested-submenu {
    position: absolute;
    right: 110%;
    top: 0;
    background: #0a0a0a;
    backdrop-filter: blur(12px);
    min-width: 210px;
    border-radius: 16px;
    padding: 8px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    transition: all 0.25s ease;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.4);
    font-family: 'Cambria', serif!important;
 font-size: 18px!important;
}

.dropdown-category-wrapper:hover .nested-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nested-item {
    display: block;
    padding: 10px 20px;
    color: #ccc;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    font-family: 'Cambria', serif!important;
}

.nested-item:hover {
    background: rgba(220, 38, 38, 0.12);
    color: white;
    border-left-color: var(--accent);
}

.dropdown-main-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    font-family: 'Cambria', serif!important;
    font-size: 17px!important;}

.dropdown-main-link i {
    color: var(--accent);
    width: 22px;
}

.dropdown-main-link:hover {
    background: rgba(220, 38, 38, 0.1);
    color: white;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #0f0f0f;
    backdrop-filter: blur(20px);
    padding: 30px 24px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    z-index: 999999;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.mobile-logo {
    font-size: 26px;
    font-weight: 700;
    color: white;
}

.mobile-logo span {
    color: var(--accent);
}

.mobile-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-nav-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 18px;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
}

.mobile-dropdown-section {
    margin-top: 8px;
}

.mobile-dropdown-title {
    color: #fff;
    font-weight: 600;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.mobile-sub-items {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-sub-items a {
    font-size: 15px;
    padding: 10px 8px;
    color: #bbb;
    text-decoration: none;
    display: block;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2006;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
}

.overlay.active {
    opacity: 1;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .navbar {
        padding: 20px 24px;
        height: 80px!important;
    }
    .logo img {
        height: 30px!important;
    }
    .mobile-logo {
        font-size: 18px;
    }
}

/* ---------- NEW ATTRACTIVE TOPBAR ---------- */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 46px;
    background: #3f3f3f;
    z-index: 1001;                 /* above navbar */
    display: flex;
    align-items: center;
    font-family: 'Cambria', serif;
    border-bottom: 3px solid rgba(250, 98, 98, 0.1);
    
}

.topbar-inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Left contact area */
.topbar-contact {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tb-link,
.tb-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s;
}

.tb-link i,
.tb-text i {
    color: #e72424;
    font-size: 12px;
    width: 14px;
}

.tb-link:hover {
    color: #ffffff;
}

.tb-sep {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.2);
    display: inline-block;
}

/* Right area */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.topbar-socials {
    display: flex;
    gap: 14px;
    text-decoration: none;
   
}

.topbar-socials a {
    color: #aaa;
    font-size: 14px;
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
     text-decoration: none;
     height: 30px;
     width: 30px;
     border-radius: 50%;
     justify-content: center;
     background: #fff;
     color: #aaa;
     font-size: 14px;
     transition: color 0.2s, transform 0.2s;
    
}

.topbar-socials a:hover {
    color: #e72424;
    transform: translateY(-2px);
}

/* CTA Button */
.topbar-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e72424;
    color: #fff;
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    white-space: nowrap;
    box-shadow: 0 0 12px rgba(231,36,36,0.3);
}

.topbar-cta i {
    font-size: 11px;
    transition: transform 0.2s;
}

.topbar-cta:hover {
    background: #b91c1c;
    box-shadow: 0 0 20px rgba(231,36,36,0.6);
    transform: scale(1.02);
}

.topbar-cta:hover i {
    transform: translateX(3px);
}

/* Push your existing navbar down */
.navbar {
    top: 46px !important;   /* height of topbar */
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .topbar-inner {
        padding: 0 20px;
    }
    .topbar-contact {
        gap: 8px;
    }
    .tb-text,               /* hide address */
    .tb-sep,
    .tb-link,[href^="mailto"] { /* hide email */
        display: none;
    }
    .topbar-socials {
        gap: 10px;
    }

    .topbar{
        display: none;       /* hide entire topbar on medium screens to save space */
    }
    .navbar {
        top: 0 !important;   /* move navbar back to top */
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .topbar-socials {
        display: none;       /* keep only phone & CTA on very small screens */
    }
    .topbar-cta {
        padding: 6px 14px;
        font-size: 11px;
    }
}


/* Hero Slider */
.hero-slider,
.hero-slide {
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.418), rgba(0, 0, 0, 0.281));
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 80px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 8px 22px;
    border: 1px solid var(--accent);
    border-radius: 50px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.548);
    backdrop-filter: blur(8px);
    letter-spacing: 2px;
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 900px;
    letter-spacing: 10px !important;
}

.hero-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 32px;
    max-width: 550px;
    letter-spacing: 1.9px;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 1024px) {
    .hero-content {
        padding: 0 40px;
    }
    .hero-content h1 {
        font-size: 48px;
        letter-spacing: 6px !important;
    }
    .hero-content p {
        font-size: 16px;
        letter-spacing: 1.2px;
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 24px;
        text-align: center;
        justify-content: center;
    }
    .hero-content > div {
        max-width: 100%;
    }
    .hero-badge {
        padding: 6px 16px;
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }
    .hero-content h1 {
        font-size: 36px;
        letter-spacing: 3px !important;
        line-height: 1.2;
        max-width: 100%;
        margin-bottom: 16px;
    }
    .hero-content p {
        font-size: 14px;
        letter-spacing: 0.8px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 20px;
    }
    .hero-content h1 {
        font-size: 28px!important;
        letter-spacing: 2px !important;
    }
    .hero-badge {
        font-size: 10px;
        padding: 5px 12px;
    }
}
/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.about-badges {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.badge {
    background: #f5f5f5;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* IMAGE SECTION */
.image-stack {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stack-img {
    width: 100%;
    max-width: 520px;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 4px solid #fff;
    position: relative;
}

.stack-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.stack-img:hover img {
    transform: scale(1.05);
}

/* REMOVE OLD STACK POSITIONING */
.img-1,
.img-2,
.img-3 {
    position: unset;
    width: 100%;
    height: 100%;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stack-img {
        max-width: 100%;
        height: 350px;
    }

    .about-text {
        text-align: center;
    }

    .about-badges {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .stack-img {
        height: 280px;
        border-radius: 18px;
    }

    .about-text p {
        font-size: 15px;
    }

    .badge {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* Services - 3D Border Animation Waisa Hi */
.services-section-black {
    background: #0a0a0a;
    padding: 100px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #111;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: 0.4s;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 23px;
    border: 2px solid #ff4444;
    z-index: -1;
    opacity: 0;
    transition: 0.3s;
}

.service-card:hover::before {
    opacity: 1;
    animation: spinBorder 5s linear infinite;
}

@keyframes spinBorder {
    0% { clip-path: polygon(0% 0%, 100% 0%, 100% 4px, 0% 4px); }
    25% { clip-path: polygon(calc(100% - 4px) 0%, 100% 0%, 100% 100%, calc(100% - 4px) 100%); }
    50% { clip-path: polygon(0% calc(100% - 4px), 100% calc(100% - 4px), 100% 100%, 0% 100%); }
    75% { clip-path: polygon(0% 0%, 4px 0%, 4px 100%, 0% 100%); }
    100% { clip-path: polygon(0% 0%, 100% 0%, 100% 4px, 0% 4px); }
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 45px;
    color: var(--accent);
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-card:hover i {
    transform: scale(1.15);
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.7);
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: white;
}

.service-card p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.65;
}

.section-titles {
    font-size: 48px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    display: inline-block;
    color: white!important;
    letter-spacing: -0.02em;
}

/* Products 3D Slider - Waisa Hi */
.products-slider-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 60px;
}

.productsSwiper {
    padding: 40px 10px;
}

.product-3d-card {
    width: 100%;
    height: 420px;
    perspective: 1500px;
}

.product-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 20px;
}

.product-3d-card:hover .product-card-inner {
    transform: rotateY(180deg);
}

.product-card-front,
.product-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card-front {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.product-card-front img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.product-3d-card:hover .product-card-front img {
    transform: scale(1.05);
}

.product-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.product-card-front h3 {
    color: white;
    font-size: 22px;
    margin-top: 10px;
}

.product-card-back {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.product-card-back i {
    font-size: 50px;
    margin-bottom: 20px;
}

.product-card-back p {
    margin: 15px 0;
    line-height: 1.6;
    font-size: 14px;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--accent);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid transparent;
}

.product-btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
}

.product-next,
.product-prev {
    width: 50px !important;
    height: 50px !important;
    background: var(--accent) !important;
    border-radius: 50% !important;
    color: white !important;
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 18px !important;    
}

.product-pagination .swiper-pagination-bullet-active {
    background: var(--accent) !important;
    width: 30px;
    border-radius: 5px;
}
/* ... existing desktop styles remain ... */

/* ===== MOBILE RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
    .products-slider-container {
        padding: 10px 30px;        /* reduced side padding */
    }
    .productsSwiper {
        padding: 20px 5px;
    }
    .product-3d-card {
        height: 380px;             /* slightly shorter card */
    }
    .product-card-front {
        padding: 15px;
    }
    .product-card-front img {
        height: 220px;             /* smaller image */
        margin-bottom: 12px;
    }
    .product-category-badge {
        top: 12px;
        left: 12px;
        padding: 4px 12px;
        font-size: 10px;
    }
    .product-card-front h3 {
        font-size: 18px;
    }
    .product-card-back {
        padding: 20px;
    }
    .product-card-back i {
        font-size: 38px;
        margin-bottom: 15px;
    }
    .product-card-back h3 {
        font-size: 20px;
    }
    .product-card-back p {
        font-size: 12px;
        margin: 10px 0;
        line-height: 1.4;
    }
    .product-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .product-next,
    .product-prev {
        width: 30px !important;
        height: 30px !important;
        font-size: 10px !important;
    }
}

@media (max-width: 480px) {
    .product-3d-card {
        height: 360px;
    }
    .product-card-front img {
        height: 200px;
    }
    .product-card-front h3 {
        font-size: 16px;
    }
    .product-card-back h3 {
        font-size: 18px;
    }
}
/* Why Choose Us - 3D Tilt Cards Waisa Hi */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    perspective: 1000px;
}

.why-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
    padding: 45px 30px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(220, 38, 38, 0.15);
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.why-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(9deg) translateY(-10px);
    border-color: var(--accent);
}

.why-icon {
    width: 90px;
    height: 90px;
    background: rgba(220, 38, 38, 0.08);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: 0.5s;
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.why-card:hover .why-icon {
    background: var(--accent);
    transform: rotate(360deg) scale(1.1);
}

.why-icon i {
    font-size: 40px;
    color: var(--accent);
}

.why-card:hover .why-icon i {
    color: white;
}

.why-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
    transition: 0.3s;
}

.why-card:hover h4 {
    color: var(--accent);
}

.why-card p {
    color: #aaa;
    line-height: 1.7;
}

/* Rest of the CSS remains SAME as your original */
/* Gallery, Contact, Footer - waisa hi rakho, bas font smooth ho gaya */
/* Contact Section */
        .contact-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border-radius: 40px;
            padding: 50px;
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 50px;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .contact-info h3 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #050505;
        }

        .contact-info h3 span {
            color: #f52d2d;
        }

        .contact-info p{
            color: black;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            margin-bottom: 25px;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            transition: 0.3s;
        }

        .contact-item:hover {
            background: rgba(245, 106, 106, 0.1);
            transform: translateX(5px);
        }

        .contact-item i {
            font-size: 22px;
            color: #f02121;
            width: 24px;
            margin-top: 3px;
        }

        .contact-item .item-label {
            font-size: 13px;
            text-transform: uppercase;
            opacity: 0.7;
            margin-bottom: 5px;
            color: #070707;
        }

        .contact-para{
            color: black;
        }

        .contact-social {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgb(240, 46, 46);
            font-size: 20px;
            text-decoration: none;
            transition: 0.3s;
        }

        .social-link:hover {
            background: white;
            color: var(--accent);
            transform: translateY(-3px);
        }

        .contact-form {
            background: white;
            border-radius: 30px;
            padding: 40px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            color: #333;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 14px;
            font-family: inherit;
            background: #fafafa;
            transition: 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: #991b1b;
            transform: translateY(-2px);
        }

        
/* ========== GLOBAL BOX-SIZING (ensure karo) ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablets (max 1024px) */
@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;          /* stack vertically */
    padding: 35px 25px;
    gap: 30px;
    border-radius: 30px;
  }

  .section-title {
    font-size: 40px;
  }

  .watermark {
    font-size: 80px;
    letter-spacing: 12px;
  }
}

/* Mobiles (max 768px) */
@media (max-width: 768px) {
  /* Hero */
  .about-hero {
    height: 45vh;
    min-height: 300px;
    margin-top: 70px;
  }
  .about-hero h1 {
    font-size: 36px;
  }
  .about-hero p {
    font-size: 16px;
  }

  /* Section header */
  .section-header {
    margin-bottom: 25px;
  }
  .section-title {
    font-size: 32px;
  }
  .watermark {
    font-size: 60px;
    letter-spacing: 8px;
    opacity: 0.04;
  }
  .section-subtitle {
    font-size: 12px;
    letter-spacing: 1px;
  }

  /* Map */
  .map-container {
    height: 280px;
  }

  /* Contact wrapper */
  .contact-wrapper {
    padding: 25px 18px;
    border-radius: 24px;
    gap: 25px;
  }

  .contact-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .contact-info p {
    font-size: 15px;
  }

  .contact-item {
    padding: 12px 14px;
    gap: 12px;
    margin-bottom: 15px;
  }
  .contact-item i {
    font-size: 18px;
    width: 20px;
    margin-top: 2px;
  }
  .contact-item .item-label {
    font-size: 11px;
  }
  .contact-para {
    font-size: 14px;
    word-break: break-word;             /* long text wrap */
  }

  .contact-social {
    margin-top: 20px;
    gap: 10px;
  }
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* Form */
  .contact-form {
    padding: 25px 18px;
    border-radius: 24px;
  }
  .form-group {
    margin-bottom: 15px;
  }
  .form-group label {
    font-size: 12px;
  }
  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 15px;
  }
  .form-group textarea {
    min-height: 100px;
  }
  .submit-btn {
    padding: 14px;
  }
}

/* Small mobiles (max 480px) */
@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 28px;
  }
  .section-title {
    font-size: 26px;
  }
  .watermark {
    font-size: 42px;
    letter-spacing: 4px;
  }

  .contact-wrapper {
    padding: 20px 15px;
    border-radius: 20px;
  }

  .contact-info h3 {
    font-size: 24px;
  }

  .contact-item {
    flex-direction: column;            /* icon ke upar text */
    align-items: flex-start;
    gap: 8px;
  }
  .contact-item i {
    margin-bottom: 5px;
  }

  .contact-form {
    padding: 20px 15px;
  }
}
        /* Footer */
        .footer {
    background: #0f0f0f;
    color: var(--white);
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-logo p {
    color: #999;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-address p {
    color: #999;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.7;
}

.footer-address p i {
    color: var(--accent);
    min-width: 18px;
    margin-top: 4px;
    font-size: 15px;
}

.footer-address p a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

.footer-address p a:hover {
    color: var(--accent);
}

.mb {
    margin-right: 8px;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.newsletter-input {
    display: flex;
    margin-top: 20px;
}

.newsletter-input input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 50px 0 0 50px;
    background: #222;
    color: white;
}

.newsletter-input button {
    padding: 14px 25px;
    background: var(--accent);
    border: none;
    border-radius: 0 50px 50px 0;
    color: white;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    margin-top: 50px;
    color: #777;
}
/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        column-count: 2;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .image-stack {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .stack-img {
        position: relative;
        width: 100%;
        height: 200px;
        top: auto;
        left: auto;
        right: auto;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .watermark {
        font-size: 60px;
        letter-spacing: 10px;
    }
    .section-title {
        font-size: 36px;
    }
    .section-titles {
        font-size: 36px;
    }
    .hero-content h1 {
        font-size: 42px;
    }
    .hero-content {
        padding: 0 30px;
    }
    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        column-count: 1;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 35px;
    }
}
.mb{
    text-decoration: none!important;
    color: #999!important;
}
.footer-logo{
    text-decoration: none!important;
    color: #999!important;
}
.footer-logo:hover{
    color: #dc2626!important;
}


/* ---------- FLOATING FEEDBACK BUTTON & MODAL ---------- */
/* Floating button – bottom right */
.feedback-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #e72424;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 8px 20px rgba(231,36,36,0.35);
    transition: all 0.3s ease;
    animation: softPulse 2s infinite;
    font-family: 'Cambria', serif;
    overflow: hidden;
    white-space: nowrap;
}

.feedback-float i {
    font-size: 24px;
}

.feedback-label {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width 0.3s ease, opacity 0.2s ease;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.feedback-float:hover {
    background: #b91c1c;
    box-shadow: 0 12px 28px rgba(231,36,36,0.5);
    transform: translateY(-3px);
    animation: none;
}

.feedback-float:hover .feedback-label {
    max-width: 120px;
    opacity: 1;
    margin-left: 4px;
}

@keyframes softPulse {
    0%   { box-shadow: 0 8px 20px rgba(231,36,36,0.35); }
    50%  { box-shadow: 0 8px 28px rgba(231,36,36,0.55); }
    100% { box-shadow: 0 8px 20px rgba(231,36,36,0.35); }
}

/* Modal overlay */
.fb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(5px);
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    /* Overlay khud scroll nahi karega, modal scroll karega */
    overflow-y: auto;             /* fallback for very small screens */
}

.fb-overlay.active {
    display: flex;
}

/* Modal box */
.fb-modal {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 30px 28px;
    width: 90%;
    max-width: 460px;             /* thoda chauda for labels */
    max-height: 90vh;             /* 🔥 IMPORTANT: screen ke andar fit */
    overflow-y: auto;             /* 🔥 scroll if content is long */
    position: relative;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
    color: #ddd;
    font-family: 'Cambria', serif;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: left;             /* form ke andar left-align */
    /* modern scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #ff4242 #1a1a1a;
}

.fb-modal::-webkit-scrollbar {
    width: 6px;
}

.fb-modal::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.fb-modal::-webkit-scrollbar-thumb {
    border-radius: 3px;
}

.fb-overlay.active .fb-modal {
    transform: scale(1);
}

/* Close button */
.fb-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: #888;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 2;
}

.fb-close:hover {
    color: #e72424;
}

/* Icon circle */
.fb-icon-circle {
    width: 65px;
    height: 65px;
    background: rgba(231,36,36,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: #e72424;
}

/* Modal headings */
.fb-modal h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 24px;
    letter-spacing: 0.5px;
    text-align: center;
}

.fb-modal p {
    color: #aaa;
    margin-bottom: 24px;
    font-size: 14px;
    text-align: center;
}

/* Form field wrapper */
.fb-field {
    margin-bottom: 16px;
    text-align: left;
}

.fb-field label {
    display: block;
    color: #ccc;
    font-size: 13px;
    margin-bottom: 6px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.fb-field input,
.fb-field textarea {
    width: 100%;
    padding: 11px 14px;
    background: #2b2b2b;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: #fff;
    font-family: 'Cambria', serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    resize: vertical;               /* textareas vertically resizeable */
}

.fb-field input:focus,
.fb-field textarea:focus {
    border-color: #e72424;
}

/* Submit button */
.fb-submit {
    width: 100%;
    padding: 13px;
    background: #e72424;
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.fb-submit:hover {
    background: #b91c1c;
    box-shadow: 0 0 18px rgba(231,36,36,0.5);
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .feedback-float {
        bottom: 20px;
        right: 20px;
        padding: 12px;
    }
    .feedback-label {
        display: none;
    }
    .fb-modal {
        padding: 24px 18px;
        max-width: 95%;
        max-height: 85vh;           /* thoda aur safe */
    }
    .fb-field label {
        font-size: 12px;
    }
    .fb-field input,
    .fb-field textarea {
        font-size: 13px;
        padding: 10px 12px;
    }
}