/* 
=====================================================
   THEME SETUP & VARIABLES
===================================================== */
:root {
    /* Brand Colors - Indigo/Violet Spectrum for SaaS feel */
    --primary-color: #4f46e5;
    /* Indigo 600 */
    --primary-hover: #4338ca;
    /* Indigo 700 */
    --secondary-color: #0ea5e9;
    /* Sky 500 */
    --accent-color: #f59e0b;
    /* Amber 500 */
    --dark-bg: #0f172a;
    /* Slate 900 */
    --light-bg: #f8fafc;
    /* Slate 50 */
    --card-bg: #ffffff;

    /* Text Colors */
    --text-main: #334155;
    /* Slate 700 */
    --text-muted: #64748b;
    /* Slate 500 */
    --text-heading: #1e293b;
    /* Slate 800 */

    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    --transition-base: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Mesh Gradients */
    --mesh-bg: radial-gradient(at 0% 0%, rgba(79, 70, 225, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(14, 165, 233, 0.05) 0px, transparent 50%);
}

.bg-mesh {
    background: var(--mesh-bg);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* =====================================================
   GLOBAL RESET & TYPOGRAPHY
===================================================== */
body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    color: var(--text-main);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
    /* Remove top padding for transparent overlap */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

strong {
    font-weight: 600;
    color: var(--text-heading);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-hover);
}

/* =====================================================
   UTILITIES & COMPONENTS
===================================================== */
/*logo*/
.logo {
    width: 150px;
    height: auto;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
    color: #fff;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.section-padding {
    padding-top: 9rem;
    padding-bottom: 2rem;
}

.bg-white-soft {
    background-color: #ffffff;
}

.bg-gradient-light {
    background: linear-gradient(180deg, var(--light-bg) 0%, #edf2f7 100%);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   BRAND SLIDER
===================================================== */
.brand-slider-section {
    background: #044af0;
    /* Deep Navy Dark Background to break monotony */
    padding: 0.5rem 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.brand-slider-container {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.brand-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.brand-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    padding: 0 2rem;
    color: rgb(255, 255, 255);
    font-size: 1.15rem;
    font-weight: 500;
    transition: var(--transition-base);
    user-select: none;
}

.brand-item i {
    font-size: 2rem;
    color: rgb(255, 255, 255);
    transition: var(--transition-base);
}

.brand-item:hover {
    color: #fff;
    cursor: default;
}

.brand-item:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Cards */
.feature-card {
    background: var(--card-bg);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-base);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.square-card {
    aspect-ratio: 1 / 1;
    justify-content: center;
    padding: 1.5rem;
}

.square-card .feature-icon {
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.square-card .card-content-wrap {
    width: 100%;
}

.square-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    min-height: 1.3em;
    font-weight: 700;
}

.square-card p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: #e0e7ff;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.hover-lift {
    transition: var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.section-title-wrap {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* =====================================================
   HEADER & NAVIGATION
===================================================== */
/* Topbar Styles */
.top-bar {
    background-color: #0d6efd;
    /* Standard Bootstrap Blue / Royal Blue to be very distinct */
    color: #fff;
    padding: 10px 0;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.top-link:hover {
    color: #fff;
}

.social-links-small a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 15px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.social-links-small a:hover {
    color: #fff;
    transform: translateY(-2px);
    display: inline-block;
}

/* Header Scrolled State - Hide Topbar */
header.scrolled .top-bar {
    max-height: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.05);
    /* Very slight tint for legibility */
    padding: 1rem 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scrolled Navbar State */
header.scrolled .navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
    border-bottom: none;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-heading) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-base);
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    /* Smaller font size */
    color: var(--text-heading);
    padding: 0.5rem 0.8rem;
    margin: 0 0.1rem;
    position: relative;
    transition: color 0.3s ease;
}

/* Nav Link Hover Animation (Underline Slide) */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
}

/* Navbar Buttons */
.navbar .btn {
    font-size: 0.85rem;
    /* Smaller button font */
    padding: 0.5rem 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.nav-cta-btn {
    margin-left: 0.8rem;
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero-section {
    position: relative;
    padding: 11rem 0 5rem;
    /* Increased top padding to clear the 120px+ header */
    overflow: hidden;
}

.hero-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* =====================================================
   HERO ANIMATIONS & TYPING
===================================================== */
/* Cursor Blink */
.cursor-blink {
    color: var(--primary-color);
    animation: blink 0.7s infinite;
    font-weight: 300;
    margin-left: 5px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Floating Icons Background */
.hero-bg-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.icon-float {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.12;
    /* Slightly more visible for color effect */
    font-size: 3rem;
    animation: floating 6s ease-in-out infinite, color-pulse 8s infinite alternate;
}

/* Color Animation */
@keyframes color-pulse {
    0% {
        color: var(--primary-color);
        opacity: 0.1;
    }

    33% {
        color: var(--secondary-color);
        opacity: 0.15;
    }

    66% {
        color: var(--accent-color);
        opacity: 0.2;
    }

    100% {
        color: var(--primary-color);
        opacity: 0.1;
    }
}

/* Individual Icon Positioning */
.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    font-size: 4rem;
}

.icon-2 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
    font-size: 2.5rem;
}

.icon-3 {
    top: 15%;
    right: 15%;
    animation-delay: 1s;
    font-size: 3.5rem;
}

.icon-4 {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
    font-size: 3rem;
}

.icon-5 {
    bottom: 10%;
    left: 40%;
    animation-delay: 4s;
    font-size: 2rem;
}

.icon-6 {
    top: 30%;
    right: 40%;
    animation-delay: 2.5s;
    font-size: 2.5rem;
}

.icon-7 {
    top: 8%;
    left: 45%;
    animation-delay: 1.5s;
    font-size: 3rem;
}

.icon-8 {
    bottom: 18%;
    left: 15%;
    animation-delay: 3.5s;
    font-size: 3.2rem;
}

.icon-9 {
    top: 45%;
    left: 85%;
    animation-delay: 0.5s;
    font-size: 2.5rem;
}

.icon-10 {
    bottom: 12%;
    right: 28%;
    animation-delay: 4.5s;
    font-size: 2.6rem;
}

@keyframes floating {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(8deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Relative positioning for z-index context */
.position-relative.z-1 {
    position: relative;
    z-index: 1;
}

/* =====================================================
   WHATSAPP CTA & FLOATING
===================================================== */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-base);
    text-decoration: none;
}

.float-wa:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

/* =====================================================
   PAGE SPECIFIC
===================================================== */
/* Services Grid */
.service-icon-box {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.service-icon-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Pricing / Hosting */
.pricing-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid #f1f5f9;
    transition: var(--transition-base);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-heading);
}

.price-period {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 400;
}

/* Check list */
.check-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.check-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    color: var(--text-main);
}

.check-list li i {
    color: #10b981;
    /* Emerald 500 */
    margin-right: 0.75rem;
}

/* Footer */
.main-footer {
    background-color: var(--dark-bg);
    color: #cbd5e1;
    padding: 4rem 0 2rem;
}

.footer-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: var(--transition-base);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Contact Form */
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    color: var(--primary-color);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.15);
}

