/* Global Styles */
:root {
    /* Brand Blue Theme */
    --primary-blue: #0056b3;
    --dark-blue: #003d80;
    --primary-green: #0056b3;
    /* Kept legacy name to avoid breaking refs */
    --dark-green: #003d80;
    --bg-blue-light: #eef4ff;
    --bg-green-light: #eef4ff;
    --black: #1a1a1a;
    --grey-text: #666;
    --light-grey: #f5f6fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 86, 179, 0.1);
    --soft-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    --font-main: 'Inter', sans-serif;
    --gradient-blue: linear-gradient(135deg, #0056b3 0%, #3d8bff 100%);
    --gradient-green: linear-gradient(135deg, #0056b3 0%, #3d8bff 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #003d80 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--black);
    /* Animated Gradient Background */
    background: linear-gradient(-45deg, #fdfbfb, #ebedee, #f0f7ff, #e6fffb);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rounded {
    border-radius: 50px;
}

/* Visibility Helpers */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.btn-black {
    background-color: var(--black);
    color: var(--white);
}

.btn-black:hover {
    background-color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-green {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-green:hover {
    background-color: var(--dark-green);
}

.btn-green-gradient {
    background: var(--gradient-green);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-green-sm {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

/* Premium Header Styles */
.header {
    background: var(--primary-blue);
    /* Solid Brand Blue */
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    /* White logo text */
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--white);
    /* White logo icon */
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    /* Semi-transparent white links */
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    /* White underline */
    transition: width 0.3s ease;
    border-radius: 10px;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    /* Pure white on hover/active */
}

/* Contact Us Button in Header */
.btn-login-premium {
    background: #ffffff;
    color: var(--primary-blue);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    display: inline-block;
}

.btn-login-premium:hover {
    background: transparent;
    color: #ffffff !important;
    /* Ensure text remains white on hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    padding: 180px 0 80px;
    /* Adjusted padding since header is sticky */
    position: relative;
    /* Remove background here if body generic background is sufficient, or keep transparent */
    background: transparent;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.35;
    /* Consistent line height */
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    max-width: 100%;
    min-height: 2.7em;
    /* Reserved space for 2 phrases */
    display: block;
}

.cursor {
    color: var(--primary-blue);
    font-weight: 200;
    animation: blink 1s infinite;
    margin-left: 5px;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.text-gradient {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--grey-text);
    margin-bottom: 30px;
    max-width: 480px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    min-height: 400px;
}

.hero-visual-premium {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-node {
    width: 120px;
    height: 120px;
    background: var(--gradient-blue);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.3);
    z-index: 5;
    animation: core-pulse 3s ease-in-out infinite;
}

.node-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    border-radius: inherit;
    opacity: 0.3;
    animation: outer-pulse 3s ease-out infinite;
}

.flow-circle {
    position: absolute;
    border: 2px solid rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    animation: rotate-flow 15s linear infinite;
}

.c1 {
    width: 300px;
    height: 300px;
}

.c2 {
    width: 450px;
    height: 450px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.floating-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    animation: float-random 6s ease-in-out infinite;
}

.fn1 {
    top: 0;
    right: 20%;
    animation-delay: 0s;
}

.fn2 {
    bottom: 10%;
    left: 10%;
    animation-delay: 1.5s;
}

.fn3 {
    top: 20%;
    left: 0;
    animation-delay: 3s;
}

.fn4 {
    bottom: 0;
    right: 5%;
    animation-delay: 4.5s;
}

@keyframes core-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes outer-pulse {
    to {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes rotate-flow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float-random {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    33% {
        transform: translateY(-15px) translateX(10px);
    }

    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

/* Services Section */
.services {
    padding: 100px 0;
}

.services-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.services-nav-card {
    flex: 0 0 280px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    height: fit-content;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item {
    padding: 15px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    color: var(--grey-text);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.service-item:hover {
    background-color: var(--light-grey);
    color: var(--primary-green);
}

.service-item.active {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.services-content-area {
    flex: 1;
    padding: 40px;
    background: #fafafa;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.service-detail {
    display: none;
    animation: fadeIn 0.5s ease;
}

.service-detail.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--black);
}

.service-description {
    font-size: 1.1rem;
    color: var(--grey-text);
    margin-bottom: 30px;
    max-width: 600px;
}

.service-features {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #444;
}

.service-features i {
    color: var(--primary-green);
}

/* CSS Visuals for Service Sections (Instead of Images) */
.service-info-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    padding: 20px;
}

.visual-box-premium {
    width: 100%;
    max-width: 380px;
    height: 320px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 32px;
    position: relative;
    box-shadow:
        0 25px 50px -12px rgba(0, 86, 179, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.visual-node-main {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.3);
    animation: float-main 4s ease-in-out infinite;
}

.visual-orbit {
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1.5px dashed rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    animation: rotate-orbit 20s linear infinite;
}

.visual-child-node {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid rgba(0, 86, 179, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-blue);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.n1 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.n2 {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.n3 {
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.n4 {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.visual-glow-sphere {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

@keyframes float-main {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes rotate-orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Statistics Section */
.stats {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-green);
    opacity: 0.9;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials-container {
    display: flex;
    gap: 60px;
}

.testimonial-intro {
    flex: 1;
    max-width: 400px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.rating-display {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rating-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
}

.stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rating-text {
    color: var(--grey-text);
}

.testimonial-cards {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.t-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.t-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    color: #e0e0e0;
    font-size: 2rem;
    margin-bottom: 20px;
}

.t-text {
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.t-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.t-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.t-info span {
    font-size: 0.85rem;
    color: var(--grey-text);
}

/* Footer */
.footer {
    background-color: #111;
    color: #ccc;
    padding: 80px 0 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-desc {
    margin-bottom: 25px;
    max-width: 300px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary-green);
}

.footer-links h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

.footer-links ul li a {
    color: #aaa;
    transition: color 0.2s;
}

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

.footer-newsletter h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-newsletter p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #222;
    color: #fff;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary-green);
}

/* Response Design Tweaks */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .services-container {
        flex-direction: column;
    }

    .services-nav-card {
        width: 100%;
        display: flex;
        overflow-x: auto;
        padding: 20px;
    }

    .service-list {
        flex-direction: row;
    }

    .service-item {
        white-space: nowrap;
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .nav {
        order: 3;
        width: 100%;
        margin-top: 20px;
        display: none;
    }

    /* Hide nav on mobile for simplicity in this demo */
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-image {
        order: -1;
        margin-bottom: 30px;
    }

    .services-container {
        flex-direction: column;
    }

    .services-nav-card {
        flex: none;
        width: 100%;
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding: 10px;
    }

    .service-item {
        white-space: nowrap;
        padding: 10px 20px;
    }

    .stats-container {
        flex-direction: column;
        gap: 40px;
    }

    .testimonials-container {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Dropdown Styles */
.nav-item-dropdown {
    position: relative;
    /* padding-bottom: 5px; */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    min-width: 260px;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1100;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.dropdown-menu li {
    list-style: none;
    margin-bottom: 5px;
}

.dropdown-menu li a {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--black);
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown-menu li a i {
    font-size: 1.15rem;
    color: var(--primary-blue);
    /* Brand Blue Icons */
    width: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.dropdown-menu li a:hover {
    background: #f0f7ff;
    /* Very light blue background on hover */
    color: var(--primary-blue);
    padding-left: 20px;
}

.dropdown-menu li a:hover i {
    transform: scale(1.2) rotate(10deg);
}

.nav-link i {
    font-size: 0.8em;
    margin-left: 4px;
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}

.sidebar-item {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
}

.sidebar-item:hover {
    width: 70px;
    padding-right: 10px;
}

.back-btn {
    width: 160px !important;
    justify-content: flex-start !important;
    padding-left: 20px !important;
    background-color: #000;
}

.whatsapp-btn {
    width: 200px !important;
    justify-content: flex-start !important;
    padding-left: 20px !important;
    background-color: var(--primary-blue);
}

.linkedin-btn {
    width: 200px !important;
    justify-content: flex-start !important;
    padding-left: 20px !important;
    background-color: #0077b5;
}

/* Updated Sidebar Styling for Irregular Widths */
.sticky-sidebar {
    /* Reset previous container styles that forced a rectangular shape */
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    align-items: flex-start;
    /* Allow items to have their own widths */
    filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.15));
    /* Shadow conforms to shape */
}

.sidebar-item {
    /* Reset base styles */
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: width 0.3s ease;
}

/* Specific styling for Top/Black button */
.back-btn {
    width: 160px !important;
    justify-content: flex-start !important;
    padding-left: 20px !important;
    border-top-right-radius: 20px;
}

/* Specific styling for Middle/Green button */
.whatsapp-btn {
    width: 200px !important;
    justify-content: flex-start !important;
    padding-left: 20px !important;
    /* Standard square or add radius if desired, image suggests square-ish interaction */
}

/* Specific styling for Bottom/Blue (LinkedIn) button */
.linkedin-btn {
    width: 200px !important;
    justify-content: flex-start !important;
    padding-left: 20px !important;
    width: 200px;
    /* Fixed extended width */
    justify-content: flex-start;
    /* Align content to left */
    padding-left: 20px;
    /* Space for icon */
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    /* Rounded end like the image */
}

.linkedin-btn i {
    font-size: 28px;
    /* Slightly larger icon */
    margin-right: 15px;
}

.sidebar-text {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

/* Hover effects */
.back-btn:hover {
    width: 70px;
}

.whatsapp-btn:hover {
    width: 70px;
}

.linkedin-btn:hover {
    width: 210px;
    /* Slight growth on hover */
}

/* Dynamic Sidebar Expansion */
.linkedin-btn {
    width: 200px !important;
    justify-content: flex-start !important;
    padding-left: 20px !important;
    width: 60px !important;
    /* Start collapsed */
    justify-content: center !important;
    padding-left: 0 !important;
    cursor: pointer;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding-left 0.4s ease !important;
}

.linkedin-btn .sidebar-text {
    opacity: 1 !important;
    transform: none !important;
    opacity: 0;
    margin-left: 10px;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.linkedin-btn:hover,
.linkedin-btn.expanded {
    width: 200px !important;
    justify-content: flex-start !important;
    padding-left: 20px !important;
}

.linkedin-btn:hover,
.linkedin-btn:hover .sidebar-text,
.linkedin-btn.expanded .sidebar-text {
    opacity: 1;
    transform: translateX(0);
}

.linkedin-btn i {
    flex-shrink: 0;
}

/* WhatsApp Expansion Logic */
.whatsapp-btn {
    width: 200px !important;
    justify-content: flex-start !important;
    padding-left: 20px !important;
    width: 60px !important;
    justify-content: center !important;
    padding-left: 0 !important;
    cursor: pointer;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding-left 0.4s ease !important;
}

.whatsapp-btn .sidebar-text {
    opacity: 1 !important;
    transform: none !important;
    opacity: 0;
    margin-left: 10px;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.whatsapp-btn:hover,
.whatsapp-btn.expanded {
    width: 200px !important;
    justify-content: flex-start !important;
    padding-left: 20px !important;
}

.whatsapp-btn:hover,
.whatsapp-btn:hover .sidebar-text,
.whatsapp-btn.expanded .sidebar-text {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-btn i {
    flex-shrink: 0;
}

/* Back Button Expansion Logic */
.back-btn {
    width: 160px !important;
    justify-content: flex-start !important;
    padding-left: 20px !important;
    width: 60px !important;
    justify-content: center !important;
    padding-left: 0 !important;
    cursor: pointer;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding-left 0.4s ease !important;
}

.back-btn .sidebar-text {
    opacity: 1 !important;
    transform: none !important;
    opacity: 0;
    margin-left: 10px;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.back-btn:hover,
.back-btn.expanded {
    width: 160px !important;
    /* Slightly shorter than others */
    justify-content: flex-start !important;
    padding-left: 20px !important;
}

.back-btn:hover .sidebar-text,
.back-btn.expanded .sidebar-text {
    opacity: 1;
    transform: translateX(0);
}

.back-btn i {
    flex-shrink: 0;
}

/* Industry Solutions Section */
.industry-solutions {
    padding: 80px 0;
    background-color: #f1f1f1;
    /* Light grey background from image */
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 86, 179, 0.1);
    /* Lighter brand blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-blue);
    /* Brand blue */
    font-size: 32px;
}

.industry-icon i {
    color: var(--primary-blue);
    /* Brand blue icon */
}

.industry-text {
    font-size: 0.95rem;
    color: #546e7a;
    /* Blue-grey text color */
    line-height: 1.6;
}

.industry-text strong {
    color: #263238;
    /* Darker text for the heading */
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    /* Make it block to sit on its own line if needed, or inline for "Banks, facilitate..." flow */
    margin-bottom: 8px;
    display: inline;
    /* actually image shows "Banks, facilitate..." so inline might be better, but "Banks," is bold. layout: Icon -> Title/Text block. */
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Buttons - Expanding Pill Style */
.sidebar-item {
    width: 60px !important;
    height: 60px;
    display: flex;
    justify-content: center;
    /* Center icon when collapsed */
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: width 0.3s ease, padding-left 0.3s ease;
    /* Animate width and padding */
    overflow: hidden;
    /* Keep text inside */
    position: relative;
    border-radius: 0;
}

/* Individual Colors & Radii */
.back-btn {
    background-color: #000;
    border-top-right-radius: 20px;
}

.whatsapp-btn {
    background-color: var(--primary-blue);
}

.linkedin-btn {
    background-color: #0077b5;
    border-bottom-right-radius: 20px;
}

/* Icon Styling */
.sidebar-item i {
    flex-shrink: 0;
    width: 60px;
    /* Occupies full width when collapsed */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Text Defaults (Hidden) */
.sidebar-text {
    opacity: 0;
    max-width: 0;
    white-space: nowrap;
    margin-left: 0;
    transition: opacity 0.2s ease 0.1s;
    font-size: 16px;
    font-weight: 500;
}

/* Pulse Animation Definition */
@keyframes pulse-icon {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Apply Animation to Icons */
.sidebar-item i {
    flex-shrink: 0;
    width: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse-icon 2s infinite ease-in-out;
    /* Continuous gentle pulse */
}

/* Stop animation on hover so it doesn't conflict with expansion */
.sidebar-item:hover i {
    animation: none;
    transform: scale(1);
    /* Reset scale */
}

/* Hover / Active Expansion */
/* Hover / Active Expansion */
.sidebar-item:hover,
.sidebar-item.active {
    width: 220px !important;
    /* Increased width to accommodate text */
    justify-content: flex-start;
    padding-left: 0;
}

/* Align icon to left on hover */
.sidebar-item:hover i {
    width: 60px;
    /* Keep icon size consistent */
}

/* Show Text on Hover or Active */
.sidebar-item:hover .sidebar-text,
.sidebar-item:active .sidebar-text {
    opacity: 1;
    visibility: visible;
    max-width: 150px;
    /* Allow text to expand */
    margin-left: 10px;
    /* Add spacing between icon and text */
}

/* Ensure clickable and on top */
.sidebar-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.contact-wrapper {
    width: 100%;
    max-width: 1100px;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--black);
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.back-home-btn:hover {
    background: var(--white);
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-container.glass-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

/* Left Side: Info */
.contact-info {
    padding: 50px;
    background: rgba(255, 255, 255, 0.4);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111;
}

.contact-subtitle {
    color: var(--grey-text);
    margin-bottom: 40px;
    font-size: 1rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-purple {
    background: linear-gradient(135deg, #0056b3, #3d8bff);
}

.icon-orange {
    background: linear-gradient(135deg, #fd9644, #fa8231);
}

.icon-green {
    background: linear-gradient(135deg, #26de81, #20bf6b);
}

.info-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.info-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.map-container iframe {
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
}

/* Right Side: Form */
.contact-form-section {
    padding: 50px;
    background: white;
    /* Clean white for form readability */
}

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

.form-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #111;
}

.actual-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: flex;
    gap: 20px;
}

.input-group {
    flex: 1;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s;
    outline: none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    background: #fff;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.1);
}

.btn-submit {
    background: var(--gradient-green);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container.glass-card {
        grid-template-columns: 1fr;
    }

    .contact-info {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .input-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* =========================================
   Voice Page Specific Styles
   ========================================= */

/* Premium Gradient Hero */
.voice-hero {
    background: linear-gradient(100deg, #26c6da 0%, #004d40 100%);
    /* Teal to Dark Tone */
    padding: 120px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: -85px;
    /* Offset for header transparency if needed */
    padding-top: 150px;
}

.voice-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.voice-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-teal {
    background: var(--primary-green);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.3);
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-teal:hover {
    background: #fff;
    color: #00838f;
    transform: translateY(-3px);
}

/* Voice Features Section */
.voice-features {
    padding: 100px 0;
    background: #fdfdfd;
}

.v-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.v-feature-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    border-radius: 24px;
    transition: all 0.3s;
    background: transparent;
}

.v-feature-card:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.v-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--primary-green);
    /* Dark Navy from Image */
    color: var(--primary-green);
    /* Teal Icon Color */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 43, 73, 0.2);
}

.v-text h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.v-text p {
    color: #546e7a;
    line-height: 1.6;
    font-size: 1rem;
}

/* Floating Diagram/Identity Section */
.voice-diagram-section {
    padding: 100px 20px;
    background: white;
    text-align: center;
}

.start-diagram-wrapper {
    max-width: 1100px;
    margin: 50px auto 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.virtual-network-visual {
    width: 100%;
    /* Simplified visual representation with CSS shapes */
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Stats Row */
.voice-stats {
    padding: 80px 0;
    background: #f4fcfd;
    /* Light teal bg */
    border-top: 1px solid #e0f2f1;
}

.v-stat-row {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 40px;
}

.v-stat-item h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.v-stat-item p {
    font-size: 1.1rem;
    color: #455a64;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .voice-hero h1 {
        font-size: 2.5rem;
    }

    .v-feature-grid {
        grid-template-columns: 1fr;
    }

    .v-stat-row {
        flex-direction: column;
    }

    .voice-hero {
        padding-top: 120px;
        margin-top: 0;
    }
}

/* =========================================
   Email Page Specific Styles
   ========================================= */

/* Email Hero */
.email-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-green-light) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.email-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.email-hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

/* Fallback for image - 3D Circle Placeholder */
.email-visual-placeholder {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle at 30% 30%, #a5d6a7, #4caf50);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(76, 175, 80, 0.3);
    animation: float 6s ease-in-out infinite;
}

.email-hero-text {
    flex: 1;
}

.email-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.email-hero-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 90%;
}

/* Services Overview */
.email-services-banner {
    background: linear-gradient(90deg, #111 0%, #388e3c 100%);
    padding: 20px 0;
    text-align: center;
    color: white;
    margin-bottom: 80px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.email-services-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.email-overview-container {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.overview-cards {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ov-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 25px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.ov-card:hover,
.ov-card.active {
    border-color: var(--primary-green);
    border-left: 6px solid var(--primary-green);
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.15);
}

.ov-icon {
    font-size: 2.2rem;
    color: var(--primary-green);
    /* Orange accent */
}

.ov-center-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ov-laptop-mockup-css {
    width: 100%;
    max-width: 450px;
    height: 300px;
    background: #f5f5f5;
    border-radius: 20px;
    border: 12px solid #333;
    border-bottom-width: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.ov-screen-content {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mini-card {
    background: white;
    height: 80px;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.ov-details {
    flex: 1;
}

.ov-details h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #222;
}

.ov-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.ov-details ul li {
    margin-bottom: 18px;
    position: relative;
    padding-left: 30px;
    color: #444;
    font-weight: 600;
    font-size: 1.05rem;
}

.ov-details ul li::before {
    content: "\f058";
    /* Check circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-green);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Feature Cards Grid (3D Style) */
.email-features-section {
    padding: 100px 0;
    background: #f9fbfd;
}

.ef-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ef-card {
    background: white;
    padding: 40px 25px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    text-align: left;
    transition: transform 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 4px solid transparent;
}

.ef-card:hover {
    transform: translateY(-12px);
    border-top-color: var(--primary-green);
}

.ef-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1976d2;
    margin-bottom: 25px;
}

.ef-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #222;
}

.ef-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Advantages Section */
.email-advantages {
    padding: 120px 0;
    background: #fff;
}

.ea-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 80px;
    color: #111;
}

.ea-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}

.ea-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.ea-icon {
    font-size: 3rem;
    color: #222;
    min-width: 60px;
}

.ea-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.ea-text p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .ef-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .email-hero h1 {
        font-size: 2.5rem;
    }

    .email-hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .email-hero-visual {
        margin-bottom: 40px;
    }

    .email-overview-container {
        flex-direction: column;
        gap: 40px;
    }

    .overview-cards {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .ea-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* =========================================
   SMS Page Specific Styles
   ========================================= */

/* Premium SMS Hero */
.sms-hero {
    padding: 200px 0 120px;
    background: radial-gradient(circle at 10% 20%, #ffffff 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.sms-hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.05) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    pointer-events: none;
    z-index: 0;
}


.sms-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* 3D Visual Construction using CSS */
.sms-visual-3d {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sms-circle-bg {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle at 30% 30%, var(--primary-blue), var(--dark-blue));
    /* Blue tones */
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    box-shadow: 0 40px 80px rgba(0, 86, 179, 0.2);
    animation: float 6s ease-in-out infinite;
}

/* Floating Elements around the visual */
.sms-floater {
    position: absolute;
    z-index: 2;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    animation: float 5s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: #333;
    min-width: 180px;
}

.sms-floater.otp {
    top: 60px;
    right: 30px;
    animation-delay: 0s;
}

.sms-floater.promo {
    bottom: 80px;
    left: 40px;
    animation-delay: 1.5s;
}

.sms-floater.trans {
    top: 180px;
    left: -30px;
    animation-delay: 2.5s;
}

.sms-hero-text {
    flex: 1.2;
}

.sms-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.sms-hero-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Services Overview with Mobile Mockup */
.sms-overview-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

/* Premium Stats Bar */
.sms-stats-bar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 40px 100px rgba(0, 86, 179, 0.1);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}


.sms-center-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
}

/* The Phone Frame */
.mobile-frame {
    width: 320px;
    height: 640px;
    background: white;
    border: 12px solid #333;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 10;
}

/* Floating icons around phone */
.orbit-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #4caf50;
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

.orbit-1 {
    top: 100px;
    left: 20%;
    animation-delay: 0s;
    background: #e3f2fd;
    color: var(--primary-blue);
}

.orbit-2 {
    bottom: 150px;
    right: 20%;
    animation-delay: 1s;
    background: #f0f7ff;
    color: var(--primary-blue);
}

.orbit-3 {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
    background: #e0f2f1;
    color: #00796b;
}

.mobile-notch {
    width: 150px;
    height: 30px;
    background: #333;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 20;
}

.mobile-screen {
    padding: 70px 20px 20px;
    background: #fafafa;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.msg-bubble {
    background: white;
    padding: 15px;
    border-radius: 15px;
    border-bottom-left-radius: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: #444;
    position: relative;
    animation: slideInLeft 0.5s ease-out forwards;
    opacity: 0;
    margin-bottom: 10px;
}

.msg-bubble:nth-child(1) {
    animation-delay: 0.5s;
}

.msg-bubble:nth-child(2) {
    animation-delay: 1.5s;
}

.msg-bubble:nth-child(3) {
    animation-delay: 2.5s;
}

.msg-bubble strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature Cards Grid */
.sms-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.sms-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border-bottom: 4px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.sms-card:hover {
    transform: translateY(-12px);
    border-bottom-color: var(--primary-blue);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.12);
    background: linear-gradient(to bottom, #ffffff, #f0f7ff);
}

.sms-icon-3d {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.sms-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #222;
}

.sms-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Split Layout for Detailed Features */
.sms-split-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.sms-split-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
}

.sms-check-list {
    list-style: none;
    padding: 0;
}

.sms-check-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.15rem;
    color: #333;
    font-weight: 600;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s;
}

.sms-check-list li:hover {
    transform: translateX(10px);
}

.sms-check-list li i {
    color: var(--primary-blue);
    font-size: 1.3rem;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .sms-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sms-hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .sms-visual-3d {
        margin-bottom: 50px;
        height: 400px;
    }

    .sms-circle-bg {
        width: 350px;
        height: 350px;
    }

    .mobile-frame {
        display: none;
    }

    /* Hide massive phone on tablet/mobile if too cluttered */
    .sms-center-mockup {
        display: none;
    }

    .sms-split-section {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   SMPP Page Specific Styles
   ========================================= */

.smpp-hero {
    padding: 180px 0 120px;
    background: radial-gradient(circle at top right, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Hero bg gradient */
.smpp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.smpp-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.smpp-hero-text {
    flex: 1;
}

.smpp-hero-text h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--black);
}

.smpp-hero-text p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 40px;
}

.smpp-hero-img {
    flex: 1.1;
    display: flex;
    justify-content: center;
}

.smpp-hero-img img {
    max-width: 100%;
    height: auto;
    /* Basic float animation for image */
    animation: float 6s ease-in-out infinite;
}

/* Services Overview */
.smpp-services-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.smpp-split-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.smpp-visual-side {
    flex: 1;
    display: flex;
    justify-content: center;
}

.smpp-visual-side img {
    max-width: 100%;
    height: auto;
}

.smpp-content-side {
    flex: 1;
}

.smpp-content-side h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #222;
}

.smpp-feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.smpp-feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: #444;
    font-weight: 600;
}

.smpp-feature-list li i {
    color: var(--primary-blue);
}

/* Features Grid */
.smpp-features-grid-section {
    padding: 100px 0;
    background: #fff;
}

.smpp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.smpp-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
}

.smpp-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.1);
    border-bottom: 3px solid var(--primary-blue);
}

.smpp-card-icon {
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.smpp-card-icon img {
    max-height: 100%;
    width: auto;
}

.smpp-card-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.smpp-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.smpp-card p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .smpp-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .smpp-split-container {
        flex-direction: column-reverse;
    }

    .smpp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .smpp-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   WhatsApp Page Specific Styles
   ========================================= */

.wa-hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at 10% 20%, #ffffff 0%, #f0faff 100%);
    position: relative;
    overflow: hidden;
}

/* Abstract background shapes */
.wa-hero::after {
    content: '';
    position: absolute;
    right: -10%;
    top: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.wa-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.wa-hero-text {
    flex: 1;
}

.wa-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-green);
    /* WhatsApp Teal */
}

.wa-hero-text p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 35px;
}

.wa-hero-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.wa-hero-img img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(18, 140, 126, 0.2);
    animation: float 5s ease-in-out infinite;
}

/* Section with Image on Left */
.wa-section-alt {
    padding: 100px 0;
    background: #fff;
}

.wa-split {
    display: flex;
    align-items: center;
    gap: 80px;
}

.wa-split.reverse {
    flex-direction: row-reverse;
}

.wa-visual {
    flex: 1;
}

.wa-visual img {
    width: 100%;
    border-radius: 20px;
    /* Clean shadow */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.wa-visual img:hover {
    transform: scale(1.02);
}

.wa-content {
    flex: 1;
}

.wa-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 25px;
    line-height: 1.1;
}

.wa-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.wa-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.wa-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.wa-feat-icon {
    width: 54px;
    height: 54px;
    background: #eef4ff;
    color: var(--primary-blue);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 15px rgba(0, 86, 179, 0.1);
}

.wa-feat-text h4 {
    margin: 0 0 5px 0;
    font-weight: 700;
    color: #222;
}

.wa-feat-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Use Cases Grid */
.wa-cases {
    padding: 100px 0;
    background: #fdfdfd;
}

.wa-title-center {
    text-align: center;
    margin-bottom: 60px;
}

.wa-title-center h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

.wa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wa-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border-top: 6px solid var(--primary-blue);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.1);
}

.wa-card-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* WhatsApp Specific Animations */
@keyframes wa-bubble-in {
    0% {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.wa-msg-bubble {
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    max-width: 80%;
    margin-bottom: 10px;
    position: relative;
    animation: wa-bubble-in 0.5s ease forwards;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.wa-msg-received {
    background: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.wa-msg-sent {
    background: #dcf8c6;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

@keyframes pulse-tick {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.tick-pulse {
    animation: pulse-tick 2s infinite;
}


.wa-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

/* Responsive */
@media (max-width: 1024px) {
    .wa-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .wa-split,
    .wa-split.reverse {
        flex-direction: column;
    }

    .wa-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wa-features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .wa-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Home Page Specific Styles (Premium)
   ========================================= */

/* Hero Section */
.home-hero-section {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-green-light) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Blobs Background */
.home-hero-section::before,
.home-hero-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    animation: float 10s infinite alternate;
}

.home-hero-section::before {
    top: -20%;
    left: -10%;
}

.home-hero-section::after {
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.home-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.home-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

/* Gradient Text Effect */
.gradient-text-brand {
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Floating 3D Icons Container */
.hero-floating-icons {
    position: relative;
    height: 100px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.hero-icon-item {
    font-size: 3rem;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    animation: float 4s ease-in-out infinite;
}

/* Trusted Ticker Loop */
.ticker-wrap {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    background: transparent;
    padding: 30px 0;
    position: relative;
    z-index: 2;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.ticker {
    display: flex;
    width: max-content;
    animation: ticker 40s linear infinite;
    align-items: center;
}

.ticker-item {
    padding: 0 45px;
    /* Reduced from 60px for a tighter look */
    font-size: 1.1rem;
    /* Slightly smaller */
    color: #94a3b8;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    opacity: 0.6;
    transition: all 0.4s ease;
    filter: grayscale(100%);
}

.ticker-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    color: var(--primary-blue);
    /* Use brand blue */
    transform: scale(1.05);
}

.ticker-item i {
    font-size: 1.8rem;
}

.ticker-label {
    font-size: 0.9rem;
    color: var(--primary-blue);
    /* Use brand blue */
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-right: 40px;
    opacity: 1;
    filter: none;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Premium Service Cards (Home) */
.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card-premium {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #eee;
    transition: background 0.3s;
}

.service-card-premium:hover::before {
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green));
    /* Default gradient */
}

.service-card-premium:hover::before {
    background: var(--gradient-green);
}

.sc-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f5f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.service-card-premium:hover .sc-icon {
    color: #fff;
    background: #333;
    /* Will be overridden by specific colors */
}

.service-card-premium:hover .sc-icon {
    background: var(--primary-green);
    color: var(--white);
}

.sc-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.sc-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.sc-link {
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.sc-link:hover {
    gap: 12px;
}

/* Why Choose Us - Metrics Grid */
.metrics-section {
    padding: 120px 0;
    background: #fff;
    color: var(--black);
    text-align: center;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.metrics-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.metric-item h3 {
    font-size: 4rem;
    font-weight: 800;
    margin: 0;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-item p {
    color: var(--grey-text);
    margin-top: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .home-hero-title {
        font-size: 3rem;
    }

    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ticker-item {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .home-hero-title {
        font-size: 2.2rem;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        flex-direction: column;
        gap: 40px;
    }
}

/* =========================================
   RCS Page Specific Styles (Rich Communication)
   ========================================= */

.rcs-hero {
    padding: 180px 0 120px;
    background: radial-gradient(circle at 10% 20%, #ffffff 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.rcs-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.rcs-hero-text {
    flex: 1;
}

.rcs-hero-text h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--black);
}

.rcs-hero-text p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 35px;
}

.rcs-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Mockup for Rich Messaging */
.rcs-phone-mockup {
    width: 300px;
    height: 600px;
    background: #fff;
    border: 10px solid #1a1a1a;
    border-radius: 45px;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 86, 179, 0.15);
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rcs-phone-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}


.rcs-screen {
    height: 100%;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
}

.rcs-chat-header {
    background: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
}

.rcs-avatar {
    width: 35px;
    height: 35px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    box-shadow: 0 4px 8px rgba(0, 86, 179, 0.2);
}

.rcs-chat-body {
    padding: 15px;
    flex: 1;
}

/* Premium SMS Application Styles */
.app-hero-luminous {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 10% 20%, #f1f8ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.app-card-premium {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 20px 50px rgba(0, 86, 179, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.app-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 86, 179, 0.08);
}

.icon-circle-box {
    width: 60px;
    height: 60px;
    background: #f1f8ff;
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.app-preview-window {
    background: #0f172a;
    border-radius: 30px;
    padding: 2px;
    border: 8px solid #fff;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.app-mini-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
}

.app-mini-pill {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    text-transform: uppercase;
}

/* --- ULTRA-PREMIUM INTERACTIVE EFFECTS --- */

/* 1. Cursor Spotlight Glow */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    mix-blend-mode: screen;
}

/* 2. Hardware Accelerated 3D Tilt */
.tilt-card-premium {
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.tilt-card-premium:hover {
    box-shadow: 0 40px 100px rgba(0, 86, 179, 0.15);
}

.tilt-inner {
    transform: translateZ(50px);
    /* Content pops out */
}

/* 3. Magnetic Button Wrapper */
.magnetic-wrap {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* 4. Glass Reflection Shine Animation */
.glass-shine {
    position: relative;
    overflow: hidden;
}

.glass-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: none;
}

.glass-shine:hover::after {
    left: 120%;
    transition: all 0.7s ease-in-out;
}

/* 5. Animated Mesh Background for Hero */
.mesh-gradient-animate {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 86, 179, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 86, 179, 0.03) 0%, transparent 50%);
    filter: blur(80px);
    animation: mesh-flow 15s infinite alternate ease-in-out;
}

@keyframes mesh-flow {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.2) translate(5%, 5%);
    }

    100% {
        transform: scale(1) translate(-5%, -5%);
    }
}

/* Float Animation for UI Elements */
.float-interactive {
    animation: float-ui 6s infinite ease-in-out;
}

@keyframes float-ui {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}


.rcs-rich-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}

.rcs-card-img {
    height: 160px;
    background: #f8fbff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    position: relative;
    overflow: hidden;
}


.rcs-card-content {
    padding: 12px;
}

.rcs-card-content h4 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
}

.rcs-card-content p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

.rcs-card-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: #fff;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    border-top: 1px solid #f0f0f0;
    transition: all 0.2s;
}

.rcs-card-btn:hover {
    background: #f8faff;
    color: var(--dark-blue);
}


.rcs-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.rcs-chip {
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--primary-blue);
    background: white;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.2s;
    cursor: pointer;
}

.rcs-chip:hover {
    border-color: var(--primary-blue);
    background: #f0f7ff;
    transform: translateY(-2px);
}


/* Feature Grid */
.rcs-features {
    padding: 100px 0;
    background: #fff;
}

.rcs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rcs-feature-card {
    padding: 40px;
    background: #fafafa;
    border-radius: 20px;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.rcs-feature-card:hover {
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.1);
    transform: translateY(-10px);
    border-color: var(--primary-blue);
}

.rcs-icon-box {
    width: 70px;
    height: 70px;
    background: #eef4ff;
    color: var(--primary-blue);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 15px rgba(0, 86, 179, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .rcs-hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .rcs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .rcs-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Voice Page Specific Styles (Premium)
   ========================================= */

.voice-hero-premium {
    padding: 180px 0 120px;
    background: radial-gradient(circle at 10% 20%, #ffffff 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.voice-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 80px;
}

.badge-new {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary-blue);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 86, 179, 0.2);
}

.voice-hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--black);
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-trust {
    border-top: 1px solid #ddd;
    padding-top: 25px;
}

.hero-trust p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.trust-icons {
    display: flex;
    gap: 30px;
    font-size: 1.5rem;
    color: #bbb;
}

.voice-hero-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    z-index: 2;
}

.floating-img {
    max-width: 100%;
    filter: drop-shadow(0 30px 60px rgba(76, 175, 80, 0.2));
}

.pulse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    animation: pulse 4s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.05;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.15;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.05;
    }
}

@keyframes voice-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.voice-ring-anim {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    animation: voice-ring 2s infinite;
}

@keyframes bar-accent {

    0%,
    100% {
        height: 20%;
    }

    50% {
        height: 100%;
    }
}

.bar-anim {
    animation: bar-accent 1.2s ease-in-out infinite;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.floating-premium {
    animation: float-slow 6s ease-in-out infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Premium Features Grid */
.v-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.v-premium-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.v-premium-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.1);
}

.v-card-icon {
    width: 70px;
    height: 70px;
    background: #eef4ff;
    color: var(--primary-blue);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 15px rgba(0, 86, 179, 0.1);
}

/* Workflow Section */
.voice-workflow-section {
    padding: 100px 0;
    background: #fafafa;
}

.workflow-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.workflow-visual {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.flow-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.flow-node {
    padding: 15px 30px;
    background: var(--bg-green-light);
    color: var(--primary-green);
    border-radius: 12px;
    font-weight: 700;
    border: 2px solid var(--primary-green);
    position: relative;
    width: 200px;
    text-align: center;
}

.flow-node.start {
    background: var(--primary-green);
    color: white;
}

.flow-line {
    width: 2px;
    height: 40px;
    background: var(--primary-green);
    position: relative;
}

.flow-line::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-green);
    font-size: 0.8rem;
}

/* Stats Row */
.v-stats-row {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.v-stat-box h3 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.v-stat-box p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #666;
}

/* Responsive Voice */
@media (max-width: 1024px) {

    .voice-hero-grid,
    .workflow-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .trust-icons {
        justify-content: center;
    }

    .v-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .voice-hero-content h1 {
        font-size: 2.8rem;
    }

    .v-premium-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Email Page Specific Styles (Premium)
   ========================================= */

.email-hero-premium {
    padding: 180px 0 120px;
    background: radial-gradient(circle at 10% 20%, #ffffff 0%, #f7f9ff 100%);
    position: relative;
    overflow: hidden;
}

.email-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 100px;
}

.email-hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--black);
}

.hero-stats-mini {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.h-mini-item {
    font-size: 0.95rem;
    color: var(--grey-text);
}

.h-mini-item strong {
    color: var(--primary-blue);
    display: block;
    font-size: 1.2rem;
}

.email-hero-visual .visual-container {
    position: relative;
}

.glow-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.1) 0%, transparent 70%);
    z-index: 1;
}

/* Email Type Cards */
.email-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.email-type-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.email-type-card.active {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.1);
}

.email-type-card:hover {
    transform: translateY(-10px);
}

.et-icon {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.mini-check {
    list-style: none;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f5f5f5;
}

.mini-check li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.mini-check li i {
    color: var(--primary-blue);
    margin-right: 8px;
}

/* Advantage Section */
.email-advantage-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.advantage-list {
    margin-top: 40px;
}

.adv-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.adv-icon {
    width: 50px;
    height: 50px;
    background: #eef4ff;
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 15px rgba(0, 86, 179, 0.1);
}

.advantage-visual-mockup {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
}

.mockup-frame {
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
}

.mockup-header {
    background: #f8f8f8;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border-bottom: 1px solid #eee;
}

.mockup-body {
    padding: 30px;
}

.mock-stats {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 150px;
}

.m-s-bar {
    flex: 1;
    background: var(--primary-blue);
    border-radius: 5px 5px 0 0;
    opacity: 0.8;
}

.mock-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.75rem;
    color: #999;
}

/* Responsive Email */
@media (max-width: 1024px) {

    .email-hero-grid,
    .email-advantage-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .email-hero-visual {
        order: -1;
    }

    .email-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats-mini {
        justify-content: center;
    }

    .adv-item {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .email-hero-content h1 {
        font-size: 2.8rem;
    }

    .email-types-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Spacing & Breathability Overrides
   ========================================= */

/* Increase section breathing room */
.section {
    padding: 140px 0 !important;
}

/* Hero Section Spacing */
.hero-title,
.voice-hero-premium h1,
.email-hero-premium h1 {
    margin-bottom: 35px !important;
    line-height: 1.2 !important;
}

.hero-text,
.voice-hero-premium p,
.email-hero-premium p {
    margin-bottom: 50px !important;
    line-height: 1.8 !important;
    font-size: 1.15rem !important;
}

/* Header Spacing */
.header {
    padding: 20px 0 !important;
}

.header.scrolled {
    padding: 12px 0 !important;
}

/* Gaps in Grids */
.v-premium-grid,
.email-types-grid,
.home-services-grid {
    gap: 50px !important;
    margin-top: 100px !important;
}

/* Margins for section headers */
.section-header-center,
.services-container {
    margin-bottom: 100px !important;
}

.services-display,
.services-content-area {
    padding: 60px !important;
}

/* Advantage / Workflow sections */
.voice-workflow-section,
.email-advantage-layout {
    padding: 140px 0 !important;
    margin-top: 60px !important;
}

.advantage-list {
    margin-top: 60px !important;
}

.adv-item {
    margin-bottom: 45px !important;
}

/* Badge spacing */
.badge-new {
    margin-bottom: 35px !important;
}

/* Final Adjustment for Mobile Gaps */
@media (max-width: 768px) {
    .section {
        padding: 80px 0 !important;
    }

    .v-premium-grid,
    .email-types-grid {
        gap: 30px !important;
        margin-top: 60px !important;
    }
}

/* =========================================
   "WOW" Interactive Services Styles
   ========================================= */

.service-flex-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 450px;
}

.service-info-text {
    flex: 1.2;
}

.service-info-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.badge-mini {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-green-light);
    color: var(--primary-green);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.wow-check-list {
    list-style: none;
    margin-top: 30px;
}

.wow-check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #444;
}

.wow-check-list li i {
    color: var(--primary-green);
    font-size: 1.1rem;
    width: 20px;
}

.floating-3d-box {
    position: relative;
    z-index: 2;
}

.wow-float-img {
    max-width: 100%;
    filter: drop-shadow(0 30px 50px rgba(76, 175, 80, 0.25));
    animation: wowFloat 6s ease-in-out infinite;
}

.shine-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, var(--primary-green) 0%, transparent 60%);
    opacity: 0.1;
    z-index: 1;
    border-radius: 50%;
}

@keyframes wowFloat {
    0% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-30px) rotate(2deg);
    }

    100% {
        transform: translateY(0) rotate(0);
    }
}

@media (max-width: 1024px) {
    .service-flex-layout {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .wow-check-list li {
        justify-content: center;
    }
}

/* Cursor Animation */
.cursor {
    color: var(--primary-green);
    animation: blink 0.7s infinite;
    font-weight: 300;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* =========================================
   "BABAL" DESIGN SECTIONS
   ========================================= */

/* Feature Highlights Grid (Premium Revamp) */
.feature-highlights {
    padding: 160px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.feature-highlights::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.babal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.babal-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 60px 45px;
    border-radius: 40px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.babal-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent, rgba(76, 175, 80, 0.03));
    border-radius: 100% 0 0 0;
    z-index: -1;
}

.babal-card:hover {
    transform: translateY(-20px);
    background: #fff;
    border-color: var(--primary-green);
    box-shadow: 0 40px 100px rgba(76, 175, 80, 0.12);
}

.babal-icon {
    width: 80px;
    height: 80px;
    background: #f0fdf4;
    color: var(--primary-green);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 35px;
    transition: all 0.5s ease;
    box-shadow: inset 0 0 0 1px rgba(76, 175, 80, 0.1);
}

.babal-card:hover .babal-icon {
    background: var(--primary-green);
    color: #fff;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.3);
}

.babal-card h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--black);
}

.babal-card p {
    color: var(--grey-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

@media (max-width: 1024px) {
    .babal-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Decorative Blobs */
.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(40px);
}

.blob-1 {
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(165, 214, 167, 0.1) 0%, transparent 70%);
}

.blob-2 {
    bottom: -200px;
    left: -200px;
}

/* =========================================
   INTERACTIVE LIVE-PEEK DASHBOARD
   ========================================= */
.business-hub-section {
    padding: 100px 0;
    /* Reduced from 140px */
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.dash-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Tabs Styling */
.dash-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dash-tab {
    background: #fff;
    padding: 20px 25px;
    /* Reduced from 25px 30px */
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.dash-tab i {
    font-size: 1.5rem;
    color: #64748b;
    transition: all 0.3s;
}

.dash-tab .tab-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--black);
}

.dash-tab .tab-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.dash-tab:hover {
    transform: translateX(10px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.08);
}

.dash-tab.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateX(15px);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
}

.dash-tab.active i,
.dash-tab.active .tab-info h4,
.dash-tab.active .tab-info p {
    color: #fff;
}

/* Laptop Mockup */
.laptop-wrap {
    perspective: 1000px;
}

.laptop-mockup {
    width: 100%;
    max-width: 850px;
    aspect-ratio: 16/10;
    background: #333;
    border-radius: 30px;
    padding: 15px;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.15);
    border: 8px solid #1a1a1a;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.laptop-base {
    width: 110%;
    height: 15px;
    background: #222;
    margin-left: -5%;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Content Inside Screen */
.screen-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.screen-content.active {
    opacity: 1;
    visibility: visible;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
}

.dash-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.metric-card-mini {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.metric-card-mini span {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
}

.metric-card-mini h5 {
    font-size: 1.5rem;
    margin-top: 5px;
    color: var(--primary-green);
}

.graph-placeholder {
    flex: 1;
    background: linear-gradient(to bottom, #fff, #f8fafc);
    border-radius: 20px;
    border: 1px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Visual Graph Elements */
.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 150px;
}

.bar {
    width: 30px;
    background: var(--primary-green);
    border-radius: 6px 6px 0 0;
    animation: growBar 1s ease-out forwards;
    transform-origin: bottom;
}

@keyframes growBar {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

@media (max-width: 1024px) {
    .dash-container {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   ABOUT PAGE STYLES
   ========================================= */
.about-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
}

.about-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--black);
}

.mission-vision {
    padding: 100px 0;
    background: #fff;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    padding: 50px 40px;
    background: #fff;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.1);
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.about-stats {
    padding: 80px 0;
    background: var(--black);
    color: #fff;
}

.stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
}

.culture-section {
    padding: 120px 0;
    background: #fff;
}

.culture-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.glass-stack {
    position: relative;
    height: 400px;
}

.glass-item {
    position: absolute;
    width: 250px;
    height: 150px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.g-1 {
    top: 0;
    left: 0;
    z-index: 3;
}

.g-2 {
    top: 80px;
    left: 80px;
    z-index: 2;
    background: rgba(76, 175, 80, 0.1);
}

.g-3 {
    top: 160px;
    left: 160px;
    z-index: 1;
}

/* =========================================
   JOBS PAGE STYLES
   ========================================= */
.jobs-hero {
    padding: 180px 0 100px;
    background: #fff;
}

.jobs-hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 60px 0;
}

.perk-card {
    padding: 40px 30px;
    background: #fafafa;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.perk-card:hover {
    background: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-green);
}

.perk-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.open-positions {
    padding: 100px 0;
    background: #fff;
}

.positions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.pos-filters {
    display: flex;
    gap: 15px;
}

.p-filter {
    padding: 10px 25px;
    background: #f1f5f9;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.p-filter.active {
    background: var(--primary-green);
    color: #fff;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    background: #fff;
    padding: 30px 40px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.job-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: scale(1.01);
}

.btn-job-apply {
    color: var(--primary-green);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =========================================
   CONTACT PAGE STYLES (PREMIUM)
   ========================================= */
.contact-hero-premium {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.info-glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
}

.info-glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
}

.ig-icon {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.ig-link {
    font-weight: 700;
    color: var(--black);
    font-size: 1.1rem;
    display: block;
    margin-top: 15px;
}

.form-map-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    padding: 120px 0;
}

.form-container-premium {
    background: #fff;
    padding: 50px;
    border-radius: 35px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.p-input-group {
    margin-bottom: 25px;
}

.p-input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #475569;
}

.p-input-group input,
.p-input-group select,
.p-input-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.p-input-group input:focus,
.p-input-group select:focus,
.p-input-group textarea:focus {
    border-color: var(--primary-green);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

.p-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.map-visual-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-window {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    min-height: 400px;
    border: 8px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.office-location-badge {
    background: var(--black);
    color: #fff;
    padding: 30px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.office-location-badge i {
    font-size: 2rem;
    color: var(--primary-green);
}

@media (max-width: 1024px) {

    .about-hero-container,
    .jobs-hero-container,
    .contact-hero-grid,
    .form-map-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mv-grid,
    .perks-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .glass-stack {
        display: none;
        /* Hide on mobile to simplify */
    }
}

/* =========================================
   SOCIAL SIDEBAR STYLES
   ========================================= */
.social-sidebar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    background: transparent;
    border-radius: 0 !important;
    /* Force square */
    box-shadow: none !important;
}

.social-side-btn {
    width: 60px;
    /* Base width for icon only */
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center icon when closed */
    font-size: 1.5rem;
    color: #fff;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    cursor: pointer;
    border-radius: 0 !important;
    overflow: hidden;
    /* Hide text when closed */
    white-space: nowrap;
    /* Prevent text wrapping */
}

/* Text Span Styles */
.social-side-btn span {
    opacity: 0;
    margin-left: 0;
    font-size: 0;
    /* Hide text completely */
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-side-btn:hover span {
    opacity: 1;
    margin-left: 10px;
    font-size: 1rem;
    /* Reveal text */
}

.check-status-btn {
    background: #000;
    font-size: 1.2rem;
}

.whatsapp-btn {
    background: var(--primary-blue);
}

.whatsapp-btn:hover {
    width: 160px;
    /* Expand to fit "WhatsApp" */
    justify-content: center;
}

.linkedin-btn {
    background: #0077b5;
}

.linkedin-btn:hover {
    width: 150px;
    /* Expand to fit "LinkedIn" */
    justify-content: center;
}


/* Optional Pulse Animation for WhatsApp */
@keyframes sidePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.whatsapp-btn:hover i {
    animation: sidePulse 0.5s infinite;
}

/* =========================================
   FAQ SECTION STYLES
   ========================================= */
.faq-section {
    padding: 100px 0;
    background-color: #f0f8ff;
    /* Light blue section background */
}

.faq-container {
    max-width: 1200px;
    /* Increased width for a more expansive and premium feel */
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #c2d9ff;
    /* Vibrant light blue border */
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: #0056b3;
    /* Brand Blue on hover */
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 15px 25px;
    /* Further reduced height */
    text-align: left;
    font-size: 1.05rem;
    /* Slightly smaller text for compactness */
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #0056b3;
    /* Brand Blue hover */
}

.faq-question i {
    font-size: 1rem;
    color: #0056b3;
    /* Blue arrow color */
    transition: transform 0.3s ease;
}

.faq-question.active {
    color: #0056b3;
    /* Brand Blue active text */
    background: #f8fbff;
    /* Slight highlight for active header */
}

.faq-question.active i {
    transform: rotate(180deg);
    color: #0056b3;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #555;
    line-height: 1.7;
    opacity: 0;
    border-top: 1px solid transparent;
    /* Hidden by default */
}

.faq-answer.show {
    padding: 15px 25px 20px 25px;
    /* Reduced answer padding */
    border-top: 1px solid #eef4ff;
    /* Lighter divider */
    opacity: 1;
}

/* =========================================
   API EXPERIENCE SECTION STYLES
   ========================================= */
.api-experience-section {
    padding: 100px 0;
    background: radial-gradient(circle at 20% 30%, #0d121d 0%, #05070a 100%);
    position: relative;
    overflow: hidden;
}

.api-experience-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.08) 0%, transparent 60%);
    top: -200px;
    right: -200px;
    pointer-events: none;
    filter: blur(80px);
}

/* Subtle Animated Background Elements */
.api-bg-deco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.api-bg-deco div {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: floatingOrb 20s infinite linear;
}

@keyframes floatingOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, 100px) scale(1.1);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}


.api-flex-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

/* Code Terminal Styles */
.code-terminal-container {
    flex: 1.2;
    background: rgba(22, 27, 34, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 86, 179, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.code-terminal-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}


.terminal-header {
    background: #0d1117;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.terminal-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-tabs {
    display: flex;
    gap: 10px;
}

.t-pill {
    background: transparent;
    border: none;
    color: #8b949e;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.t-pill:hover {
    color: #fff;
}

.t-pill.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.terminal-body {
    padding: 30px;
    font-family: 'JetBrains Mono', 'Fira Code', 'SFMono-Regular', Consolas, monospace;
    font-size: 0.9rem;
    line-height: 1.7;
    min-height: 280px;
    position: relative;
    background: rgba(13, 17, 23, 0.4);
}


.code-block {
    display: none;
    color: #e6edf3;
    margin: 0;
}

.code-block.active {
    display: block;
    animation: fadeInCode 0.4s ease forwards;
}

@keyframes fadeInCode {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Syntax Highlighting */
.c-cmd {
    color: #ff7b72;
}

/* Keywords/Commands */
.c-url {
    color: #a5d6ff;
    text-decoration: underline;
}

/* URLs */
.c-str {
    color: #79c0ff;
}

/* Strings */
.c-key {
    color: #7ee787;
}

/* JSON Keys */

/* Right Content Styles */
.api-content-text {
    flex: 1;
}

.api-features-list {
    margin: 0;
    padding: 0;
}

.api-features-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-weight: 500;
}

.btn-blue-glow {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: #fff;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-blue-glow:hover {
    box-shadow: 0 0 40px rgba(0, 86, 179, 0.6);
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, #006aff, #0046a3);
    border-color: rgba(255, 255, 255, 0.3);
}


/* Responsive API Layout */
@media (max-width: 992px) {
    .api-flex-layout {
        flex-direction: column;
        text-align: center;
    }

    .api-features-list li {
        justify-content: center;
    }

    .code-terminal-container {
        width: 100%;
        max-width: 600px;
    }
}

/* =========================================
   ABOUT US PAGE ENHANCEMENTS
   ========================================= */

/* Why Choose Section */
.why-itextel-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.why-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.1);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: #e8f5e9;
    color: var(--primary-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.why-card p {
    color: #666;
    line-height: 1.6;
}

/* Timeline Section Styles (Simplified for now if needed later) */
.timeline-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #e0e0e0;
    border-radius: 2px;
    z-index: 0;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.timeline-row:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    position: relative;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px #e8f5e9;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-date {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-row,
    .timeline-row:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }

    .timeline-content {
        width: 100%;
    }
}

/* =========================================
   SCROLL TIMELINE SECTION STYLES
   ========================================= */
.timeline-scroll-section {
    padding: 50px 0;
    /* Further reduced from 80px */
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.timeline-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.timeline-left {
    flex: 1;
    position: sticky;
    top: 100px;
    /* Moved up from 150px */
}

.timeline-right {
    flex: 1;
    position: relative;
    padding-left: 50px;
}

/* The Vertical Line */
.timeline-line-base {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.timeline-line-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0%;
    /* Value updated via JS */
    background: var(--primary-blue);
    box-shadow: 0 0 15px var(--primary-blue);
    transition: height 0.1s ease-out;
}

.timeline-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* Further reduced from 40px */
}

.timeline-point {
    position: relative;
    padding-bottom: 5px;
    /* Further reduced from 20px */
}

/* The Circles */
.point-circle {
    position: absolute;
    left: -58px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: #333;
    border: 3px solid #000;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s ease;
}

.timeline-point.active .point-circle {
    background: var(--primary-blue);
    box-shadow: 0 0 20px var(--primary-blue);
    transform: scale(1.2);
}

.point-content h3 {
    font-size: 1.6rem;
    /* Slightly smaller title */
    font-weight: 800;
    margin-bottom: 6px;
    /* Reduced margin */
    color: #fff;
    transition: color 0.4s ease;
}

.timeline-point.active .point-content h3 {
    color: var(--primary-blue);
}

.point-content p {
    font-size: 1rem;
    /* Slightly smaller text */
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    max-width: 450px;
}

/* Gradient Glow in bg */
.timeline-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.15) 0%, transparent 70%);
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 992px) {
    .timeline-flex {
        flex-direction: column;
        gap: 60px;
    }

    .timeline-left {
        position: relative;
        top: 0;
        text-align: center;
    }

    .timeline-right {
        padding-left: 40px;
        width: 100%;
    }

    .timeline-points {
        gap: 60px;
    }
}

/* =========================================
   MODERN BENTO GRID SECTION
   ========================================= */
.bento-section {
    padding: 100px 0;
    background: #ffffff;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    margin-top: 50px;
}

.bento-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.08);
    border-color: var(--primary-blue);
}

