@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* CSS Reset & Design System */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand Colors */
    --color-primary: #0a1d37;        /* Deep Blue */
    --color-primary-light: #162c4e;  /* Medium Blue */
    --color-secondary: #f37021;      /* Saffron Orange */
    --color-secondary-hover: #d6580f;/* Dark Saffron */
    --color-whatsapp: #25d366;       /* WhatsApp Green */
    --color-whatsapp-hover: #20ba5a;
    
    /* Neutral Colors */
    --color-bg-body: #f8fafc;
    --color-bg-card: #ffffff;
    --color-text-dark: #0f172a;
    --color-text-muted: #475569;
    --color-text-light: #ffffff;
    
    /* Layout Tokens */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Animations & Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 20px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --shadow-orange: 0 10px 20px -3px rgba(243, 112, 33, 0.25);
    --shadow-green: 0 10px 20px -3px rgba(37, 211, 102, 0.25);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.25;
}

p {
    font-size: 1rem;
    color: var(--color-text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem; /* Desktop: 32px */
}

@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem; /* Laptop: 24px */
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 1.25rem; /* Tablet: 20px */
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1rem; /* Mobile: 16px */
    }
}

.text-center { text-align: center; }
.text-orange { color: var(--color-secondary); }
.text-white { color: var(--color-text-light); }

.section-padding {
    padding: 5rem 0;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #ff883b 100%);
    color: var(--color-text-light);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -3px rgba(243, 112, 33, 0.4);
    background: linear-gradient(135deg, var(--color-secondary-hover) 0%, var(--color-secondary) 100%);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--color-whatsapp) 0%, #46ec84 100%);
    color: var(--color-text-light);
    box-shadow: var(--shadow-green);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -3px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, var(--color-whatsapp-hover) 0%, var(--color-whatsapp) 100%);
}

/* Top Bar Announcement / Auto Services Ticker */
.top-bar {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    flex-grow: 1;
    overflow: hidden;
}

.ticker-title {
    background-color: var(--color-secondary);
    color: white;
    padding: 0.15rem 0.6rem;
    border-radius: 3px;
    font-weight: 700;
    margin-right: 0.5rem;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.ticker-items-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
}

.ticker-items {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-scroll 35s linear infinite;
    padding-left: 5%;
}

.ticker-items span {
    padding: 0 1rem;
    font-weight: 500;
    color: #cbd5e1;
}

.ticker-items span.bullet {
    color: var(--color-secondary);
    padding: 0;
}

@keyframes ticker-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.ticker-items-container:hover .ticker-items {
    animation-play-state: paused;
}

.top-bar-contact {
    display: flex;
    gap: 1.5rem;
    font-weight: 600;
    white-space: nowrap;
}

.top-bar-contact a {
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-fast);
}

.top-bar-contact a:hover {
    color: var(--color-secondary);
}

@media (max-width: 992px) {
    .top-bar-contact {
        display: none;
    }
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15, 36, 70, 0.05);
    transition: var(--transition-normal);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 2rem;
}

@media (max-width: 1200px) {
    .logo-container {
        margin-left: 1.5rem;
    }
    .header-right {
        margin-right: 1.5rem;
    }
}

@media (max-width: 992px) {
    .logo-container {
        margin-left: 1.25rem;
    }
    .header-right {
        margin-right: 1.25rem;
    }
}

@media (max-width: 600px) {
    .logo-container {
        margin-left: 1rem;
    }
    .header-right {
        margin-right: 1rem;
    }
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--color-secondary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-dark);
    position: relative;
    padding: 0.25rem 0;
    font-size: 1rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition-normal);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--color-secondary);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Navigation Dropdown Menu Styling */
.nav-links li.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.dropdown-toggle .arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Desktop Mega Menu Behavior */
@media (min-width: 993px) {
    .nav-links li.dropdown {
        position: static; /* Let mega menu span full width of the header */
    }

    .mega-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-bg-card);
        border-top: 3px solid var(--color-secondary);
        border-bottom: 1px solid rgba(15, 36, 70, 0.08);
        box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
        padding: 2.5rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
        z-index: 1002;
    }

    .dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown:hover .dropdown-toggle .arrow {
        transform: rotate(180deg);
    }

    .mega-menu-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }

    .mega-menu-column {
        display: flex;
        flex-direction: column;
    }

    .mega-menu-title {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--color-primary);
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(15, 36, 70, 0.05);
        font-family: var(--font-heading);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mega-menu-title a {
        display: block;
        transition: var(--transition-fast);
    }

    .mega-menu-title a:hover {
        color: var(--color-secondary);
    }

    .mega-menu-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0;
        margin: 0;
    }

    .mega-menu-links li {
        list-style: none;
        margin: 0;
    }

    .mega-menu-links li a {
        font-size: 0.85rem;
        color: var(--color-text-muted);
        font-weight: 500;
        transition: var(--transition-fast);
        display: inline-block;
        padding: 0.15rem 0;
    }

    .mega-menu-links li a::after {
        display: none;
    }

    .mega-menu-links li a:hover {
        color: var(--color-secondary);
        transform: translateX(3px);
    }

    .mobile-toggle {
        display: none;
    }
}

/* Mobile Dropdown & Accordion Behavior */
@media (max-width: 992px) {
    .mega-menu {
        display: none;
        width: 100%;
        background-color: transparent;
        padding: 0.5rem 0;
    }

    .dropdown.active .mega-menu {
        display: block;
    }

    .mega-menu-container {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding-left: 1rem;
        border-left: 2px solid var(--color-secondary);
    }

    .mega-menu-column {
        display: flex;
        flex-direction: column;
        width: 100%;
        border-bottom: 1px solid rgba(15, 36, 70, 0.05);
        padding-bottom: 0.5rem;
    }

    .mega-menu-column:last-child {
        border-bottom: none;
    }

    .mega-menu-title {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--color-text-dark);
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 0.5rem 0;
        margin: 0;
    }

    .mega-menu-title a {
        pointer-events: none; /* Let clicks handle mobile accordion toggle */
    }

    .mobile-toggle {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--color-secondary);
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .mega-menu-column.active .mobile-toggle {
        transform: rotate(45deg);
    }

    .mega-menu-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        padding-left: 0.75rem;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mega-menu-links li {
        list-style: none;
        margin: 0;
    }

    .mega-menu-links li a {
        font-size: 0.85rem;
        color: var(--color-text-muted);
        padding: 0.3rem 0;
        display: block;
    }

    .mega-menu-links li a::after {
        display: none;
    }

    .mega-menu-links li a:hover {
        color: var(--color-secondary);
    }
}

