/* =========================
TOP INFO BAR START
========================= */

.top-info-bar {
    width: 100%;
    background: #050505;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 999;
    overflow: hidden;
}

/* GOLD GLOW EFFECT */
.top-info-bar::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(156, 255, 46, 0.08),
        transparent
    );
    animation: glowMove 6s linear infinite;
}

@keyframes glowMove {
    0% {
        transform: translateX(-300px);
    }

    100% {
        transform: translateX(1500px);
    }
}

/* DESKTOP */
.topbar-desktop {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 35px;
}

/* LEFT */
.topbar-left .topbar-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* CENTER */
.offer-badge {
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    color: #000;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(156, 255, 46, 0.25);
}

/* RIGHT */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.topbar-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.4s ease;
    font-weight: 500;
}

.topbar-link i {
    color: #9cff2e;
    margin-right: 7px;
}

.topbar-link:hover {
    color: #9cff2e;
    transform: translateY(-2px);
}

/* WHATSAPP BUTTON */
.whatsapp-btn-top {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-top i {
    margin-right: 7px;
}

.whatsapp-btn-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* MOBILE VIEW */
.topbar-mobile {
    height: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
}

/* MOBILE LEFT */
.mobile-left span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* MOBILE RIGHT */
.mobile-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-right a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(156,255,46,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9cff2e;
    text-decoration: none;
    transition: 0.4s ease;
    font-size: 14px;
}

.mobile-right a:hover {
    background: #9cff2e;
    color: #000;
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 575px) {

    .mobile-left span {
        font-size: 11px;
    }

    .mobile-right {
        gap: 10px;
    }

    .mobile-right a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

/* =========================
TOP INFO BAR END
========================= */

/* =========================
PREMIUM NAVBAR START
========================= */

.premium-navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
}

/* NAVBAR */
.premium-navbar {
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    padding: 14px 0;
    transition: 0.4s ease;
}

/* SCROLL EFFECT */
.premium-navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

/* LOGO */
.premium-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

/* ICON CIRCLE */
.logo-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #9cff2e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(156, 255, 46, 0.3);
}

/* LOGO TEXT */
.logo-text h4 {
    color: #ffffff;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text span {
    color: #9cff2e;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* NAV LINKS */
.premium-nav-links {
    gap: 10px;
}

.premium-nav-links .nav-link {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px !important;
    position: relative;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.premium-nav-links .nav-link::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: #9cff2e;
    transition: 0.4s ease;
}

.premium-nav-links .nav-link:hover::after,
.premium-nav-links .nav-link.active::after {
    width: 45%;
}

.premium-nav-links .nav-link:hover,
.premium-nav-links .nav-link.active {
    color: #9cff2e;
}

/* RIGHT BUTTONS */
.desktop-nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* WHATSAPP BUTTON */
.nav-whatsapp-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(156,255,46,0.2);
    color: #ffffff;
    padding: 11px 22px;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.4s ease;
    font-size: 14px;
    font-weight: 600;
}

.nav-whatsapp-btn i {
    color: #25d366;
    margin-right: 8px;
}

.nav-whatsapp-btn:hover {
    background: #25d366;
    color: #000;
    transform: translateY(-3px);
}

/* BOOK BUTTON */
.book-stitch-btn {
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    color: #000;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.4s ease;
    box-shadow: 0 0 25px rgba(156,255,46,0.3);
}

.book-stitch-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(156,255,46,0.5);
    color: #000;
}

/* MOBILE TOGGLER */
.premium-toggler {
    border: none;
    background: transparent;
    padding: 0;
    width: 40px;
    height: 40px;
    box-shadow: none !important;
}

/* TOGGLE LINES */
.premium-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin: 5px auto;
    transition: 0.4s ease;
}

/* MOBILE RIGHT */
.mobile-nav-right {
    align-items: center;
    gap: 12px;
}

/* MOBILE WHATSAPP */
.mobile-whatsapp {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 0 20px rgba(37,211,102,0.3);
}

/* MOBILE MENU */
@media (max-width: 991px) {

    .premium-navbar {
        padding: 12px 0;
    }

    .logo-circle {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .logo-text h4 {
        font-size: 20px;
    }

    .logo-text span {
        font-size: 10px;
        letter-spacing: 2px;
    }

    /* MOBILE COLLAPSE */
    .navbar-collapse {
        background: rgba(0,0,0,0.96);
        margin-top: 20px;
        border-radius: 20px;
        padding: 25px;
        border: 1px solid rgba(156,255,46,0.12);
    }

    /* MOBILE LINKS */
    .premium-nav-links {
        gap: 8px;
    }

    .premium-nav-links .nav-link {
        padding: 14px 16px !important;
        border-radius: 14px;
        background: rgba(255,255,255,0.03);
        font-size: 15px;
    }

    .premium-nav-links .nav-link:hover {
        background: rgba(156,255,46,0.12);
    }

    /* REMOVE LINE EFFECT */
    .premium-nav-links .nav-link::after {
        display: none;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 575px) {

    .premium-navbar {
        padding: 10px 0;
    }

    .logo-text h4 {
        font-size: 18px;
    }

    .logo-text span {
        font-size: 9px;
    }

    .mobile-whatsapp {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .premium-toggler {
        width: 36px;
        height: 36px;
    }

    .premium-toggler span {
        width: 22px;
    }

}

/* =========================
PREMIUM NAVBAR END
========================= */

/* =========================
HERO SECTION START
========================= */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #050505;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* BACKGROUND IMAGE */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(0,0,0,0.92),
            rgba(0,0,0,0.65)
        ),
        url("images/luxury-bg.jpg");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at center,
            rgba(156,255,46,0.12),
            transparent 60%
        );
    z-index: 2;
}

/* GLOW EFFECT */
.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(156,255,46,0.15);
    filter: blur(120px);
    border-radius: 50%;
    right: -100px;
    top: 100px;
    z-index: 2;
    animation: glowMove 5s ease-in-out infinite alternate;
}

@keyframes glowMove {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(30px);
    }
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 5;
}

/* SMALL TAG */
.hero-tag {
    display: inline-block;
    background: rgba(156,255,46,0.12);
    border: 1px solid rgba(156,255,46,0.3);
    padding: 10px 18px;
    border-radius: 30px;
    color: #9cff2e;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

/* HEADING */
.hero-heading {
    color: #ffffff;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
}

/* TYPEWRITER */
.typewriter-text {
    color: #9cff2e;
    border-right: 3px solid #9cff2e;
    padding-right: 5px;
}

/* DESCRIPTION */
.hero-description {
    color: rgba(255,255,255,0.75);
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 35px;
}

/* FEATURES */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 40px;
}