/* Item Variations */
.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-item.medium {
    grid-column: span 2;
}

/* Bento Content */
.bento-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-blue-light);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.bento-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.bento-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* Special Visuals inside Bento */
.bento-visual-ai {
    height: 150px;
    margin-top: 20px;
    background: rgba(0, 86, 179, 0.03);
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-node {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.ai-waves {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    opacity: 0;
    animation: aiPulse 2s infinite;
}

@keyframes aiPulse {
    0% {
        transform: scale(0.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.bento-uptime {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin: 10px 0;
    letter-spacing: -2px;
}

/* Responsive Bento */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-item.large,
    .bento-item.medium {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item {
        grid-column: span 1 !important;
    }
}

/* Web Development Premium Styles */
.web-hero-premium {
    padding: 180px 0 120px;
    background: radial-gradient(circle at 90% 10%, rgba(0, 86, 179, 0.05) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.browser-mockup {
    width: 100%;
    max-width: 550px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 50px 100px rgba(0, 86, 179, 0.12);
    border: 1px solid #eef2ff;
    overflow: hidden;
    position: relative;
    z-index: 5;
    animation: float-slow 6s ease-in-out infinite;
}

.browser-header {
    background: #f8fafc;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

.browser-address {
    flex: 1;
    height: 24px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    margin-left: 15px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 0.7rem;
    color: #94a3b8;
}

.web-feature-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.web-feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.1);
    border-color: var(--primary-blue);
}

.tech-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #f8fbff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    box-shadow: 0 8px 15px rgba(0, 86, 179, 0.08);
}

@keyframes code-scroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.scrolling-code {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.8;
    padding: 20px;
    animation: code-scroll 20s linear infinite;
}

/* Mobile App Development Premium Styles */
.app-hero-premium {
    padding: 180px 0 120px;
    background: radial-gradient(circle at 10% 20%, #ffffff 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.app-phone-mockup {
    width: 250px;
    height: 500px;
    background: #fff;
    border: 10px solid #1a1a1a;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 86, 179, 0.15);
    overflow: hidden;
    transform: rotate(5deg);
    animation: floating-premium 5s ease-in-out infinite;
}

.app-screen-content {
    height: 100%;
    background: #f8fbff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-feature-item {
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInLeft 0.5s ease-out forwards;
}

.app-card-premium {
    background: #fff;
    padding: 45px 35px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.app-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.08);
    border-color: var(--primary-blue);
}

.app-icon-box {
    width: 65px;
    height: 65px;
    background: #eff6ff;
    color: var(--primary-blue);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 15px rgba(0, 86, 179, 0.1);
}

/* SMO Premium Styles */
.smo-hero-premium {
    padding: 180px 0 120px;
    background: radial-gradient(circle at 80% 20%, #ffffff 0%, #fff5f2 100%);
    position: relative;
    overflow: hidden;
}

.social-feed-mockup {
    width: 320px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 86, 179, 0.12);
    border: 1px solid #f0f7ff;
    overflow: hidden;
    position: relative;
    animation: floating-premium 6s ease-in-out infinite;
}

.social-post-card {
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.engagement-bubble {
    padding: 8px 15px;
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.smo-card-premium {
    background: #fff;
    padding: 45px 35px;
    border-radius: 28px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.smo-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.1);
    border-color: var(--primary-blue);
}

.smo-icon-box {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    color: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 15px rgba(0, 86, 179, 0.08);
}

/* Advanced SMO Cinematic Animations */
@keyframes viral-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.viral-ring {
    position: absolute;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    animation: viral-pulse 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    pointer-events: none;
    z-index: 0;
}

.floating-social-particle {
    position: absolute;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.1);
    color: var(--primary-blue);
    font-size: 1.2rem;
    animation: floating-premium 8s ease-in-out infinite;
    z-index: 5;
}

.orbit-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(0, 86, 179, 0.1);
    border-radius: 50%;
}

.orbit-ring-1 {
    width: 350px;
    height: 350px;
}

.orbit-ring-2 {
    width: 500px;
    height: 500px;
}

@keyframes rotate-orbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.orbiting-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-blue);
}

/* SEO Premium Styles */
.seo-hero-premium {
    padding: 180px 0 120px;
    background: radial-gradient(circle at 90% 10%, #ffffff 0%, #f0fdfd 100%);
    position: relative;
    overflow: hidden;
}

.serp-mockup {
    width: 380px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 150, 136, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    animation: floating-premium 5s ease-in-out infinite;
    position: relative;
    z-index: 5;
}

.serp-header {
    background: #f8fafc;
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.serp-search-bar {
    flex: 1;
    height: 30px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 0.7rem;
    color: #64748b;
}

.serp-result-item {
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.serp-result-item.climbing {
    animation: rank-climb 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes rank-climb {
    0% {
        transform: translateY(60px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

.seo-card-premium {
    background: #fff;
    padding: 45px 35px;
    border-radius: 28px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.seo-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 150, 136, 0.1);
    border-color: #009688;
}

.seo-icon-box {
    width: 60px;
    height: 60px;
    background: #f0fdfd;
    color: #009688;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 15px rgba(0, 150, 136, 0.08);
}

/* SEO Growth Pipeline Styles */
.pipeline-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 0;
    position: relative;
    gap: 20px;
}

.pipeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pipeline-node {
    width: 90px;
    height: 90px;
    background: #fff;
    border: 1px solid #eef2ff;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.pipeline-step:hover .pipeline-node {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 25px 50px rgba(0, 86, 179, 0.2);
    background: var(--gradient-blue);
    color: #fff;
    border-color: transparent;
}

.pipeline-connector {
    position: absolute;
    top: 45px;
    left: calc(50% + 45px);
    width: calc(100% - 90px);
    height: 2px;
    background: #eef2ff;
    z-index: 1;
}

.pipeline-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    background: var(--primary-blue);
    filter: blur(2px);
    animation: pipeline-flow 3s infinite linear;
}

@keyframes pipeline-flow {
    0% {
        left: -40px;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.node-label {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1e293b;
    transition: color 0.3s ease;
}

.pipeline-step:hover .node-label {
    color: var(--primary-blue);
}

.node-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 180px;
    margin: 0 auto;
}

/* SEO Visibility Visualization */
.visibility-chart-box {
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.chart-data-line {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-top: 30px;
}

.data-bar {
    flex: 1;
    background: rgba(0, 86, 179, 0.2);
    border-radius: 6px 6px 0 0;
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 0;
}

.data-bar-active {
    background: var(--gradient-blue);
    box-shadow: 0 0 15px rgba(0, 86, 179, 0.4);
}

.data-point-pulse {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #fff;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
}

.sov-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.05);
    border-top-color: var(--primary-blue);
    border-right-color: #27c93f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 1.2rem;
    animation: rotate-orbit 10s linear infinite;
}

/* Banking & Finance Premium Styles */
.banking-hero-premium {
    padding: 180px 0 120px;
    background: radial-gradient(circle at 10% 10%, #ffffff 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.banking-stat-bar {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 86, 179, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.banking-card-premium {
    background: #fff;
    padding: 40px;
    border-radius: 28px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.banking-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.1);
    border-color: var(--primary-blue);
}

.banking-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(0, 86, 179, 0.05);
    color: var(--primary-blue);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.security-node-pulse {
    width: 12px;
    height: 12px;
    background: #27c93f;
    border-radius: 50%;
    position: relative;
}

.security-node-pulse::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #27c93f;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

.banking-vault-visual {
    width: 450px;
    height: 450px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 0 50px rgba(0, 86, 179, 0.05);
}

.vault-ring {
    position: absolute;
    border: 1px dashed #cbd5e1;
    border-radius: 50%;
}

/* Retail & Lifestyle Premium Styles */
.retail-hero-premium {
    padding: 180px 0 120px;
    background: radial-gradient(circle at 90% 10%, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.retail-stat-bar {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 86, 179, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -100px;
    position: relative;
    z-index: 10;
    border: 1px solid #f0f7ff;
}

.retail-card-premium {
    background: #fff;
    padding: 40px;
    border-radius: 28px;
    border: 1px solid #f8fafc;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.retail-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.1);
    border-color: var(--primary-blue);
}

.retail-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(0, 86, 179, 0.05);
    color: var(--primary-blue);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.retail-visual-container {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.retail-shopping-bag {
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 35px;
    box-shadow: 0 25px 50px rgba(0, 86, 179, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-blue);
    z-index: 5;
    animation: floating-premium 4s ease-in-out infinite;
}

.retail-pulse-blue {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-blue 3s infinite;
}

@keyframes pulse-blue {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

/* Industry Hub Premium Styles */
.industries-hero-premium {
    padding: 180px 0 100px;
    background: radial-gradient(circle at 50% 50%, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.industry-sector-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}

.industry-sector-section:nth-child(even) {
    background: #f8fafc;
}

.sector-visual-mockup {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 40px 100px rgba(0, 86, 179, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sector-main-icon {
    font-size: 5rem;
    color: var(--primary-blue);
    animation: floating-premium 5s ease-in-out infinite;
    z-index: 5;
}

.sector-floating-tag {
    position: absolute;
    background: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    font-weight: 800;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 6;
    border: 1px solid #f1f5f9;
}

.tag-pos-1 {
    top: 15%;
    right: 10%;
    animation: floating-premium 4s infinite;
}

.tag-pos-2 {
    bottom: 15%;
    left: 10%;
    animation: floating-premium 4s infinite 1s;
}

.tag-pos-3 {
    top: 30%;
    left: 5%;
    animation: floating-premium 4s infinite 0.5s;
}

.sector-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--primary-blue);
    font-size: 1rem;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.sector-link-btn:hover {
    gap: 20px;
    color: var(--dark-blue);
}

.sector-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Master Animation Suite */
@keyframes floating-premium {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes reveal-from-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes reveal-from-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal-left {
    animation: reveal-from-left 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.reveal-right {
    animation: reveal-from-right 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Medical & Healthcare Premium Styles */
.medical-hero-premium {
    padding: 180px 0 120px;
    background: radial-gradient(circle at 10% 10%, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.medical-stat-bar {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 86, 179, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -100px;
    position: relative;
    z-index: 10;
    border: 1px solid #f0f7ff;
}

.medical-card-premium {
    background: #fff;
    padding: 40px;
    border-radius: 28px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.medical-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.12);
    border-color: var(--primary-blue);
}

.medical-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(0, 86, 179, 0.05);
    color: var(--primary-blue);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.medical-heart-visual {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.heart-beat-burst {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(0, 86, 179, 0.2);
    border-radius: 50%;
    animation: heart-pulse-burst 2s infinite;
}

@keyframes heart-pulse-burst {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.medical-status-tag {
    position: absolute;
    background: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 6;
    border: 1px solid #f0f7ff;
    font-weight: 800;
    font-size: 0.75rem;
}

/* Education & EdTech Premium Styles */
.education-hero-premium {
    padding: 180px 0 120px;
    background: radial-gradient(circle at 90% 10%, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.education-stat-bar {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 86, 179, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -100px;
    position: relative;
    z-index: 10;
    border: 1px solid #f0f7ff;
}

.education-card-premium {
    background: #fff;
    padding: 40px;
    border-radius: 28px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.education-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.1);
    border-color: var(--primary-blue);
}

.education-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(0, 86, 179, 0.05);
    color: var(--primary-blue);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.academic-visual-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.academic-pulse-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px dashed rgba(0, 86, 179, 0.2);
    border-radius: 50%;
    animation: rotate-orbit 60s linear infinite;
}

.academic-tag {
    position: absolute;
    background: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    font-weight: 800;
    font-size: 0.7rem;
    color: var(--primary-blue);
    border: 1px solid #f1f5f9;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* About & Story Premium Styles */
.about-hero-premium {
    padding: 200px 0 120px;
    background: radial-gradient(circle at 50% 50%, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-timeline-section {
    padding: 100px 0;
    position: relative;
    background: #ffffff;
}

.timeline-track {
    position: absolute;
    left: 50%;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
    transform: translateX(-50%);
}

.timeline-node {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    width: 100%;
    position: relative;
}

.timeline-content {
    width: 45%;
    background: #fff;
    padding: 40px;
    border-radius: 28px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.03);
    transition: all 0.4s ease;
}

.timeline-node:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-node:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.08);
    border-color: var(--primary-blue);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
    z-index: 5;
}

.brand-pillar-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 32px;
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: all 0.4s ease;
}

.brand-pillar-card:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.brand-pillar-card:hover * {
    color: #fff !important;
}

.about-leadership-visual {
    width: 100%;
    max-width: 550px;
    height: 450px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 86, 179, 0.1);
    position: relative;
}

.about-leadership-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.about-leadership-visual:hover img {
    transform: scale(1.05);
}

.glass-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.glass-value-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.glass-value-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
}

/* Luminous Premium About Styles */
.about-hero-luminous {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 50% 50%, #f1f8ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    color: #1a202c;
    padding: 140px 0 100px;
}

.mesh-gradient-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 86, 179, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 86, 179, 0.05) 0%, transparent 50%);
    filter: blur(80px);
    z-index: 1;
}

.stats-grid-luminous {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.stat-card-luminous {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 32px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 86, 179, 0.04);
}

.stat-card-luminous:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.12);
    border-color: var(--primary-blue);
}

.timeline-luminous-node {
    position: relative;
    padding-left: 60px;
    margin-bottom: 80px;
}

/* Dynamic Timeline Path */
.timeline-path-container {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #edf2f7;
    z-index: 1;
}

.timeline-path-active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    /* Updates via JS */
    background: var(--primary-blue);
    box-shadow: 0 0 15px rgba(0, 86, 179, 0.3);
    transition: height 0.1s ease-out;
}

.timeline-luminous-node::before {
    display: none;
    /* Removed static line */
}


.timeline-luminous-node:last-child::before {
    bottom: 0;
    height: 0;
}

.timeline-luminous-dot {
    position: absolute;
    left: -11px;
    top: 0;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 5px solid var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 86, 179, 0.2);
    z-index: 2;
}

.portrait-luminous-frame {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 86, 179, 0.1);
    border: 8px solid #fff;
    width: 480px;
    /* Fixed width */
    height: 500px;
    /* Fixed height for desktop */
    margin: 0 auto;
}

.portrait-luminous-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* Focus on face */
    display: block;
}

.glass-pill-luminous {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Master Attraction Elements */
.brand-pulse-sphere {
    width: 15rem;
    height: 15rem;
    background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    position: absolute;
    animation: scale-glow 4s infinite ease-in-out;
}

@keyframes scale-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.25;
    }
}

.data-nexus-card {
    background: #ffffff;
    border-radius: 35px;
    padding: 50px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 40px 100px rgba(0, 86, 179, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.data-nexus-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 60px 120px rgba(0, 86, 179, 0.1);
}

.icon-flow-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.08);
    position: relative;
    z-index: 2;
}

.floating-data-bit {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
}

.global-presence-map {
    width: 100%;
    height: 500px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/e/ec/World_map_blank_without_borders.svg') no-repeat center;
    background-size: contain;
    opacity: 0.05;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: invert(1);
}

.map-ping {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border-radius: 50%;
}

.map-ping::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    animation: ping-wave 2s infinite;
}

@keyframes ping-wave {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Premium Careers & Jobs Styles */
.jobs-hero-luminous {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 160px 0 100px;
}

.role-card-premium {
    background: #ffffff;
    border-radius: 28px;
    padding: 35px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 40px rgba(0, 86, 179, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.role-card-premium:hover {
    transform: translateX(12px) translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.08);
    border-color: var(--primary-blue);
}

.role-card-premium::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: var(--primary-blue);
    opacity: 0;
    transition: opacity 0.3s;
}

.role-card-premium:hover::before {
    opacity: 1;
}

.perk-unit-premium {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.02);
    transition: all 0.3s ease;
    text-align: center;
}

.perk-unit-premium:hover {
    background: #fff;
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.06);
}

.culture-image-frame {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    position: relative;
}

.culture-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.culture-image-frame:hover img {
    transform: scale(1.05);
}

/* Premium Contact Page Styles */
.contact-hero-luminous {
    padding: 180px 0 100px;
    background: radial-gradient(circle at 50% 50%, #f1f8ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 32px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 40px rgba(0, 86, 179, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.contact-glass-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.12);
    border-color: var(--primary-blue);
}

.contact-icon-box {
    width: 65px;
    height: 65px;
    background: #f1f8ff;
    color: var(--primary-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.05);
}

.form-container-premium-lite {
    background: #ffffff;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 86, 179, 0.06);
    border: 1px solid #f8fbff;
}

.p-input-group-lite {
    margin-bottom: 25px;
}

.p-input-group-lite label {
    display: block;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.p-input-group-lite input,
.p-input-group-lite select,
.p-input-group-lite textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.p-input-group-lite input:focus,
.p-input-group-lite select:focus,
.p-input-group-lite textarea:focus {
    border-color: var(--primary-blue);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
    outline: none;
}

/* Extreme Premium Contact Styles */
.contact-hero-immersive {
    padding: 200px 0 120px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-nexus-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 50px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 40px 100px rgba(0, 86, 179, 0.05);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    z-index: 2;
}

.contact-nexus-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 60px 120px rgba(0, 86, 179, 0.12);
}

.input-field-extreme {
    width: 100%;
    padding: 18px 25px;
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #1a202c;
    transition: all 0.4s;
}

.input-field-extreme:focus {
    background: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.1);
    outline: none;
}

.live-status-ping {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #f0fdf4;
    color: #166534;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.ping-circle {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
}

.ping-circle::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #22c55e;
    animation: ping-wave 1.5s infinite;
}

.support-unit-premium {
    padding: 30px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
}

.support-unit-premium:hover {
    background: #f8fbff;
    transform: scale(1.05);
    border-color: var(--primary-blue);
}

.backdrop-mesh-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 86, 179, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 86, 179, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.floating-contact-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.08);
}