/* =====================================================
   PRODUCT SLIDER
===================================================== */
.product-slider-container {
    overflow: hidden;
    padding: 1rem 0;
    position: relative;
    width: 100%;
}

.product-slider-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.product-item {
    width: 300px;
    flex-shrink: 0;
}

.product-card {
    transition: var(--transition-base);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .product-item {
        width: 250px;
    }
}

/* =====================================================
   SINGLE PRODUCT PAGE STYLES
===================================================== */
.active-thumb {
    border-color: var(--primary-color) !important;
    border-width: 2px !important;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.2);
}

.cursor-pointer {
    cursor: pointer;
}

.product-price-section .price-tag {
    font-size: 2.25rem;
}

.w-40 {
    width: 40% !important;
}

.check-list.small li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.nav-tabs .nav-link {
    color: var(--text-muted);
    border: none;
    background: none;
    transition: var(--transition-base);
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color) !important;
    border-bottom: 3px solid var(--primary-color) !important;
    background: none !important;
}

.product-img-wrap img {
    max-height: 100%;
    object-fit: contain;
}

.ls-1 {
    letter-spacing: 1px;
}

/* =====================================================
   FLOATING ACTIONS (Cart, Login, etc.)
===================================================== */
.floating-actions {
    position: fixed;
    bottom: 110px;
    /* Above WhatsApp button */
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    text-decoration: none;
    border: none;
    position: relative;
}

.float-cart {
    background-color: var(--primary-color);
}

.float-login {
    background-color: var(--dark-bg);
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-color);
    color: var(--dark-bg);
    font-size: 11px;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Modal Customization */
.modal-content {
    border-radius: var(--radius-xl);
    border: none;
    overflow: hidden;
}

.modal-header {
    background: var(--primary-color);
    color: white;
    border-bottom: none;
    padding: 1.5rem 2rem;
}

