/* ========================================
   BILAL TEXTILE - RAINBOW COLORFUL DESIGN
   Full Responsive E-commerce Platform
   Contact: Junaid Ul Haque Sheikh
   WhatsApp: +923323605926 / +923343046525
   ======================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Rainbow Color Palette */
    --rainbow-red: #ff6b6b;
    --rainbow-orange: #ffa94d;
    --rainbow-yellow: #ffd43b;
    --rainbow-green: #51cf66;
    --rainbow-teal: #20c997;
    --rainbow-blue: #339af0;
    --rainbow-indigo: #5c7cfa;
    --rainbow-purple: #cc5de8;
    --rainbow-pink: #f06595;

    /* Gradients */
    --rainbow-gradient: linear-gradient(90deg,
        #ff6b6b, #ffa94d, #ffd43b, #51cf66, #20c997, #339af0, #5c7cfa, #cc5de8, #f06595);
    --rainbow-gradient-diagonal: linear-gradient(135deg,
        #ff6b6b 0%, #ffa94d 12%, #ffd43b 25%, #51cf66 37%, #20c997 50%,
        #339af0 62%, #5c7cfa 75%, #cc5de8 87%, #f06595 100%);

    /* Primary Theme */
    --primary-color: #5c7cfa;
    --secondary-color: #cc5de8;
    --accent-color: #20c997;

    /* Text & Background */
    --dark-text: #2d3436;
    --light-text: #ffffff;
    --gray-text: #636e72;
    --light-bg: #f8f9fa;
    --border-color: rgba(92, 124, 250, 0.2);

    /* Effects */
    --shadow: 0 10px 40px rgba(92, 124, 250, 0.25);
    --shadow-colored: 0 15px 50px rgba(204, 93, 232, 0.3);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Rainbow Background Animation */
@keyframes rainbow-bg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-rainbow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
    16% { box-shadow: 0 0 0 10px rgba(255, 169, 77, 0.5); }
    33% { box-shadow: 0 0 0 10px rgba(255, 212, 59, 0.5); }
    50% { box-shadow: 0 0 0 10px rgba(81, 207, 102, 0.5); }
    66% { box-shadow: 0 0 0 10px rgba(51, 154, 240, 0.5); }
    83% { box-shadow: 0 0 0 10px rgba(204, 93, 232, 0.5); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 25%, #a1c4fd 50%, #c2e9fb 75%, #ffecd2 100%);
    background-size: 400% 400%;
    animation: rainbow-bg 15s ease infinite;
    min-height: 100vh;
}

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

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.9) 100%);
    backdrop-filter: blur(10px);
}

/* Typography with Rainbow Effects */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

h2 {
    font-size: 2.8rem;
    background: var(--rainbow-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-bg 4s linear infinite;
}

p {
    margin-bottom: 15px;
    color: var(--gray-text);
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Rainbow Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--rainbow-gradient);
    background-size: 300% 100%;
    color: var(--light-text);
    animation: rainbow-bg 4s ease infinite;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.6s;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 107, 107, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--rainbow-gradient);
    border-radius: 10px;
}