/* =========================================
   MOBILE MENU & HEADER OPTIMIZATIONS (GLOBAL)
   ========================================= */

/* Hide Mobile Menu Toggle on Desktop */
.mobile-menu-toggle {
    display: none;
}

@media (max-width: 991px) {

    /* Container Padding Fix for Mobile */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
    }

    /* Show Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: block !important;
        font-size: 1.8rem;
        cursor: pointer;
        color: #fff;
    }

    /* Hide Desktop Navigation */
    .nav {
        display: none !important;
    }

    /* Hide Desktop Contact Button */
    .btn-login-premium {
        display: none !important;
    }

    /* Adjust Header Layout */
    .header-container {
        justify-content: space-between !important;
        align-items: center !important;
    }
}

/* =========================================
   SCROLL REVEAL ANIMATIONS (The "Mast UI" Vibe)
   ========================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.21, 0.6, 0.35, 1),
        transform 1s cubic-bezier(0.21, 0.6, 0.35, 1);
    will-change: transform, opacity;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays for Groups */
.delay-100 {
    transition-delay: 0.1s !important;
}

.delay-200 {
    transition-delay: 0.2s !important;
}

.delay-300 {
    transition-delay: 0.3s !important;
}

.delay-400 {
    transition-delay: 0.4s !important;
}