.feature-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 12px 20px;
    border-radius: 40px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.feature-item i {
    color: #9cff2e;
    margin-right: 8px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.hero-btn-primary {
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    color: #000;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s ease;
    box-shadow: 0 0 25px rgba(156,255,46,0.25);
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
    color: #000;
}

/* SECONDARY BUTTON */
.hero-btn-secondary {
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.4s ease;
    backdrop-filter: blur(10px);
}

.hero-btn-secondary i {
    color: #25d366;
    margin-right: 8px;
}

.hero-btn-secondary:hover {
    background: #25d366;
    color: #000;
}

/* IMAGE WRAPPER */
.hero-image-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
}

/* IMAGE BOX */
.hero-image-box {
    width: 500px;
    height: 650px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(156,255,46,0.15);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

/* IMAGE */
.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FLOATING CARDS */
.floating-card {
    position: absolute;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(156,255,46,0.18);
    border-radius: 20px;
    padding: 18px 24px;
    color: #ffffff;
    animation: floating 4s ease-in-out infinite;
}

.floating-card h4 {
    color: #9cff2e;
    font-size: 24px;
    margin-bottom: 5px;
}

.floating-card p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* CARD POSITIONS */
.card-one {
    top: 60px;
    left: -50px;
}

.card-two {
    bottom: 140px;
    right: -40px;
}

.card-three {
    bottom: 40px;
    left: -30px;
}

/* FLOAT ANIMATION */
@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* SCROLL DOWN */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down span {
    display: block;
    width: 28px;
    height: 48px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 30px;
    position: relative;
}

.scroll-down span::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 10px;
    background: #9cff2e;
    border-radius: 10px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {

    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 25px;
    }

}

/* =========================
MOBILE VIEW
========================= */

@media (max-width: 991px) {

    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-heading {
        font-size: 46px;
    }

    .hero-description {
        margin: auto auto 30px;
        font-size: 16px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 70px;
    }

    .hero-image-box {
        width: 100%;
        max-width: 420px;
        height: 520px;
    }

    .card-one {
        top: 20px;
        left: 0;
    }

    .card-two {
        bottom: 120px;
        right: 0;
    }

    .card-three {
        bottom: 20px;
        left: 10px;
    }

}

/* EXTRA SMALL DEVICES */

@media (max-width: 575px) {

    .hero-heading {
        font-size: 34px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-tag {
        font-size: 12px;
        padding: 8px 16px;
    }

    .feature-item {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-image-box {
        height: 450px;
        border-radius: 24px;
    }

    .floating-card {
        padding: 14px 18px;
    }

    .floating-card h4 {
        font-size: 18px;
    }

    .floating-card p {
        font-size: 12px;
    }

    .card-one {
        top: -10px;
        left: 10px;
    }

    .card-two {
        bottom: 100px;
        right: 10px;
    }

    .card-three {
        bottom: -10px;
        left: 20px;
    }

}

/* =========================
HERO SECTION END
========================= */


/* =========================
TRUST BAR / FEATURE STRIP START
========================= */

.trust-bar-section {
    position: relative;
    padding: 40px 0;
    background: #070707;
    overflow: hidden;
}

/* BACKGROUND GLOW */
.trust-bar-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(156,255,46,0.08);
    filter: blur(120px);
    border-radius: 50%;
    top: -200px;
    left: -150px;
}

/* DESKTOP LAYOUT */
.trust-bar-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

/* CARD */
.trust-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.12);
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

/* CARD HOVER EFFECT */
.trust-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(156,255,46,0.08),
        transparent
    );
    opacity: 0;
    transition: 0.4s ease;
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-card:hover {
    transform: translateY(-8px);
    border-color: rgba(156,255,46,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* ICON */
.trust-icon {
    min-width: 68px;
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 28px;
    box-shadow: 0 0 25px rgba(156,255,46,0.2);
}

/* CONTENT */
.trust-content h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.trust-content p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* =========================
MOBILE VIEW
========================= */

.mobile-trust-card {
    height: 100%;
    text-align: center;
    padding: 25px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.12);
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* MOBILE HOVER */
.mobile-trust-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(156,255,46,0.08),
        transparent
    );
    opacity: 0;
    transition: 0.4s ease;
}

.mobile-trust-card:hover::before {
    opacity: 1;
}

.mobile-trust-card:hover {
    transform: translateY(-5px);
    border-color: rgba(156,255,46,0.3);
}

/* MOBILE ICON */
.mobile-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    margin: auto auto 18px;
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    box-shadow: 0 0 22px rgba(156,255,46,0.25);
}

/* MOBILE TEXT */
.mobile-trust-card h4 {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    margin: 0;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .trust-bar-section {
        padding: 60px 0;
    }

}

@media (max-width: 575px) {

    .trust-bar-section {
        padding: 50px 0;
    }

    .mobile-trust-card {
        padding: 22px 12px;
        border-radius: 18px;
    }

    .mobile-icon {
        width: 54px;
        height: 54px;
        font-size: 20px;
        border-radius: 16px;
    }

    .mobile-trust-card h4 {
        font-size: 13px;
    }

}

/* =========================
TRUST BAR / FEATURE STRIP END
========================= */


/* =========================
ABOUT MERAJ SECTION START
========================= */

.about-meraj-section {
    position: relative;
    padding: 120px 0;
    background: #050505;
    overflow: hidden;
}

/* GLOW EFFECT */
.about-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(156,255,46,0.08);
    filter: blur(120px);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

/* IMAGE WRAPPER */
.about-image-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
}