.section-header p {
    font-size: 1.2rem;
    background: linear-gradient(90deg, var(--rainbow-purple), var(--rainbow-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* ========================================
   RAINBOW HEADER
   ======================================== */
header {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,236,210,0.95) 100%);
    box-shadow: 0 5px 30px rgba(92, 124, 250, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 4px solid;
    border-image: var(--rainbow-gradient) 1;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(92, 124, 250, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 2.2rem;
    background: var(--rainbow-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: rainbow-bg 3s linear infinite;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    color: var(--dark-text);
    font-size: 1rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--rainbow-gradient);
    transition: var(--transition);
    border-radius: 10px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   RAINBOW HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg,
        rgba(255, 107, 107, 0.85) 0%,
        rgba(255, 169, 77, 0.85) 20%,
        rgba(255, 212, 59, 0.85) 40%,
        rgba(81, 207, 102, 0.85) 60%,
        rgba(51, 154, 240, 0.85) 80%,
        rgba(204, 93, 232, 0.85) 100%),
        url('https://images.unsplash.com/photo-1556905055-8f358a7a47b2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3.5rem;
    color: var(--light-text);
    -webkit-text-fill-color: white;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.hero .btn {
    animation: fadeInUp 1s ease 0.4s both;
    background: rgba(255,255,255,0.95);
    color: var(--rainbow-purple);
    font-size: 1.1rem;
    padding: 18px 50px;
}

.hero .btn:hover {
    background: white;
    box-shadow: 0 15px 50px rgba(255,255,255,0.4);
    color: var(--rainbow-red);
}

/* Hero WhatsApp Buttons */
.hero-whatsapp {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    padding: 15px 30px;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.5) !important;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--rainbow-gradient);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h3 {
    font-size: 2.2rem;
    background: var(--rainbow-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-bg 4s linear infinite;
    margin-bottom: 25px;
}

.about-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--rainbow-gradient);
    z-index: -1;
    border-radius: 28px;
    animation: rainbow-bg 4s linear infinite;
    background-size: 300% 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    border-radius: 20px;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Rainbow Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.stat-item:nth-child(1)::before { background: linear-gradient(90deg, var(--rainbow-red), var(--rainbow-orange)); }
.stat-item:nth-child(2)::before { background: linear-gradient(90deg, var(--rainbow-green), var(--rainbow-teal)); }
.stat-item:nth-child(3)::before { background: linear-gradient(90deg, var(--rainbow-blue), var(--rainbow-purple)); }

.stat-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: var(--rainbow-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-bg 3s linear infinite;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-text);
    font-weight: 600;
    margin-top: 10px;
}

/* Vision Mission Rainbow Cards */
.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-top: 60px;
}

.vision-box,
.mission-box {
    background: white;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vision-box::before,
.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--rainbow-gradient);
}

.vision-box:hover,
.mission-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.vision-box h3,
.mission-box h3 {
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
}

.vision-box i,
.mission-box i {
    font-size: 1.8rem;
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   FACILITIES SECTION
   ======================================== */
.facilities {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #ffeaa7 100%);
    position: relative;
}

.facilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--rainbow-gradient);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.facility-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
}

.facility-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--rainbow-gradient);
}

.facility-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

.facility-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.facility-card:hover img {
    transform: scale(1.1);
}

.facility-info {
    padding: 25px;
    background: white;
}

.facility-info h3 {
    margin: 0;
    font-size: 1.15rem;
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-weight: 700;
}

/* ========================================
   PRODUCTS SECTION - RAINBOW E-COMMERCE
   ======================================== */
.products {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 50%, #c2e9fb 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--rainbow-gradient);
}

.product-category {
    margin-bottom: 70px;
}