.delay-500 {
    transition-delay: 0.5s !important;
}

.delay-600 {
    transition-delay: 0.6s !important;
}

/* =========================================
   Mobile Responsive - Service Section
   ========================================= */

@media (max-width: 768px) {
    .service-flex-layout {
        flex-direction: column;
        gap: 20px;
        /* Reduced gap */
        min-height: auto;
        padding: 0;
        /* Removed padding to increase width */
    }

    .service-info-text {
        flex: 1;
        text-align: left;
        width: 100%;
    }

    .service-info-text h3 {
        font-size: 1.6rem !important;
        /* Slightly smaller */
        line-height: 1.2;
        margin-bottom: 10px;
        /* Reduced margin */
    }

    .service-info-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
        /* Reduced margin */
    }

    .badge-mini {
        font-size: 0.65rem;
        padding: 4px 10px;
        margin-bottom: 10px;
        /* Reduced margin */
    }

    .wow-check-list {
        margin-top: 15px;
        /* Reduced margin */
    }

    .wow-check-list li {
        font-size: 0.85rem;
        margin-bottom: 8px;
        /* Reduced margin */
    }

    .service-info-visual {
        display: none;
    }

    .services-content-area {
        padding: 20px 15px !important;
        /* Reduced side padding to increase width */
        width: 100%;
    }

    .btn.btn-green {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px 20px;
        /* Compact button */
        font-size: 0.95rem;
        margin-top: 20px !important;
    }

    /* =========================================
       Mobile Responsive - API Section
       ========================================= */
    .api-experience-section {
        padding: 40px 15px !important;
        /* Reduced padding from 100px */
    }

    .api-experience-section .badge-mini {
        margin-bottom: 10px !important;
    }

    .api-experience-section h2 {
        font-size: 1.8rem !important;
        /* Smaller heading */
        margin-bottom: 20px !important;
    }

    .api-flex-layout {
        flex-direction: column-reverse;
        /* Put code below text for better flow */
        gap: 30px;
        margin-top: 20px;
    }

    .code-terminal-container {
        width: 100%;
    }

    .api-content-text {
        text-align: center;
        width: 100%;
        padding: 0;
    }

    .api-content-text h3 {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }

    .api-content-text p {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }

    .api-features-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center list items */
        text-align: left;
        gap: 10px;
    }

    /* =========================================
       Mobile Responsive - Service Navigation Tabs (Clean Grid)
       ========================================= */
    .services-nav-card {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        /* 2 Columns */
        gap: 12px !important;
        overflow-x: visible !important;
        width: 100% !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        margin-bottom: 25px !important;
    }

    .service-item {
        white-space: normal !important;
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 15px 10px !important;
        flex-direction: column !important;
        gap: 10px !important;
        border-radius: 12px !important;
        background: #fff !important;
        border: 1px solid rgba(0, 0, 0, 0.06) !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03) !important;
        color: #333 !important;
        height: auto !important;
    }

    .service-item i {
        font-size: 1.4rem !important;
        color: var(--primary-blue) !important;
        margin-bottom: 0 !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
    }

    .service-item span {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
    }

    .service-item.active {
        background: var(--primary-bg) !important;
        border: 1px solid var(--primary-blue) !important;
        border-bottom: 4px solid var(--primary-blue) !important;
        /* Thick bottom border */
        color: var(--primary-blue) !important;
        transform: translateY(-2px);
    }

    /* =========================================
       Mobile Responsive - FAQ Section
       ========================================= */
    .faq-question {
        padding: 15px !important;
        /* Reduced padding */
        font-size: 0.95rem !important;
        /* Smaller font */
        font-weight: 600 !important;
        /* Less bold */
        line-height: 1.4 !important;
        /* Better line height for multi-line */
        align-items: flex-start !important;
        /* Align icon with text top */
    }

    .faq-question i {
        margin-top: 3px !important;
        /* Align icon with first line of text */
        margin-left: 10px !important;
        flex-shrink: 0 !important;
        /* Prevent icon shrinking */
    }

    .faq-answer {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
}/* =========================================
   PREMIUM INDUSTRY CARDS (The "Mast UI" Update)
   ========================================= */

.industries-home-section {
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f4f7f5 100%) !important;
    position: relative;
    overflow: hidden;
}

/* Background floating blobs for extra vibe */
.industries-home-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.03) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.industry-card-premium {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

/* Hover State - "The Pop" */
.industry-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.3);
    background: #fff;
}

/* Icon Container */
.ind-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

/* Icon Animation on Hover */
.industry-card-premium:hover .ind-icon-box {
    transform: scale(1.1) rotate(-5deg);
    border-radius: 16px;
}

/* Specific Colors for each industry (can be overridden inline, but defaults here) */
.ind-icon-box.blue {
    background: #e3f2fd;
    color: #1565c0;
}

.ind-icon-box.teal {
    background: #e0f2f1;
    color: #00695c;
}

.ind-icon-box.orange {
    background: #fff3e0;
    color: #e65100;
}

.ind-icon-box.purple {
    background: #eef4ff;
    color: #0056b3;
}

.ind-icon-box.red {
    background: #ffebee;
    color: #c62828;
}

.ind-icon-box.indigo {
    background: #e8eaf6;
    color: #283593;
}

/* Text Styles */
.ind-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a1a1a;
    transition: color 0.3s;
}

.industry-card-premium:hover .ind-title {
    background: linear-gradient(135deg, #1a1a1a 0%, #0056b3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ind-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* "Learn More" Link Styling */
.ind-link-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-green);
    margin-top: auto;
    transition: all 0.3s;
}

.ind-link-row i {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.industry-card-premium:hover .ind-link-row i {
    transform: translateX(5px);
}

.industry-card-premium:hover .ind-link-row {
    color: var(--dark-green);
}

/* Shine Effect on Hover */
.industry-card-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
    opacity: 0;
}

.industry-card-premium:hover::after {
    animation: shineCard 0.75s;
    opacity: 0.1;
}

@keyframes shineCard {
    0% {
        left: -100%;
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}/* =========================================
   SMART MANAGEMENT TOOL SECTION (Horizontal Layout)
   ========================================= */

.babal-feature-section {
    padding: 120px 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 86, 179, 0.04) 0%, #f9fbfc 100%);
    overflow: hidden;
    position: relative;
}

/* Optional: Decorative blob for beauty */
.babal-feature-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.smart-tool-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    /* Reduced so it doesn't touch screen edges and looks more compact */
    width: 92%;
    margin: 0 auto;
    padding: 0 20px;
}

/* LEFT SIDE: Text Content */
.smart-tool-text {
    flex: 0 0 320px;
    /* Reduced from 380px to give more space to cards */
    text-align: left;
}

.smart-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    /* Reduced from 20px */
    line-height: 1.2;
}

.smart-desc {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    /* Reduced from 30px */
    line-height: 1.6;
}

/* Button & Nav Row */
.smart-action-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-smart-outline {
    padding: 12px 24px;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    background: transparent;
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-smart-outline:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Navigation Arrows (Carousel Logos) */
.smart-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.2px solid #222;
    /* Darker border */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    /* Prevent shrinking */
    z-index: 10;
}

.smart-nav-btn:hover {
    background: #222;
    color: #fff;
    transform: scale(1.1);
}

/* Container for Arrows + Cards */
.smart-carousel-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    /* Reduced gap to max card space */
    overflow: hidden;
    /* Contain the scroll area */
    position: relative;
    padding: 20px 0;
    /* Space for hover effects */
}

/* RIGHT SIDE: Cards Carousel */
.smart-tool-cards {
    max-width: 720px;
    /* (215px * 3) + (20px * 2) = 685px + padding room */
    flex: 1;
    display: flex;
    gap: 20px;
    /* Added more gap for better breathing */
    overflow-x: auto;
    /* Hide scrollbar visually but allow scroll */
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 10px 5px;
    /* Padding for shadows */
}

.smart-tool-cards::-webkit-scrollbar {
    display: none;
}

/* CARD STYLES - Premium "Mast UI" Update */
.smart-card {
    flex: 0 0 215px;
    height: 230px;
    border-radius: 32px;
    /* Even more rounded like the reference */
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
    align-items: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: #ffffff;
    /* Default back to white for that crisp look */
    overflow: hidden;
}

.smart-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 86, 179, 0.15);
    border-color: rgba(0, 86, 179, 0.2);
}

/* Adding the Industry Shine Effect */
.smart-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
    opacity: 0;
}

.smart-card:hover::after {
    animation: shineCard 0.8s;
    opacity: 0.1;
}

/* Icon Container Refinement */
.smart-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    /* Squircle shape like Industry icons */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    background: #f8fbff;
    position: relative;
    z-index: 2;
}

