* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
 background: linear-gradient(135deg, #f8f0f8 0%, #fce4ec 50%, #f3e5f5 100%);
}

/* ── NAVBAR ── */
nav {
    background:repeating-linear-gradient(145deg,#b4d45c,#fdb0bc,#c0ffc3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    height: 54px;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #010000;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    padding: 8px 14px;
    font-size: 20px;
    border-radius: 6px;
}

.nav-links a:hover {
    background: #333;
    color: #fff;
}

.nav-links a.active {
    background: #e91e8c;
    color: #fff;
}

/* ── HEADING ── */
.heading-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a003a 50%, #1a1a1a 100%);
    padding: 20px 40px;   /* ← padding adjusts automatically */
    position: relative;
    overflow: hidden;
    min-height: 180px;    /* ← enough space for big logo */
}

/* shiny animation line */
.heading-section::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(233,30,140,0.15), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0%   { left: -100%; }
    100% { left: 150%; }
}

.heading-logo {
    width: 160px;        /* ← bigger */
    height: 160px;       /* ← bigger */
    object-fit: contain;
    border-radius: 50%;
    border: 4px solid #e91e8c;
    padding: 6px;
    background: #fff;
}

.heading {
    font-size: 42px;
    color: #fff;
    font-family: Georgia, serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(233,30,140,0.6);
    margin: 0;
}

.heading span {
    color: #e91e8c;
}

/* ── CAROUSEL ── */
.carousel {
    position: relative;
    width: 100%;
    height: 650px;        /* ← reduce height */
    overflow: hidden;
}

.slides {
    display: flex;
    width: 600%;
    height: 100%;
    animation: autoSlide 18s infinite;
}

.slide {
    width: 16.666%;       /* ← 100% ÷ 6 slides */
    height: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    background:repeating-linear-gradient(145deg,#89b8e6,#fdb0bc,#c0ffc3);
    display: block;
}
/* ── AUTO SLIDE ANIMATION ── */
@keyframes autoSlide {
    0%         { transform: translateX(0%); }
    12%        { transform: translateX(0%); }

    16.666%    { transform: translateX(-16.666%); }
    28%        { transform: translateX(-16.666%); }

    33.333%    { transform: translateX(-33.333%); }
    45%        { transform: translateX(-33.333%); }

    50%        { transform: translateX(-50%); }
    62%        { transform: translateX(-50%); }

    66.666%    { transform: translateX(-66.666%); }
    78%        { transform: translateX(-66.666%); }

    83.333%    { transform: translateX(-83.333%); }
    95%        { transform: translateX(-83.333%); }

    100%       { transform: translateX(0%); }
}

/* ── DOTS ── */
.dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    display: inline-block;
}

.dot:nth-child(1) { animation: dot1 18s infinite; }
.dot:nth-child(2) { animation: dot2 18s infinite; }
.dot:nth-child(3) { animation: dot3 18s infinite; }
.dot:nth-child(4) { animation: dot4 18s infinite; }
.dot:nth-child(5) { animation: dot5 18s infinite; }
.dot:nth-child(6) { animation: dot6 18s infinite; }  /* ← ADD THIS */