/* MAIN IMAGE */
.about-main-image {
    width: 100%;
    max-width: 520px;
    height: 650px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(156,255,46,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* EXPERIENCE CARD */
.experience-card {
    position: absolute;
    top: 40px;
    left: -30px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(156,255,46,0.2);
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    animation: floatingCard 4s ease-in-out infinite;
}

.experience-card h2 {
    color: #9cff2e;
    font-size: 52px;
    margin-bottom: 5px;
    font-weight: 800;
}

.experience-card p {
    color: #ffffff;
    margin: 0;
    font-size: 15px;
}

/* SMALL FLOAT CARD */
.small-float-card {
    position: absolute;
    bottom: 50px;
    right: -20px;
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    color: #000;
    padding: 18px 26px;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    animation: floatingCard 5s ease-in-out infinite;
}

.small-float-card i {
    margin-right: 10px;
}

/* FLOAT ANIMATION */
@keyframes floatingCard {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}

/* CONTENT */
.about-content {
    position: relative;
    z-index: 5;
    padding-left: 40px;
}

/* TAG */
.about-tag {
    display: inline-block;
    background: rgba(156,255,46,0.1);
    border: 1px solid rgba(156,255,46,0.2);
    color: #9cff2e;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* HEADING */
.about-heading {
    color: #ffffff;
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 28px;
    font-weight: 800;
}

.about-heading span {
    color: #9cff2e;
}

/* DESCRIPTION */
.about-description {
    color: rgba(255,255,255,0.72);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* FEATURES */
.about-feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* ICON */
.feature-icon {
    min-width: 55px;
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 22px;
}

/* TEXT */
.feature-text {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
}

/* COUNTERS */
.about-counter-wrapper {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* COUNTER BOX */
.counter-box {
    min-width: 160px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 25px;
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
}

.counter-box:hover {
    transform: translateY(-8px);
    border-color: rgba(156,255,46,0.3);
}

/* COUNTER */
.counter-box h3 {
    color: #9cff2e;
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 800;
}

.counter-box p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 14px;
}

/* BUTTON */
.about-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.4s ease;
    box-shadow: 0 0 25px rgba(37,211,102,0.25);
}

.about-main-btn:hover {
    transform: translateY(-5px);
    color: #ffffff;
    box-shadow: 0 0 35px rgba(37,211,102,0.4);
}

/* =========================
TABLET VIEW
========================= */

@media (max-width: 991px) {

    .about-meraj-section {
        padding: 90px 0;
    }

    .about-content {
        padding-left: 0;
        margin-top: 70px;
        text-align: center;
    }

    .about-heading {
        font-size: 42px;
    }

    .about-description {
        font-size: 16px;
    }

    .about-feature-item {
        justify-content: center;
    }

    .about-counter-wrapper {
        justify-content: center;
    }

    .about-btn-wrapper {
        text-align: center;
    }

    .experience-card {
        left: 0;
    }

    .small-float-card {
        right: 0;
    }

}

/* =========================
MOBILE VIEW
========================= */

@media (max-width: 575px) {

    .about-meraj-section {
        padding: 70px 0;
    }

    .about-main-image {
        height: 450px;
        border-radius: 24px;
    }

    .about-heading {
        font-size: 32px;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-tag {
        font-size: 12px;
        padding: 8px 16px;
    }

    .experience-card {
        padding: 20px;
        top: 15px;
        left: 10px;
        border-radius: 18px;
    }

    .experience-card h2 {
        font-size: 38px;
    }

    .experience-card p {
        font-size: 12px;
    }

    .small-float-card {
        bottom: 15px;
        right: 10px;
        padding: 14px 18px;
        font-size: 13px;
        border-radius: 16px;
    }

    .feature-icon {
        min-width: 48px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .feature-text {
        font-size: 14px;
        text-align: left;
    }

    .counter-box {
        width: 100%;
        min-width: 100%;
        padding: 22px;
    }

    .counter-box h3 {
        font-size: 34px;
    }

    .about-main-btn {
        width: 100%;
        justify-content: center;
        font-size: 15px;
        padding: 15px 20px;
    }

}

/* =========================
ABOUT MERAJ SECTION END
========================= */

/* =========================
SERVICES SECTION START
========================= */

.services-section {
    position: relative;
    padding: 120px 0;
    background: #070707;
    overflow: hidden;
}

/* BACKGROUND GLOW */
.services-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(156,255,46,0.08);
    filter: blur(140px);
    border-radius: 50%;
    left: -200px;
    top: -200px;
}

/* SECTION HEADER */
.services-header {
    position: relative;
    z-index: 5;
    margin-bottom: 70px;
}

/* TAG */
.services-tag {
    display: inline-block;
    background: rgba(156,255,46,0.1);
    border: 1px solid rgba(156,255,46,0.2);
    color: #9cff2e;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* HEADING */
.services-heading {
    color: #ffffff;
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
}

.services-heading span {
    color: #9cff2e;
}

/* DESCRIPTION */
.services-description {
    max-width: 700px;
    margin: auto;
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    line-height: 1.9;
}

/* CARD */
.service-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    overflow: hidden;
    transition: 0.5s ease;
    backdrop-filter: blur(12px);
    height: 100%;
}

/* CARD HOVER */
.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(156,255,46,0.25);
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

/* IMAGE */
.service-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

/* CONTENT */
.service-content {
    padding: 30px;
    position: relative;
}

/* ICON */
.service-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    color: #000;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 25px rgba(156,255,46,0.2);
}

/* TITLE */
.service-content h3 {
    color: #ffffff;
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 700;
}

/* TEXT */
.service-content p {
    color: rgba(255,255,255,0.68);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* BUTTON */
.service-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(156,255,46,0.15);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.4s ease;
}

.service-btn:hover {
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    color: #000;
}

/* =========================
MOBILE VIEW
========================= */

.mobile-service-card {
    display: flex;
    gap: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    padding: 14px;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
}

.mobile-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(156,255,46,0.25);
}

/* MOBILE IMAGE */
.mobile-service-image {
    min-width: 110px;
    width: 110px;
    height: 110px;
    border-radius: 18px;
    overflow: hidden;
}

.mobile-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MOBILE CONTENT */
.mobile-service-content {
    display: flex;
    gap: 14px;
    align-items: center;
}

/* MOBILE ICON */
.mobile-service-icon {
    min-width: 48px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
}

/* MOBILE TEXT */
.mobile-text h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.mobile-text p {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .services-section {
        padding: 90px 0;
    }

    .services-heading {
        font-size: 42px;
    }

    .services-description {
        font-size: 16px;
    }

}

@media (max-width: 575px) {

    .services-section {
        padding: 70px 0;
    }

    .services-heading {
        font-size: 32px;
    }

    .services-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .services-tag {
        font-size: 12px;
        padding: 8px 16px;
    }

    .mobile-service-card {
        flex-direction: column;
        padding: 12px;
    }

    .mobile-service-image {
        width: 100%;
        height: 220px;
    }

    .mobile-service-content {
        align-items: flex-start;
    }

    .mobile-text h4 {
        font-size: 16px;
    }

    .mobile-text p {
        font-size: 12px;
    }

}

/* =========================
SERVICES SECTION END
========================= */

/* =========================
FABRIC COLLECTION SHOWCASE START
========================= */

.fabric-showcase-section {
    position: relative;
    padding: 120px 0;
    background: #050505;
    overflow: hidden;
}

/* GLOW EFFECT */
.fabric-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(156,255,46,0.08);
    filter: blur(140px);
    border-radius: 50%;
    right: -250px;
    top: -200px;
}

/* HEADER */
.fabric-header {
    position: relative;
    z-index: 5;
    margin-bottom: 70px;
}

/* TAG */
.fabric-tag {
    display: inline-block;
    background: rgba(156,255,46,0.1);
    border: 1px solid rgba(156,255,46,0.2);
    color: #9cff2e;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* HEADING */
.fabric-heading {
    color: #ffffff;
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
}

.fabric-heading span {
    color: #9cff2e;
}

/* DESCRIPTION */
.fabric-description {
    max-width: 700px;
    margin: auto;
    color: rgba(255,255,255,0.68);
    font-size: 17px;
    line-height: 1.9;
}

/* FABRIC CARD */
.fabric-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    height: 320px;
    transition: 0.5s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

/* LARGE CARD */
.large-card {
    height: 664px;
}

/* IMAGE */
.fabric-image {
    width: 100%;
    height: 100%;
}

.fabric-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* OVERLAY */
.fabric-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95),
        rgba(0,0,0,0.2)
    );
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* BADGE */
.fabric-badge {
    display: inline-block;
    width: fit-content;
    background: rgba(156,255,46,0.12);
    border: 1px solid rgba(156,255,46,0.2);
    color: #9cff2e;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 18px;
}