.smart-card:hover .smart-icon-box {
    transform: scale(1.1) rotate(-5deg);
    border-radius: 16px;
}

.smart-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.4;
    transition: color 0.3s;
}

.smart-card:hover .smart-card-title {
    color: #0056b3;
    /* Blue on hover */
}

/* Card Coloring refined for the new glass/white style */
.smart-card-purple .smart-icon-box {
    background: #e3f2fd;
    color: #0056b3;
}

.smart-card-peach .smart-icon-box {
    background: #fff3e0;
    color: #ff6d00;
}

.smart-card-yellow .smart-icon-box {
    background: #fffde7;
    color: #fbc02d;
}

.smart-card-green .smart-icon-box {
    background: #e8f5e9;
    color: #2e7d32;
}

.smart-card-blue .smart-icon-box {
    background: #e3f2fd;
    color: #1565c0;
}

.smart-card-pink .smart-icon-box {
    background: #fce4ec;
    color: #d81b60;
}

.smart-card-mint .smart-icon-box {
    background: #e0f2f1;
    color: #00897b;
}

/* Responsive */
@media (max-width: 900px) {
    .smart-tool-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .smart-tool-text {
        flex: none;
        width: 100%;
        margin-bottom: 40px;
    }

    .smart-action-row {
        justify-content: center;
    }

    .smart-tool-cards {
        width: 100%;
        /* Enable horizontal scroll on mobile */
        justify-content: flex-start;
        padding-left: 20px;
        /* inset for scrolling */
    }

    .smart-card {
        flex: 0 0 240px;
        /* Slightly smaller on mobile if needed */
    }
}/* =========================================
   Smart Management Tool Section (Babal Features)
   ========================================= */

.babal-feature-section {
    padding: 100px 0;
    background: #f8fbff;
    /* Very light background */
    overflow: hidden;
}

.smart-tool-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left Side Text */
.smart-tool-text {
    flex: 1;
    min-width: 300px;
}

.smart-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}

.smart-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-smart-outline {
    background: transparent;
    border: 2px solid #111;
    color: #111;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-smart-outline:hover {
    background: #111;
    color: #fff;
}

/* Right Side Carousel */
.smart-carousel-container {
    flex: 2;
    position: relative;
    display: flex;
    align-items: center;
}

.smart-tool-cards {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 5px;
    /* Top/bottom padding for shadow */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    width: 100%;
}

.smart-tool-cards::-webkit-scrollbar {
    display: none;
}

/* Base Card Style */
.smart-card {
    min-width: 220px;
    height: 280px;
    border-radius: 24px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #fff;
    /* Fallback */
}

.smart-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.smart-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.6);
    /* Semi-transparent white inside card */
}

.smart-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
}

/* --- Specific Card Colors (Pastel) --- */

/* Purple Card */
.smart-card-purple {
    background: #e0e0fa;
    /* Light Purple */
}

.smart-card-purple .smart-icon-box {
    color: #6200ea;
}

/* Peach Card */
.smart-card-peach {
    background: #fae0d4;
    /* Light Peach */
}

.smart-card-peach .smart-icon-box {
    color: #d84315;
}

/* Yellow Card */
.smart-card-yellow {
    background: #fff9c4;
    /* Light Yellow */
}

.smart-card-yellow .smart-icon-box {
    color: #fbc02d;
}

/* Green Card */
.smart-card-green {
    background: #d0e8d6;
    /* Light Green */
}

.smart-card-green .smart-icon-box {
    color: #2e7d32;
}

/* Blue Card */
.smart-card-blue {
    background: #e1f5fe;
    /* Light Blue */
}

.smart-card-blue .smart-icon-box {
    color: #0277bd;
}

/* Pink Card */
.smart-card-pink {
    background: #fce4ec;
    /* Light Pink */
}

.smart-card-pink .smart-icon-box {
    color: #c2185b;
}

/* Mint Card */
.smart-card-mint {
    background: #e0f2f1;
    /* Light Mint */
}

.smart-card-mint .smart-icon-box {
    color: #00695c;
}


/* Navigation Arrows */
.smart-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    position: absolute;
    color: #333;
    transition: all 0.3s ease;
}

.smart-nav-btn:hover {
    background: #111;
    color: #fff;
}

.smart-nav-btn:first-child {
    left: -20px;
}

.smart-nav-btn:last-child {
    right: -20px;
}


/* --- Mobile Responsive --- */
@media (max-width: 991px) {
    .smart-tool-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .smart-tool-text {
        width: 100%;
    }

    .smart-carousel-container {
        width: 100%;
    }

    .smart-nav-btn {
        display: none;
        /* Hide arrows on mobile, allow swipe */
    }
}

@media (max-width: 768px) {
    .babal-feature-section {
        padding: 60px 0;
    }

    .smart-title {
        font-size: 2rem;
    }

    .smart-card {
        min-width: 180px;
        /* Slightly smaller cards on mobile */
        height: 240px;
    }
}/* =========================================
   MAST UI MOBILE OPTIMIZATIONS
   ========================================= */

@media (max-width: 991px) {
    /* Tablet & Mobile Layout Adjustments */

    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
        width: 100% !important;
    }

    /* Show Menu Icon on Mobile */
    .mobile-menu-toggle {
        display: block !important;
        font-size: 1.8rem;
        cursor: pointer;
        color: #fff;
        /* Assuming header is blue based on screenshot */
    }

    /* Hide Desktop Login Button on Mobile */
    .btn-login-premium {
        display: none !important;
    }

    /* Hide 'Explore Features' black button on mobile */
    .hero-content .btn-black {
        display: none !important;
    }

    /* Hero Section */
    .hero {
        padding: 120px 0 60px !important;
        text-align: center;
    }

    .hero-container {
        flex-direction: column !important;
        gap: 50px;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        order: 1;
    }

    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 1.1rem !important;
        margin: 0 auto 25px !important;
        padding: 0 15px;
        line-height: 1.6 !important;
        color: #475569 !important;
    }

    .hero-content .btn {
        padding: 10px 24px !important;
        font-size: 1rem !important;
    }

    .hero-visual-premium {
        display: none !important;
        /* Hide complex floating nodes on mobile */
    }

    .hero-content div[style*="display: flex"] {
        justify-content: center;
        flex-wrap: wrap;
        /* Stack buttons if needed */
    }

    /* Dashboard Preview Card in Hero */
    .dashboard-preview-card {
        order: 2;
        margin-left: 0 !important;
        max-width: 100% !important;
        transform: none !important;
        /* Disable tilt on touch */
    }

    .dash-stats-row {
        flex-direction: row;
        gap: 10px !important;
        justify-content: space-between;
    }

    /* Compact Dashboard Card Styles */
    .dashboard-preview-card {
        padding: 20px !important;
        margin-top: 10px !important;
    }

    .dash-card-title {
        font-size: 1.25rem !important;
        margin-bottom: 2px !important;
    }

    .dash-card-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 15px !important;
    }

    .dash-feature-title {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }

    .dash-feature-desc {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
    }

    .dash-stat-box {
        padding: 10px !important;
    }

    .dash-stat-box h4 {
        font-size: 1.1rem !important;
    }

    .dash-stat-box p {
        font-size: 0.75rem !important;
    }

    /* Services Section */
    .services {
        padding-top: 40px !important;
        /* Reduced from 100px */
        padding-bottom: 20px !important;
    }

    .services .container>div:first-child {
        margin-bottom: 20px !important;
        /* Reduced from 60px */
    }

    .services h2,
    .services h3 {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
    }

    .services p {
        font-size: 0.9rem !important;
        padding: 0 10px;
    }

    .services-container {
        flex-direction: column;
    }

    .services-nav-card {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding: 15px;
        justify-content: flex-start;
        border-right: none;
        border-bottom: 1px solid #eee;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        margin-bottom: 5px;
        /* Reduced from 30px */
    }

    .service-item {
        padding: 10px 20px;
        flex: 0 0 auto;
        width: auto;
        border-radius: 12px;
        /* Reduced from 50px */
        border-bottom: none !important;
        background: #f8f9fa;
    }

    .service-item.active {
        background: var(--primary-blue);
        color: #fff;
    }

    .service-flex-layout {
        flex-direction: column;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .service-info-text {
        padding: 0 5px;
        width: 100%;
    }

    .wow-check-list {
        padding-left: 0;
        margin-top: 20px;
    }

    .wow-check-list li {
        justify-content: flex-start !important;
        text-align: left;
    }

    .service-info-text .btn {
        width: 100%;
        justify-content: center;
        margin-top: 20px !important;
    }

    .service-info-visual {
        display: none !important;
        /* Hide visual node orbit on mobile to save space */
    }

    /* API Experience Section */
    .api-experience-section {
        padding: 40px 0 !important;
    }

    .api-experience-section h2 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        padding: 0 10px;
    }

    .api-experience-section .container>div:first-child {
        margin-bottom: 20px !important;
    }

    .api-flex-layout {
        grid-template-columns: 1fr !important;
        display: flex;
        flex-direction: column-reverse;
        /* Code on bottom, Text on top */
        gap: 30px;
    }

    .api-content-text {
        text-align: left !important;
        padding: 0 10px !important;
    }

    /* Hide the secondary title on mobile to reduce clutter */
    .api-content-text h3 {
        display: none !important;
    }

    /* Shorten the description text */
    /* Shorten the description text - NOW HIDDEN */
    .api-content-text p {
        display: none !important;
    }

    .api-features-list {
        display: none !important;
    }

    /* Hide 'See Documentation' button on mobile */
    .api-content-text .btn {
        display: none !important;
    }

    .code-terminal-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin-top: 20px;
    }

    .terminal-body {
        overflow-x: auto;
    }

    /* Hide Smart Section Header & Title on Mobile */
    .babal-feature-section>div:first-child,
    .smart-title {
        display: none !important;
    }

    /* Reduce vertical padding for the section itself */
    .babal-feature-section {
        padding: 40px 0 !important;
    }

    /* Smart Management Tool */
    .smart-tool-wrapper {
        flex-direction: column !important;
        text-align: left;
        padding: 0 !important;
        width: 100% !important;
    }

    .smart-tool-text {
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 20px;
        /* Reduced from 40px */
        padding: 0 20px;
    }

    .smart-action-row {
        justify-content: flex-start;
    }

    .smart-carousel-container {
        width: 100%;
        padding: 0 10px;
    }

    .smart-tool-cards {
        width: 100%;
        overflow-x: auto;
        padding: 20px 10px;
        /* Space for shadow */
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        /* Enable snapping */
    }

    .smart-card {
        flex: 0 0 260px;
        /* Fixed width for cards */
    }

    .smart-nav-btn {
        display: none;
        /* Hide arrows on mobile, use swipe */
    }

    /* Business Hub (Dashboard Tabs & Laptop) - HIDDEN ON MOBILE */
    .business-hub-section {
        display: none !important;
    }

    .business-hub-section h2 {
        font-size: 2rem !important;
        line-height: 1.1 !important;
    }

    .business-hub-section p {
        font-size: 1rem !important;
        padding: 0 10px;
    }

    .dash-container {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 10px;
    }

    /* Sidebar becomes Top Tabs */
    .dash-sidebar {
        flex: 0 0 auto;
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        width: 100%;
        gap: 10px !important;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 10px;
        border-right: none !important;
    }

    .dash-tab {
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: 0 !important;
        padding: 10px 15px !important;
        background: #fff;
        border-radius: 50px !important;
        border: 1px solid #eef2f6;
        margin-bottom: 0 !important;
        align-items: center;
        gap: 8px;
    }

    .dash-tab.active {
        background: var(--primary-blue) !important;
        color: #fff !important;
        border-color: var(--primary-blue) !important;
    }

    .dash-tab i {
        font-size: 1.2rem !important;
        background: transparent !important;
        color: inherit !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
    }

    .dash-tab .tab-info {
        display: none !important;
        /* Hide text detail, keep icon or main text? */
    }

    /* Let's show title only if possible, structure is h4, p inside tab-info */
    /* Actually structure is icon + tab-info(h4, p) */
    /* Tab is too big. Let's hide p, show h4 */

    .dash-tab .tab-info {
        display: block !important;
    }

    .dash-tab .tab-info p {
        display: none !important;
    }

    .dash-tab .tab-info h4 {
        margin: 0 !important;
        font-size: 0.9rem !important;
        white-space: nowrap;
    }

    /* Laptop/Screen Container */
    .laptop-wrap {
        width: 100% !important;
        margin-top: 10px;
        transform: none !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    .laptop-screen {
        border-radius: 12px !important;
        border: 8px solid #333 !important;
        /* Simplified bezel */
        background: #fff;
        overflow: hidden;
        height: auto !important;
        min-height: 300px;
    }

    .screen-container {
        padding: 15px !important;
        height: auto !important;
    }

    .screen-content {
        padding: 0 !important;
    }

    .laptop-base {
        display: none !important;
        /* Hide base to save space */
    }

    /* Dashboard Internal Grid */
    .dash-metrics-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
        /* 3 cols fit on mobile */
        gap: 5px !important;
    }

    .metric-card-mini {
        padding: 8px !important;
    }

    .metric-card-mini span {
        font-size: 0.65rem !important;
    }

    .metric-card-mini h5 {
        font-size: 0.9rem !important;
    }

    .graph-placeholder i {
        font-size: 3rem !important;
    }

    .code-editor {
        font-size: 0.7rem !important;
    }

    /* Timeline Section - HIDDEN ON MOBILE */
    .timeline-scroll-section {
        display: none !important;
    }

    .timeline-flex {
        flex-direction: column;
        gap: 50px;
    }

    .timeline-left {
        text-align: center;
        position: static !important;
        /* Unstick */
        padding-right: 0 !important;
        margin-bottom: 20px;
    }

    .timeline-left p {
        background: transparent !important;
        /* Remove any backdrop blur background if present */
    }

    .timeline-right {
        padding-left: 20px;
        /* Indent for timeline line */
    }

    /* Bento Grid */
    .bento-section {
        padding-bottom: 20px !important;
        /* Reduced gap below bento */
    }

    .bento-section h2 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        padding: 0 10px;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr !important;
        /* 2 items per row */
        gap: 10px;
    }

    .bento-item {
        padding: 15px !important;
        min-height: 150px !important;
    }

    .bento-item h3 {
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
    }

    .bento-item p {
        font-size: 0.7rem !important;
        display: none;
        /* Hide description to fit 2 cols neatly if needed, or keep small */
    }

    .bento-item.large {
        grid-column: span 2 !important;
        /* Large item takes full width */
    }

    .bento-icon {
        width: 30px !important;
        height: 30px !important;
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }

    .bento-stats-row {
        flex-direction: row;
        /* Keep stats row */
        justify-content: space-around;
        flex-wrap: wrap;
    }

    /* FAQ Section */
    .faq-section {
        padding-top: 20px !important;
        /* Reduced from 100px */
        padding-bottom: 40px !important;
    }

    .faq-container>div:first-child {
        margin-bottom: 20px !important;
        /* Reduced from 50px */
    }

    .faq-section h2 {
        font-size: 1.5rem !important;
        /* Reduced to fit 1 line */
        line-height: 1.2 !important;
        padding: 0 5px;
        white-space: nowrap;
        /* Force 1 line */
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .faq-section p {
        font-size: 0.9rem !important;
        padding: 0 10px;
    }

    .faq-answer.show {
        padding-bottom: 10px !important;
        /* Fit within JS height calc */
    }
}

/* =========================================
   MOBILE MENU PREMIUM GRID STYLES
   ========================================= */
.mobile-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 10px 5px 20px 5px;
}

.mobile-nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    text-decoration: none;
    color: #333;
    border: 1px solid #f0f0f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mobile-nav-card:active {
    transform: scale(0.96);
    background: #f9f9f9;
}

.mobile-nav-card i {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #0056b3;
    /* Brand Blue */
}

.mobile-nav-card span {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Ensure overlay has a nice background */
.mobile-menu-overlay {
    background-color: #f8fbff !important;
    /* Very light blue tint */
}

/* =========================================
   GLOBAL MOBILE RESETS (Fix Left-Right Scrolling)
   ========================================= */
@media (max-width: 991px) {

    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        position: relative;
    }

    .container,
    section,
    footer,
    header {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* Ensure no element exceeds viewport */
    * {
        box-sizing: border-box;
    }

    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* =========================================
   SMS PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {

    /* Hero Section */
    .sms-hero {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }

    .sms-hero-flex {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 30px !important;
        align-items: center !important;
        text-align: center !important;
    }

    .sms-hero-text {
        text-align: center !important;
        padding: 0 15px;
        width: 100% !important;
    }

    .sms-hero-text h1 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
        max-width: 100%;
        padding: 0 5px;
    }

    .sms-hero-text p {
        font-size: 0.9rem !important;
        /* Smaller font to fit in fewer lines */
        line-height: 1.4 !important;
        margin-top: 10px !important;
        /* Thoda niche (increase gap from title) */
        margin-bottom: 25px !important;
        padding: 0 2px;
        /* Reduce padding so text has more width */
        max-width: 100%;
        color: #555;
    }

    /* Stack buttons properly */
    .sms-hero-text div[style*="display: flex"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
    }

    .sms-hero-text .btn {
        width: auto !important;
        display: inline-flex !important;
        padding: 10px 30px !important;
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
        min-width: 140px;
    }

    /* Hide Explore Features button on mobile */
    .sms-hero-text .btn-black {
        display: none !important;
    }

    /* 3D Visual Card */
    .sms-visual-3d {
        transform: scale(0.9) !important;
        margin: 0 auto 30px auto !important;
        width: 100% !important;
        display: flex;
        justify-content: center;
        overflow: visible !important;
    }

    /* Target the glass card with inline styles */
    .sms-visual-3d>div[style*="width: 320px"] {
        width: 100% !important;
        max-width: 320px !important;
        height: auto !important;
        min-height: 380px !important;
        padding: 25px !important;
        margin: 0 auto;
    }

    /* Adjust floating elements position for mobile */
    .sms-floater.otp {
        top: -10px !important;
        right: 0 !important;
        z-index: 10;
    }

    .sms-floater.trans {
        bottom: 10px !important;
        left: 0 !important;
        z-index: 10;
    }

    /* Stats Bar */
    .sms-stats-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        padding: 25px 15px !important;
        width: 100% !important;
        margin: 0 auto !important;
        justify-content: center !important;
    }

    .sms-stats-bar>div[style*="width: 1px"] {
        display: none !important;
    }

    .stat-item {
        flex: unset !important;
        text-align: center !important;
        margin: 0 !important;
    }

    .stat-number {
        font-size: 1.8rem !important;
    }

    .stat-label {
        font-size: 0.85rem !important;
    }

    /* Core Solutions Header */
    .sms-overview-section h2 {
        font-size: 2rem !important;
        padding: 0 15px;
        line-height: 1.2 !important;
    }

    /* Core Solutions Flex */
    .sms-solutions-flex {
        flex-direction: column !important;
        gap: 40px !important;
        padding: 0 15px !important;
    }

    .sms-solutions-flex>div {
        width: 100% !important;
        flex: unset !important;
        text-align: left !important;
    }

    .sms-center-mockup {
        margin: 20px auto !important;
        transform: scale(0.95) !important;
        max-width: 100%;
    }

    /* List Items Styling */
    .sms-solutions-flex>div[class*="fade-in-up"] {
        gap: 30px !important;
    }

    .sms-solutions-flex>div>div {
        flex-direction: row !important;
        /* Keep icon next to text */
        text-align: left !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        background: #fff;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    /* Override Right Side Alignment */
    .sms-solutions-flex>div:last-child {
        text-align: left !important;
        align-items: flex-start !important;
    }

    .sms-solutions-flex>div:last-child>div {
        flex-direction: row !important;
        /* Icon on left for everyone on mobile */
        justify-content: flex-start !important;
    }

    .sms-solutions-flex i {
        font-size: 2rem !important;
        min-width: 40px;
        text-align: center;
        opacity: 1 !important;
        color: var(--primary-blue) !important;
    }

    .sms-solutions-flex h3 {
        font-size: 1.25rem !important;
        margin-bottom: 5px !important;
    }

    .sms-solutions-flex p {
        font-size: 0.95rem !important;
        color: #666;
    }

    /* Features Grid */
    .sms-features-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }

    .sms-card {
        padding: 30px 20px !important;
    }

    .container#features h2 {
        font-size: 2rem !important;
    }

    /* Split Section */
    .sms-split-section {
        flex-direction: column !important;
        text-align: center !important;
        padding: 40px 20px !important;
        gap: 30px !important;
    }

    .sms-split-section i.fa-microchip {
        font-size: 8rem !important;
        /* Proper scaling */
        margin-bottom: 20px !important;
        animation: float 4s ease-in-out infinite !important;
    }

    .sms-split-text {
        padding: 0 !important;
        text-align: center !important;
        width: 100% !important;
    }

    .sms-split-text h2 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .sms-split-text p {
        font-size: 1rem !important;
        padding: 0 10px;
    }

    .sms-check-list {
        text-align: left !important;
        display: inline-block;
        margin: 20px auto !important;
    }

    .sms-check-list li {
        font-size: 1rem !important;
        margin-bottom: 15px !important;
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: flex-start !important;
    }
}