.nav-actions {
    display: flex;
    align-items: center;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    margin: 5px 0;
    transition: var(--transition-normal);
}

/* Header Right & Language Switcher */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-right: 2rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
}

.lang-btn {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-sm);
}

.lang-btn:hover {
    color: var(--color-secondary);
}

.lang-btn.active {
    color: var(--color-primary);
    background-color: rgba(10, 29, 55, 0.06);
    pointer-events: none;
    cursor: default;
}

.lang-divider {
    color: rgba(15, 36, 70, 0.15);
    font-weight: 400;
    user-select: none;
}

@media (max-width: 992px) {
    .header-right {
        gap: 0.75rem;
    }
    
    .lang-switcher {
        font-size: 0.8rem;
        gap: 0.25rem;
    }
    
    .lang-btn {
        padding: 0.2rem 0.35rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #061122 100%);
    position: relative;
    color: var(--color-text-light);
    padding: 6rem 0;
    overflow: hidden;
}

/* Decorative Background Glows */
.hero::before, .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 1;
}

.hero::before {
    width: 300px;
    height: 300px;
    background-color: var(--color-secondary);
    top: -50px;
    right: -50px;
}

.hero::after {
    width: 400px;
    height: 400px;
    background-color: #3b82f6;
    bottom: -100px;
    left: -100px;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(243, 112, 33, 0.15);
    border: 1px solid rgba(243, 112, 33, 0.3);
    color: var(--color-secondary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-desc {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.25s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.875rem;
    color: #94a3b8;
}

.hero-image-wrapper {
    position: relative;
}

.hero-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.hero-card h3 {
    color: var(--color-text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 0.5rem;
}

.hero-card-list {
    list-style: none;
}

.hero-card-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.hero-card-list li::before {
    content: '✓';
    color: var(--color-secondary);
    font-weight: 900;
}

/* Light background override for readability in service detail pages */
.service-content .hero-card-list li {
    color: var(--color-text-dark);
}

/* Breadcrumb Navigation */
.breadcrumb-container {
    background-color: #f1f5f9;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.breadcrumbs li::after {
    content: '/';
    margin: 0 0.5rem;
    color: #cbd5e1;
}

.breadcrumbs li:last-child::after {
    content: none;
}

.breadcrumbs a {
    color: var(--color-primary);
}

.breadcrumbs a:hover {
    color: var(--color-secondary);
}

.breadcrumbs li.current {
    color: var(--color-text-muted);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

/* Sections Structure */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-tag {
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

/* Service Grid & Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 36, 70, 0.05);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(243, 112, 33, 0.2);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(15, 36, 70, 0.03);
    color: var(--color-primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.service-card:hover .service-card-icon {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
}

.service-card-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border: 1.5px solid var(--color-primary);
    border-radius: 6px;
    background-color: transparent;
    transition: all var(--transition-normal);
    margin-top: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.service-card:hover .service-card-link {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-text-light);
    box-shadow: var(--shadow-orange);
    transform: translateY(-1px);
}

/* Standalone Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.feature-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    padding: 3rem 2.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 36, 70, 0.04);
    text-align: center;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(243, 112, 33, 0.2);
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(243, 112, 33, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--transition-normal);
    box-shadow: 0 4px 10px rgba(243, 112, 33, 0.05);
}

.feature-card:hover .feature-card-icon {
    background-color: var(--color-secondary);
}

.feature-card:hover .feature-card-icon svg {
    color: white !important;
}

.feature-card-title {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.feature-card-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .feature-card {
        padding: 2.5rem 1.75rem;
    }
}

/* Why Choose Us & Info Sections */
.info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(243, 112, 33, 0.1);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-details h3 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.feature-details p {
    font-size: 0.925rem;
}

.badge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.badge-card {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(15, 36, 70, 0.05);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.badge-card .badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.badge-card .badge-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* How It Works Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-step-number {
    width: 56px;
    height: 56px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    border: 4px solid var(--color-bg-body);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition-normal);
}

.process-step:hover .process-step-number {
    background-color: var(--color-secondary);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
}

/* Customer Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 36, 70, 0.05);
    position: relative;
}

.review-stars {
    color: #ffb800;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
}

.review-content {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Accordion FAQs */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(15, 36, 70, 0.05);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-primary);
    gap: 1.5rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-secondary);
    transition: var(--transition-normal);
}

.faq-item.active {
    border-color: rgba(243, 112, 33, 0.2);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(15, 36, 70, 0.03);
}

/* Call To Action Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, #061122 100%);
    color: var(--color-text-light);
    border-radius: var(--border-radius-md);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--color-secondary);
    filter: blur(120px);
    opacity: 0.15;
    top: -50px;
    left: -50px;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner h2 {
    color: var(--color-text-light);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-banner-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Contact Us Page specific grid */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
}

.contact-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 36, 70, 0.05);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(15, 36, 70, 0.03);
    border: 1.5px solid rgba(15, 36, 70, 0.08);
    color: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.contact-item:hover .contact-icon {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -3px rgba(10, 29, 55, 0.25);
}

.contact-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info p, .contact-info a {
    font-size: 0.925rem;
    color: var(--color-text-muted);
}

.contact-info a:hover {
    color: var(--color-secondary);
}

.contact-form {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 36, 70, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.15);
}

/* Service Detail Layout */
.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3.5rem;
}

.service-content section {
    margin-bottom: 3.5rem;
}

.service-content section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(15, 36, 70, 0.05);
    padding-bottom: 0.5rem;
}

.doc-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    list-style: none;
}