/* TITLE */
.fabric-overlay h3 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* TEXT */
.fabric-overlay p {
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 22px;
}

/* BUTTON */
.fabric-btn {
    width: fit-content;
    padding: 13px 24px;
    border-radius: 40px;
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.4s ease;
}

.fabric-btn:hover {
    transform: translateY(-4px);
    color: #000;
}

/* HOVER */
.fabric-card:hover img {
    transform: scale(1.1);
}

.fabric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* =========================
MOBILE VIEW
========================= */

.fabric-mobile-slider {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* MOBILE CARD */
.mobile-fabric-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.4s ease;
    backdrop-filter: blur(12px);
}

/* MOBILE HOVER */
.mobile-fabric-card:hover {
    transform: translateY(-6px);
    border-color: rgba(156,255,46,0.25);
}

/* IMAGE */
.mobile-fabric-image {
    width: 100%;
    height: 240px;
}

.mobile-fabric-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.mobile-fabric-content {
    padding: 24px;
}

/* BADGE */
.mobile-badge {
    display: inline-block;
    background: rgba(156,255,46,0.12);
    border: 1px solid rgba(156,255,46,0.2);
    color: #9cff2e;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 11px;
    margin-bottom: 16px;
}

/* TITLE */
.mobile-fabric-content h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* TEXT */
.mobile-fabric-content p {
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .fabric-showcase-section {
        padding: 90px 0;
    }

    .fabric-heading {
        font-size: 42px;
    }

    .fabric-description {
        font-size: 16px;
    }

}

@media (max-width: 575px) {

    .fabric-showcase-section {
        padding: 70px 0;
    }

    .fabric-heading {
        font-size: 32px;
    }

    .fabric-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .fabric-tag {
        font-size: 12px;
        padding: 8px 16px;
    }

    .mobile-fabric-image {
        height: 220px;
    }

    .mobile-fabric-content {
        padding: 20px;
    }

    .mobile-fabric-content h3 {
        font-size: 20px;
    }

    .mobile-fabric-content p {
        font-size: 13px;
    }

}

/* =========================
FABRIC COLLECTION SHOWCASE END
========================= */

/* =========================
LUXURY COLLECTION SECTION START
========================= */

.luxury-collection-section {
    position: relative;
    padding: 120px 0;
    background: #070707;
    overflow: hidden;
}

/* GLOW EFFECT */
.collection-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(156,255,46,0.08);
    filter: blur(140px);
    border-radius: 50%;
    left: -250px;
    bottom: -250px;
}

/* HEADER */
.collection-header {
    position: relative;
    z-index: 5;
    margin-bottom: 70px;
}

/* TAG */
.collection-tag {
    display: inline-block;
    background: rgba(156,255,46,0.1);
    border: 1px solid rgba(156,255,46,0.2);
    color: #9cff2e;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* HEADING */
.collection-heading {
    color: #ffffff;
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
}

.collection-heading span {
    color: #9cff2e;
}

/* DESCRIPTION */
.collection-description {
    max-width: 700px;
    margin: auto;
    color: rgba(255,255,255,0.68);
    font-size: 17px;
    line-height: 1.9;
}

/* PRODUCT CARD */
.product-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: 0.5s ease;
    height: 100%;
}

/* HOVER */
.product-card:hover {
    transform: translateY(-12px);
    border-color: rgba(156,255,46,0.25);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* IMAGE */
.product-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* HOVER IMAGE */
.product-card:hover img {
    transform: scale(1.1);
}

/* HOVER ACTION */
.product-hover-action {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.product-card:hover .product-hover-action {
    opacity: 1;
}

/* VIEW BUTTON */
.view-btn {
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    color: #000;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s ease;
}

.view-btn:hover {
    transform: translateY(-4px);
    color: #000;
}

/* CONTENT */
.product-content {
    padding: 30px;
}

/* CATEGORY */
.product-category {
    display: inline-block;
    background: rgba(156,255,46,0.1);
    border: 1px solid rgba(156,255,46,0.2);
    color: #9cff2e;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 11px;
    margin-bottom: 18px;
}

/* TITLE */
.product-title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* TEXT */
.product-text {
    color: rgba(255,255,255,0.68);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
}

/* PRICE */
.product-price {
    color: #d4af37;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* ORDER BUTTON */
.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    padding: 15px 22px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.4s ease;
}

.order-btn:hover {
    transform: translateY(-4px);
    color: #ffffff;
}

/* =========================
MOBILE VIEW
========================= */

.mobile-collection {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* MOBILE CARD */
.mobile-product-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 26px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
}

/* HOVER */
.mobile-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(156,255,46,0.25);
}

/* IMAGE */
.mobile-product-image {
    width: 100%;
    height: 250px;
}

.mobile-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.mobile-product-content {
    padding: 24px;
}

/* CATEGORY */
.mobile-product-category {
    display: inline-block;
    background: rgba(156,255,46,0.1);
    border: 1px solid rgba(156,255,46,0.2);
    color: #9cff2e;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 11px;
    margin-bottom: 16px;
}

/* TITLE */
.mobile-product-content h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* TEXT */
.mobile-product-content p {
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* PRICE */
.mobile-price {
    color: #d4af37;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* BUTTON */
.mobile-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.4s ease;
}

.mobile-order-btn:hover {
    transform: translateY(-4px);
    color: #ffffff;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .luxury-collection-section {
        padding: 90px 0;
    }

    .collection-heading {
        font-size: 42px;
    }

    .collection-description {
        font-size: 16px;
    }

}

@media (max-width: 575px) {

    .luxury-collection-section {
        padding: 70px 0;
    }

    .collection-heading {
        font-size: 32px;
    }

    .collection-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .collection-tag {
        font-size: 12px;
        padding: 8px 16px;
    }

    .mobile-product-image {
        height: 220px;
    }

    .mobile-product-content {
        padding: 20px;
    }

    .mobile-product-content h3 {
        font-size: 20px;
    }

    .mobile-product-content p {
        font-size: 13px;
    }

    .mobile-price {
        font-size: 20px;
    }

}

/* =========================
LUXURY COLLECTION SECTION END
========================= */


/* =========================
PRODUCT PAGE START
========================= */

/* HERO */
.product-page-hero {
    position: relative;
    padding: 180px 0 120px;
    background: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?q=80&w=1600&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.92),
        rgba(0,0,0,0.55)
    );
}