@media (max-width: 480px) {
    /* Mobile Phone Adjustments */

    .hero-title {
        font-size: 2rem !important;
    }

    .dash-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .dash-tabs {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .ticker-item {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .dash-tag-row {
        flex-wrap: wrap;
    }

    .smart-card {
        flex: 0 0 90vw !important;
        /* 1 card at a time */
        scroll-snap-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: left !important;
    }

    .footer-logo-col {
        align-items: flex-start !important;
    }

    .social-links {
        justify-content: flex-start !important;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 50px;
        text-align: center;
    }

    .newsletter-form button {
        border-radius: 50px;
        width: 100%;
    }

    /* Hide Vertical Social Bar */
    .social-sidebar {
        display: none !important;
    }
}

/* =========================================
   ABOUT PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {

    /* Reduce massive section paddings */
    .about-hero-luminous {
        padding-bottom: 80px !important;
        padding-top: 100px !important;
        text-align: center !important;
    }

    .section {
        padding: 60px 0 !important;
    }

    /* Hero Typography */
    .about-hero-luminous h1 {
        font-size: 2.8rem !important;
        letter-spacing: -1.5px !important;
        line-height: 1 !important;
        margin-bottom: 25px !important;
    }

    .about-hero-luminous p {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        padding: 0 10px;
        margin-bottom: 40px !important;
    }

    /* Stats Grid Luminous - 2x2 and Premium */
    .stats-grid-luminous {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
        padding: 0 10px !important;
        margin-top: 50px !important;
    }

    .stat-card-luminous {
        padding: 30px 15px !important;
        border-radius: 20px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 86, 179, 0.05) !important;
        box-shadow: 0 10px 30px rgba(0, 86, 179, 0.04) !important;
        transition: transform 0.3s ease !important;
    }

    .stat-card-luminous:active {
        transform: scale(0.95) !important;
    }

    .stat-card-luminous div[style*="font-size: 3rem"] {
        font-size: 1.8rem !important;
        letter-spacing: -1px;
        background: var(--gradient-blue);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .stat-card-luminous p {
        font-size: 0.65rem !important;
        letter-spacing: 1px !important;
        margin-top: 10px !important;
        color: #64748b !important;
        font-weight: 700 !important;
    }

    /* Deep-Tech Philosophy Grid */
    section[style*="background: #f8fbff"] .container>div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    section[style*="background: #f8fbff"] h2 {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
    }

    /* Philosophy Visual Scale Down */
    .reveal-right .fa-cloud-bolt {
        font-size: 6rem !important;
    }

    div[style*="width: 450px"][style*="height: 450px"] {
        width: 280px !important;
        height: 280px !important;
        margin: 0 auto !important;
        border-radius: 30px !important;
    }

    .academic-pulse-ring {
        width: 320px !important;
        height: 320px !important;
    }

    /* Timeline Adjustments */
    .timeline-luminous-node {
        padding-left: 40px !important;
        margin-bottom: 50px !important;
        text-align: left !important;
    }

    .timeline-luminous-node h3 {
        font-size: 1.5rem !important;
    }

    .timeline-luminous-node p {
        font-size: 1rem !important;
    }

    /* Founder Section - Mobile Rewrite */
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .mobile-founder-vision {
        padding: 40px 10px 0;
    }

    .vision-card-glass {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 40px;
        padding: 60px 25px 40px;
        position: relative;
        box-shadow: 0 40px 80px rgba(0, 86, 179, 0.08);
        text-align: center;
    }

    .vision-profile-wrap {
        position: absolute;
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 100px;
    }

    .vision-img-round {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        border: 5px solid #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .vision-bolt-badge {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 30px;
        height: 30px;
        background: var(--primary-blue);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        border: 2px solid #fff;
    }

    .vision-title {
        font-size: 1.4rem !important;
        font-weight: 800 !important;
        color: #1a1a1a !important;
        line-height: 1.2 !important;
        margin-bottom: 25px !important;
    }

    .vision-title span {
        background: var(--gradient-blue);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .vision-quote {
        margin-bottom: 30px;
    }

    .vision-quote i {
        font-size: 1.5rem;
        color: var(--primary-blue);
        opacity: 0.2;
        margin-bottom: 10px;
    }

    .vision-quote p {
        font-size: 1.1rem !important;
        color: #475569 !important;
        line-height: 1.6 !important;
        font-style: italic;
        font-weight: 400 !important;
        margin: 0 !important;
    }

    .vision-footer h4 {
        font-size: 1.2rem !important;
        font-weight: 900 !important;
        color: #010101 !important;
        margin-bottom: 5px !important;
    }

    .vision-footer span {
        font-size: 0.8rem !important;
        color: var(--primary-blue) !important;
        font-weight: 800 !important;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .vision-line {
        width: 40px;
        height: 3px;
        background: var(--gradient-blue);
        margin: 0 auto 15px;
        border-radius: 10px;
    }

    /* CTA Footer in About */
    section[style*="text-align: center"][style*="padding: 180px 0"] {
        padding: 80px 0 !important;
    }

    section[style*="text-align: center"][style*="padding: 180px 0"] h2 {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
    }

    section[style*="text-align: center"][style*="padding: 180px 0"] .btn-blue-glow {
        padding: 14px 35px !important;
        font-size: 1rem !important;
    }

    /* Handle Huge Headings Globally in About Page */
    .section h2[style*="font-size"] {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 20px !important;
    }

    .section p[style*="font-size: 1.6rem"] {
        font-size: 1.1rem !important;
        /* Quote text too big */
        padding: 0 10px;
    }

    /* Founder Text adjustments */
    .founder-card {
        margin: 0 auto;
    }

    /* Ensure Founder Name card is centered */
    div[style*="width: fit-content"] {
        flex-direction: row !important;
        width: auto !important;
        margin: 0 auto !important;
        padding: 15px 20px !important;
    }

    div[style*="width: fit-content"] h4 {
        font-size: 1.2rem !important;
    }

    div[style*="width: fit-content"] p {
        font-size: 0.8rem !important;
    }

    /* Interactive CTA Footer */
    section[style*="padding: 180px 0"] {
        padding: 80px 0 !important;
    }
}

/* =========================================
   WHATSAPP PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {
    .wa-hero {
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }

    .wa-hero-container {
        flex-direction: column !important;
        text-align: center;
        gap: 25px;
        /* Reduced gap */
    }

    .wa-hero-text {
        text-align: center !important;
        padding: 0 15px;
        order: 1;
        /* Text first */
    }

    .wa-hero-visual {
        order: 2;
        /* Visual second */
        margin: 0 auto;
        transform: scale(0.9);
    }

    /* Hero Heading Optimization */
    .wa-hero-text h1 {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 5px;
        white-space: normal;
    }

    .wa-hero-text p {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
        padding: 0 10px;
    }

    .wa-hero-text div[style*="display: flex"] {
        justify-content: center !important;
        align-items: center !important;
        /* Prevent stretch */
        flex-direction: column;
        gap: 15px !important;
    }

    .wa-hero-text .btn {
        width: auto !important;
        max-width: fit-content !important;
        display: inline-flex !important;
        padding: 10px 25px !important;
        font-size: 0.85rem !important;
        margin-bottom: 15px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Hide Platform Features button on mobile */
    .wa-hero-text .btn-black {
        display: none !important;
    }

    /* Sections Split */
    .wa-split {
        flex-direction: column !important;
        gap: 30px !important;
        /* Reduced gap */
        padding: 40px 0 !important;
        /* Add vertical padding control */
    }

    /* Reduce top padding for the first section after hero */
    .wa-section-alt {
        padding-top: 10px !important;
        padding-bottom: 20px !important;
    }

    .wa-split.reverse {
        flex-direction: column-reverse !important;
    }

    .wa-content {
        text-align: center !important;
        padding: 0 15px;
    }

    .wa-content h2 {
        font-size: 1.5rem !important;
        /* Smaller to fit 2 lines */
        line-height: 1.25 !important;
        margin-bottom: 15px !important;
        padding: 0 5px;
    }

    .wa-features-list {
        justify-content: center;
    }

    .wa-feat-item {
        text-align: left;
    }

    /* Cards */
    .wa-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 15px;
    }

    /* Industry Solutions Title Optimization */
    .wa-title-center h2 {
        font-size: 1.5rem !important;
        white-space: nowrap !important;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 10px;
    }

    /* CTA Section Heading */
    section[style*="padding: 120px 0"] {
        padding: 30px 0 60px 0 !important;
        /* Top padding reduced to 30px */
    }

    section[style*="padding: 120px 0"] h2 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        padding: 0 10px;
    }

    section[style*="padding: 120px 0"] .btn-black {
        display: none !important;
    }

    section[style*="padding: 120px 0"] .btn-blue-glow {
        padding: 10px 30px !important;
        font-size: 0.85rem !important;
        width: auto !important;
        max-width: fit-content;
        margin: 0 auto;
    }
}

/* =========================================
   VOICE PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {
    .voice-hero-premium {
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }

    .voice-hero-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    /* Stack Order: Text first, Visual second */
    .voice-hero-content {
        order: 1 !important;
        padding: 0 15px !important;
    }

    .voice-hero-visual {
        order: 2 !important;
        margin: 0 auto !important;
        transform: scale(0.9) !important;
        overflow: visible !important;
        /* Allow shadow */
        width: 100% !important;
        display: flex;
        justify-content: center;
    }

    .visual-wrapper {
        display: flex;
        justify-content: center;
        width: 100% !important;
    }

    /* Target the glass card inside visual wrapper */
    .visual-wrapper>div {
        width: 100% !important;
        max-width: 340px !important;
        /* Fit within mobile screen */
        min-height: auto !important;
        padding: 20px !important;
    }

    /* Hero Heading - Small & Compact */
    .voice-hero-content h1 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
        padding: 0 5px !important;
    }

    .voice-hero-content p {
        font-size: 1rem !important;
        padding: 0 10px !important;
        margin-bottom: 25px !important;
    }

    /* Hero Buttons */
    .hero-actions {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .hero-actions .btn-black {
        display: none !important;
        /* Hide secondary button */
    }

    .hero-actions .btn-blue-glow {
        width: auto !important;
        max-width: fit-content !important;
        padding: 10px 30px !important;
        font-size: 0.9rem !important;
    }

    /* Trust Icons */
    .hero-trust {
        justify-content: center !important;
        margin-top: 30px !important;
    }

    .trust-icons {
        justify-content: center !important;
    }

    /* Stats Bar (Reused Class but ensure margin fix) */
    .sms-stats-bar {
        margin-top: -30px !important;
        /* Reduce negative margin */
        margin-bottom: 40px !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }

    /* Clean up vertical dividers in stats */
    .sms-stats-bar>div[style*="width: 1px"] {
        display: none !important;
    }

    /* Premium Features Grid */
    .v-premium-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }

    /* Workflow Section */
    .voice-workflow-section {
        padding: 40px 0 !important;
    }

    .workflow-container {
        flex-direction: column !important;
        gap: 40px !important;
        text-align: center !important;
    }

    .check-list-green {
        text-align: left !important;
        display: inline-block;
        margin: 20px auto !important;
    }

    .workflow-visual {
        margin-top: 20px !important;
    }

    /* Section Headers */
    .section-header-center h2 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        padding: 0 10px !important;
    }

    /* Bento Grid Reset */
    .bento-grid[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        /* Override inline style */
        grid-auto-rows: auto !important;
        gap: 20px !important;
        margin-top: 30px !important;
        padding: 0 15px !important;
    }

    .bento-card[style*="grid-column"] {
        grid-column: span 1 !important;
        /* Make all cards full width */
        grid-row: auto !important;
    }

    /* Fix Specific Cards inside Bento */
    .bento-card h3 {
        font-size: 1.3rem !important;
    }

    .bento-card p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    /* CTA Card inside Bento */
    .bento-card[style*="linear-gradient"] {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
    }

    .bento-card .btn-white-glow {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* =========================================
   EMAIL PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {
    .email-hero-premium {
        padding-top: 120px !important;
        padding-bottom: 40px !important;
    }

    .email-hero-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .email-hero-content {
        order: 1 !important;
        padding: 0 15px !important;
    }

    .email-hero-content .badge-mini {
        display: none !important;
    }

    .email-hero-visual {
        order: 2 !important;
        margin: 0 auto !important;
        width: 100% !important;
        display: flex;
        justify-content: center;
        overflow: visible !important;
        transform: scale(0.9) !important;
    }

    /* Target the glass card inside visual wrapper */
    .email-hero-visual .visual-wrapper>div {
        width: 100% !important;
        max-width: 340px !important;
        min-height: auto !important;
        padding: 20px !important;
    }

    .email-hero-content h1 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
        padding: 0 5px !important;
    }

    .email-hero-content p {
        font-size: 1rem !important;
        padding: 0 10px !important;
        margin-bottom: 25px !important;
    }

    /* Hero Buttons */
    .hero-actions .btn-blue-glow {
        max-width: fit-content !important;
        padding: 10px 30px !important;
        font-size: 0.9rem !important;
        margin: 0 auto 20px auto !important;
    }

    /* Mini Stats in Hero */
    .hero-stats-mini {
        justify-content: center !important;
        gap: 15px !important;
    }

    /* Stats Bar - Reuse SMS Stats Bar optimizations */
    .sms-stats-bar {
        margin-top: -30px !important;
        margin-bottom: 40px !important;
    }

    /* Services Grid */
    .email-types-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }

    /* General Section Padding for Mobile */
    .section {
        padding: 60px 0 !important;
    }

    /* Advantage Layout */
    .email-advantage-layout {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .advantage-text {
        text-align: center !important;
        padding: 0 10px !important;
    }

    .advantage-text h2 {
        font-size: 1.8rem !important;
        margin-top: 15px !important;
        margin-bottom: 15px !important;
        line-height: 1.2 !important;
    }

    .advantage-text p {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }

    .advantage-list {
        align-items: center !important;
        gap: 25px !important;
    }

    .adv-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 12px !important;
    }

    .adv-item h4 {
        font-size: 1.25rem !important;
        margin-bottom: 5px !important;
    }

    /* Developer API Section Override */
    section[style*="background: #050a15"] {
        padding: 60px 0 !important;
    }

    section[style*="background: #050a15"]>.container>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    section[style*="background: #050a15"] h2 {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }

    section[style*="background: #050a15"] p {
        font-size: 1rem !important;
        text-align: center !important;
        padding: 0 10px !important;
    }

    section[style*="background: #050a15"] div[style*="display: flex"] {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 12px !important;
    }

    section[style*="background: #050a15"] .btn {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
        min-width: 120px !important;
    }

    /* API Terminal Window */
    .terminal-window {
        margin: 0 10px !important;
        box-sizing: border-box !important;
    }

    .terminal-window>div:last-child {
        word-break: break-all !important;
        white-space: pre-wrap !important;
        padding: 15px !important;
        line-height: 1.4 !important;
        font-size: 0.8rem !important;
    }

    /* Final CTA Section */
    section[style*="text-align: center"][style*="padding: 120px 0"] {
        padding: 60px 0 40px 0 !important;
    }

    section[style*="text-align: center"] h2[style*="font-size: 3.5rem"] {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        padding: 0 10px !important;
    }

    section[style*="text-align: center"] p[style*="font-size: 1.25rem"] {
        font-size: 1rem !important;
        padding: 0 15px !important;
    }

    /* Buttons in Final CTA */
    section[style*="text-align: center"] .btn-black {
        display: none !important;
    }

    section[style*="text-align: center"] .btn-blue-glow {
        padding: 12px 30px !important;
        font-size: 0.9rem !important;
        width: auto !important;
    }
}

/* =========================================
   RCS PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {
    .rcs-hero {
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }

    .rcs-hero-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .rcs-hero-text {
        order: 1 !important;
        padding: 0 15px !important;
    }

    .rcs-hero-visual {
        order: 2 !important;
        margin: 0 auto !important;
        width: 100% !important;
        transform: scale(0.9) !important;
        display: flex;
        justify-content: center;
    }

    /* Phone Mockup Containment */
    .rcs-phone-mockup {
        width: 100% !important;
        max-width: 320px !important;
        /* Ensure it fits narrow screens */
        height: auto !important;
        margin: 0 auto !important;
    }

    .rcs-screen {
        width: 100% !important;
    }

    /* Hero Heading - Small & Compact */
    .rcs-hero-text h1 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
        padding: 0 5px !important;
    }

    .rcs-hero-text p {
        font-size: 1rem !important;
        padding: 0 10px !important;
        margin-bottom: 25px !important;
    }

    /* Hero Buttons */
    .rcs-hero-text div[style*="display: flex"] {
        justify-content: center !important;
    }

    .rcs-hero-text .btn-blue-glow {
        max-width: fit-content !important;
        padding: 10px 30px !important;
        font-size: 0.9rem !important;
        width: auto !important;
    }

    /* Stats Bar Reuse */
    .sms-stats-bar {
        margin-top: -30px !important;
        margin-bottom: 40px !important;
    }

    /* Features Grid */
    .rcs-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }

    .rcs-feature-card {
        padding: 25px !important;
    }

    /* Developer API Section Override */
    section[style*="background: #050a15"] {
        padding: 60px 0 !important;
    }

    section[style*="background: #050a15"]>.container>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    section[style*="background: #050a15"] h2 {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }

    section[style*="background: #050a15"] p {
        font-size: 1rem !important;
        text-align: center !important;
    }

    section[style*="background: #050a15"] div[style*="display: flex"] {
        justify-content: center !important;
        flex-wrap: wrap;
    }

    /* Final CTA Section */
    section[style*="text-align: center"][style*="padding: 120px 0"] {
        padding: 60px 0 40px 0 !important;
    }

    section[style*="text-align: center"] h2[style*="font-size: 3.5rem"] {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        padding: 0 10px !important;
    }

    section[style*="text-align: center"] p[style*="font-size: 1.25rem"] {
        font-size: 1rem !important;
        padding: 0 15px !important;
    }

    /* Buttons in Final CTA */
    section[style*="text-align: center"] .btn-black {
        display: none !important;
    }

    section[style*="text-align: center"] .btn-blue-glow {
        padding: 12px 30px !important;
        font-size: 0.9rem !important;
        width: auto !important;
    }
}

/* =========================================
   SMS APPLICATION PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {

    /* Hero Section Override */
    .app-hero-luminous[style*="min-height"] {
        min-height: auto !important;
        padding: 80px 0 40px !important;
        display: block !important;
    }

    .app-hero-luminous .container>div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Hero Text */
    .app-hero-luminous h1[style*="font-size: 3.5rem"] {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        letter-spacing: -0.5px !important;
        white-space: nowrap !important;
    }

    .app-hero-luminous p {
        font-size: 1rem !important;
        text-align: center !important;
        margin: 0 auto 25px auto !important;
        padding: 0 10px !important;
    }

    .app-hero-luminous div[style*="display: flex"] {
        justify-content: center !important;
        flex-wrap: wrap;
    }

    .app-hero-luminous .btn-blue-glow {
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        max-width: fit-content !important;
        width: auto !important;
        margin: 0 auto;
        transform: none !important;
    }

    .app-hero-luminous .btn-black {
        display: none !important;
    }

    /* Hero Visual - Dashboard Window */
    .app-preview-window {
        border-width: 5px !important;
        padding: 0 !important;
        margin-top: 20px !important;
        border-radius: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: 0 20px 40px rgba(0, 86, 179, 0.15) !important;
    }

    .app-preview-window>div:first-child {
        padding: 15px !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .app-mini-nav {
        padding: 5px 10px !important;
        font-size: 0.7rem !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .tilt-inner {
        padding: 30px 15px !important;
    }

    .tilt-inner>div[style*="font-size: 3.5rem"] {
        font-size: 2.2rem !important;
    }

    /* Lifecycle Section */
    section[style*="padding: 140px 0"] {
        padding: 60px 0 !important;
    }

    section[style*="padding: 140px 0"] h2 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        padding: 0 10px;
    }

    section[style*="padding: 140px 0"] div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .app-card-premium {
        padding: 25px !important;
    }

    .app-card-premium h3 {
        font-size: 1.3rem !important;
    }

    .app-card-premium p {
        font-size: 0.95rem !important;
    }

    /* Cockpit Modules */
    #cockpit {
        padding: 60px 0 !important;
    }

    #cockpit h2 {
        font-size: 2rem !important;
        margin-bottom: 30px !important;
        line-height: 1.2 !important;
    }

    #cockpit div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        margin-bottom: 60px !important;
        display: flex !important;
        flex-direction: column-reverse !important;
        /* Stack text then image? Or Image then text? Let's keep consistent */
    }

    /* Specific overrides for ordering */
    #cockpit .reveal-left {
        flex-direction: column !important;
        /* Image on top */
    }

    #cockpit .reveal-right {
        flex-direction: column !important;
        /* Image on top */
    }

    #cockpit .reveal-right>div:first-child {
        order: 1 !important;
        /* Image */
    }

    #cockpit .reveal-right>div:last-child {
        order: 2 !important;
        /* Text */
    }

    #cockpit h3 {
        font-size: 1.6rem !important;
        text-align: center !important;
    }

    #cockpit p {
        font-size: 1rem !important;
        text-align: center !important;
        padding: 0 10px !important;
    }

    .wow-check-list {
        display: inline-block !important;
        text-align: left !important;
        margin: 0 auto !important;
        width: 100% !important;
        padding-left: 20px !important;
    }

    .icon-circle-box {
        margin: 0 auto 20px auto !important;
    }

    /* API Section */
    .api-experience-section {
        padding: 60px 0 !important;
    }

    .api-experience-section div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .api-experience-section h2 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    .api-experience-section p {
        font-size: 1rem !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .api-experience-section div[style*="display: flex; gap: 30px"] {
        justify-content: center !important;
        gap: 20px !important;
    }

    .api-experience-section div[style*="font-size: 2.5rem"] {
        font-size: 1.8rem !important;
    }

    /* Code Terminal */
    .code-terminal-container {
        width: 100% !important;
        overflow: hidden !important;
    }

    .terminal-body {
        padding: 20px !important;
        overflow-x: auto !important;
    }

    pre code {
        white-space: pre-wrap !important;
        /* Allow code wrapping */
        word-break: break-all !important;
    }

    /* Final CTA */
    section[style*="background: radial-gradient"] {
        padding: 60px 0 !important;
    }

    section[style*="background: radial-gradient"] h2 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    section[style*="background: radial-gradient"] p {
        font-size: 1rem !important;
        padding: 0 15px !important;
    }

    .magnetic-wrap a.btn {
        padding: 12px 30px !important;
        font-size: 0.95rem !important;
        width: auto !important;
        white-space: nowrap !important;
    }

    /* Footer Icons Row */
    section[style*="background: radial-gradient"] div[style*="gap: 40px"] {
        flex-direction: column !important;
        gap: 15px !important;
        margin-top: 30px !important;
    }
}