.doc-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--color-bg-card);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(15, 36, 70, 0.03);
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    font-size: 0.95rem;
}

.doc-list li::before {
    content: '📄';
    font-size: 1.1rem;
}

.sidebar-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 36, 70, 0.05);
    margin-bottom: 2rem;
}

.sidebar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 0.5rem;
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: rgba(15, 36, 70, 0.02);
    border-radius: var(--border-radius-sm);
    font-size: 0.925rem;
    font-weight: 600;
}

.sidebar-links a:hover, .sidebar-links li.active a {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 36, 70, 0.04);
    position: relative;
    cursor: pointer;
}

.gallery-item-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.gallery-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-item-image img {
    transform: scale(1.05);
}

.gallery-item-info {
    padding: 1.5rem;
}

.gallery-item-title {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.gallery-item-tag {
    font-size: 0.775rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 0.5px;
}

/* Footer Section */
footer {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 5rem 0 2rem 0;
    border-top: 5px solid var(--color-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: #cbd5e1;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.footer-heading {
    color: var(--color-text-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-secondary);
    transform: translateX(4px);
}

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.footer-contact-info li span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.footer-contact-info a {
    color: #cbd5e1;
}

.footer-contact-info a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: var(--color-secondary);
}

/* WhatsApp FAB (Floating Action Button) - Modern Mobile UI */
.whatsapp-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    border-radius: 50%;
    display: none; /* Hidden on desktop by default */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.whatsapp-fab-icon {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-fab-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 211, 102, 0.45);
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Photo Placeholder Gallery Section */
.photo-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.photo-placeholder-card {
    background-color: var(--color-bg-card);
    border: 2px dashed #cbd5e1;
    border-radius: var(--border-radius-md);
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: var(--transition-normal);
}

.photo-placeholder-card:hover {
    border-color: var(--color-secondary);
    background-color: rgba(243, 112, 33, 0.02);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.placeholder-icon {
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.photo-placeholder-card:hover .placeholder-icon {
    transform: scale(1.1);
}

.placeholder-text {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.placeholder-subtext {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

@media (max-width: 992px) {
    .photo-placeholder-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .photo-placeholder-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .photo-placeholder-card {
        padding: 3rem 1.5rem;
    }
}

/* Testimonials Infinite Marquee Styling */
.testimonials-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
    /* Soft fading edges using gradient mask */
    mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
}

.testimonials-marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee-infinite 25s linear infinite;
    padding-left: 2rem;
}

.testimonials-marquee-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(15, 36, 70, 0.06);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    width: 360px;
    flex-shrink: 0;
    text-align: center;
    position: relative;
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 112, 33, 0.2);
}

.testimonial-card::before {
    content: "“";
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(243, 112, 33, 0.06);
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-stars {
    color: var(--color-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.testimonial-author .author-avatar {
    width: 44px;
    height: 44px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--color-secondary);
}

.testimonial-author .author-info {
    text-align: left;
}

.testimonial-author .author-info h4 {
    font-size: 0.95rem;
    color: var(--color-primary);
    margin-bottom: 0.1rem;
}

.testimonial-author .author-info p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

@keyframes marquee-infinite {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 900px) {
    .testimonials-slider-container {
        max-width: 100%;
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .slider-control.prev {
        left: 0.5rem;
    }
    .slider-control.next {
        right: 0.5rem;
    }
}

@media (max-width: 600px) {
    .testimonials-track {
        height: 380px;
    }
    .testimonial-content-wrapper {
        padding: 2.25rem 1.5rem;
    }
    .testimonial-text {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }
    .slider-control {
        display: none;
    }
    .testimonials-slider-container {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 2rem;
        box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
        transition: left 0.4s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.15rem;
    }
    
    .nav-actions {
        display: none; /* Hide top header CTA button on mobile, sticky bar handles it */
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .info-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    /* Enable Sticky Mobile Action Bar */
    .whatsapp-fab {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .badge-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Professional SVG Contact Icons */
.contact-icon-svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    display: inline-block;
    color: inherit;
    fill: none; /* Fallback for stroke-based icons */
}

/* Specific SVG Fill overrides */
svg.contact-icon-svg[fill="currentColor"] {
    fill: currentColor;
    stroke: none;
}

.footer-contact-info li span:first-child .contact-icon-svg {
    color: var(--color-secondary);
    width: 16px;
    height: 16px;
}

.contact-icon .contact-icon-svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
}

.contact-item:hover .contact-icon .contact-icon-svg {
    color: white;
}

/* Service Card Vector SVGs */
.service-card-icon .service-icon-svg {
    width: 28px;
    height: 28px;
    transition: all var(--transition-normal);
}

/* ==========================================================================
   Hero Showcase Component Styles (Premium Stripe/Linear style)
   ========================================================================== */

/* Main wrapper to occupy ~520px height matching the left hero column */
.hero-showcase {
    position: relative;
    width: 100%;
    min-height: 520px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-lg);
    background: radial-gradient(115% 120% at 0% 0%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

/* Base style for showcase items */
.showcase-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3rem 2.5rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: scale(0.96) translateY(10px);
    visibility: hidden;
    pointer-events: none;
    transition: 
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.8s;
    z-index: 1;
}

/* Active showcase item state */
.showcase-item.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

/* Showcase Illustration Area */
.showcase-illustration {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    position: relative;
    perspective: 800px;
}

/* SVG illustrations animations */
.showcase-illustration svg {
    max-width: 85%;
    max-height: 230px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.35));
    transform-style: preserve-3d;
}

/* Showcase Meta Area (Title + Description) */
.showcase-meta {
    text-align: center;
    margin-bottom: 1.5rem;
}

.showcase-icon-wrapper {
    width: 44px;
    height: 44px;
    background: rgba(243, 112, 33, 0.12);
    border: 1px solid rgba(243, 112, 33, 0.25);
    color: var(--color-secondary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.showcase-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.showcase-title {
    color: var(--color-text-light);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
}

.showcase-subtitle {
    color: #cbd5e1;
    font-size: 0.95rem;
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.45;
}

/* Showcase Workflow (Subtle flow indicator) */
.showcase-workflow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
    transition: color 0.4s ease;
}

.workflow-step .step-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #334155;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.workflow-line {
    height: 2px;
    width: 30px;
    background-color: #1e293b;
    position: relative;
    overflow: hidden;
}

.workflow-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

/* Active workflow step animations */
.showcase-item.active .workflow-step:nth-child(1) {
    color: #cbd5e1;
    transition-delay: 0.1s;
}
.showcase-item.active .workflow-step:nth-child(1) .step-dot {
    background-color: var(--color-secondary);
    box-shadow: 0 0 8px var(--color-secondary);
    transition-delay: 0.1s;
}

.showcase-item.active .workflow-line:nth-child(2)::after {
    transform: scaleX(1);
    transition-delay: 0.3s;
}

.showcase-item.active .workflow-step:nth-child(3) {
    color: #cbd5e1;
    transition-delay: 0.8s;
}
.showcase-item.active .workflow-step:nth-child(3) .step-dot {
    background-color: var(--color-secondary);
    box-shadow: 0 0 8px var(--color-secondary);
    transition-delay: 0.8s;
}

.showcase-item.active .workflow-line:nth-child(4)::after {
    transform: scaleX(1);
    transition-delay: 1.0s;
}

.showcase-item.active .workflow-step:nth-child(5) {
    color: #cbd5e1;
    transition-delay: 1.5s;
}
.showcase-item.active .workflow-step:nth-child(5) .step-dot {
    background-color: var(--color-secondary);
    box-shadow: 0 0 8px var(--color-secondary);
    transition-delay: 1.5s;
}

/* Keyframe illustrations and transitions */
@keyframes float {
    0% { transform: translateY(0px) rotate3d(1, 1, 1, 0deg); }
    50% { transform: translateY(-8px) rotate3d(1, 1, 1, 1.5deg); }
    100% { transform: translateY(0px) rotate3d(1, 1, 1, 0deg); }
}

@keyframes pulse-glow {
    0% { filter: drop-shadow(0 0 15px rgba(243, 112, 33, 0.15)); }
    50% { filter: drop-shadow(0 0 30px rgba(243, 112, 33, 0.4)); }
    100% { filter: drop-shadow(0 0 15px rgba(243, 112, 33, 0.15)); }
}

/* Classes to apply floating to showcase illustration child SVGs */
.showcase-item.active .ill-float {
    animation: float 6s ease-in-out infinite;
}

.showcase-item.active .ill-glow {
    animation: pulse-glow 4s ease-in-out infinite;
}

/* Responsiveness adjustments for showcase */
@media (max-width: 992px) {
    .hero-showcase {
        min-height: 480px;
        height: 480px;
        max-width: 550px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero-showcase {
        min-height: 440px;
        height: 440px;
        border-radius: var(--border-radius-md);
    }
    
    .showcase-item {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }
    
    .showcase-illustration {
        min-height: 180px;
    }
    
    .showcase-illustration svg {
        max-height: 160px;
    }
    
    .showcase-title {
        font-size: 1.3rem;
    }
    
    .showcase-subtitle {
        font-size: 0.85rem;
    }
    
    .workflow-step {
        font-size: 0.65rem;
    }
    
    .workflow-line {
        width: 15px;
    }
}

/* Service Accordions Styling */
.service-accordion {
    max-width: 900px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-accordion-item {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(15, 36, 70, 0.06);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.service-accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(243, 112, 33, 0.2);
}

.service-accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-primary);
    gap: 1.5rem;
    transition: background-color var(--transition-fast);
}

.service-accordion-header:hover {
    background-color: rgba(243, 112, 33, 0.02);
}

.service-accordion-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-accordion-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(243, 112, 33, 0.08);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.service-accordion-item.active .service-accordion-icon-circle {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    transform: rotate(180deg);
}

.service-accordion-indicator {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    font-family: monospace;
    font-weight: normal;
    transition: transform var(--transition-normal);
}

.service-accordion-item.active .service-accordion-indicator {
    transform: rotate(45deg);
    color: var(--color-secondary);
}

.service-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
    border-top: 1px solid rgba(15, 36, 70, 0);
}

.service-accordion-item.active .service-accordion-body {
    border-top: 1px solid rgba(15, 36, 70, 0.05);
}

.service-accordion-content {
    padding: 2rem;
    background-color: #fafbfd;
}

.service-accordion-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-accordion-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .service-accordion-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .service-accordion-header {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
    .service-accordion-content {
        padding: 1.5rem;
    }
}

.service-detail-section {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-sm);
    padding: 1.25rem;
    border: 1px solid rgba(15, 36, 70, 0.03);
    box-shadow: var(--shadow-sm);
}

.service-detail-section h4 {
    font-size: 1.05rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    border-bottom: 1.5px solid var(--color-secondary);
    padding-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-detail-section ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-section ul li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
}

.service-detail-section ul li::before {
    content: '•';
    color: var(--color-secondary);
    position: absolute;
    left: 0.25rem;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-detail-section ol {
    padding-left: 1.25rem;
}

.service-detail-section ol li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}


/* Premium Services Overview Redesign */
.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
    align-items: stretch;
}