/* CONTENT */
.product-page-content {
    position: relative;
    z-index: 5;
    max-width: 700px;
}

.product-page-tag {
    display: inline-block;
    background: rgba(156,255,46,0.1);
    border: 1px solid rgba(156,255,46,0.2);
    color: #9cff2e;
    padding: 10px 18px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 14px;
}

.product-page-content h1 {
    color: #ffffff;
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.product-page-content h1 span {
    color: #9cff2e;
}

.product-page-content p {
    color: rgba(255,255,255,0.72);
    font-size: 18px;
    line-height: 1.9;
}

/* FILTER */
.product-filter-section {
    background: #050505;
    padding: 35px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.filter-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    padding: 13px 24px;
    border-radius: 40px;
    transition: 0.4s ease;
    font-size: 14px;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    color: #000;
}

/* GRID */
.product-grid-section {
    background: #050505;
    padding: 100px 0;
}

/* CARD */
.luxury-product-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    overflow: hidden;
    transition: 0.5s ease;
    height: 100%;
}

.luxury-product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(156,255,46,0.25);
}

/* IMAGE */
.luxury-product-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.luxury-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.luxury-product-card:hover img {
    transform: scale(1.08);
}

/* BADGE */
.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    color: #000;
    padding: 9px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
}

/* CONTENT */
.luxury-product-content {
    padding: 30px;
}

/* CATEGORY */
.luxury-category {
    display: inline-block;
    background: rgba(156,255,46,0.1);
    border: 1px solid rgba(156,255,46,0.2);
    color: #9cff2e;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 11px;
    margin-bottom: 18px;
}

/* TITLE */
.luxury-product-content h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 14px;
}

/* TEXT */
.luxury-product-content p {
    color: rgba(255,255,255,0.68);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 24px;
}

/* PRICE */
.luxury-price {
    color: #d4af37;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
}

.luxury-price span {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    font-weight: 400;
}

/* FEATURES */
.luxury-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.luxury-features span {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 30px;
    font-size: 12px;
}

.luxury-features i {
    color: #9cff2e;
    margin-right: 6px;
}

/* BUTTON */
.luxury-order-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s ease;
}

.luxury-order-btn:hover {
    transform: translateY(-4px);
    color: #ffffff;
}

/* =========================
MOBILE VIEW
========================= */

@media (max-width: 991px) {

    .product-page-content h1 {
        font-size: 48px;
    }

    .product-grid-section {
        padding: 80px 0;
    }

}

@media (max-width: 575px) {

    .product-page-hero {
        padding: 140px 0 90px;
    }

    .product-page-content h1 {
        font-size: 34px;
    }

    .product-page-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .filter-wrapper {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .filter-wrapper::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        white-space: nowrap;
        font-size: 12px;
        padding: 11px 18px;
    }

    .luxury-product-image {
        height: 250px;
    }

    .luxury-product-content {
        padding: 22px;
    }

    .luxury-product-content h3 {
        font-size: 22px;
    }

    .luxury-product-content p {
        font-size: 13px;
    }

    .luxury-price {
        font-size: 22px;
    }

    .luxury-order-btn {
        font-size: 14px;
        padding: 14px 18px;
    }

}

/* =========================
PRODUCT PAGE END
========================= */

/* =========================
WHY CHOOSE US SECTION START
========================= */

.why-choose-section {
    position: relative;
    padding: 120px 0;
    background: #070707;
    overflow: hidden;
}

/* GLOW */
.choose-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(156,255,46,0.08);
    filter: blur(140px);
    border-radius: 50%;
    top: -200px;
    left: -200px;
}

/* CONTENT */
.choose-content {
    position: relative;
    z-index: 5;
}

/* TAG */
.choose-tag {
    display: inline-block;
    background: rgba(156,255,46,0.1);
    border: 1px solid rgba(156,255,46,0.2);
    color: #9cff2e;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* HEADING */
.choose-heading {
    color: #ffffff;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.choose-heading span {
    color: #9cff2e;
}

/* DESCRIPTION */
.choose-description {
    color: rgba(255,255,255,0.68);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
}

/* FEATURE WRAPPER */
.choose-feature-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* FEATURE BOX */
.choose-feature-box {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
}

/* HOVER */
.choose-feature-box:hover {
    transform: translateY(-6px);
    border-color: rgba(156,255,46,0.25);
}

/* ICON */
.choose-icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 28px;
}

/* CONTENT */
.choose-feature-content h4 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.choose-feature-content p {
    color: rgba(255,255,255,0.68);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* =========================
RIGHT SIDE
========================= */

.choose-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 700px;
}

/* MAIN IMAGE */
.main-choose-image {
    width: 100%;
    height: 650px;
    border-radius: 34px;
    overflow: hidden;
}

.main-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SMALL IMAGE */
.small-choose-image {
    position: absolute;
    width: 260px;
    height: 300px;
    bottom: 30px;
    left: -40px;
    border-radius: 28px;
    overflow: hidden;
    border: 8px solid #070707;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.small-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* EXPERIENCE BOX */
.experience-box {
    position: absolute;
    top: 40px;
    right: -30px;
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    color: #000;
    padding: 30px;
    border-radius: 28px;
    width: 220px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.experience-box h3 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 10px;
}

.experience-box p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .why-choose-section {
        padding: 90px 0;
    }

    .choose-heading {
        font-size: 42px;
    }

    .choose-description {
        font-size: 16px;
    }

    .choose-image-wrapper {
        min-height: auto;
        margin-top: 30px;
    }

    .main-choose-image {
        height: 520px;
    }

    .small-choose-image {
        width: 220px;
        height: 250px;
        left: 0;
    }

    .experience-box {
        right: 0;
    }

}