.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* Sticky Buy/Cart adjustments */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 100px;
        right: 20px;
    }

    .float-wa {
        bottom: 25px;
        right: 20px;
    }
}

/* =====================================================
   FLIPKART STYLE LOGIN MODAL
===================================================== */
.fk-login-dialog {
    max-width: 750px !important;
}

.fk-login-content {
    border-radius: 4px !important;
    border: none !important;
}

.fk-sidebar {
    background-color: var(--primary-color);
    padding: 40px 33px;
    color: white;
    min-height: 450px;
}

.fk-sidebar h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.fk-sidebar p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.5;
}

.fk-sidebar-img {
    margin-top: auto;
    width: 100%;
    opacity: 0.1;
    font-size: 8rem;
    text-align: center;
}

.fk-form-box {
    padding: 50px 45px;
    background: white;
    flex-grow: 1;
}

.fk-input-group {
    margin-bottom: 35px;
    position: relative;
}

.fk-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    font-size: 16px;
    outline: none;
    transition: var(--transition-base);
}

.fk-input:focus {
    border-bottom-color: var(--primary-color);
}

.fk-input:focus+label,
.fk-input:not(:placeholder-shown)+label {
    top: -15px;
    font-size: 12px;
    color: var(--primary-color);
}

.fk-label {
    position: absolute;
    left: 0;
    top: 10px;
    color: #999;
    pointer-events: none;
    transition: 0.2s ease all;
}

.fk-btn-primary {
    background-color: #fb641b;
    /* Flipkart Orange */
    color: white;
    border: none;
    width: 100%;
    padding: 14px;
    font-weight: 600;
    border-radius: 2px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2);
    margin-top: 10px;
}

.fk-btn-primary:hover {
    background-color: #f65202;
    color: white;
}

.fk-text-footer {
    font-size: 12px;
    color: #878787;
    margin-top: 30px;
    text-align: center;
}

/* =====================================================
   CART DRAWER (OFFCANVAS)
===================================================== */
.offcanvas-cart {
    width: 450px !important;
    border-left: none !important;
}

.offcanvas-header {
    background: var(--primary-color);
    color: white;
    padding: 1.25rem 1.5rem;
}

.offcanvas-header .btn-close {
    filter: invert(1) brightness(2);
    opacity: 1;
}

.cart-drawer-footer {
    padding: 1.5rem;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .fk-sidebar {
        display: none !important;
    }

    .fk-login-dialog {
        max-width: 95% !important;
    }

    .offcanvas-cart {
        width: 100% !important;
    }
}

/* =====================================================
   CONTACT & ABOUT SPECIFIC STYLING
===================================================== */
.contact-info-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-base);
    border: 1px solid #f1f5f9;
}

.contact-info-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.icon-box-circle {
    width: 60px;
    height: 60px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.contact-info-card:hover .icon-box-circle {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.timeline-box {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid #e2e8f0;
}

.timeline-box::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.premium-form .form-control,
.premium-form .form-select {
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
    transition: var(--transition-base);
}

.premium-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* =====================================================
   PREMIUM POLISH & DECORATIONS
===================================================== */
.bg-mesh-light {
    background-color: #f8fafc;
    background-image:
        radial-gradient(at 0% 0%, rgba(79, 70, 229, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(14, 165, 233, 0.05) 0px, transparent 50%);
}

.bg-mesh-dark {
    background-color: var(--dark-bg);
    background-image:
        radial-gradient(at 0% 0%, rgba(79, 70, 229, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(14, 165, 233, 0.15) 0px, transparent 50%);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
}

.section-title-premium {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title-premium::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Pricing Card Refined */
.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid #eef2f6;
    transition: var(--transition-base);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.15), 0 18px 36px -18px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Card Badge */
.card-badge-top {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

/* =====================================================
   ULTRA PREMIUM DECORATIONS
===================================================== */
.blob-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(14, 165, 233, 0.1));
    filter: blur(50px);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    animation: blob-float 15s infinite alternate;
}

@keyframes blob-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 100px) scale(1.2);
    }
}

.pulse-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.pulse-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    animation: icon-pulse 2s infinite;
}

@keyframes icon-pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.ultra-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.service-banner-card {
    background: white;
    border-radius: 30px;
    padding: 3.5rem;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
    position: relative;
    transition: var(--transition-base);
}

.service-banner-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 50px 100px -20px rgba(79, 70, 229, 0.12);
}

.label-premium {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}