.premium-service-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(10, 29, 55, 0.04), 0 2px 8px rgba(10, 29, 55, 0.02);
    border: 1px solid rgba(10, 29, 55, 0.05);
    border-top: 4px solid var(--color-secondary); /* Brand saffron accent top border */
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.premium-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10, 29, 55, 0.09);
    border-color: rgba(243, 112, 33, 0.15);
}

.premium-card-top {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.premium-icon-box {
    width: 56px;
    height: 56px;
    background-color: rgba(243, 112, 33, 0.06); /* Saffron Orange tint */
    color: var(--color-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background-color 250ms ease, color 250ms ease;
    flex-shrink: 0;
}

.premium-service-card:hover .premium-icon-box {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
}

.premium-icon-box svg {
    width: 28px;
    height: 28px;
}

.premium-card-count {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.premium-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.premium-card-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 1.75rem;
    /* Limit description height to 2 lines to keep cards perfectly uniform */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.7rem;
}

.premium-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.premium-list-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-dark);
    line-height: 1.4;
}

.premium-list-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    width: 14px;
    height: 14px;
    margin-right: 10px;
    flex-shrink: 0;
}

.premium-list-check svg {
    width: 12px;
    height: 12px;
}

.premium-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--color-primary);
    color: var(--color-text-light) !important;
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    margin-top: auto;
}