@media (max-width: 575px) {

    .why-choose-section {
        padding: 70px 0;
    }

    .choose-tag {
        font-size: 12px;
        padding: 8px 16px;
    }

    .choose-heading {
        font-size: 32px;
    }

    .choose-description {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .choose-feature-box {
        flex-direction: column;
        padding: 22px;
    }

    .choose-icon {
        width: 60px;
        min-width: 60px;
        height: 60px;
        font-size: 24px;
        border-radius: 18px;
    }

    .choose-feature-content h4 {
        font-size: 20px;
    }

    .choose-feature-content p {
        font-size: 13px;
    }

    /* MOBILE IMAGE */
    .main-choose-image {
        height: 380px;
        border-radius: 24px;
    }

    .small-choose-image {
        width: 150px;
        height: 180px;
        bottom: -20px;
        left: 10px;
        border-width: 5px;
        border-radius: 18px;
    }

    .experience-box {
        width: 150px;
        padding: 18px;
        border-radius: 20px;
        top: 15px;
        right: 10px;
    }

    .experience-box h3 {
        font-size: 34px;
    }

    .experience-box p {
        font-size: 12px;
        line-height: 1.5;
    }

}

/* =========================
WHY CHOOSE US SECTION END
========================= */

/* =========================
PROCESS SECTION START
========================= */

.process-section {
    position: relative;
    padding: 120px 0;
    background: #050505;
    overflow: hidden;
}

/* GLOW */
.process-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(156,255,46,0.08);
    filter: blur(140px);
    border-radius: 50%;
    right: -200px;
    top: -200px;
}

/* HEADER */
.process-header {
    position: relative;
    z-index: 5;
    margin-bottom: 80px;
}

/* TAG */
.process-tag {
    display: inline-block;
    background: rgba(156,255,46,0.1);
    border: 1px solid rgba(156,255,46,0.2);
    color: #9cff2e;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* HEADING */
.process-heading {
    color: #ffffff;
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
}

.process-heading span {
    color: #9cff2e;
}

/* DESCRIPTION */
.process-description {
    max-width: 720px;
    margin: auto;
    color: rgba(255,255,255,0.68);
    font-size: 17px;
    line-height: 1.9;
}

/* =========================
DESKTOP TIMELINE
========================= */

.desktop-process {
    position: relative;
}

/* LINE */
.timeline-line {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 82%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(156,255,46,0.1),
        #9cff2e,
        rgba(156,255,46,0.1)
    );
}

/* CARD */
.process-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.5s ease;
    backdrop-filter: blur(12px);
    z-index: 5;
}

/* HOVER */
.process-card:hover {
    transform: translateY(-10px);
    border-color: rgba(156,255,46,0.25);
}

/* NUMBER */
.process-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    color: #000;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ICON */
.process-icon {
    width: 90px;
    height: 90px;
    margin: 20px auto 30px;
    border-radius: 28px;
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
}

/* TITLE */
.process-card h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* TEXT */
.process-card p {
    color: rgba(255,255,255,0.68);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* =========================
MOBILE TIMELINE
========================= */

.mobile-process {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ITEM */
.mobile-process-item {
    display: flex;
    gap: 18px;
}

/* LEFT */
.mobile-process-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* NUMBER */
.mobile-process-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    color: #000;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LINE */
.mobile-process-line {
    width: 2px;
    flex: 1;
    background: rgba(156,255,46,0.3);
    margin-top: 10px;
}

/* CARD */
.mobile-process-card {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 24px;
    transition: 0.4s ease;
}

/* HOVER */
.mobile-process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(156,255,46,0.25);
}

/* ICON */
.mobile-process-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

/* TITLE */
.mobile-process-card h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* TEXT */
.mobile-process-card p {
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .process-section {
        padding: 90px 0;
    }

    .process-heading {
        font-size: 42px;
    }

    .process-description {
        font-size: 16px;
    }

}

@media (max-width: 575px) {

    .process-section {
        padding: 70px 0;
    }

    .process-tag {
        font-size: 12px;
        padding: 8px 16px;
    }

    .process-heading {
        font-size: 32px;
    }

    .process-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .mobile-process-card {
        padding: 20px;
    }

    .mobile-process-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        border-radius: 18px;
    }

    .mobile-process-card h3 {
        font-size: 20px;
    }

    .mobile-process-card p {
        font-size: 13px;
    }

}

/* =========================
PROCESS SECTION END
========================= */


/* =========================
TESTIMONIAL SECTION START
========================= */

.testimonial-section {
    position: relative;
    padding: 120px 0;
    background: #070707;
    overflow: hidden;
}

/* GLOW */
.testimonial-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(212,175,55,0.08);
    filter: blur(140px);
    border-radius: 50%;
    left: -200px;
    bottom: -200px;
}

/* HEADER */
.testimonial-header {
    position: relative;
    z-index: 5;
    margin-bottom: 70px;
}

/* TAG */
.testimonial-tag {
    display: inline-block;
    background: rgba(156,255,46,0.1);
    border: 1px solid rgba(156,255,46,0.2);
    color: #9cff2e;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* HEADING */
.testimonial-heading {
    color: #ffffff;
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
}

.testimonial-heading span {
    color: #9cff2e;
}

/* DESCRIPTION */
.testimonial-description {
    max-width: 720px;
    margin: auto;
    color: rgba(255,255,255,0.68);
    font-size: 17px;
    line-height: 1.9;
}

/* =========================
TESTIMONIAL CARD
========================= */

.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    padding: 35px;
    height: 100%;
    transition: 0.5s ease;
    backdrop-filter: blur(12px);
}

/* HOVER */
.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(156,255,46,0.25);
}

/* STARS */
.testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.testimonial-stars i {
    color: #d4af37;
    font-size: 16px;
}

/* TEXT */
.testimonial-text {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    line-height: 2;
    margin-bottom: 32px;
}

/* USER */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* IMAGE */
.testimonial-user img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(156,255,46,0.25);
}

/* NAME */
.testimonial-user h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

/* ROLE */
.testimonial-user span {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
}

/* =========================
CAROUSEL CONTROL
========================= */

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(156,255,46,0.15);
    border-radius: 50%;
    padding: 20px;
}

/* =========================
MOBILE CARD
========================= */

.mobile-testimonial-card {
    margin: 0 10px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .testimonial-section {
        padding: 90px 0;
    }

    .testimonial-heading {
        font-size: 42px;
    }

    .testimonial-description {
        font-size: 16px;
    }

}

@media (max-width: 575px) {

    .testimonial-section {
        padding: 70px 0;
    }

    .testimonial-tag {
        font-size: 12px;
        padding: 8px 16px;
    }

    .testimonial-heading {
        font-size: 32px;
    }

    .testimonial-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .testimonial-card {
        padding: 24px;
        border-radius: 24px;
    }

    .testimonial-stars i {
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.9;
        margin-bottom: 24px;
    }

    .testimonial-user img {
        width: 58px;
        height: 58px;
    }

    .testimonial-user h4 {
        font-size: 17px;
    }

    .testimonial-user span {
        font-size: 12px;
    }

}

/* =========================
TESTIMONIAL SECTION END
========================= */

/* =========================
INSTAGRAM SECTION START
========================= */

.instagram-section {
    position: relative;
    padding: 120px 0;
    background: #050505;
    overflow: hidden;
}