/* =========================================
   WEB PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {
    .web-hero-premium {
        padding: 80px 0 40px !important;
    }

    .web-hero-premium .container {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .web-hero-premium .hero-content {
        order: 1 !important;
        padding: 0 15px !important;
        min-width: 100% !important;
    }

    .web-hero-premium .hero-image {
        order: 2 !important;
        width: 100% !important;
        transform: scale(0.9) !important;
        margin: 0 auto !important;
    }

    /* Hero Heading */
    .web-hero-premium h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .web-hero-premium p {
        font-size: 1rem !important;
        padding: 0 10px !important;
        margin-bottom: 30px !important;
    }

    /* Buttons */
    .web-hero-premium div[style*="display: flex"] {
        justify-content: center !important;
    }

    .web-hero-premium .btn-blue-glow {
        padding: 12px 30px !important;
        font-size: 0.95rem !important;
    }

    .web-hero-premium .btn-black {
        display: none !important;
    }

    /* Browser Mockup */
    .browser-mockup {
        width: 100% !important;
        max-width: 320px !important;
        /* Limit width */
        margin: 0 auto !important;
    }

    .browser-mockup>div:nth-child(2) {
        height: 250px !important;
        /* Reduce height */
    }

    /* Floating Badge inside Browser */
    .browser-mockup div[style*="position: absolute"] {
        width: 140px !important;
        height: 140px !important;
    }

    .browser-mockup i.fa-rocket {
        font-size: 2rem !important;
    }

    .browser-mockup div[style*="font-size: 0.9rem"] {
        font-size: 0.7rem !important;
    }

    /* Scrolling Code Text */
    .scrolling-code {
        font-size: 0.7rem !important;
        line-height: 1.4 !important;
        padding: 10px !important;
    }

    /* Stats Bar Reuse */
    .sms-stats-bar {
        margin-top: -30px !important;
        margin-bottom: 40px !important;
    }

    /* Services Grid */
    .feature-card-row {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Tech Stack Section Override */
    section[style*="background: #050a15"] {
        padding: 60px 0 !important;
    }

    section[style*="background: #050a15"]>.container>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Section Heading */
    section[style*="background: #050a15"] h2 {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }

    section[style*="background: #050a15"] p {
        font-size: 1rem !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    /* Icons Grid */
    section[style*="background: #050a15"] div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    /* Visualization Card (Project Growth) */
    section[style*="background: #050a15"] div[style*="background: #0d1117"] {
        padding: 20px !important;
    }

    /* Final CTA */
    section[style*="background: #fff"][style*="text-align: center"] {
        padding: 60px 0 !important;
    }

    section[style*="background: #fff"][style*="text-align: center"] h2 {
        font-size: 1.8rem !important;
        padding: 0 10px;
    }

    section[style*="background: #fff"][style*="text-align: center"] p {
        font-size: 1rem !important;
        padding: 0 15px;
    }

    section[style*="background: #fff"][style*="text-align: center"] .btn-black {
        display: none !important;
    }

    section[style*="background: #fff"][style*="text-align: center"] .btn-blue-glow {
        padding: 12px 30px !important;
        font-size: 0.9rem !important;
    }
}

/* =========================================
   ANDROID/IOS APP PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {
    .app-hero-premium {
        padding: 80px 0 40px !important;
    }

    .app-hero-premium .container {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .app-hero-premium .hero-content {
        order: 1 !important;
        padding: 0 15px !important;
        min-width: 100% !important;
    }

    .app-hero-premium .hero-visual {
        order: 2 !important;
        width: 100% !important;
        transform: scale(0.9) !important;
        margin: 0 auto !important;
    }

    /* Hero Heading */
    .app-hero-premium h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .app-hero-premium p {
        font-size: 1rem !important;
        padding: 0 10px !important;
        margin-bottom: 30px !important;
    }

    .app-hero-premium div[style*="display: flex"] {
        justify-content: center !important;
        gap: 10px !important;
    }

    .app-hero-premium .btn-blue-glow {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
        margin: 0 auto !important;
    }

    /* Remove background glow artifacts */
    .app-hero-premium div[style*="position: absolute"][style*="filter: blur"] {
        display: none !important;
    }

    .app-hero-premium .btn-black {
        display: none !important;
    }

    /* Phone Mockup */
    .app-phone-mockup {
        width: 100% !important;
        max-width: 280px !important;
        /* Limit width for phone visual */
        height: auto !important;
        margin: 0 auto !important;
        padding: 15px !important;
    }

    .app-screen-content {
        padding: 15px !important;
    }

    /* Stats Bar Reuse */
    .sms-stats-bar {
        margin-top: -30px !important;
        margin-bottom: 40px !important;
    }

    /* Services Grid (Capabilities) */
    section#features div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    section#features {
        padding-top: 60px !important;
    }

    .app-card-premium {
        padding: 25px !important;
    }

    /* Tech Stack Section Override */
    section[style*="background: #050a15"] {
        padding: 60px 0 !important;
    }

    section[style*="background: #050a15"]>.container>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Section Heading */
    section[style*="background: #050a15"] h2 {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }

    section[style*="background: #050a15"] p {
        font-size: 1rem !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    /* Icons Grid */
    section[style*="background: #050a15"] div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    /* App Health Console */
    section[style*="background: #050a15"] div[style*="background: #0d1117"] {
        padding: 20px !important;
    }

    /* Final CTA */
    section[style*="background: #fff"][style*="text-align: center"],
    section[style*="background: #ffffff"][style*="text-align: center"] {
        padding: 40px 0 !important;
        background: transparent !important;
    }

    section[style*="text-align: center"] div[style*="display: flex"] {
        justify-content: center !important;
        gap: 15px !important;
    }

    section[style*="text-align: center"] .btn-blue-glow {
        padding: 10px 24px !important;
        font-size: 0.85rem !important;
        margin: 0 auto !important;
    }

    section[style*="text-align: center"] .btn-black,
    section[style*="text-align: center"] a.btn-black {
        display: none !important;
    }
}

/* =========================================
   SMO PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {
    .smo-hero-premium {
        padding: 80px 0 40px !important;
    }

    .smo-hero-premium .container {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .smo-hero-premium .hero-content {
        order: 1 !important;
        padding: 0 15px !important;
        min-width: 100% !important;
    }

    .smo-hero-premium .hero-visual {
        order: 2 !important;
        width: 100% !important;
        transform: scale(0.85) !important;
        margin: 0 auto !important;
        min-height: 350px !important;
        /* Ensure space for absolute elements */
    }

    /* Hero Heading */
    .smo-hero-premium h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .smo-hero-premium p {
        font-size: 1rem !important;
        padding: 0 10px !important;
        margin-bottom: 30px !important;
    }

    /* Buttons */
    .smo-hero-premium div[style*="display: flex"] {
        justify-content: center !important;
    }

    .smo-hero-premium .btn-blue-glow {
        padding: 12px 30px !important;
        font-size: 0.95rem !important;
    }

    .smo-hero-premium .btn-black {
        display: none !important;
    }

    /* Stats Bar Reuse */
    .sms-stats-bar {
        margin-top: -30px !important;
        margin-bottom: 40px !important;
    }

    /* Services Grid */
    section#features div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    section#features {
        padding-top: 60px !important;
    }

    .smo-card-premium {
        padding: 25px !important;
    }

    /* Platform Mastery Section Override */
    section[style*="background: #050a15"] {
        padding: 60px 0 !important;
    }

    section[style*="background: #050a15"]>.container>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Section Heading */
    section[style*="background: #050a15"] h2 {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }

    section[style*="background: #050a15"] p {
        font-size: 1rem !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    /* Icons Grid */
    section[style*="background: #050a15"] div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    /* Visual Monitor Card */
    section[style*="background: #050a15"] div[style*="background: #0d1117"] {
        padding: 20px !important;
    }

    /* Final CTA */
    section[style*="background: #fff"][style*="text-align: center"] {
        padding: 60px 0 !important;
    }

    section[style*="background: #fff"][style*="text-align: center"] h2 {
        font-size: 1.8rem !important;
        padding: 0 10px;
    }

    section[style*="background: #fff"][style*="text-align: center"] p {
        font-size: 1rem !important;
        padding: 0 15px;
    }

    section[style*="background: #fff"][style*="text-align: center"] .btn-black {
        display: none !important;
    }

    section[style*="background: #fff"][style*="text-align: center"] a.btn-black {
        display: none !important;
    }

    section[style*="background: #fff"][style*="text-align: center"] .btn-blue-glow {
        padding: 12px 30px !important;
        font-size: 0.9rem !important;
    }
}

/* =========================================
   SEO PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {
    .seo-hero-premium {
        padding: 80px 0 40px !important;
    }

    .seo-hero-premium .container {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .seo-hero-premium .hero-content {
        min-width: 100% !important;
        padding: 0 15px !important;
    }

    .seo-hero-premium h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .seo-hero-premium p {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }

    /* SERP Mockup */
    .serp-mockup {
        width: 100% !important;
        max-width: 340px !important;
        margin: 0 auto !important;
        padding: 15px !important;
    }

    .serp-header {
        padding: 10px !important;
    }

    .serp-search-bar {
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
    }

    .serp-result-item {
        padding: 10px !important;
    }

    /* Stats Bar Reuse */
    .sms-stats-bar {
        margin-top: -30px !important;
        margin-bottom: 40px !important;
    }

    /* Pipeline Steps */
    .pipeline-container {
        flex-direction: column !important;
        gap: 20px !important;
        margin-top: 40px !important;
        align-items: center !important;
    }

    .pipeline-step {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        text-align: center !important;
        padding-bottom: 20px !important;
        /* Space for step */
    }

    .pipeline-connector {
        display: none !important;
    }

    /* Market Dominance Section */
    section[style*="background: #050a15"] {
        padding: 60px 0 !important;
    }

    section[style*="background: #050a15"]>.container>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    section[style*="background: #050a15"] h2 {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }

    section[style*="background: #050a15"] p {
        font-size: 1rem !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    div[style*="display: flex; gap: 30px; align-items: center"] {
        justify-content: center !important;
    }

    .sov-ring {
        /* Assuming class sov-ring exists or using style selector based on inspection */
    }

    /* Visibility Chart */
    .visibility-chart-box {
        padding: 20px !important;
    }

    .visibility-chart-box div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        /* Stack vertically for clarity */
        gap: 10px !important;
    }

    .visibility-chart-box div[style*="font-size: 0.65rem"] {
        font-size: 0.75rem !important;
    }

    .visibility-chart-box div[style*="font-weight: 800"] {
        font-size: 1rem !important;
    }

    /* Final CTA */
    section[style*="background: #fff"][style*="text-align: center"] {
        padding: 60px 0 !important;
    }

    section[style*="background: #fff"][style*="text-align: center"] h2 {
        font-size: 1.8rem !important;
        padding: 0 10px;
    }

    section[style*="background: #fff"][style*="text-align: center"] p {
        font-size: 1rem !important;
        padding: 0 15px;
    }

    section[style*="background: #fff"][style*="text-align: center"] .btn-blue-glow {
        padding: 12px 30px !important;
        font-size: 0.9rem !important;
    }
}

/* =========================================
   ECOMMERCE PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {
    .hero-premium-generic {
        padding-top: 100px !important;
        padding-bottom: 40px !important;
        background: radial-gradient(circle at 50% 50%, #eef4ff 0%, #ffffff 100%) !important;
    }

    .hero-premium-generic .container {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .hero-premium-generic .hero-content {
        order: 1 !important;
        padding: 0 15px !important;
        min-width: 100% !important;
    }

    .hero-premium-generic .hero-image {
        order: 2 !important;
        width: 100% !important;
        transform: scale(0.9) !important;
        margin: 0 auto !important;
        display: flex;
        justify-content: center;
    }

    /* Hero Heading */
    .hero-premium-generic h1.hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .hero-premium-generic p.hero-text {
        font-size: 1rem !important;
        padding: 0 10px !important;
        margin-bottom: 30px !important;
    }

    /* Hero Buttons */
    .hero-premium-generic div[style*="display: flex"] {
        justify-content: center !important;
    }

    .hero-premium-generic .btn-green-gradient,
    .hero-premium-generic .btn-blue-glow {
        padding: 10px 22px !important;
        font-size: 0.85rem !important;
        width: auto !important;
        margin: 0 auto !important;
    }

    /* Industry Grid & Babal Grid */
    .industry-grid,
    .babal-grid-premium {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .industry-card,
    .feature-card-pro {
        padding: 20px !important;
        text-align: center !important;
    }

    .industry-icon,
    .f-icon-circle {
        margin: 0 auto 15px !important;
    }

    /* Visual Box */
    .visual-box-premium {
        width: 300px !important;
        height: 300px !important;
        margin: 0 auto;
    }

    /* Feature Cards */
    .feature-card-row {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .feature-box {
        padding: 25px !important;
    }

    .feature-box h3 {
        font-size: 1.2rem !important;
    }

    .section-title {
        font-size: 1.7rem !important;
        line-height: 1.25 !important;
        margin-bottom: 20px !important;
        padding: 0 5px;
    }

    .feature-box p {
        font-size: 0.95rem !important;
    }

    /* Integration Section */
    .service-flex-layout {
        flex-direction: column !important;
        gap: 40px !important;
    }

    .service-info-visual {
        width: 100% !important;
        justify-content: center !important;
    }

    .service-info-visual div[style*="max-width: 400px"] {
        max-width: 300px !important;
        height: 300px !important;
    }

    /* Marketing Use Cases (Babal Grid) */
    .babal-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .babal-card {
        padding: 25px !important;
    }

    /* Final CTA */
    section[style*="text-align: center"][style*="padding: 120px 0"] {
        padding: 60px 0 !important;
    }

    section[style*="text-align: center"] h2 {
        font-size: 1.8rem !important;
        padding: 0 10px;
    }

    section[style*="text-align: center"] p {
        font-size: 1rem !important;
        padding: 0 15px;
    }

    section[style*="text-align: center"] a.btn-blue-glow {
        padding: 12px 30px !important;
        font-size: 0.9rem !important;
    }
}

/* =========================================
   BANKING PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {
    .banking-hero-premium {
        padding: 80px 0 40px !important;
    }

    .banking-hero-premium .container {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .banking-hero-premium .hero-content {
        order: 1 !important;
        padding: 0 15px !important;
        min-width: 100% !important;
    }

    .banking-hero-premium .hero-visual {
        order: 2 !important;
        width: 100% !important;
        transform: scale(0.85) !important;
        margin: 0 auto !important;
        display: flex;
        justify-content: center;
        min-height: 380px !important;
        /* Reserve space for vault animation */
    }

    /* Hero Heading */
    .banking-hero-premium h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .banking-hero-premium p {
        font-size: 1rem !important;
        padding: 0 10px !important;
        margin-bottom: 30px !important;
    }

    /* Hero Buttons */
    .banking-hero-premium div[style*="display: flex"] {
        justify-content: center !important;
    }

    .banking-hero-premium .btn-blue-glow {
        padding: 12px 30px !important;
        font-size: 0.95rem !important;
        width: auto !important;
    }

    /* Stats Bar (Banking) */
    .banking-stat-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        margin-top: -30px !important;
        margin-bottom: 40px !important;
        height: auto !important;
        padding: 20px !important;
        background: #fff !important;
        box-shadow: 0 10px 30px rgba(0, 86, 179, 0.1) !important;
        border-radius: 12px !important;
    }

    .banking-stat-bar>div[style*="width: 1px"] {
        display: none !important;
        /* Hide vertical separators */
    }

    .stat-item {
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* Core Architecture Grid */
    section[style*="padding-top: 140px"] {
        padding-top: 60px !important;
    }

    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .banking-card-premium {
        padding: 25px !important;
    }

    /* Banking UI Mockup Section */
    section[style*="border-top: 1px solid #f1f5f9"]>.container>div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        display: flex !important;
        flex-direction: column-reverse !important;
        /* Text top? Or Mockup Top? Usually Text top for context */
    }

    /* Adjust order specifically if needed, but column-reverse puts text (last child) on top */
    /* Wait, the HTML structure is: <div>Mockup</div> <div>Text</div> */
    /* So column-reverse puts Text (2nd) then Mockup (1st). */

    /* Mockup sizing */
    div[style*="width: 320px"] {
        max-width: 100% !important;
        width: 100% !important;
        padding: 8px !important;
    }

    div[style*="height: 580px"] {
        height: auto !important;
        min-height: 450px !important;
    }

    /* Text Content */
    section[style*="border-top: 1px solid #f1f5f9"] h2 {
        font-size: 1.8rem !important;
        text-align: center !important;
        white-space: nowrap !important;
    }

    section[style*="border-top: 1px solid #f1f5f9"] p {
        font-size: 1rem !important;
        text-align: center !important;
    }

    /* Check list items */
    section[style*="border-top: 1px solid #f1f5f9"] ul {
        margin-top: 30px !important;
    }

    section[style*="border-top: 1px solid #f1f5f9"] li {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
    }

    section[style*="border-top: 1px solid #f1f5f9"] i.fa-solid {
        margin-bottom: 10px !important;
    }

    /* Final CTA */
    section[style*="text-align: center"][style*="padding: 120px 0"] {
        padding: 60px 0 !important;
    }

    section[style*="text-align: center"] h2 {
        font-size: 1.8rem !important;
        padding: 0 10px;
    }

    section[style*="text-align: center"] p {
        font-size: 1rem !important;
        padding: 0 15px;
    }

    section[style*="text-align: center"] a.btn-blue-glow {
        padding: 12px 30px !important;
        font-size: 0.9rem !important;
    }
}