.premium-card-btn:hover {
    background-color: var(--color-secondary);
    box-shadow: var(--shadow-orange);
    transform: translateY(-2px);
}

.premium-card-btn svg {
    transition: transform 200ms ease;
}

.premium-card-btn:hover svg {
    transform: translateX(4px);
}

/* Responsiveness overrides */
@media (max-width: 1400px) {
    .premium-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .premium-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 600px) {
    .premium-services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .premium-service-card {
        padding: 2.25rem 1.5rem;
    }
}

/* ==========================================================================
   Redesigned Services Section & Premium Individual Cards
   ========================================================================== */

.services-category-section {
    padding: 6rem 0;
    border-bottom: 1px solid rgba(15, 36, 70, 0.04);
}

.services-category-section:nth-child(even) {
    background-color: #ffffff;
}

.services-category-section:nth-child(odd) {
    background-color: var(--color-bg-body);
}

.category-header {
    margin-bottom: 3.5rem;
    max-width: 800px;
}

.category-title {
    font-size: 2.1rem;
    color: var(--color-primary);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 800;
}

.category-title span.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(243, 112, 33, 0.12) 0%, rgba(243, 112, 33, 0.04) 100%);
    border: 1px solid rgba(243, 112, 33, 0.15);
    color: var(--color-secondary);
    border-radius: 12px;
    transition: transform var(--transition-normal);
}

.services-category-section:hover .category-title span.category-icon {
    transform: rotate(-3deg) scale(1.05);
}

.category-title span.category-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.25;
}

.category-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-left: 4rem;
}

@media (max-width: 768px) {
    .category-title {
        font-size: 1.75rem;
        gap: 0.75rem;
    }
    .category-title span.category-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .category-title span.category-icon svg {
        width: 20px;
        height: 20px;
    }
    .category-subtitle {
        margin-left: 0;
    }
}

/* Service Card Grid System - Premium Redesign */
.services-category-section {
    position: relative;
    background: linear-gradient(180deg, #FFF9F5 0%, #FFFFFF 100%);
    overflow: hidden;
    padding: 6.5rem 0;
}

.decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--color-secondary);
    filter: blur(100px);
    opacity: 0.03;
    pointer-events: none;
}

.shape-1 {
    top: 10%;
    left: -5%;
    width: 350px;
    height: 350px;
}

.shape-2 {
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: var(--color-primary);
}

.individual-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6-column base layout */
    gap: 2.5rem; /* 40px gap */
    align-items: stretch;
    margin-top: 3.5rem;
    position: relative;
    z-index: 2;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.individual-service-card {
    grid-column: span 2; /* 3 cards per row by default */
    background-color: var(--color-bg-card);
    border-radius: 24px; /* 24px border radius */
    padding: 0; /* 0 padding to allow edge-to-edge header */
    border: 1px solid rgba(10, 29, 55, 0.06);
    box-shadow: 0 4px 20px -2px rgba(10, 29, 55, 0.03), 0 2px 4px -1px rgba(10, 29, 55, 0.01);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: hidden; /* Round header edges */
    opacity: 0;
    animation: fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered load animation */
.individual-services-grid > *:nth-child(1) { animation-delay: 0.05s; }
.individual-services-grid > *:nth-child(2) { animation-delay: 0.1s; }
.individual-services-grid > *:nth-child(3) { animation-delay: 0.15s; }
.individual-services-grid > *:nth-child(4) { animation-delay: 0.2s; }
.individual-services-grid > *:nth-child(5) { animation-delay: 0.25s; }
.individual-services-grid > *:nth-child(6) { animation-delay: 0.3s; }
.individual-services-grid > *:nth-child(7) { animation-delay: 0.35s; }
.individual-services-grid > *:nth-child(8) { animation-delay: 0.4s; }
.individual-services-grid > *:nth-child(9) { animation-delay: 0.45s; }
.individual-services-grid > *:nth-child(10) { animation-delay: 0.5s; }
.individual-services-grid > *:nth-child(11) { animation-delay: 0.55s; }
.individual-services-grid > *:nth-child(12) { animation-delay: 0.6s; }

.individual-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(10, 29, 55, 0.14), 0 0 0 1px rgba(243, 112, 33, 0.15), 0 15px 30px -10px rgba(243, 112, 33, 0.08);
    border-color: var(--color-secondary);
}

/* Featured Card styling */
.individual-services-grid .featured-card {
    grid-column: span 4; /* Spans 2 slots in a 3-column row */
    background: linear-gradient(135deg, #ffffff 0%, #fffbf8 100%);
    border: 1px solid rgba(243, 112, 33, 0.15);
    box-shadow: 0 10px 30px -5px rgba(243, 112, 33, 0.05), 0 2px 4px -1px rgba(10, 29, 55, 0.01);
}

/* Orphan cards in the last row span 3 to split 50/50 and cover empty space */
/* Banking (16 cards, first is featured): last two are 15, 16 */
.individual-services-grid > .individual-service-card:nth-child(15),
.individual-services-grid > .individual-service-card:nth-child(16),
/* AePS (5 cards): last two are 4, 5 */
.individual-services-grid > .individual-service-card:nth-child(4):nth-last-child(2),
.individual-services-grid > .individual-service-card:nth-child(5):last-child,
/* PAN & Aadhaar (8 cards): last two are 7, 8 */
.individual-services-grid > .individual-service-card:nth-child(7):nth-last-child(2),
.individual-services-grid > .individual-service-card:nth-child(8):last-child {
    grid-column: span 3;
}

.individual-services-grid .featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-secondary) 0%, #ff9858 100%);
    z-index: 4;
}

.individual-services-grid .featured-card .service-card-title {
    font-size: 1.65rem;
}