/* GLOW */
.instagram-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,0,150,0.08);
    filter: blur(140px);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

/* HEADER */
.instagram-header {
    position: relative;
    z-index: 5;
    margin-bottom: 70px;
}

/* TAG */
.instagram-tag {
    display: inline-block;
    background: rgba(156,255,46,0.1);
    border: 1px solid rgba(156,255,46,0.2);
    color: #9cff2e;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* HEADING */
.instagram-heading {
    color: #ffffff;
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
}

.instagram-heading span {
    color: #9cff2e;
}

/* DESCRIPTION */
.instagram-description {
    max-width: 760px;
    margin: auto;
    color: rgba(255,255,255,0.68);
    font-size: 17px;
    line-height: 1.9;
}

/* =========================
INSTAGRAM CARD
========================= */

.instagram-card {
    position: relative;
    height: 420px;
    border-radius: 32px;
    overflow: hidden;
    cursor: pointer;
}

.large-card {
    height: 520px;
}

/* IMAGE */
.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

/* OVERLAY */
.instagram-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.92),
        rgba(0,0,0,0.2)
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: 0.5s ease;
}

/* HOVER */
.instagram-card:hover .instagram-overlay {
    opacity: 1;
}

.instagram-card:hover img {
    transform: scale(1.08);
}

/* CONTENT */
.instagram-overlay-content i {
    color: #ffffff;
    font-size: 34px;
    margin-bottom: 18px;
}

.instagram-overlay-content h4 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.instagram-overlay-content a {
    display: inline-block;
    background: linear-gradient(135deg, #ff0066, #d4af37);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.4s ease;
}

.instagram-overlay-content a:hover {
    transform: translateY(-4px);
    color: #ffffff;
}

/* =========================
MOBILE CARD
========================= */

.mobile-instagram-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    margin: 0 10px;
}

.mobile-instagram-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* OVERLAY */
.mobile-instagram-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.92),
        rgba(0,0,0,0.25)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.mobile-instagram-overlay i {
    color: #ffffff;
    font-size: 34px;
    margin-bottom: 16px;
}

.mobile-instagram-overlay h4 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.mobile-instagram-overlay a {
    display: inline-block;
    width: fit-content;
    background: linear-gradient(135deg, #ff0066, #d4af37);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
}

/* =========================
INSTAGRAM BUTTON
========================= */

.instagram-btn-wrapper {
    margin-top: 70px;
}

/* BUTTON */
.instagram-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #ff0066, #d4af37);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 34px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.5s ease;
}

/* HOVER */
.instagram-main-btn:hover {
    transform: translateY(-6px);
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(255,0,100,0.2);
}

/* ICON */
.instagram-main-btn i {
    font-size: 22px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .instagram-section {
        padding: 90px 0;
    }

    .instagram-heading {
        font-size: 42px;
    }

    .instagram-description {
        font-size: 16px;
    }

}

@media (max-width: 575px) {

    .instagram-section {
        padding: 70px 0;
    }

    .instagram-tag {
        font-size: 12px;
        padding: 8px 16px;
    }

    .instagram-heading {
        font-size: 32px;
    }

    .instagram-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .mobile-instagram-card img {
        height: 380px;
    }

    .mobile-instagram-overlay {
        padding: 22px;
    }

    .mobile-instagram-overlay i {
        font-size: 28px;
    }

    .mobile-instagram-overlay h4 {
        font-size: 22px;
    }

    .mobile-instagram-overlay a {
        font-size: 13px;
        padding: 10px 18px;
    }

    .instagram-main-btn {
        font-size: 14px;
        padding: 15px 28px;
    }

}

/* =========================
INSTAGRAM SECTION END
========================= */

/* =========================
CONTACT SECTION START
========================= */

.contact-section {
    position: relative;
    padding: 120px 0;
    background: #070707;
    overflow: hidden;
}

/* GLOW */
.contact-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(156,255,46,0.08);
    filter: blur(140px);
    border-radius: 50%;
    left: -200px;
    top: -200px;
}

/* =========================
LEFT SIDE
========================= */

.contact-left {
    position: relative;
    z-index: 5;
}

/* TAG */
.contact-tag {
    display: inline-block;
    background: rgba(156,255,46,0.1);
    border: 1px solid rgba(156,255,46,0.2);
    color: #9cff2e;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* HEADING */
.contact-heading {
    color: #ffffff;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.contact-heading span {
    color: #9cff2e;
}

/* DESCRIPTION */
.contact-description {
    color: rgba(255,255,255,0.68);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
}

/* INFO WRAPPER */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* BOX */
.contact-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-radius: 26px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
}

/* HOVER */
.contact-info-box:hover {
    transform: translateY(-6px);
    border-color: rgba(156,255,46,0.25);
}

/* ICON */
.contact-icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 22px;
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* COLORS */
.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
}

.instagram-icon {
    background: linear-gradient(135deg, #ff0066, #d4af37);
    color: #fff;
}

.location-icon {
    background: linear-gradient(135deg, #ff7b00, #ffb347);
    color: #fff;
}

/* CONTENT */
.contact-content span {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-bottom: 6px;
}

.contact-content a,
.contact-content p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin: 0;
}

/* =========================
RIGHT FORM
========================= */

.contact-form-wrapper {
    position: relative;
    z-index: 5;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 36px;
    padding: 50px;
    backdrop-filter: blur(14px);
}

/* HEADER */
.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 14px;
}

.form-header p {
    color: rgba(255,255,255,0.68);
    font-size: 16px;
    line-height: 1.8;
}

/* GROUP */
.form-group label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
}

/* INPUT */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 16px 20px;
    color: #ffffff;
    outline: none;
    transition: 0.4s ease;
    font-size: 15px;
}

/* SELECT */
.form-group select {
    appearance: none;
}

/* TEXTAREA */
.form-group textarea {
    resize: none;
}

/* FOCUS */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(156,255,46,0.4);
    background: rgba(255,255,255,0.06);
}

/* PLACEHOLDER */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

/* BUTTON */
.contact-submit-btn {
    width: 100%;
    border: none;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    padding: 18px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    transition: 0.5s ease;
}

/* HOVER */
.contact-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37,211,102,0.18);
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .contact-section {
        padding: 90px 0;
    }

    .contact-heading {
        font-size: 42px;
    }

    .contact-description {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 40px;
    }

    .form-header h3 {
        font-size: 32px;
    }

}