@keyframes dot1 {
    0%, 12%, 95%, 100% { background: #fff; }
    16.666%, 94%       { background: rgba(255,255,255,0.4); }
}
@keyframes dot2 {
    0%, 15%            { background: rgba(255,255,255,0.4); }
    16.666%, 28%       { background: #fff; }
    33.333%, 100%      { background: rgba(255,255,255,0.4); }
}
@keyframes dot3 {
    0%, 32%            { background: rgba(255,255,255,0.4); }
    33.333%, 45%       { background: #fff; }
    50%, 100%          { background: rgba(255,255,255,0.4); }
}
@keyframes dot4 {
    0%, 49%            { background: rgba(255,255,255,0.4); }
    50%, 62%           { background: #fff; }
    66.666%, 100%      { background: rgba(255,255,255,0.4); }
}
@keyframes dot5 {
    0%, 65%            { background: rgba(255,255,255,0.4); }
    66.666%, 78%       { background: #fff; }
    83.333%, 100%      { background: rgba(255,255,255,0.4); }
}
@keyframes dot6 {
    0%, 82%            { background: rgba(255,255,255,0.4); }
    83.333%, 95%       { background: #fff; }
    100%               { background: rgba(255,255,255,0.4); }
}
/* ── CATEGORY SECTION ── */
.section-title {
    text-align: center;
    font-size: 40px;         /* ← bigger title */
    padding: 50px 0 24px 0;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 1px;
}

.categories {
    display: flex;
    justify-content: center;
    gap: 30px;               /* ← more gap */
    padding: 30px 60px 70px 60px;
    flex-wrap: wrap;
}
.category-box {
    text-decoration: none;
    width: 300px;            /* ← wider box */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    background: #fff;
}

.category-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.category-box img {
    width: 100%;
    height: 380px;
    object-fit: cover;       /* ← fills box completely, no white */
    object-position: top;    /* ← shows top of image (face/head) */
    display: block;
}

.category-label {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.category-box:hover .category-label {
    background: #e91e8c;
}



/* ── PRODUCTS GRID ── */
.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f0f8 0%, #fce4ec 50%, #f3e5f5 100%);
    min-height: 100vh;
}

.product-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}
.product-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(233,30,140,0.2);
}

.product-box img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    object-position: center;
    background: #f9f9f9;
    display: block;
}

.product-label {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.product-box:hover .product-label {
    background: #e91e8c;
}

.product-box a {
    display: block;
    cursor: pointer;
}

.product-box a img {
    transition: opacity 0.2s;
}

.product-box a:hover img {
    opacity: 0.85;
}

/* ── CONTACT PAGE ── */

.contact-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 80px;
    flex-wrap: wrap;
    background:linear-gradient(135deg, #f3e5f5, #e1bee7, #fce4ec)
}

.contact-box {
    width: 380px;                
    padding: 50px 40px;          /* ← more padding = taller box */
    border-radius: 20px;
    background: #fffffff3;   /* ← dark glass effect */
    box-shadow: 0 8px 32px rgba(211, 67, 146, 0.25);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1.5px solid rgba(54, 50, 52, 0.4);
    backdrop-filter: blur(10px);
}

.contact-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(233,30,140,0.4);
    border-color: #e91e8c;
}

.contact-box h2 {
    margin-bottom: 20px;
    color: #e91e8c;
    font-size: 26px;             /* ← bigger heading */
    letter-spacing: 1px;
}

.contact-box p {
    font-size: 17px;             /* ← bigger text */
    color: #010101;                 /* ← white text on dark bg */
    line-height: 2;
}

.contact-box a {
    text-decoration: none;
    color: #6e2424;
    font-weight: bold;
}

.contact-box a:hover {
    color: #e91e8c;
}

/* MAP */
.map {
    padding: 40px 80px 70px 80px;
    background: white
}
.map iframe {
    width: 100%;
    height: 520px;             /* ← taller map */
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(224, 224, 233, 0.3);
    border: 2px solid rgba(220, 177, 201, 0.921);
}
/* Instagram Icon */
/* ── INSTAGRAM ICON STYLE ── */
.insta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    margin-top: 10px;
}

.insta-box i {
    font-size: 36px;
    color: #E1306C;
    margin-bottom: 8px;
}

.insta-box span {
    font-size: 16px;
    color: #0a090a;               /* ← white on dark background */
    font-weight: 600;
}

.insta-box:hover i {
    color: #c2185b;
}


/* Facebook Icon */
/* ── FACEBOOK ICON STYLE ── */
.facebook-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    margin-top: 10px;
}

.facebook-box i {
    font-size: 36px;
    color: #1eb8ff;
    margin-bottom: 8px;
}

.facebook-box span {
    font-size: 16px;
    color: #0a090a;               /* ← white on dark background */
    font-weight: 600;
}

.facebook-box:hover i {
    color: #d621a9;
}
/* ── CONTACT PAGE TITLE ── */
.contact-page-title {
    text-align: center;
    font-size: 40px;
    padding: 50px 0 24px 0;
    color: #fff;               /* ← white title */
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a003a 50%, #1a1a1a 100%);
}




/* ── RESPONSIVE — TABLET (max 768px) ── */
@media (max-width: 768px) {

    /* NAVBAR */
    nav {
        flex-direction: column;
        height: auto;
        padding: 12px 16px;
        gap: 10px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }

    .nav-links a {
        font-size: 12px;
        padding: 6px 10px;
    }

    /* HEADING */
    .heading-section {
        flex-direction: column;
        padding: 24px 20px;
        gap: 16px;
        text-align: center;
    }

    .heading {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .heading-logo {
        width: 100px;
        height: 100px;
    }

    /* CAROUSEL */
    .carousel {
        height: 300px;
    }

    /* CATEGORY BOXES */
    .categories {
        gap: 16px;
        padding: 20px;
    }

    .category-box {
        width: 160px;
    }

    .category-box img {
        height: 200px;
    }

    /* PRODUCTS GRID */
    .products {
        grid-template-columns: repeat(2, 1fr);  /* ← 2 columns on tablet */
        gap: 12px;
        padding: 20px;
    }

    .product-box img {
        height: 280px;
    }

    /* CONTACT */
    .contact-container {
        padding: 30px 20px;
        gap: 20px;
    }

    .contact-box {
        width: 100%;
        padding: 30px 20px;
    }

    /* MAP */
    .map {
        padding: 20px;
    }

    .map iframe {
        height: 300px;
    }

    /* SECTION TITLE */
    .section-title {
        font-size: 28px;
        padding: 30px 0 16px 0;
    }
}

/* ── FOOTER ── */
.footer {
    background: #f4afef;
    color: #fff;
    padding: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    padding: 40px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.f-col h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.addr-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.addr-row i {
    color: #390fd1;
    font-size: 20px;
    margin-top: 3px;
    min-width: 16px;
}

.addr-row span {
    font-size: 18px;
    color: #000000;
    line-height: 1.7;
}

.f-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.f-col ul li {
    margin-bottom: 10px;
}

.f-col ul li a {
    font-size: 18px;
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.f-col ul li a i {
    font-size: 10px;
    color: #e91e8c;
}

.f-col ul li a:hover {
    color: #e91e8c;
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.sicon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    border: 1px solid rgba(157, 81, 169, 0.2);
    transition: transform 0.2s;
}

.sicon:hover {
    transform: scale(1.1);
}

.sicon:nth-child(1) {
    background: #c13584;
    color: #4e65f8;
}

.sicon:nth-child(2) {
    background: #1877F2;
    color: #fff;
}

.sicon:nth-child(3) {
    background: #25D366;
    color: #fff;
}

.map-box {
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    margin-top: 4px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.footer-bottom {
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    background: #f6d7d7;
}

.footer-bottom p {
    font-size: 18px;
    color: #000000;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        gap: 24px;
    }
    .footer-bottom {
        padding: 14px 20px;
        flex-direction: column;
        text-align: center;
    }
}

/* ── RESPONSIVE — MOBILE (max 480px) ── */
@media (max-width: 480px) {

    /* NAVBAR */
    .logo {
        font-size: 16px;
    }

    .nav-links a {
        font-size: 11px;
        padding: 5px 8px;
    }

    /* HEADING */
    .heading {
        font-size: 22px;
    }

    .heading-logo {
        width: 80px;
        height: 80px;
    }

    /* CAROUSEL */
    .carousel {
        height: 220px;
    }

    /* CATEGORY BOXES */
    .categories {
        gap: 12px;
        padding: 16px;
    }

    .category-box {
        width: 140px;
    }

    .category-box img {
        height: 160px;
    }

    /* PRODUCTS GRID */
    .products {
        grid-template-columns: repeat(2, 1fr);  /* ← 2 columns on mobile */
        gap: 10px;
        padding: 14px;
    }

    .product-box img {
        height: 220px;
    }

    .product-label {
        font-size: 12px;
        padding: 10px;
    }

    /* CONTACT */
    .contact-container {
        padding: 20px 14px;
    }

    .contact-box {
        width: 100%;
        padding: 24px 16px;
    }

    .contact-box h2 {
        font-size: 18px;
    }

    .contact-box p {
        font-size: 14px;
    }

    /* MAP */
    .map {
        padding: 14px;
    }

    .map iframe {
        height: 250px;
    }

    /* SECTION TITLE */
    .section-title {
        font-size: 22px;
        padding: 24px 0 12px 0;
    }
}