.individual-services-grid .featured-card .service-card-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.75rem;
}

/* Premium Card Header with Gradient & Curved Shapes */
.service-card-header {
    height: 160px;
    background: 
        radial-gradient(circle at 50% 50%, rgba(243, 112, 33, 0.05) 0%, rgba(243, 112, 33, 0) 70%),
        linear-gradient(135deg, rgba(243, 112, 33, 0.04) 0%, rgba(10, 29, 55, 0.02) 100%),
        #fdfdfd;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(10, 29, 55, 0.04);
    transition: background 0.4s ease, border-color 0.4s ease;
}

.individual-service-card:hover .service-card-header {
    background: 
        radial-gradient(circle at 50% 50%, rgba(243, 112, 33, 0.1) 0%, rgba(243, 112, 33, 0) 80%),
        linear-gradient(135deg, rgba(243, 112, 33, 0.08) 0%, rgba(10, 29, 55, 0.04) 100%),
        #ffffff;
    border-bottom-color: rgba(243, 112, 33, 0.1);
}

.header-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.individual-service-card:hover .header-shapes {
    opacity: 0.85;
}

/* Modern grid and concentric dash patterns inside header-shapes */
.header-shapes::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(10, 29, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 29, 55, 0.03) 1px, transparent 1px);
    background-size: 14px 14px;
    background-position: center;
    mask-image: radial-gradient(circle, black 40%, transparent 85%);
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 85%);
}

.header-shapes::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px dashed rgba(243, 112, 33, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.h-shape-circle {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 110px;
    height: 110px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: linear-gradient(135deg, rgba(243, 112, 33, 0.12) 0%, rgba(243, 112, 33, 0.02) 100%);
    filter: blur(5px);
    animation: rotateShape 15s linear infinite;
}

@keyframes rotateShape {
    0% { transform: rotate(0deg) scale(1); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { transform: rotate(180deg) scale(1.1); border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%; }
    100% { transform: rotate(360deg) scale(1); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

/* Vector Illustration Positioning & Float keyframe */
.service-card-illustration {
    height: 140px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.service-card-illustration svg,
.service-card-illustration img {
    height: 100%;
    width: 100%;
    max-width: 175px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
    will-change: transform;
    animation: floatIllustration 4s ease-in-out infinite alternate;
}

/* Rounded caps and smooth paths for SVG elements */
.service-card-illustration svg path,
.service-card-illustration svg rect,
.service-card-illustration svg circle,
.service-card-illustration svg ellipse {
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 4px 6px rgba(10, 29, 55, 0.05));
    transition: filter 0.4s ease, transform 0.4s ease;
}

.individual-service-card:hover .service-card-illustration svg path,
.individual-service-card:hover .service-card-illustration svg rect,
.individual-service-card:hover .service-card-illustration svg circle {
    filter: drop-shadow(0 8px 12px rgba(10, 29, 55, 0.12));
}

.individual-service-card:hover .service-card-illustration svg,
.individual-service-card:hover .service-card-illustration img {
    transform: scale(1.08) translateY(-6px);
}

@keyframes floatIllustration {
    0% { transform: translateY(0); }
    100% { transform: translateY(-4px); }
}

/* Ambient glow plate behind the main illustration */
.service-card-illustration::after {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.18) 0%, rgba(243, 112, 33, 0) 70%);
    border-radius: 50%;
    filter: blur(15px);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.individual-service-card:hover .service-card-illustration::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
    animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Floating particle overlay styled by category logic */
.service-card-illustration::before {
    content: '';
    position: absolute;
    inset: -10px;
    pointer-events: none;
    z-index: 1;
    background-image: 
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23f37021'><path d='M12 0L14.5 9.5L24 12L14.5 14.5L12 24L9.5 14.5L0 12L9.5 9.5Z'/></svg>"),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='%230a1d37' opacity='0.35'><path d='M12 0L14.5 9.5L24 12L14.5 14.5L12 24L9.5 14.5L0 12L9.5 9.5Z'/></svg>"),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 10 10'><circle cx='5' cy='5' r='3' fill='%23f37021' opacity='0.5'/></svg>");
    background-repeat: no-repeat;
    background-position: 15% 20%, 82% 15%, 85% 75%;
    opacity: 0.4;
    transition: opacity 0.4s ease, transform 0.4s ease;
    animation: floatParticles 5s ease-in-out infinite alternate;
}

.individual-service-card:hover .service-card-illustration::before {
    opacity: 0.9;
    transform: scale(1.15) translate(-3px, -2px);
}

@keyframes floatParticles {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(5deg); }
    100% { transform: translateY(2px) rotate(-5deg); }
}

/* Category-specific floating UI elements logic (Banking vs Docs/Govt) */
.individual-service-card[href*="savings"] .service-card-illustration::before,
.individual-service-card[href*="passbook"] .service-card-illustration::before,
.individual-service-card[href*="deposit"] .service-card-illustration::before,
.individual-service-card[href*="withdrawal"] .service-card-illustration::before,
.individual-service-card[href*="loan"] .service-card-illustration::before,
.individual-service-card[href*="money"] .service-card-illustration::before,
.individual-service-card[href*="pension"] .service-card-illustration::before,
.individual-service-card[href*="insurance"] .service-card-illustration::before,
.individual-service-card[href*="aeps"] .service-card-illustration::before,
.individual-service-card[href*="atm"] .service-card-illustration::before,
.individual-service-card[href*="fino"] .service-card-illustration::before,
.individual-service-card[href*="finance"] .service-card-illustration::before {
    background-image: 
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23f37021'><path d='M12 0L14.5 9.5L24 12L14.5 14.5L12 24L9.5 14.5L0 12L9.5 9.5Z'/></svg>"),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f37021' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2v20M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'></path></svg>"),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230a1d37' stroke-width='2' opacity='0.4'><path d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'></path></svg>");
    background-position: 15% 15%, 85% 20%, 80% 80%;
}

.individual-service-card[href*="registration"] .service-card-illustration::before,
.individual-service-card[href*="card"] .service-card-illustration::before,
.individual-service-card[href*="linking"] .service-card-illustration::before,
.individual-service-card[href*="npci"] .service-card-illustration::before,
.individual-service-card[href*="dbt"] .service-card-illustration::before,
.individual-service-card[href*="kyc"] .service-card-illustration::before,
.individual-service-card[href*="csc"] .service-card-illustration::before,
.individual-service-card[href*="kendra"] .service-card-illustration::before,
.individual-service-card[href*="government"] .service-card-illustration::before,
.individual-service-card[href*="xerox"] .service-card-illustration::before,
.individual-service-card[href*="printing"] .service-card-illustration::before,
.individual-service-card[href*="scanning"] .service-card-illustration::before {
    background-image: 
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f37021' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'></path></svg>"),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f37021' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M22 11.08V12a10 10 0 1 1-5.93-9.14'></path><polyline points='22 4 12 14.01 9 11.01'></polyline></svg>"),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a1d37' stroke-width='2' opacity='0.4'><path d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'></path><polyline points='14 2 14 8 20 8'></polyline></svg>");
    background-position: 12% 15%, 85% 25%, 80% 75%;
}

@media (prefers-reduced-motion: reduce) {
    .service-card-illustration svg,
    .service-card-illustration img,
    .service-card-illustration::before,
    .service-card-illustration::after,
    .h-shape-circle {
        animation: none !important;
        transition: none !important;
    }
    .individual-service-card:hover .service-card-illustration svg {
        transform: none !important;
    }
}

/* Full bleed image layout for service cards containing photos */
.service-card-header:has(.service-card-illustration img) {
    background: none;
}
.service-card-header:has(.service-card-illustration img) .header-shapes {
    display: none;
}
.service-card-header:has(.service-card-illustration img) .service-card-illustration {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.service-card-header:has(.service-card-illustration img) .service-card-illustration img {
    width: 100%;
    height: 100%;
    max-width: 100% !important;
    object-fit: cover;
    object-position: center;
    animation: none !important;
}
.individual-service-card:hover .service-card-header:has(.service-card-illustration img) .service-card-illustration {
    animation: none !important;
}
.individual-service-card:hover .service-card-header:has(.service-card-illustration img) .service-card-illustration::after {
    display: none !important;
}
.individual-service-card:hover .service-card-header:has(.service-card-illustration img) .service-card-illustration img {
    transform: scale(1.06);
}


/* Card Body Content Wrapping */
.service-card-content {
    padding: 2.5rem 2.25rem 2.25rem 2.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.service-card-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.35;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

/* Bullets */
.service-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0; /* Space before divider */
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.service-card-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    font-family: var(--font-body);
}

.check-svg {
    width: 16px;
    height: 16px;
    color: #10b981; /* Green check */
    flex-shrink: 0;
    margin-top: 3px;
}

/* Full-width Branded CTA Button */
.service-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e65c00 100%);
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    padding: 0.85rem 1.75rem;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: auto;
    width: 100%; /* Full width */
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(243, 112, 33, 0.2);
}