.category-title {
    font-size: 2.2rem;
    background: var(--rainbow-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-bg 4s linear infinite;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 5px solid;
    border-image: var(--rainbow-gradient) 1;
    display: inline-block;
    font-weight: 800;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    z-index: 10;
}

.product-card:nth-child(1)::before { background: linear-gradient(90deg, #ff6b6b, #ffa94d); }
.product-card:nth-child(2)::before { background: linear-gradient(90deg, #ffa94d, #ffd43b); }
.product-card:nth-child(3)::before { background: linear-gradient(90deg, #ffd43b, #51cf66); }
.product-card:nth-child(4)::before { background: linear-gradient(90deg, #51cf66, #20c997); }
.product-card:nth-child(5)::before { background: linear-gradient(90deg, #20c997, #339af0); }
.product-card:nth-child(6)::before { background: linear-gradient(90deg, #339af0, #5c7cfa); }
.product-card:nth-child(7)::before { background: linear-gradient(90deg, #5c7cfa, #cc5de8); }
.product-card:nth-child(8)::before { background: linear-gradient(90deg, #cc5de8, #f06595); }

.product-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h4 {
    margin: 0;
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Product Price - Rainbow Style */
.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--rainbow-green), var(--rainbow-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 15px 0;
}

/* Add to Cart Button - Rainbow */
.btn-add-cart {
    background: var(--rainbow-gradient);
    background-size: 200% 100%;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    animation: rainbow-bg 4s ease infinite;
}

.btn-add-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn-add-cart:hover::before {
    left: 100%;
}

.btn-add-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,107,107,0.4);
}

.btn-add-cart.added {
    background: linear-gradient(90deg, var(--rainbow-green), var(--rainbow-teal));
    animation: none;
}

/* ========================================
   QUALITY POLICY SECTION
   ======================================== */
.quality-policy {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
}

.quality-policy .section-header h2,
.quality-policy .section-header p {
    -webkit-text-fill-color: white;
    color: white;
}

.quality-policy .section-header h2::after {
    background: white;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-box {
    background: rgba(255,255,255,0.98);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.policy-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--rainbow-gradient);
}

.policy-box i {
    font-size: 4rem;
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.policy-box h3 {
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

/* ========================================
   CONTACT SECTION - RAINBOW
   ======================================== */
.contact {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #ffecd2 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--rainbow-gradient);
}

.contact .section-header h2,
.contact .section-header p {
    -webkit-text-fill-color: white;
    color: white;
}

.contact .section-header h2::after {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.info-box {
    text-align: center;
    padding: 35px 25px;
    background: rgba(255,255,255,0.98);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.info-box:nth-child(1)::before { background: var(--rainbow-red); }
.info-box:nth-child(2)::before { background: var(--rainbow-orange); }
.info-box:nth-child(3)::before { background: var(--rainbow-green); }
.info-box:nth-child(4)::before { background: var(--rainbow-blue); }
.info-box:nth-child(5)::before { background: var(--rainbow-purple); }

.info-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.info-box i {
    font-size: 3rem;
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-box p,
.info-box a {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.7;
    margin: 8px 0;
}

.info-box a:hover {
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links {
    grid-column: span 2;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--rainbow-gradient);
    background-size: 200% 100%;
    color: var(--light-text);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    animation: rainbow-bg 4s ease infinite;
}

.social-links a:hover {
    transform: translateY(-8px) scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Contact Form - Rainbow */
.contact-form {
    background: rgba(255,255,255,0.98);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--rainbow-gradient);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid #eee;
    border-radius: 15px;
    font-size: 1rem;
    transition: var(--transition);
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rainbow-purple);
    box-shadow: 0 0 0 5px rgba(204,93,232,0.1);
    background: white;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-group.checkbox input {
    width: auto;
    accent-color: var(--rainbow-purple);
}

.form-group.checkbox label {
    margin: 0;
    font-weight: normal;
    -webkit-text-fill-color: var(--gray-text);
}

.privacy-note {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.privacy-note a {
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
}

/* ========================================
   RAINBOW FOOTER
   ======================================== */
footer {
    background: linear-gradient(135deg, #2d3436 0%, #1a1a2e 100%);
    color: var(--light-text);
    padding: 50px 0;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--rainbow-gradient);
}

.footer-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 8px 0;
    font-size: 1rem;
}

.footer-note {
    font-size: 1.1rem;
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-whatsapp {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-whatsapp .whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    background: linear-gradient(90deg, #25D366, #128C7E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 50px;
    transition: var(--transition);
}

.footer-whatsapp .whatsapp-link:hover {
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

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

/* Loading Animation for Images */
img {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ========================================
   RAINBOW FLOATING BUTTONS
   ======================================== */
.scroll-buttons-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

/* WhatsApp Buttons - Junaid Ul Haque Sheikh */
.scroll-whatsapp {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.8rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    animation: pulse-rainbow 3s infinite;
    position: relative;
}

.scroll-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: scale(1.15) rotate(10deg);
    color: white;
}

.scroll-whatsapp-2 {
    animation-delay: 1.5s;
}

.whatsapp-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--rainbow-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}

/* Scroll to Top Button */
.scroll-top {
    width: 55px;
    height: 55px;
    background: var(--rainbow-gradient);
    background-size: 200% 100%;
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: none;
    box-shadow: 0 8px 30px rgba(255,107,107,0.4);
    animation: rainbow-bg 4s ease infinite;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 45px rgba(255,107,107,0.5);
}

/* ========================================
   HEADER ACTIONS
   ======================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.whatsapp-contacts {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    background: linear-gradient(90deg, #25D366, #128C7E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.whatsapp-link:hover {
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Rainbow Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.cart-icon:hover {
    transform: scale(1.2);
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    background: var(--rainbow-gradient);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

/* ========================================
   RAINBOW CART SIDEBAR
   ======================================== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    z-index: 2000;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px;
    background: var(--rainbow-gradient);
    color: white;
}

.cart-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1.4rem;
}

.cart-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover {
    background: rgba(255,255,255,0.35);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
}

.cart-item {
    display: flex;
    gap: 18px;
    padding: 22px;
    border-radius: 18px;
    background: white;
    margin-bottom: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.cart-item:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.cart-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 14px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-item-details .item-price {
    background: linear-gradient(90deg, var(--rainbow-green), var(--rainbow-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.15rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--rainbow-gradient);
    background-size: 200% 100%;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    animation: rainbow-bg 4s ease infinite;
}

.qty-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255,107,107,0.3);
}

.qty-value {
    font-weight: 700;
    min-width: 28px;
    text-align: center;
    font-size: 1.15rem;
}

.cart-item-remove {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    align-self: flex-start;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(255,107,107,0.4);
}

.cart-empty {
    text-align: center;
    padding: 60px 25px;
    color: var(--gray-text);
}

.cart-empty i {
    font-size: 5rem;
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    opacity: 0.6;
}

.cart-footer {
    padding: 28px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-top: 4px solid;
    border-image: var(--rainbow-gradient) 1;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 22px;
}

.cart-total span:last-child {
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-checkout {
    width: 100%;
    padding: 18px;
    font-size: 1.15rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.btn-checkout:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.4);
}

.btn-checkout-2 {
    width: 100%;
    padding: 18px;
    font-size: 1.15rem;
    background: var(--rainbow-gradient);
    background-size: 200% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    animation: rainbow-bg 4s ease infinite;
}

.btn-checkout-2:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255,107,107,0.4);
}

/* WhatsApp Floating Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-btn {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    animation: pulse-rainbow 3s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-btn-2 {
    animation-delay: 1.5s;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    h2 {
        font-size: 2.2rem;
    }

    .hero h2 {
        font-size: 2.8rem;
    }

    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: linear-gradient(135deg, #fff 0%, #ffecd2 100%);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 50px 0;
        transition: var(--transition);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 15px;
    }

    .about-content,
    .contact-content,
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .social-links {
        grid-column: auto;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .facilities-grid,
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .policy-box {
        padding: 35px;
    }

    .whatsapp-contacts {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .facility-card img,
    .product-card img {
        height: 220px;
    }

    .contact-form {
        padding: 25px;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .whatsapp-float {
        bottom: 90px;
        right: 15px;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .scroll-buttons-container {
        bottom: 20px;
        right: 15px;
    }

    .scroll-whatsapp {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .scroll-top {
        width: 48px;
        height: 48px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 50px 0;
    }
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--rainbow-gradient);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    font-weight: 600;
    font-size: 1rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

/* ========================================
   RAINBOW SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--rainbow-gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--rainbow-purple), var(--rainbow-pink));
}

/* Rainbow Text Selection */
::selection {
    background: var(--rainbow-gradient);
    color: white;
}

::-moz-selection {
    background: var(--rainbow-purple);
    color: white;
}
