:root {
    /* Primary color from the logo */
    --primary-color: #be1654; 
    --primary-light: #fce4ec;
    --dark-text: #2d3436;
    --white: #ffffff;
    --transition: all 0.3s ease-in-out;
    --glass-bg: rgba(255, 255, 255, 0.9);
}

body {
    font-family: 'Poppins', sans-serif;
    padding-top: 100px; /* Space for fixed header */
    background-color: #f8f9fa;
    overflow-x: hidden !important;
}

.text-pink {
    color: var(--primary-color);
}

/* Header Styles */
.main-header {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    border-bottom: 2px solid var(--primary-light);
}

.logo-img {
    height: 60px; /* Adjusted for clarity */
    transition: var(--transition);
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

/* Nav Links Styling */
.navbar-nav .nav-link {
    color: var(--dark-text);
    font-weight: 500;
    padding: 10px 20px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:not(.btn-contact)::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Unique Contact Button */
.btn-contact {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border-radius: 50px;
    padding: 10px 25px !important;
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(190, 22, 84, 0.3);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(190, 22, 84, 0.4);
    color: var(--white);
}

/* Mobile Toggler */
.custom-toggler {
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
}

.custom-toggler:focus {
    box-shadow: none;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        margin-top: 15px;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .btn-contact {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }
}


/* Unique Hero Layout */
.creative-hero-section {
    width: 100%;
    height: 85vh; /* Slightly less than full screen for a modern footer peak */
    overflow: hidden;
    position: relative;
    /* padding-top: 110px;  */
}

.creativeSwiper {
    width: 100%;
    height: 100%;
}

.creative-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Glassmorphic Gradient Overlay (Premium) */
.creative-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(45, 52, 70, 0.7) 0%, rgba(190, 22, 84, 0.2) 60%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

/* Typography & Content Positioning */
.hero-text-area {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 650px; /* Reduced from 800px to prevent overlapping edges */
    width: 100%;
}

.creative-hero-section h1 {
    font-size: 3.8rem;
    font-weight: 300; /* Thin for a modern tech feel */
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.creative-hero-section h1 span {
    font-weight: 700; /* Bold for the key word */
    color: var(--white);
}

.creative-hero-section p {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 35px;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Slide 2 Specific (iPhone) - Red Highlight */
.swiper-slide-active[style*="iPhone 15"] h1 span {
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(190, 22, 84, 0.5);
}

/* Unique Button Style */
.creative-btn {
    display: inline-block;
    padding: 18px 45px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-radius: 5px; /* Boxy but soft */
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 10px 10px 0px rgba(190, 22, 84, 0.3); /* Offset shadow */
}

.creative-btn:hover {
    transform: translate(5px, 5px);
    box-shadow: 0 0 0px rgba(190, 22, 84, 0.3);
    color: var(--primary-color);
    background: transparent;
}

/* Second CTA style (White) for contrast */
.cta-white {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    box-shadow: 10px 10px 0px rgba(255, 255, 255, 0.2);
}

.cta-white:hover {
    color: var(--white);
    background: transparent;
    border-color: var(--white);
}

/* --- Creative Navigation --- */
.creative-nav {
    position: absolute;
    bottom: 50px;
    z-index: 10;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.creative-prev { right: 120px; }
.creative-next { right: 50px; } /* Navigation grouped on one side */

.creative-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* --- Pagination as a Progress Bar --- */
.creative-pagination {
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1);
}

.swiper-pagination-progressbar-fill {
    background: var(--primary-color) !important;
}

/* Mobile Responsiveness for Creative Layout */
@media (max-width: 991px) {
    .creative-hero-section { height: 70vh; }
    .creative-hero-section h1 { font-size: 2.2rem; }
    .hero-text-area { text-align: center !important; }
    .creative-nav { bottom: 20px; }
}

/* Fix: Slide Transition Overlap */
.swiper-slide {
    backface-visibility: hidden; /* Prevents flickering during creative effect */
    overflow: hidden;
}

/* Fix: Ensure the gradient overlay doesn't make the text muddy */
.creative-slide::before {
    z-index: 1;
    pointer-events: none; /* Ensures buttons remain clickable */
}


/* brand logo */
.brand-strip-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title h6 {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1rem;
    margin-bottom: 15px;
}

.title-line {
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    margin: 0 auto 50px;
}

/* Brand Grid Layout */
.brand-grid {
    display: grid;
    /* This creates a responsive grid without media queries */
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.brand-item {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: var(--transition);
    filter: grayscale(100%); /* Makes all logos gray by default */
    opacity: 0.6;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.brand-item img {
    max-width: 100%;
    max-height: 50px; /* Keeps logos uniform in size */
    object-fit: contain;
    transition: var(--transition);
}

/* Unique Hover State */
.brand-item:hover {
    filter: grayscale(0%); /* Restores original brand colors */
    opacity: 1;
    transform: scale(1.1); /* Subtle zoom effect */
}

/* Responsive adjustments for very small screens */
@media (max-width: 576px) {
    .brand-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 logos per row on mobile */
        gap: 15px;
    }
    .brand-item {
        height: 70px;
        padding: 10px;
    }
}

/* category section */
.category-slider-section {
    padding: 60px 0;
    background: #fff;
}

.section-header h2 span {
    color: var(--primary-color);
}

.view-all {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.view-all:hover {
    color: var(--primary-color);
}

/* Category Circle Styling */
.cat-item {
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.cat-circle {
    width: 180px;
    height: 180px;
    background-color: #e5e5e5; /* The grey circle from your image */
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid transparent;
    transition: var(--transition);
}

.cat-circle img {
    width: 70%; /* Keeps product small inside circle like your image */
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.cat-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    transition: var(--transition);
}

/* Unique Hover & Active States */
.cat-item:hover .cat-circle,
.cat-item.active .cat-circle {
    background-color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(190, 22, 84, 0.15);
}

.cat-item:hover h5,
.cat-item.active h5 {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cat-item:hover img {
    transform: scale(1.1);
}

/* Pagination Fix */
.cat-pagination {
    position: relative !important;
    margin-top: 30px;
}

.cat-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Responsive Circles */
@media (max-width: 768px) {
    .cat-circle {
        width: 130px;
        height: 130px;
    }
}


/* feature */
.featured-bestseller-section {
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}

/* The Main Container Card */
.featured-wrapper {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
    border-radius: 40px;
    padding: 60px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Glowing Badge */
.featured-badge {
    background: rgba(190, 22, 84, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.pulse-icon {
    display: inline-block;
    animation: pulse 1.5s infinite;
}

/* Typography */
.featured-title {
    color: var(--white);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.featured-title span {
    color: var(--primary-color);
    background: linear-gradient(to right, var(--primary-color), #ff4d94);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-desc {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 90%;
}

/* CTA Button */
.bestseller-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(190, 22, 84, 0.4);
}

.bestseller-btn:hover {
    transform: translateY(-5px);
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(190, 22, 84, 0.6);
}



/* Visual Side (The Creative Part) */
.visual-stack {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blob-bg {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--primary-color);
    filter: blur(80px);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 1;
}

.floating-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    z-index: 2;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.visual-stack:hover .floating-img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Mobile Fixes */
@media (max-width: 991px) {
    .featured-wrapper { padding: 40px 25px; }
    .featured-title { font-size: 2.2rem; }
    .featured-action { text-align: center; }
}

/* best deal */
.best-deals-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.deal-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.deal-heading span {
    color: var(--primary-color);
}

.deal-seo-line {
    color: #666;
    font-size: 0.95rem;
}

/* Creative Tabs */
.tab-btn {
    border: 1px solid #ddd;
    background: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(190, 22, 84, 0.3);
}

/* Premium Product Card */
.product-card {
    background: #fff;
    border-radius: 25px;
    padding: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 5px;
    z-index: 2;
}

.img-wrapper {
    /* background: #f3f3f3; */
    border-radius: 20px;
    /* padding: 30px; */
    margin-bottom: 20px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-label {
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 1px;
    font-weight: 700;
}

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 10px 0;
    color: var(--dark-text);
}

/* Color Dots */
.color-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #ddd;
}
.dot.gold { background: #e3d0b1; }
.dot.black { background: #2c2c2c; }
.dot.purple { background: #594f63; }
.dot.green { background: #4b5344; }

/* Pricing */
.price-wrap {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-from { font-size: 0.8rem; color: #666; }
.main-price { 
    font-size: 1.3rem; 
    font-weight: 800; 
    color: var(--primary-color); 
}

.old-price {
    font-size: 0.9rem;
    color: #bbb;
    text-decoration: line-through;
}

/* Nav Arrows */
.deal-next, .deal-prev {
    color: var(--primary-color) !important;
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.deal-next:after, .deal-prev:after { font-size: 1.2rem; }

/* Smooth fade for filtering */
.dealsSwiper .swiper-slide {
    transition: opacity 0.4s ease;
}

/* Ensure hidden slides don't take up space during calculation */
.swiper-slide[style*="display: none"] {
    margin: 0 !important;
}


/* mid-banner */
.ultra-creative-banner {
    padding: 80px 0;
    background: #0d0d0d; /* Deep Black for high contrast */
    overflow: hidden;
    position: relative;
}

/* Background Reveal Text */
.bg-reveal-text {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: 1;
    user-select: none;
}

/* The Portal Effect */
.portal-frame {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portal-circle {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--primary-color), #ff4d94);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    position: absolute;
    animation: portalPulse 4s infinite alternate;
}

.floating-device {
    width: 80%;
    z-index: 10;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.8));
    transform: rotate(-15deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ultra-creative-banner:hover .floating-device {
    transform: rotate(0deg) scale(1.1) translateY(-20px);
}

/* Typography Stack */
.content-stack {
    position: relative;
    z-index: 10;
    padding-left: 40px;
}

.vertical-line {
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 80px;
    background: var(--primary-color);
}

.ultra-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 0.9;
    color: #fff;
    text-transform: uppercase;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.filled-text {
    color: var(--primary-color);
}

.ultra-desc {
    color: #888;
    font-size: 1.1rem;
    margin: 30px 0;
    max-width: 400px;
}

/* Magnetic Button Style */
.magnetic-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
}

.magnetic-btn i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.magnetic-btn:hover i {
    transform: translateX(15px);
    background: #fff;
    color: var(--primary-color);
}

/* Portal Animation */
@keyframes portalPulse {
    from { transform: scale(1); opacity: 0.3; }
    to { transform: scale(1.2); opacity: 0.6; }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .ultra-title { font-size: 2.8rem; }
    .portal-circle { width: 250px; height: 250px; }
    .content-stack { padding-left: 0; text-align: center; margin-top: 50px; }
    .vertical-line { display: none; }
    .magnetic-btn { justify-content: center; }
}


/* trust */
.trust-orbit-section {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}

.orbit-wrapper {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Hub Styling */
.orbit-center {
    text-align: center;
    z-index: 10;
    max-width: 500px;
}

.trust-badge {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.orbit-center h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-text);
}

.orbit-center h2 span {
    color: var(--primary-color);
}

/* The Animated Ring */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    border: 1px dashed #9e9b9b;
    border-radius: 50%;
    z-index: 1;
}

/* Satellite Styling */
.feature-satellite {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    animation: float 4s infinite ease-in-out;
}

.sat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.sat-text h4 { font-size: 1rem; margin: 0; font-weight: 700; }
.sat-text p { font-size: 0.8rem; margin: 0; color: #888; }

/* Satellite Positioning */
.s1 { top: 10%; left: 15%; animation-delay: 0s; }
.s2 { top: 10%; right: 15%; animation-delay: 1s; }
.s3 { bottom: 10%; left: 15%; animation-delay: 2s; }
.s4 { bottom: 10%; right: 15%; animation-delay: 3s; }

/* Interactive Hover */
.feature-satellite:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(190, 22, 84, 0.15);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Mobile Fix (Stack them normally) */
@media (max-width: 991px) {
    .orbit-wrapper { height: auto; flex-direction: column; gap: 30px; }
    .orbit-ring { display: none; }
    .feature-satellite { position: relative !important; top: auto !important; left: auto !important; right: auto !important; width: 100%; max-width: 350px; }
}


/* promo banner */
.ultra-premium-banner {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    /* This background is dark and uses a standard iPhone 15 Pro stock image */
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://www.ineedamobile.com/wp-content/uploads/2025/09/iphone-17-pro-max-1-.jpg');
    background-size: cover;
    background-position: top;
    background-attachment: fixed; /* Parallax effect for added creativity */
    color: #fff;
}

/* 1. Hollow Watermarks for Depth */
.hollow-watermark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08); /* Faint outline */
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
}

.hollow-watermark.text-start { left: -5%; }
.hollow-watermark.text-end { right: -5%; }

/* 2. Main Creative Typography Stack */
.hollow-headline-stack {
    position: relative;
    z-index: 5;
    transform: perspective(1000px) rotateY(-10deg); /* Slight 3D skew for creativity */
    transition: var(--transition);
}

.ultra-premium-banner:hover .hollow-headline-stack {
    transform: perspective(1000px) rotateY(0deg); /* Straightens on hover */
}

.hollow-headline-stack h1 {
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    margin: 0;
}

/* CRUCIAL: The outlined/transparent text effect */
.hollow-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.7); /* The background shows through! */
}

/* Specific highlight using your brand primary color */
.filled-brand {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(190, 22, 84, 0.3);
}

/* 3. Glass Action Box */
.glass-content-box {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.premium-subheading {
    font-size: 1.4rem;
    font-weight: 300;
    color: #ddd;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* 4. Creative CTA */
.premium-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.premium-cta span {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    transition: var(--transition);
}

.premium-cta i {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.premium-cta:hover span {
    border-color: #fff;
    transform: scale(1.05);
}

.premium-cta:hover i {
    background: #fff;
    color: var(--primary-color);
    transform: translateX(10px);
}

/* 5. Mobile Adjustments */
@media (max-width: 991px) {
    .ultra-premium-banner { padding: 80px 0; background-attachment: scroll; }
    .hollow-headline-stack h1 { font-size: 3.5rem; text-align: center; }
    .hollow-headline-stack { transform: none; margin-bottom: 40px; }
    .hollow-watermark { display: none; }
    .glass-content-box { text-align: center; padding: 25px; }
    .premium-subheading { font-size: 1.1rem; }
    .premium-cta { justify-content: center; }
}


/* faq */
.creative-faq-section {
    padding: 100px 0;
    background-color: #fdfdfd;
    overflow: hidden;
}

/* Left Content Styling */
.faq-visual-wrap {
    position: relative;
    padding-right: 30px;
}

.faq-badge {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.8rem;
}

.faq-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.faq-main-title span {
    color: var(--primary-color);
}

.faq-intro {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Floating Support Card */
.support-float-card {
    background: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
    border-left: 5px solid var(--primary-color);
}

.icon-pulse {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: pulse-ring 2s infinite;
}

/* Accordion Custom Styling */
.custom-faq-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 20px;
}

.custom-faq-accordion .accordion-button {
    background: #fff;
    border-radius: 15px !important;
    padding: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-text);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 25px rgba(190, 22, 84, 0.2);
}

.q-number {
    margin-right: 15px;
    opacity: 0.3;
    font-family: monospace;
}

.accordion-button:not(.collapsed) .q-number {
    opacity: 1;
    color: #fff;
}

.accordion-body {
    background: #fff;
    margin-top: -10px;
    padding: 35px 25px 25px;
    border-radius: 0 0 15px 15px;
    border: 1px solid #eee;
    border-top: none;
    line-height: 1.8;
    color: #555;
}

/* Animation */
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(190, 22, 84, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(190, 22, 84, 0); }
    100% { box-shadow: 0 0 0 0 rgba(190, 22, 84, 0); }
}

/* Mobile Fixes */
@media (max-width: 991px) {
    .faq-main-title { font-size: 2.5rem; }
    .faq-visual-wrap { text-align: center; padding-right: 0; }
    .support-float-card { margin: 0 auto; }
}

/* cta */
.compact-cta-section {
    padding: 40px 0; /* Very small padding to keep it tight */
    background: #000;
}

/* The Floating Dock */
.cta-dock {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(190, 22, 84, 0.2);
}

/* Typography Fixes */
.cta-text-group h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.cta-text-group h2 span {
    color: var(--primary-color);
}

.cta-text-group p {
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px !important;
}

/* Creative Circular Buttons */
.cta-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.mini-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Unique Brand Colors per Icon */
.mini-btn.store { background: var(--primary-color); }
.mini-btn.call { background: #3498db; }
.mini-btn.whatsapp { background: #25d366; }

/* Interactive Animation */
.mini-btn:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    filter: brightness(1.2);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .cta-buttons {
        justify-content: center;
        margin-top: 20px;
    }
    .cta-text-group {
        text-align: center;
    }
}


/* footer */
.creative-footer {
    background-color: #0f1115;
    color: #fff;
    position: relative;
    padding-top: 80px;
}

/* 1. The Wave Header */
.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.footer-wave .shape-fill {
    fill: #000; /* Matches the background of the section above */
}

/* 2. Brand & Logo */
.footer-logo {
    height: 50px;
    /* filter: brightness(0) invert(1);  */
}

.footer-brand p {
    color: #888;
    line-height: 1.8;
}

/* 3. Social Icons Hub */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px) rotate(10deg);
}

/* 4. Footer Links */
.footer-title {
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 30px; height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #888;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* 5. Newsletter Input */
.footer-newsletter {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter input {
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: #fff;
    width: 100%;
    outline: none;
}

.footer-newsletter button {
    background: var(--primary-color);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background: #fff;
    color: var(--primary-color);
}

/* 6. Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

.payment-icons {
    font-size: 2rem;
    color: #444;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .payment-icons { justify-content: center; margin-top: 20px; }
    .footer-title { margin-top: 20px; }
}


/* breadcrumb */
/* --- Root stays same as your home page --- */

.inner-header {
    padding: 80px 0;
    background: #080808; /* Deep black for premium feel */
    position: relative;
    overflow: hidden;
}

.header-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 160px;
    font-weight: 900;
    color: rgba(190, 22, 84, 0.12); /* Subtle brand trace */
    letter-spacing: 15px;
    z-index: 1;
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 5;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* 3. The Breadcrumb Dock */
.breadcrumb-nav {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    padding: 12px 35px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    list-style: none;
}

/* Hide the default bootstrap separator */
.breadcrumb-item + .breadcrumb-item::before {
    display: none;
}

.breadcrumb-item a {
    color: #888;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item a i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.breadcrumb-item a:hover {
    color: var(--white);
}

/* Creative Separator Styling */
.breadcrumb-separator {
    padding: 0 15px;
    color: var(--primary-color);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    opacity: 0.6;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: capitalize;
}

/* Subtle Animation for the Separator */
.breadcrumb-separator i {
    animation: slideRight 2s infinite ease-in-out;
}

@keyframes slideRight {
    0%, 100% { transform: translateX(0); opacity: 0.4; }
    50% { transform: translateX(5px); opacity: 1; }
}

@media (max-width: 768px) {
    .page-title { font-size: 2.2rem; }
    .breadcrumb-nav { padding: 10px 20px; }
}

/* about page */
.about-creative-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

/* 1. Creative Image Styling */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.geometric-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    border: 8px solid var(--primary-light);
    border-radius: 40px;
    z-index: 1;
}

.main-about-img {
    width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.about-image-wrapper:hover .main-about-img {
    transform: translate(15px, -15px);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(190, 22, 84, 0.3);
}

.experience-badge strong {
    display: block;
    font-size: 1.5rem;
}

/* 2. Right Side Content Styling */
.about-content-stack {
    padding-left: 40px;
}

.about-subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-main-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
}

.about-main-title span {
    color: var(--primary-color);
}

.about-text-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--dark-text) !important;
}

/* 3. Mini Features Row */
.about-features-mini {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.mini-feat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-feat i {
    font-size: 2rem;
    color: var(--primary-color);
}

.mini-feat span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark-text);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .about-content-stack { padding-left: 0; margin-top: 50px; }
    .about-main-title { font-size: 2.2rem; }
    .geometric-shape { width: 100%; height: 90%; }
}


/* mission vision */
.mission-vision-digital {
    padding: 50px 0;
    background: #050505; /* Deep black for maximum contrast */
    color: #fff;
    overflow: hidden;
}

.digital-track {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

/* 1. The Glowing Pulse Line */
.glow-line {
    position: absolute;
    left: 40px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), #3498db, transparent);
    z-index: 1;
}

/* 2. The Nodes (Mission/Vision) */
.digital-node {
    position: relative;
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    z-index: 5;
}

.node-icon {
    width: 80px;
    height: 80px;
    background: #111;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(190, 22, 84, 0.3);
    transition: var(--transition);
}

.digital-node:hover .node-icon {
    transform: rotate(15deg) scale(1.1);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 40px var(--primary-color);
}

/* 3. Content Styling */
.node-content {
    flex: 1;
}

.node-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.node-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.node-content h3 span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.intro-p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* 4. Creative Grid List */
.grid-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.grid-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    font-size: 0.95rem;
    transition: var(--transition);
}

.grid-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.node-footer {
    font-style: italic;
    color: #888;
    border-top: 1px solid #222;
    padding-top: 20px;
}

/* Vision Specific Colors */
.vision-node .node-icon { border-color: #3498db; color: #3498db; }
.vision-node .node-tag { color: #3498db; }
.vision-node .grid-item { border-left-color: #3498db; }
.vision-node:hover .node-icon { box-shadow: 0 0 40px #3498db; background: #3498db; }

/* Mobile Adjustment */
@media (max-width: 768px) {
    .digital-node { flex-direction: column; gap: 20px; text-align: center; }
    .node-icon { margin: 0 auto; }
    .glow-line { left: 50%; transform: translateX(-50%); }
    .grid-list { grid-template-columns: 1fr; }
    .node-content h3 { font-size: 1.8rem; }
}


/* why choose */
.usp-staggered-section {
    padding: 80px 0;
    background: #ffffff;
}

.usp-label {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 0.8rem;
}

.usp-title {
    font-size: 3.5rem;
    font-weight: 900;
}

.usp-title span { color: var(--primary-color); }

.usp-lead-p {
    color: #888;
    border-left: 2px solid #eee;
    padding-left: 20px;
}

/* 1. Staggered Grid Layout */
.usp-staggered-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 80px;
}

/* 2. Layered Card Design */
.usp-layer {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    position: relative;
    width: 90%;
}

/* 3. The "Stagger" Effect */
.l1 { margin-left: 0; }
.l2 { margin-left: 5%; border-left: 5px solid var(--primary-color); }
.l3 { margin-left: 10%; }
.l4 { margin-left: 5%; border-left: 5px solid var(--primary-color); }
.l5 { margin-left: 0; background: var(--primary-light); border: none; }

.usp-layer:hover {
    transform: translateX(20px) scale(1.02);
    box-shadow: 0 25px 60px rgba(190, 22, 84, 0.1);
}

/* 4. Creative Elements */
.layer-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(190, 22, 84, 0.05);
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.layer-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-right: 30px;
}

.layer-body h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.layer-body p {
    color: #666;
    margin: 0;
}

/* 5. Accessories Grid */
.acc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.acc-grid span {
    background: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Mobile Fix */
@media (max-width: 991px) {
    .usp-layer { width: 100%; margin-left: 0 !important; flex-direction: column; text-align: center; }
    .layer-icon { margin-right: 0; margin-bottom: 20px; }
    .usp-title { font-size: 2.5rem; }
    .layer-num { display: none; }
    .acc-grid { justify-content: center; }
}


/* experience */
.experience-seo-section {
    padding: 60px 0;
    background: #fdfdfd;
    overflow: hidden;
}

/* 1. Experience Hub Styling */
.experience-visual {
    padding-right: 40px;
}

.exp-badge {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.exp-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.exp-title span { color: var(--primary-color); }

.exp-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Creative Grid */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.exp-item {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.exp-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(190, 22, 84, 0.08);
}

.exp-icon {
    width: 45px; height: 45px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.exp-item span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark-text);
}

.exp-footer-note {
    margin-top: 40px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    font-size: 0.95rem;
    color: #555;
    border-left: 4px solid var(--primary-color);
}

/* 2. SEO Glass Card Styling */
.seo-glass-card {
    background: #0a0a0a;
    color: #fff;
    padding: 50px;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

.seo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.seo-body p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ccc;
}

.seo-body strong { color: var(--primary-color); }

.seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.seo-tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #888;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Fix */
@media (max-width: 991px) {
    .exp-grid { grid-template-columns: 1fr; }
    .exp-title { font-size: 2.5rem; }
    .seo-glass-card { padding: 30px; }
}


/* contact us page*/
.flagship-contact {
    padding: 60px 0;
    background: #f8f9fa;
}

.mb-50 { margin-bottom: 50px; }

/* 1. Typography */
.display-3 span { color: var(--primary-color); }
.fw-800 { font-weight: 800; }

/* 2. Premium Cards */
.premium-contact-card {
    background: #fff;
    border-radius: 35px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.premium-contact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

/* .premium-contact-card.highlighted {
    background: var(--primary-color);
    color: #fff;
} */

.c-icon {
    width: 60px; height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.card-link { color: var(--primary-color); text-decoration: none; font-weight: 700; font-size: 0.9rem; }
.wa-action { color: #25d366; text-decoration: none; font-weight: 700; display: block; margin-top: 15px; }

/* 3. Inquiry Engine Custom Styling */
.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7d0b35 100%);
}

.form-control-custom {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #eee;
    background: transparent;
    outline: none;
    transition: 0.3s;
}

.form-control-custom:focus {
    border-bottom-color: var(--primary-color);
}

.btn-primary-main {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-primary-main:hover {
    background: #000;
    transform: scale(1.05);
}

.why-list { list-style: none; padding: 0; }
.why-list li { margin-bottom: 10px; font-weight: 500; }

.status-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 15px;
}

/* Mobile Fix */
@media (max-width: 991px) {
    .display-1 { font-size: 3.5rem; }
    .inquiry-engine .row { border-radius: 30px; }
}

/* 1. The Floating Animation */
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 2. The Radar/Pulse Effect for the Icon */
@keyframes iconPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* 3. The Digital Grid Background */
.premium-contact-card.highlighted {
    position: relative;
    overflow: hidden;
    animation: floatCard 4s ease-in-out infinite;
    background: var(--primary-color);
    z-index: 1;
}

/* Creating a "Tech Grid" Overlay without changing HTML */
.premium-contact-card.highlighted::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(190, 22, 84, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(190, 22, 84, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
}

/* 4. Making the Icon "Live" */
.premium-contact-card.highlighted .c-icon {
    background: #fff;
    color: var(--primary-color);
    animation: iconPulse 2s infinite;
    position: relative;
}

/* 5. Creative Glass Shine on the Link */
.wa-action {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wa-action::after {
    content: "";
    position: absolute;
    top: -50%; left: -100%;
    width: 50%; height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(25deg);
    transition: 0.5s;
}

.wa-action:hover::after {
    left: 150%;
}

.wa-action:hover {
    background: #25d366;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.em-action {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: rgba(52, 152, 219, 0.1); /* updated */
    border: 1px solid #3498db; /* updated */
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration:none;
    color: #3498db; /* optional but recommended */
}

.em-action::after {
    content: "";
    position: absolute;
    top: -50%; 
    left: -100%;
    width: 50%; 
    height: 200%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255,255,255,0.4), 
        transparent
    );
    transform: rotate(25deg);
    transition: 0.5s;
}

.em-action:hover::after {
    left: 150%;
}

.em-action:hover {
    background: #3498db; /* updated */
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3); /* updated */
}

/* 6. Glowing Text Effect */
.premium-contact-card.highlighted h3 {
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
    letter-spacing: 1px;
}


/* product page */
.category-intro-section {
    padding: 80px 0 40px;
    background: #ffffff;
}

/* 1. The Plate Design */
.intro-plate {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fdfdfd;
    padding: 50px;
    border-radius: 40px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

/* 2. The Interactive Icon Hub */
.plate-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.intro-plate:hover .plate-icon {
    transform: rotate(90deg);
    background: var(--primary-color);
    color: #fff;
}

/* 3. Typography Styling */
.brand-tag {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.plate-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.plate-text h2 span {
    color: var(--primary-color);
}

.plate-text p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    max-width: 700px;
    line-height: 1.6;
}

/* 4. Decorative Side Line */
.plate-line {
    position: absolute;
    right: 0;
    top: 20%;
    width: 6px;
    height: 60%;
    background: var(--primary-color);
    border-radius: 10px 0 0 10px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .intro-plate {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .plate-text h2 {
        font-size: 2.2rem;
    }
    .plate-icon {
        margin-bottom: 20px;
    }
    .plate-line {
        width: 100%;
        height: 6px;
        bottom: 0;
        top: auto;
        border-radius: 0;
    }
}


/* mobile */
.mobile-category-showcase {
    padding: 50px 0;
    background: #fdfdfd;
    overflow: hidden;
}

/* 1. Brand Box Styling */
.category-brand-box {
    padding-right: 30px;
}

.cat-icon-glow {
    width: 60px; height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(190, 22, 84, 0.3);
}

.cat-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cat-title span { color: var(--primary-color); }

.cat-lead {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.buy-badge {
    background: var(--primary-light);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    border-left: 5px solid var(--primary-color);
}

.buy-badge i{
    font-size: 30px;
}

/* 2. Feature Grid Styling */
.offering-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.offering-item {
    perspective: 1000px;
}

.offering-inner {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offering-inner i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: 0.3s;
}

.offering-inner span {
    font-weight: 800;
    font-size: 1rem;
    color: var(--dark-text);
}

/* Hover & Highlight States */
.offering-item:hover .offering-inner {
    transform: translateY(-10px) rotateX(5deg);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.offering-item.highlight .offering-inner {
    background: #000;
    border-color: #000;
}

.offering-item.highlight .offering-inner span { color: #fff; }

/* Mobile Adjustments */
@media (max-width: 991px) {
    .offering-grid { grid-template-columns: 1fr; }
    .cat-title { font-size: 2.5rem; }
    .category-brand-box { padding-right: 0; }
}


/* tablet */
.tablet-matrix-section {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}

/* 1. 3D Tablet Perspective */
.tablet-perspective-box {
    position: relative;
    perspective: 1500px;
    padding: 30px;
}

.tablet-main-img {
    width: 100%;
    /* height: 600px; */
    border-radius: 20px;
    transform: rotateY(-20deg) rotateX(10deg);
    box-shadow: -20px 20px 50px rgba(0,0,0,0.2);
    transition: var(--transition);
    z-index: 2;
    position: relative;
}

.tablet-perspective-box:hover .tablet-main-img {
    transform: rotateY(0deg) rotateX(0deg);
    box-shadow: 0 30px 60px rgba(190, 22, 84, 0.15);
}

.tablet-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: var(--primary-light);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
}

.floating-badge {
    position: absolute;
    bottom: 10%; right: 0;
    background: #000;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.floating-badge i { color: var(--primary-color); }

/* 2. Content Matrix Styling */
.matrix-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.matrix-title span { color: var(--primary-color); }

.matrix-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

/* 3. The Grid Matrix */
.category-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.matrix-item {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.m-icon {
    width: 50px; height: 50px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}

.m-text h4 { font-size: 1rem; font-weight: 800; margin: 0; }
.m-text span { font-size: 0.75rem; color: #999; text-transform: uppercase; letter-spacing: 1px; }

.matrix-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(190, 22, 84, 0.1);
}

.matrix-item.highlighted {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.matrix-item.highlighted .m-icon { background: rgba(255,255,255,0.2); color: #fff; }
.matrix-item.highlighted h4 { color: #fff; }
.matrix-item.highlighted span { color: rgba(255,255,255,0.6); }

/* Mobile Adjustments */
@media (max-width: 991px) {
    .tablet-main-img { transform: none; margin-bottom: 40px; }
    .category-matrix { grid-template-columns: 1fr; }
    .matrix-title { font-size: 2.5rem; }
}


/* ipad */
.ipad-premium-gallery {
    padding: 50px 0;
    background: #fbfbfb;
    overflow: hidden;
}

.mb-40 { margin-bottom: 40px; }

/* 1. Apple-esque Header */
.apple-icon {
    font-size: 3rem;
    color: #333;
    margin-bottom: 15px;
}

.apple-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.apple-title span { color: var(--primary-color); }

.apple-lead {
    color: #888;
    font-weight: 500;
    font-size: 1.1rem;
}

/* 2. iPad Cards Styling */
.ipad-card {
    background: #fff;
    padding: 60px 30px;
    border-radius: 30px;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.card-bg-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0,0,0,0.02); /* Ghost text behind the content */
    z-index: 1;
    pointer-events: none;
}

.ipad-content {
    position: relative;
    z-index: 5;
}

.ipad-content h4 {
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.ipad-content span {
    font-size: 0.85rem;
    color: #999;
    font-weight: 600;
}

/* Hover Interaction */
.ipad-card:hover {
    background: #000;
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.ipad-card:hover .ipad-content h4 { color: #fff; }
.ipad-card:hover .ipad-content span { color: var(--primary-color); }
.ipad-card:hover .card-bg-text { color: rgba(255,255,255,0.05); }

/* 3. CTA Strip */
.apple-cta-strip {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.cta-inner {
    background: #fff;
    padding: 20px 30px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}


.cta-btn-minimal {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 800;
    border-left: 2px solid #eee;
    padding-left: 20px;
}

/* Mobile Adjustment */
@media (max-width: 991px) {
    .apple-title { font-size: 2.2rem; }
    .cta-inner { flex-direction: column; border-radius: 30px; text-align: center; }
    .cta-btn-minimal { border-left: none; border-top: 2px solid #eee; padding: 15px 0 0 0; }
}


/* accessories */
.accessories-catalog-hub {
    padding: 60px 0;
    background: #fdfdfd;
}

.mb-80 { margin-bottom: 80px; }
.mt-50 { margin-top: 50px; }

/* 1. Header Styling */
.acc-badge {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.acc-title {
    font-size: 3.5rem;
    font-weight: 900;
}

.acc-title span { color: var(--primary-color); }

.acc-lead { color: #666; font-size: 1.1rem; }

/* 2. Masonry Grid Logic */
.acc-masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 3. Tech-Box Styling */
.acc-box {
    background: #fff;
    padding: 40px;
    border-radius: 35px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.acc-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(190, 22, 84, 0.1);
}

.acc-box-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.acc-box-head i {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.acc-box-head h4 {
    font-weight: 800;
    font-size: 1.3rem;
    margin: 0;
}

/* Item List Styling */
.acc-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.acc-item-list li {
    padding: 10px 0;
    color: #555;
    font-weight: 500;
    border-bottom: 1px solid #9b8c8c;
    font-size: 0.95rem;
    transition: 0.3s;
}

.acc-item-list li:last-child { border: none; }

.acc-item-list li:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* Highlighted States */
.acc-box.highlighted {
    background: #000;
    color: #fff;
}
.acc-box.highlighted .acc-box-head h4 { color: #fff; }
.acc-box.highlighted .acc-item-list li { color: #888; border-color: #222; }
.acc-box.highlighted .acc-item-list li:hover { color: #fff; }

/* 4. SEO Brand Seal Styling */
.seo-brand-seal {
    background: #000;
    padding: 30px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.seal-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.seal-icon {
    width: 70px; height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    flex-shrink: 0;
}

.seal-content p {
    font-size: 1.3rem;
    color: #eee;
    margin: 0;
    line-height: 1.6;
}

.seal-content strong { color: var(--primary-color); font-weight: 800; }

/* Mobile Adjustments */
@media (max-width: 991px) {
    .acc-masonry-grid { grid-template-columns: 1fr; }
    .acc-title { font-size: 2.5rem; }
    .seal-content { flex-direction: column; text-align: center; gap: 20px; }
}


/* brands page */
.brand-intro-showcase {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}

/* 1. The Focus Wrapper */
.intro-focus-wrapper {
    position: relative;
    padding: 40px 40px;
    background: #fdfdfd;
    border-radius: 40px;
    border: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.intro-focus-wrapper:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.03);
    transform: translateY(-5px);
}

/* 2. The Glowing Vertical Accent */
.accent-glow-line {
    position: absolute;
    left: 0;
    top: 20%;
    width: 6px;
    height: 60%;
    background: var(--primary-color);
    border-radius: 0 10px 100px 0;
    box-shadow: 10px 0 30px rgba(190, 22, 84, 0.2);
}

/* 3. Typography & Meta Elements */
.top-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.meta-tag {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
}

.meta-divider {
    height: 1px;
    flex: 1;
    max-width: 100px;
    background: #eee;
}

.intro-h2 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.intro-h2 span {
    color: var(--primary-color);
}

.intro-p {
    font-size: 1.3rem;
    color: #666;
    max-width: 750px;
    line-height: 1.7;
    margin: 0;
}

/* 4. Floating Guarantee Badge */
.guarantee-badge {
    position: absolute;
    right: 50px;
    top: -30px;
    background: #000;
    color: #fff;
    padding: 15px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: rotate(5deg);
    transition: 0.4s ease;
}

.guarantee-badge i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.guarantee-badge span {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intro-focus-wrapper:hover .guarantee-badge {
    transform: rotate(0deg) translateY(-10px);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .intro-focus-wrapper { padding: 50px 30px; flex-direction: column; text-align: center; }
    .intro-h2 { font-size: 2.5rem; }
    .guarantee-badge { position: relative; top: auto; right: auto; margin-top: 40px; transform: none; }
    .accent-glow-line { width: 100%; height: 6px; top: 0; left: 0; border-radius: 0; }
    .top-meta { justify-content: center; }
}

/* logos */
.brand-matrix-section {
    padding: 20px 0;
    background: #fdfdfd;
}

.mb-100 { margin-bottom: 100px; }

/* 1. Tier Header Styling */
.tier-header {
    margin-bottom: 30px;
    position: relative;
}

.tier-label {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.tier-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.tier-title span {
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-color);
}

.tier-line {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 10px;
}

/* 2. Flexible Logo Grid (The Magic Part) */
.brand-logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start; /* Aligns to left like a professional catalog */
}

.logo-tile {
    flex: 0 1 calc(20% - 20px); /* 5 items per row by default */
    min-width: 180px; /* Ensures they don't get too small */
    height: 120px;
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.logo-tile img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6); /* Modern minimalist look */
    transition: 0.4s ease;
}

/* 3. Hover Interactions */
.logo-tile:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(190, 22, 84, 0.1);
}

.logo-tile:hover img {
    filter: grayscale(0) opacity(1);
}

/* Specific Highlight for Premium Tier */
.brand-tier-block:first-child .logo-tile:hover {
    /* background: var(--primary-color); */
    /* border-color: #000; */
}

/* Responsive Scaling */
@media (max-width: 1200px) {
    .logo-tile { flex: 0 1 calc(25% - 20px); } /* 4 items */
}

@media (max-width: 991px) {
    .logo-tile { flex: 0 1 calc(33.33% - 20px); } /* 3 items */
    .tier-title { font-size: 2.2rem; }
}

@media (max-width: 575px) {
    .logo-tile { flex: 0 1 calc(50% - 20px); } /* 2 items */
    .brand-logo-grid { justify-content: center; }
}

.seo-statement-section {
    padding: 40px 0;
    background: #ffffff;
}

/* 1. The Master Card Styling */
.seo-master-card {
    background: #0a0a0a;
    border-radius: 40px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Glowing Left Edge */
.card-glow-edge {
    position: absolute;
    left: 0; top: 20%;
    width: 6px; height: 60%;
    background: var(--primary-color);
    border-radius: 0 100px 100px 0;
    box-shadow: 5px 0 20px rgba(190, 22, 84, 0.4);
}

/* 2. Pulse Icon Animation */
.seo-pulse-icon {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
    position: relative;
    margin: 0 auto;
}

.pulse-ring {
    position: absolute;
    width: 100%; height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    animation: seoRing 3s infinite;
}

@keyframes seoRing {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* 3. Content Details */
.seo-top-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.location-tag {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.meta-divider {
    width: 40px; height: 1px;
    background: #333;
}

.brand-subtext {
    color: #555;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.seo-heading {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.seo-heading span { color: var(--primary-color); }

.seo-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #888;
    margin: 0;
}

.seo-text strong {
    color: #fff;
    font-weight: 700;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .seo-master-card { padding: 40px 25px; text-align: center; }
    .seo-top-meta { justify-content: center; flex-direction: column; gap: 10px; }
    .seo-heading { font-size: 2rem; }
    .seo-text { font-size: 1.1rem; }
    .card-glow-edge { display: none; }
}