.arrow-svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.individual-service-card:hover .service-card-link {
    background: linear-gradient(135deg, #e65c00 0%, #cc4e00 100%);
    box-shadow: 0 8px 20px rgba(243, 112, 33, 0.35);
    transform: translateY(-2px);
}

.individual-service-card:hover .service-card-link .arrow-svg {
    transform: translateX(5px);
}

/* Card Accent Bar (Top Edge Gradient Accent) */
.card-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary) 0%, #ff9858 100%);
    opacity: 0.65;
    transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 4;
}

.individual-service-card:hover .card-accent-bar {
    opacity: 1;
    height: 6px;
}

/* Decorative background shapes inside card body */
.card-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.card-decor-circle {
    position: absolute;
    top: 120px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.04) 0%, rgba(243, 112, 33, 0) 70%);
    filter: blur(10px);
}

.card-decor-circle-2 {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 29, 55, 0.03) 0%, rgba(10, 29, 55, 0) 70%);
    filter: blur(8px);
}

/* Premium Trust Badge directly below illustration */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.725rem;
    font-weight: 700;
    color: #059669; /* Green for trust */
    background-color: #ecfdf5;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    border: 1px solid rgba(5, 150, 105, 0.15);
    font-family: var(--font-heading);
    margin-bottom: 1.15rem;
    align-self: flex-start;
}

.trust-icon {
    width: 12px;
    height: 12px;
    stroke: #059669;
    fill: none;
    display: inline-block;
    vertical-align: middle;
}

/* Bottom elements area */
.service-card-bottom-area {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}

.card-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(10, 29, 55, 0.06);
}

/* Compact Info Row for Proof Metric */
.card-info-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.info-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.725rem;
    font-weight: 600;
    color: var(--color-text-muted);
    background-color: rgba(10, 29, 55, 0.02);
    border: 1px solid rgba(10, 29, 55, 0.05);
    padding: 0.3rem 0.65rem;
    border-radius: 20px;
    font-family: var(--font-body);
}

.info-icon {
    width: 12px;
    height: 12px;
    stroke: var(--color-text-muted);
    fill: none;
    display: inline-block;
    vertical-align: middle;
}

/* Responsiveness overrides for Redesigned Cards */
@media (max-width: 1200px) {
    .individual-services-grid {
        gap: 2rem;
    }
    .service-card-content {
        padding: 2.25rem 1.75rem 1.75rem 1.75rem;
    }
    .service-card-illustration {
        height: 130px;
    }
    .service-card-illustration svg,
    .service-card-illustration img {
        max-width: 155px;
    }
}

@media (max-width: 992px) {
    .individual-services-grid {
        gap: 1.75rem;
    }
    .individual-services-grid > .individual-service-card {
        grid-column: span 3 !important; /* 2 cards per row on 6-col grid */
    }
    .individual-services-grid .featured-card {
        grid-column: span 6 !important; /* Full width */
    }
    .individual-services-grid .featured-card .service-card-bullets {
        display: flex;
        flex-direction: column;
    }
    .services-category-section {
        padding: 4.5rem 0;
    }
    .category-header {
        margin-bottom: 2.5rem;
    }
    .category-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .individual-services-grid {
        gap: 1.5rem;
    }
    .individual-services-grid > .individual-service-card {
        grid-column: span 6 !important; /* 1 card per row */
    }
    .individual-services-grid .featured-card {
        grid-column: span 6 !important; /* 1 card per row */
    }
    .service-card-content {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }
    .service-card-illustration {
        height: 120px;
    }
    .service-card-illustration svg,
    .service-card-illustration img {
        max-width: 145px;
    }
    .services-category-section {
        padding: 4rem 0;
    }
}