/* =========================================
   RETAIL PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {
    .retail-hero-premium {
        padding: 80px 0 40px !important;
    }

    .retail-hero-premium .container {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .retail-hero-premium .hero-content {
        order: 1 !important;
        padding: 0 15px !important;
        min-width: 100% !important;
    }

    .retail-hero-premium .hero-visual {
        order: 2 !important;
        width: 100% !important;
        transform: scale(0.9) !important;
        margin: 0 auto !important;
        display: flex;
        justify-content: center;
        min-height: 350px !important;
        /* Space for shopping bag & tags */
    }

    /* Hero Heading */
    .retail-hero-premium h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .retail-hero-premium p {
        font-size: 1rem !important;
        padding: 0 10px !important;
        margin-bottom: 30px !important;
    }

    /* Hero Buttons */
    .retail-hero-premium div[style*="display: flex"] {
        justify-content: center !important;
        gap: 10px !important;
    }

    .retail-hero-premium .btn-blue-glow {
        padding: 10px 22px !important;
        font-size: 0.85rem !important;
        margin: 0 auto !important;
    }

    /* Remove background glow artifacts if any */
    .retail-hero-premium div[style*="position: absolute"][style*="filter: blur"] {
        display: none !important;
    }

    /* Small tags in visual - make them more compact */
    .retail-visual-container div[style*="padding: 10px 15px"] {
        padding: 6px 12px !important;
        font-size: 0.65rem !important;
    }

    /* Stats Bar (Retail) */
    .retail-stat-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        margin-top: -30px !important;
        margin-bottom: 40px !important;
        height: auto !important;
        padding: 20px !important;
        background: #fff !important;
        box-shadow: 0 10px 30px rgba(0, 86, 179, 0.1) !important;
        border-radius: 12px !important;
    }

    .retail-stat-bar>div[style*="width: 1px"] {
        display: none !important;
    }

    .stat-item {
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* Retail Pillars Grid */
    section[style*="padding-top: 140px"] {
        padding-top: 60px !important;
    }

    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .retail-card-premium {
        padding: 25px !important;
    }

    /* Retail Experience Mockup Section */
    section[style*="border-top: 1px solid #f0f7ff"]>.container>div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        display: flex !important;
        flex-direction: column-reverse !important;
        /* Mockup on top? Assuming right is Mockup. Column-reverse -> Right first. So Mockup first. */
    }

    /* Mockup first, Text second */
    section[style*="border-top: 1px solid #f0f7ff"] .reveal-right {
        order: 1 !important;
    }

    section[style*="border-top: 1px solid #f0f7ff"] .reveal-left {
        order: 2 !important;
    }

    div[style*="width: 320px"] {
        max-width: 100% !important;
        width: 100% !important;
        padding: 8px !important;
    }

    /* Text Content */
    section[style*="border-top: 1px solid #f0f7ff"] h2 {
        font-size: 2rem !important;
        text-align: center !important;
    }

    section[style*="border-top: 1px solid #f0f7ff"] p {
        font-size: 1rem !important;
        text-align: center !important;
    }

    section[style*="border-top: 1px solid #f0f7ff"] li {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
    }

    /* Final CTA */
    section[style*="text-align: center"][style*="padding: 120px 0"] {
        padding: 60px 0 !important;
    }

    section[style*="text-align: center"] h2 {
        font-size: 1.8rem !important;
        padding: 0 10px;
    }

    section[style*="text-align: center"] p {
        font-size: 1rem !important;
        padding: 0 15px;
    }

    section[style*="text-align: center"] a.btn-blue-glow {
        padding: 12px 30px !important;
        font-size: 0.9rem !important;
    }
}

/* =========================================
   REAL ESTATE PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {

    /* Hero override handled by generic rule mostly, but reinforcing */
    .hero-premium-generic H1 {
        font-size: 2rem !important;
        /* Adjust specific size */
    }

    /* Industry Solutions Grid */
    .industry-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .industry-card {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 20px !important;
    }

    .industry-icon {
        margin-bottom: 15px !important;
    }

    /* Babal Premium Features */
    .babal-grid-premium {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .feature-card-pro {
        padding: 25px !important;
    }

    /* Visual Experience */
    .service-flex-layout {
        flex-direction: column !important;
    }

    .service-info-visual img {
        width: 100% !important;
        height: auto !important;
    }

    /* Lead Nurturing Gradient Box */
    section .container>div[style*="background: linear-gradient"][style*="padding: 60px"] {
        padding: 30px 20px !important;
    }

    section .container>div h2[style*="font-size: 2.5rem"] {
        font-size: 1.8rem !important;
    }

    section .container>div p {
        font-size: 1rem !important;
    }

    /* Stats inside gradient box */
    div[style*="display: flex; justify-content: center; gap: 20px"] {
        flex-direction: column !important;
        gap: 15px !important;
    }

    div[style*="background: rgba(255,255,255,0.1)"] {
        width: 100% !important;
    }

    /* How It Works (Flex Steps) */
    div[style*="display: flex; flex-wrap: wrap; justify-content: center; gap: 40px"] {
        flex-direction: column !important;
        gap: 30px !important;
    }

    div[style*="min-width: 250px"] {
        width: 100% !important;
        min-width: 0 !important;
        padding: 0 !important;
    }

    /* Final CTA */
    section[style*="padding: 100px 0"] {
        padding: 60px 0 !important;
    }

    section[style*="padding: 100px 0"] h2 {
        font-size: 1.8rem !important;
    }

    section[style*="padding: 100px 0"] .btn-green {
        padding: 12px 30px !important;
        font-size: 1rem !important;
        width: auto !important;
    }
}

/* =========================================
   MEDICAL PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {
    .medical-hero-premium {
        padding: 80px 0 40px !important;
    }

    .medical-hero-premium .container {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .medical-hero-premium .hero-content {
        order: 1 !important;
        padding: 0 15px !important;
        min-width: 100% !important;
    }

    .medical-hero-premium .hero-visual {
        order: 2 !important;
        width: 100% !important;
        transform: scale(0.9) !important;
        margin: 0 auto !important;
        display: flex;
        justify-content: center;
        min-height: 350px !important;
        /* Space for heart visual & tags */
    }

    /* Hero Heading */
    .medical-hero-premium h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .medical-hero-premium p {
        font-size: 1rem !important;
        padding: 0 10px !important;
        margin-bottom: 30px !important;
    }

    /* Hero Buttons */
    .medical-hero-premium div[style*="display: flex"] {
        justify-content: center !important;
    }

    .medical-hero-premium .btn-blue-glow {
        padding: 12px 30px !important;
        font-size: 0.95rem !important;
        width: auto !important;
    }

    /* Stats Bar (Medical) */
    .medical-stat-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        margin-top: -30px !important;
        margin-bottom: 40px !important;
        height: auto !important;
        padding: 20px !important;
        background: #fff !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 30px rgba(0, 86, 179, 0.1) !important;
        /* Ensure visibility */
    }

    .medical-stat-bar>div[style*="width: 1px"] {
        display: none !important;
    }

    .stat-item {
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* Healthcare Pillars Grid */
    section[style*="padding-top: 140px"] {
        padding-top: 60px !important;
    }

    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .medical-card-premium {
        padding: 25px !important;
    }

    /* Medical Experience Mockup Section */
    section[style*="border-top: 1px solid #f0f7ff"]>.container>div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        display: flex !important;
        flex-direction: column !important;
        /* Text on top, Mockup below */
    }

    div[style*="width: 320px"] {
        max-width: 100% !important;
        width: 100% !important;
        padding: 8px !important;
        margin: 0 auto !important;
    }

    /* Text Content */
    section[style*="border-top: 1px solid #f0f7ff"] h2 {
        font-size: 2rem !important;
        text-align: center !important;
    }

    section[style*="border-top: 1px solid #f0f7ff"] p {
        font-size: 1rem !important;
        text-align: center !important;
    }

    section[style*="border-top: 1px solid #f0f7ff"] li {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
    }

    section[style*="border-top: 1px solid #f0f7ff"] i.fa-solid {
        margin-bottom: 10px !important;
    }

    /* Final CTA */
    section[style*="text-align: center"][style*="padding: 120px 0"] {
        padding: 60px 0 !important;
    }

    section[style*="text-align: center"] h2 {
        font-size: 1.8rem !important;
        padding: 0 10px;
    }

    section[style*="text-align: center"] p {
        font-size: 1rem !important;
        padding: 0 15px;
    }

    section[style*="text-align: center"] a.btn-blue-glow {
        padding: 12px 30px !important;
        font-size: 0.9rem !important;
    }
}

/* =========================================
   EDUCATION PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {
    .education-hero-premium {
        padding: 80px 0 40px !important;
    }

    .education-hero-premium .container {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .education-hero-premium .hero-content {
        order: 1 !important;
        padding: 0 15px !important;
        min-width: 100% !important;
    }

    .education-hero-premium .hero-visual {
        order: 2 !important;
        width: 100% !important;
        transform: scale(0.9) !important;
        margin: 0 auto !important;
        display: flex;
        justify-content: center;
        min-height: 380px !important;
        /* Space for academic visual & tags */
    }

    /* Hero Heading */
    .education-hero-premium h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .education-hero-premium p {
        font-size: 1rem !important;
        padding: 0 10px !important;
        margin-bottom: 30px !important;
    }

    /* Hero Buttons */
    .education-hero-premium div[style*="display: flex"] {
        justify-content: center !important;
    }

    .education-hero-premium .btn-blue-glow {
        padding: 12px 30px !important;
        font-size: 0.95rem !important;
        width: auto !important;
    }

    /* Stats Bar (Education) */
    .education-stat-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        margin-top: -30px !important;
        margin-bottom: 40px !important;
        height: auto !important;
        padding: 20px !important;
        background: #fff !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 30px rgba(0, 86, 179, 0.1) !important;
    }

    .education-stat-bar>div[style*="width: 1px"] {
        display: none !important;
    }

    .stat-item {
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* Academic Pillars Grid */
    section[style*="padding-top: 140px"] {
        padding-top: 60px !important;
    }

    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .education-card-premium {
        padding: 25px !important;
    }

    /* Education Experience Mockup Section */
    section[style*="border-top: 1px solid #f0f7ff"]>.container>div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        display: flex !important;
        flex-direction: column !important;
        /* Text top, Mockup bottom */
    }

    div[style*="width: 320px"] {
        max-width: 100% !important;
        width: 100% !important;
        padding: 8px !important;
        margin: 0 auto !important;
    }

    /* Text Content */
    section[style*="border-top: 1px solid #f0f7ff"] h2 {
        font-size: 2rem !important;
        text-align: center !important;
    }

    section[style*="border-top: 1px solid #f0f7ff"] p {
        font-size: 1rem !important;
        text-align: center !important;
    }

    section[style*="border-top: 1px solid #f0f7ff"] li {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
    }

    section[style*="border-top: 1px solid #f0f7ff"] i.fa-solid {
        margin-bottom: 10px !important;
    }

    /* Final CTA */
    section[style*="text-align: center"][style*="padding: 120px 0"] {
        padding: 60px 0 !important;
    }

    section[style*="text-align: center"] h2 {
        font-size: 1.8rem !important;
        padding: 0 10px;
    }

    section[style*="text-align: center"] p {
        font-size: 1rem !important;
        padding: 0 15px;
    }

    section[style*="text-align: center"] a.btn-blue-glow {
        padding: 12px 30px !important;
        font-size: 0.9rem !important;
    }
}



/* =========================================
   JOBS PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {

    /* Careers Hero Section */
    .jobs-hero-luminous {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
        text-align: center !important;
    }

    .jobs-hero-luminous .badge-mini {
        background: rgba(0, 86, 179, 0.05) !important;
        border: 1px solid rgba(0, 86, 179, 0.1) !important;
        padding: 10px 20px !important;
        border-radius: 50px !important;
        font-size: 0.75rem !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 25px !important;
    }

    .jobs-hero-luminous h1 {
        font-size: 2.2rem !important;
        letter-spacing: -1px !important;
        line-height: 1.1 !important;
        margin-bottom: 20px !important;
    }

    .jobs-hero-luminous p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        padding: 0 15px !important;
        margin-bottom: 35px !important;
    }

    .jobs-hero-luminous div[style*="display: flex"] {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 0 10px;
    }

    .jobs-hero-luminous .btn-blue-glow,
    .jobs-hero-luminous .btn-black {
        width: auto !important;
        min-width: 140px !important;
        max-width: none !important;
        padding: 12px 15px !important;
        font-size: 0.85rem !important;
        white-space: nowrap !important;
    }

    /* Life at iTextel */
    section[style*="background: #ffffff"][style*="padding: 140px 0"] {
        padding: 60px 0 !important;
    }

    section[style*="background: #ffffff"] div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center !important;
    }

    section[style*="background: #ffffff"] h2 {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
    }

    /* Sub-grid (Remote First, Radical Trust) */
    div[style*="grid-template-columns: 1fr 1fr"][style*="gap: 30px"] {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    div[style*="border-left: 3px solid var(--primary-blue)"] {
        border-left: none !important;
        border-top: 3px solid var(--primary-blue) !important;
        padding: 20px 0 0 !important;
        text-align: center !important;
    }

    /* Perks & Benefits */
    section[style*="background: #f8fbff"][style*="padding: 140px 0"] {
        padding: 60px 0 !important;
    }

    section[style*="background: #f8fbff"] h2 {
        font-size: 1.8rem !important;
    }

    .perk-unit-premium {
        padding: 25px 20px !important;
        border-radius: 20px !important;
        background: rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(10px);
        box-shadow: 0 15px 35px rgba(0, 86, 179, 0.04) !important;
    }

    .perk-unit-premium h3 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }

    .perk-unit-premium p {
        font-size: 0.85rem !important;
    }

    /* Open Roles / Mission Control */
    section#open-roles {
        padding: 60px 0 !important;
    }

    section#open-roles h2 {
        font-size: 2rem !important;
        line-height: 1.1 !important;
    }

    /* Role Category Filter Pills */
    div[style*="display: flex; gap: 15px"][style*="justify-content: center"] {
        justify-content: flex-start !important;
        overflow-x: auto !important;
        padding: 5px 15px 15px !important;
        flex-wrap: nowrap !important;
        -webkit-overflow-scrolling: touch;
        gap: 10px !important;
        margin: 0 -15px 30px !important;
    }

    .role-badge-pill {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        font-size: 0.85rem !important;
        padding: 12px 24px !important;
        border-radius: 50px !important;
        background: #f0f7ff !important;
        color: var(--primary-blue) !important;
        font-weight: 700 !important;
    }

    /* High-Tech Role Card */
    .role-card-premium {
        flex-direction: column !important;
        padding: 24px !important;
        border-radius: 24px !important;
        border: 1px solid rgba(0, 86, 179, 0.1) !important;
        background: #fff !important;
        position: relative;
        overflow: visible !important;
    }

    .role-card-premium::after {
        content: '';
        position: absolute;
        left: 0;
        top: 20%;
        height: 60%;
        width: 4px;
        background: var(--primary-blue);
        border-radius: 0 4px 4px 0;
        box-shadow: 4px 0 10px rgba(0, 86, 179, 0.2);
    }

    .role-main {
        margin-bottom: 20px;
    }

    .role-main h4 {
        font-size: 1.15rem !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }

    .role-main div[style*="display: flex; gap: 20px"] {
        flex-direction: column !important;
        gap: 8px !important;
        font-size: 0.85rem !important;
    }

    .role-card-premium a.btn-blue-glow {
        width: 100% !important;
        display: block !important;
        padding: 12px !important;
        font-size: 0.85rem !important;
        font-weight: 800 !important;
    }

    /* Signal CTA */
    div[style*="background: #f8fbff; padding: 60px"] {
        padding: 40px 20px !important;
        border-radius: 30px !important;
    }

    div[style*="background: #f8fbff; padding: 60px"] h3 {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }

    div[style*="background: #f8fbff; padding: 60px"] p {
        font-size: 0.95rem !important;
        margin-bottom: 25px !important;
    }

    div[style*="background: #f8fbff; padding: 60px"] a.btn-black {
        width: 100% !important;
        padding: 13px !important;
        font-size: 0.95rem !important;
    }
}

/* =========================================
   CONTACT PAGE OPTIMIZATIONS
   ========================================= */
@media (max-width: 991px) {

    /* Contact Hero Section */
    .contact-hero-immersive {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
        text-align: center !important;
    }

    .contact-hero-immersive .container>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .live-status-ping {
        margin: 0 auto 25px !important;
        font-size: 0.75rem !important;
        padding: 8px 16px !important;
    }

    .contact-hero-immersive h1 {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
        letter-spacing: -1px !important;
        margin-bottom: 25px !important;
    }

    .contact-hero-immersive p[style*="font-size: 1.4rem"] {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 40px !important;
        padding: 0 10px;
    }

    /* Support Units - Premium Mini Cards */
    .contact-hero-immersive div[style*="display: flex; flex-direction: column; gap: 20px"] {
        flex-direction: row !important;
        gap: 10px !important;
        margin-top: 20px !important;
    }

    .support-unit-premium {
        padding: 12px 8px !important;
        border-radius: 18px !important;
        background: rgba(255, 255, 255, 0.7) !important;
        backdrop-filter: blur(10px);
        text-align: center !important;
        flex-direction: column !important;
        gap: 8px !important;
        flex: 1 !important;
        min-width: 0;
    }

    .floating-contact-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
        margin: 0 auto !important;
    }

    .support-unit-premium h4 {
        font-size: 0.8rem !important;
        font-weight: 800 !important;
        line-height: 1.1;
    }

    .support-unit-premium p {
        display: none !important;
    }

    .support-unit-premium a {
        font-size: 0.7rem !important;
        display: block;
        word-break: break-all;
    }

    /* Contact Nexus Form Card */
    .contact-nexus-card {
        padding: 30px 15px !important;
        border-radius: 25px !important;
    }

    /* Form Fields - Side by Side */
    .contact-nexus-card form div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .contact-nexus-card label {
        font-size: 0.75rem !important;
    }

    .input-field-extreme {
        padding: 12px 10px !important;
        font-size: 0.85rem !important;
        border-radius: 10px !important;
    }

    .contact-nexus-card button[type="submit"] {
        padding: 14px !important;
        font-size: 1rem !important;
        border-radius: 12px !important;
    }

    /* Map & Global Center */
    section[style*="padding: 140px 0"] {
        padding: 60px 0 !important;
    }

    section[style*="background: #f8fbff"] .container>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 40px !important;
    }

    div[style*="border: 12px solid #fff"] {
        border-width: 6px !important;
        border-radius: 30px !important;
        height: 280px !important;
    }

    section[style*="background: #f8fbff"] h2 {
        font-size: 2rem !important;
        line-height: 1.1 !important;
        text-align: center !important;
    }

    section[style*="background: #f8fbff"] p[style*="font-size: 1.25rem"] {
        font-size: 1rem !important;
        text-align: center !important;
    }

    /* Response Stats Row */
    div[style*="display: flex; gap: 40px; align-items: center"] {
        gap: 0 !important;
        justify-content: space-around !important;
        width: 100% !important;
    }

    div[style*="width: 2px; height: 60px"] {
        height: 35px !important;
    }

    h4[style*="font-size: 2.2rem"] {
        font-size: 1.8rem !important;
    }

    div[style*="display: flex; gap: 40px"] p {
        font-size: 0.7rem !important;
        letter-spacing: 1px !important;
    }
}/* Dashboard Card Styles - Premium Refinement */
.dashboard-preview-card {
    background: linear-gradient(145deg, #0b1121 0%, #151f32 100%);
    border-radius: 24px;
    padding: 24px;
    /* Reduced from 30px */
    box-shadow:
        0 10px 30px -5px rgba(0, 0, 0, 0.3),
        /* Even more subtle */
        0 0 0 1px rgba(255, 255, 255, 0.08);
    color: white;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-preview-card:hover {
    box-shadow:
        0 15px 40px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 86, 179, 0.4);
}

/* Header */
.dash-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.dash-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: -0.02em;
    margin: 0;
}

.dash-card-subtitle {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 2px 0 0 0;
    font-weight: 500;
}

/* Tabs */
.dash-tabs {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dash-pill-mini {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dash-pill-mini.active {
    background: linear-gradient(135deg, #0056b3 0%, #3d8bff 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.4);
}

.dash-pill-mini:hover:not(.active) {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* Content Body */
.dash-card-body {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 310px;
    /* Increased to fit all tabs without resizing */
    position: relative;
    overflow: hidden;
}

/* Content Panel Animation Classes */
.dash-content-panel {
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
    will-change: transform, opacity;
}

.dash-content-panel.slide-out-left {
    opacity: 0;
    transform: translateX(-40px);
}

.dash-content-panel.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
}

.dash-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #ffffff;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
    /* Subtle title animation */
}

.dash-feature-desc {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Tags */
.dash-tag-row {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.dash-tag {
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    font-weight: 500;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
}

.dash-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Stats Row */
.dash-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.dash-stat-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.2s;
}

.dash-stat-box:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dash-stat-box h4 {
    margin: 0 0 5px 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0056b3;
    /* Restore brand color for stats */
    background: linear-gradient(135deg, #0056b3 0%, #3d8bff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dash-stat-box p {
    margin: 0;
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Footer */
.dash-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: 5px;
}

.dash-security-badge {
    font-size: 0.75rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.dash-security-badge i {
    color: #10b981;
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #334155;
    transition: all 0.3s;
}

.dash-dots span.active {
    background: #0056b3;
    box-shadow: 0 0 10px rgba(0, 86, 179, 0.5);
    width: 20px;
    border-radius: 10px;
}

/* CAPTCHA Styling */
.captcha-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0ecff 100%);
    border: 2px solid #bfdbfe;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.captcha-section:hover {
    border-color: #0056b3;
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.12);
}

.captcha-section i {
    color: #0056b3;
    font-weight: 700;
}

#captchaQuestion {
    font-weight: 700;
    color: #0f172a;
    background: linear-gradient(135deg, #0056b3 0%, #3d8bff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    padding: 4px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

#captchaQuestion:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

#captchaInput {
    border: 2px solid #bfdbfe;
    border-radius: 8px;
    padding: 12px !important;
    text-align: center;
    font-weight: 700;
    color: #0f172a;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#captchaInput:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
    outline: none;
}

#captchaInput::placeholder {
    color: #94a3b8;
    font-weight: 500;
}