@media (max-width: 575px) {

    .contact-section {
        padding: 70px 0;
    }

    .contact-tag {
        font-size: 12px;
        padding: 8px 16px;
    }

    .contact-heading {
        font-size: 32px;
    }

    .contact-description {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .contact-info-box {
        padding: 18px;
        border-radius: 22px;
    }

    .contact-icon {
        width: 58px;
        min-width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 22px;
    }

    .contact-content a,
    .contact-content p {
        font-size: 14px;
    }

    /* FORM */
    .contact-form-wrapper {
        padding: 26px;
        border-radius: 28px;
    }

    .form-header {
        margin-bottom: 30px;
    }

    .form-header h3 {
        font-size: 24px;
    }

    .form-header p {
        font-size: 14px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        border-radius: 16px;
        font-size: 14px;
    }

    .contact-submit-btn {
        font-size: 14px;
        padding: 16px 22px;
    }

}

/* =========================
CONTACT SECTION END
========================= */

/* =========================
FLOATING ELEMENTS START
========================= */

/* =========================
DESKTOP FLOATING BUTTONS
========================= */

.desktop-floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 40px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* BUTTON */
.floating-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 240px;
    padding: 14px 18px;
    border-radius: 22px;
    text-decoration: none;
    transition: 0.5s ease;
    backdrop-filter: blur(12px);
    overflow: hidden;
    position: relative;
}

/* HOVER */
.floating-btn:hover {
    transform: translateY(-6px) scale(1.02);
}

/* WHATSAPP */
.whatsapp-floating-btn {
    background: linear-gradient(
        135deg,
        rgba(37,211,102,0.95),
        rgba(18,140,126,0.95)
    );
    box-shadow: 0 15px 40px rgba(37,211,102,0.25);
}

/* CALL */
.call-floating-btn {
    background: linear-gradient(
        135deg,
        rgba(255,140,0,0.95),
        rgba(255,94,0,0.95)
    );
    box-shadow: 0 15px 40px rgba(255,140,0,0.22);
}

/* ICON */
.floating-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 18px;
    background: rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ICON I */
.floating-icon i {
    color: #ffffff;
    font-size: 26px;
}

/* CONTENT */
.floating-content span {
    display: block;
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    margin-bottom: 4px;
}

/* TEXT */
.floating-content p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

/* =========================
MOBILE FLOATING BAR
========================= */

.mobile-floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(14px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 8px;
    z-index: 9999;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ITEM */
.mobile-floating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    flex: 1;
}

/* ICON */
.mobile-floating-item i {
    font-size: 22px;
}

/* TEXT */
.mobile-floating-item span {
    font-size: 12px;
    font-weight: 600;
}

/* COLORS */
.whatsapp-mobile-btn {
    color: #25d366;
}

.call-mobile-btn {
    color: #ff9f1c;
}

.instagram-mobile-btn {
    color: #ff0066;
}

/* =========================
SCROLL TO TOP
========================= */

.scroll-top-btn {
    position: fixed;
    right: 25px;
    bottom: 190px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    color: #000;
    font-size: 22px;
    cursor: pointer;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* SHOW */
.scroll-top-btn.show-scroll-btn {
    opacity: 1;
    visibility: visible;
}

/* HOVER */
.scroll-top-btn:hover {
    transform: translateY(-6px);
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .scroll-top-btn {
        width: 52px;
        height: 52px;
        font-size: 18px;
        right: 18px;
        bottom: 90px;
        border-radius: 16px;
    }

}

@media (max-width: 575px) {

    .mobile-floating-bar {
        padding: 10px 5px;
    }

    .mobile-floating-item i {
        font-size: 20px;
    }

    .mobile-floating-item span {
        font-size: 11px;
    }

    .scroll-top-btn {
        width: 48px;
        height: 48px;
        right: 15px;
        bottom: 85px;
        border-radius: 14px;
    }

}

/* =========================
FLOATING ELEMENTS END
========================= */


/* =========================
FOOTER SECTION START
========================= */

.footer-section {
    position: relative;
    background: #030303;
    padding-top: 110px;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* GLOW */
.footer-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(156,255,46,0.06);
    filter: blur(140px);
    border-radius: 50%;
    right: -200px;
    bottom: -200px;
}

/* =========================
FOOTER LOGO
========================= */

.footer-logo {
    display: inline-block;
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    text-decoration: none;
    line-height: 1.1;
    margin-bottom: 24px;
}

.footer-logo span {
    display: block;
    color: #9cff2e;
    font-size: 18px;
    letter-spacing: 4px;
    margin-top: 8px;
}

/* TEXT */
.footer-text {
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* =========================
SOCIAL ICONS
========================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* SOCIAL */
.footer-socials a {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    transition: 0.5s ease;
}

/* HOVER */
.footer-socials a:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #9cff2e, #d4af37);
    color: #000;
}

/* =========================
LINKS
========================= */

.footer-links h3,
.footer-contact h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 28px;
}

/* UL */
.footer-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* LI */
.footer-links ul li {
    margin-bottom: 18px;
}

/* LINK */
.footer-links ul li a {
    color: rgba(255,255,255,0.68);
    text-decoration: none;
    font-size: 16px;
    transition: 0.4s ease;
}

/* HOVER */
.footer-links ul li a:hover {
    color: #9cff2e;
    padding-left: 6px;
}

/* =========================
CONTACT INFO
========================= */

.footer-contact-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

/* ICON */
.footer-contact-box i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9cff2e;
    font-size: 18px;
}

/* TEXT */
.footer-contact-box a,
.footer-contact-box p {
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.8;
    text-decoration: none;
    margin: 0;
}

/* =========================
FOOTER BOTTOM
========================= */

.footer-bottom {
    margin-top: 80px;
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* TEXT */
.footer-bottom p {
    color: rgba(255,255,255,0.55);
    font-size: 15px;
    margin: 0;
}

/* SPAN */
.footer-bottom span {
    color: #9cff2e;
    font-weight: 700;
}

/* =========================
MOBILE FOOTER
========================= */

.mobile-footer-brand {
    margin-bottom: 35px;
}

/* MOBILE SOCIAL */
.mobile-footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 35px;
}

/* ICON */
.mobile-footer-socials a {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
}

/* LINKS */
.mobile-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 35px;
}

/* LINK */
.mobile-footer-links a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-size: 14px;
}

/* CONTACT */
.mobile-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ITEM */
.mobile-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

/* ICON */
.mobile-contact-item i {
    color: #9cff2e;
    font-size: 18px;
    margin-top: 3px;
}

/* TEXT */
.mobile-contact-item a,
.mobile-contact-item p {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
    margin: 0;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .footer-section {
        padding-top: 80px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        margin-top: 50px;
    }

}

@media (max-width: 575px) {

    .footer-logo {
        font-size: 28px;
    }

    .footer-logo span {
        font-size: 15px;
        letter-spacing: 3px;
    }

    .footer-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .footer-bottom {
        padding-bottom: 100px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

}

/* =========================
FOOTER SECTION END
========================= */