/* Guarantee Section (Core Strengths) Redesign */
.guarantee-section {
    background: linear-gradient(135deg, #091a30 0%, #040d1a 100%) !important;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Blurred background decoration circles */
.guarantee-section::before,
.guarantee-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
}

.guarantee-section::before {
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    top: -10%;
    left: -5%;
}

.guarantee-section::after {
    width: 400px;
    height: 400px;
    background: #00bcd4;
    bottom: -15%;
    right: -10%;
}

/* Ensure contents stay on top of background shapes */
.guarantee-section .container {
    position: relative;
    z-index: 2;
}

/* Title colors in dark section */
.guarantee-section .section-header .section-title {
    color: #ffffff !important;
}

.guarantee-section .section-header .section-tag {
    color: var(--color-secondary) !important;
    background: rgba(243, 112, 33, 0.1) !important;
    border: 1px solid rgba(243, 112, 33, 0.2) !important;
}

/* Dark mode feature cards */
.guarantee-section .feature-card {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.guarantee-section .feature-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px -15px rgba(243, 112, 33, 0.15) !important;
    border-color: rgba(243, 112, 33, 0.4) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.guarantee-section .feature-card-icon {
    background-color: rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.guarantee-section .feature-card:hover .feature-card-icon {
    background-color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
    box-shadow: 0 8px 20px rgba(243, 112, 33, 0.3) !important;
}

.guarantee-section .feature-card-title {
    color: #ffffff !important;
}

.guarantee-section .feature-card-desc {
    color: #94a3b8 !important; /* Soft muted text color */
}

/* How It Works Section Redesign */
.how-it-works-section {
    background-color: #ffffff !important;
    background-image: 
        radial-gradient(rgba(243, 112, 33, 0.04) 1.5px, transparent 1.5px),
        linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%) !important;
    background-size: 24px 24px, 100% 100% !important;
    background-position: center center !important;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(15, 36, 70, 0.04) !important;
}

/* Glowing background blobs */
.how-it-works-section::before,
.how-it-works-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.how-it-works-section::before {
    width: 250px;
    height: 250px;
    background: var(--color-primary);
    top: 5%;
    right: 5%;
}

.how-it-works-section::after {
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    bottom: 5%;
    left: 5%;
}

.how-it-works-section .container {
    position: relative;
    z-index: 2;
}

/* Style cards inside Process Steps to look premium */
.how-it-works-section .process-step {
    background: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(10, 29, 55, 0.04) !important;
    border-radius: 20px !important;
    padding: 2.5rem 1.75rem !important;
    box-shadow: 0 10px 30px -15px rgba(10, 29, 55, 0.02) !important;
    backdrop-filter: blur(8px) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.how-it-works-section .process-step:hover {
    transform: translateY(-5px) !important;
    background: #ffffff !important;
    border-color: rgba(243, 112, 33, 0.2) !important;
    box-shadow: 0 20px 40px -20px rgba(243, 112, 33, 0.1) !important;
}

.how-it-works-section .process-step-number {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.35rem !important;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1c3d69 100%) !important;
    border: 4px solid #ffffff !important;
    box-shadow: 0 4px 12px rgba(10, 29, 55, 0.1) !important;
}

.how-it-works-section .process-step:hover .process-step-number {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #ff9858 100%) !important;
    box-shadow: 0 6px 16px rgba(243, 112, 33, 0.2) !important;
}

.how-it-works-section .process-step h3 {
    color: var(--color-primary) !important;
    font-weight: 700 !important;
    margin-bottom: 0.75rem !important;
}

.how-it-works-section .process-step p {
    color: var(--color-text-muted) !important;
    line-height: 1.6 !important;
}

/* Banner Slider Styling */
.banner-slider-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: #f1f5f9;
    z-index: 10;
}
.slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    user-select: none;
}
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 29, 55, 0.85) 0%, rgba(10, 29, 55, 0.45) 50%, rgba(10, 29, 55, 0.75) 100%);
    z-index: 1;
}
.slide.image-only::before {
    display: none;
}
.slide:nth-child(1) {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}
.slide:nth-child(2) {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}
.slide:nth-child(3) {
    background: linear-gradient(135deg, #3c1603 0%, #7c2d12 100%);
}
.slide-content {
    text-align: center;
    color: #ffffff;
    padding: 2.5rem;
    max-width: 750px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.5s ease;
}
.slide-content h3 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.85rem;
    font-family: var(--font-heading);
    letter-spacing: -0.025em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.slide-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 12;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.slider-arrow:hover {
    background-color: #ffffff;
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.slider-arrow.prev {
    left: 24px;
}
.slider-arrow.next {
    right: 24px;
}
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 12;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-dot.active {
    background-color: #ffffff;
    width: 28px;
    border-radius: 5px;
}

@media (max-width: 992px) {
    .banner-slider-wrapper {
        height: 280px;
    }
    .slide-content h3 {
        font-size: 1.85rem;
    }
    .slide-content p {
        font-size: 0.95rem;
    }
}
@media (max-width: 768px) {
    .banner-slider-wrapper {
        height: 220px;
    }
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .slider-arrow.prev {
        left: 12px;
    }
    .slider-arrow.next {
        right: 12px;
    }
    .slide-content {
        padding: 1.5rem;
    }
    .slide-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    .slide-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    .slider-dots {
        bottom: 16px;
    }
}
@media (max-width: 480px) {
    .banner-slider-wrapper {
        height: 180px;
    }
    .slide-content h3 {
        font-size: 1.25rem;
    }
    .slide-content p {
        font-size: 0.8rem;
    }
}
