
    /* Premium Variables */
    :root {
        --primary-gradient: linear-gradient(135deg, rgb(160, 6, 6) 0%, rgb(180, 12, 12) 100%);
        --secondary-gradient: linear-gradient(135deg, rgb(160, 6, 6) 0%, rgb(180, 12, 12) 100%);
        --accent-gradient: linear-gradient(135deg, red 0%, red 100%);
        --dark-bg: #0f172a;
        --darker-bg: #0a0e1c;
        --light-text: #f8fafc;
        --dark-text: #1e293b;
        --gray-text: #64748b;
        --light-border: rgba(255, 255, 255, 0.12);
        --dark-border: rgba(0, 0, 0, 0.08);
        --header-height: 80px;
        --transition-slow: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
        --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
        --shadow-large: 0 15px 40px rgba(0, 0, 0, 0.2);
        --glass-bg: rgba(255, 255, 255, 0.85);
        --glass-border: rgba(255, 255, 255, 0.2);
    }

    /* Base Styles */
    * {
        box-sizing: border-box;
    }

    body {
        font-family: 'Outfit', sans-serif;
        color: var(--dark-text);
        line-height: 1.6;
        background-color: #ffffff;
        overflow-x: hidden;
        padding: 0;
        margin: 0;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 600;
        line-height: 1.3;
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

/* Premium Header Styles */
.premium-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    transition: var(--transition-slow);
}

.premium-header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-medium);
}

.premium-navbar {
    height: 100%;
    display: flex;
    align-items: center;
}

.premium-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-link {
    position: relative;
    display: inline-block;
    transition: var(--transition-fast);
}

.brand-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    opacity: 0;
    filter: blur(15px);
    z-index: -1;
    transition: var(--transition-slow);
}

.logo-link:hover .brand-glow {
    opacity: 0.4;
}

.premium-brand .premium-logo {
    height: 36px;
    transition: all 0.3s ease;
}

.premium-nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.premium-nav-list {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    margin: 0;
    padding: 0;
}

.premium-nav-list li {
    position: relative;
}

.premium-nav-list a {
    text-decoration: none;
    color: var(--dark-text);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.2px;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.premium-nav-list a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: red;
    transition: width 0.3s ease;
}

.premium-nav-list a:hover {
    color: red;
}

.premium-nav-list a:hover::before {
    width: 100%;
}

.premium-cta-button {
    position: relative;
    background: red;
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(79, 172, 254, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
    letter-spacing: -0.2px;
    border: none;
    cursor: pointer;
}

.premium-cta-button .button-icon {
    transition: transform 0.3s ease;
}

.premium-cta-button .button-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
}

.premium-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(79, 172, 254, 0.35);
    background: red;
}

.premium-cta-button:hover .button-icon {
    transform: translateX(3px);
}

.premium-cta-button:hover .button-shine {
    opacity: 1;
    top: -50%;
    left: 0;
}

    .premium-hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        cursor: pointer;
        position: relative;
        z-index: 1002;
    }

    .hamburger-line {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--dark-text);
        border-radius: 2px;
        margin: 2.5px 0;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .premium-hamburger.active .hamburger-line-1 {
        transform: translateY(7px) rotate(45deg);
    }

    .premium-hamburger.active .hamburger-line-2 {
        opacity: 0;
    }

    .premium-hamburger.active .hamburger-line-3 {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .premium-nav-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: 100px 2rem 2rem;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            transition: right 0.4s ease;
            z-index: 1001;
        }
        
        .premium-nav-menu.active {
            right: 0;
        }
        
        .premium-nav-list {
            flex-direction: column;
            width: 100%;
            gap: 1.8rem;
            margin-bottom: 2rem;
        }
        
        .premium-hamburger {
            display: flex;
        }
        
        .premium-header-cta {
            width: 100%;
        }
        
        .premium-cta-button {
            width: 100%;
            justify-content: center;
        }
    }

    @media (max-width: 576px) {
        .premium-nav-menu {
            width: 280px;
        }
        
        .premium-brand .premium-logo {
            height: 32px;
        }
    }







/* header ends */
/* footer starts */















    .premium-footer {
        background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
        color: var(--light-text);
        position: relative;
        margin-top: 0rem;
        overflow: hidden;
    }

    .premium-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyIiBoZWlnaHQ9IjIiIHg9IjAiIHk9IjAiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wMykiIC8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIiAvPjwvc3ZnPg==');
        opacity: 0.3;
        z-index: 0;
    }

    .premium-footer-wave {
        position: absolute;
        top: -60px;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        z-index: 1;
    }

    .premium-footer-wave svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 60px;
    }

    .premium-footer-wave .shape-fill {
        fill: var(--darker-bg);
    }

    .premium-footer-content {
        position: relative;
        z-index: 2;
        padding: 5rem 0 2.5rem;
    }

    .premium-footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
        gap: 3rem;
    }

    .premium-footer-about {
        padding-right: 2rem;
    }

    .premium-footer-logo {
        position: relative;
        display: inline-block;
        margin-bottom: 1.5rem;
    }

    .premium-footer-logo img {
        height: 42px;
        position: relative;
        z-index: 2;
    }

    .logo-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: var(--accent-gradient);
        border-radius: 50%;
        opacity: 0.3;
        filter: blur(15px);
        z-index: 1;
        transition: var(--transition-slow);
    }

    .premium-footer-logo:hover .logo-glow {
        opacity: 0.5;
        width: 70px;
        height: 70px;
    }

    .premium-footer-description {
        color: #cbd5e1;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .premium-social-links {
        display: flex;
        gap: 0.8rem;
    }

    .social-link {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        color: #e2e8f0;
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .social-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--accent-gradient);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 0;
    }

    .social-link svg {
        position: relative;
        z-index: 1;
        transition: transform 0.3s ease;
    }

    .social-tooltip {
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.75rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .social-link:hover {
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .social-link:hover::before {
        opacity: 1;
    }

    .social-link:hover svg {
        transform: scale(1.1);
    }

    .social-link:hover .social-tooltip {
        opacity: 1;
        visibility: visible;
        bottom: -35px;
    }

    .premium-footer-links h3,
    .premium-footer-global h3,
    .premium-footer-contact h3 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 1.8rem;
        position: relative;
        padding-bottom: 0.8rem;
        color: white;
    }

    .premium-footer-links h3::after,
    .premium-footer-global h3::after,
    .premium-footer-contact h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 3px;
        background: var(--accent-gradient);
        border-radius: 3px;
    }

    .premium-footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .premium-footer-links li {
        margin-bottom: 0.9rem;
        position: relative;
    }

    .premium-footer-links a {
        color: #cbd5e1;
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .link-arrow {
        transition: transform 0.3s ease;
    }

    .premium-footer-links a:hover {
        color: white;
    }

    .premium-footer-links a:hover .link-arrow {
        transform: translateX(4px);
    }

    .premium-global-item,
    .premium-contact-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .premium-global-item:last-child,
    .premium-contact-item:last-child {
        margin-bottom: 0;
    }

    .icon-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        color: white;
        transition: all 0.3s ease;
    }

    .premium-global-item:hover .icon-wrapper,
    .premium-contact-item:hover .icon-wrapper {
        background: var(--accent-gradient);
        color: white;
        transform: translateY(-2px);
    }

    .global-info h4,
    .contact-info p {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 0.3rem;
        color: white;
        margin: 0;
    }

    .global-info p {
        color: #cbd5e1;
        font-size: 0.9rem;
        margin: 0;
    }

    .contact-info small {
        color: #94a3b8;
        font-size: 0.8rem;
    }

    .premium-footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1.5rem 0;
        position: relative;
        z-index: 2;
    }

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .premium-footer-bottom p {
        color: #94a3b8;
        font-size: 0.9rem;
        margin: 0;
    }

    .footer-legal {
        display: flex;
        gap: 1.5rem;
    }

    .footer-legal a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
        position: relative;
    }

    .legal-underline {
        position: relative;
    }

    .legal-underline::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--accent-gradient);
        transition: width 0.3s ease;
    }

    .footer-legal a:hover {
        color: #e2e8f0;
    }

    .footer-legal a:hover .legal-underline::after {
        width: 100%;
    }

    /* Back to top button */
    .premium-back-to-top {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        width: 50px;
        height: 50px;
        background: red;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.4s ease;
        z-index: 999;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .premium-back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .premium-back-to-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        background: red;
    }

    /* Responsive Styles */
    @media (max-width: 1100px) {
        .premium-footer-grid {
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 2.5rem;
        }
        
        .premium-footer-about {
            grid-column: 1 / -1;
            padding-right: 0;
            text-align: center;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .premium-social-links {
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .premium-footer-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            text-align: center;
        }
        
        .premium-global-item,
        .premium-contact-item {
            justify-content: center;
        }
        
        .footer-bottom-content {
            flex-direction: column;
            gap: 1rem;
        }
        
        .footer-legal {
            justify-content: center;
        }
        
        .premium-back-to-top {
            bottom: 1.5rem;
            right: 1.5rem;
            width: 45px;
            height: 45px;
        }
    }

    @media (max-width: 480px) {
        .premium-footer-content {
            padding: 4rem 0 2rem;
        }
        
        .premium-footer-grid {
            gap: 2rem;
        }
        
        .premium-footer-logo img {
            height: 36px;
        }
        
        .premium-back-to-top {
            bottom: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
        }
    }








/* footer ends */























































    
/* Premium Homepage Styles */
.premium-homepage {
    overflow-x: hidden;
    padding-top: var(--header-height, 80px);
}

/* Hero Section - Video with buttons at the end */
.premium-hero {
    position: relative;
    height: 100vh;
    /* min-height: 700px; */
    color: white;
    overflow: hidden;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.78) 100%); */
}



.hero-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .5rem;

}

/* Premium button styling with shine effect */
.premium-btn {
    position: relative;
    background: red;
    color: white;
    padding: 0.8rem 0.4rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(79, 172, 254, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow: hidden;
    letter-spacing: -0.2px;
    border: none;
    cursor: pointer;
    text-align: center;
}

.premium-btn svg {
    transition: transform 0.3s ease;
}

.premium-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(79, 172, 254, 0.35);
    background: red;
}

.premium-btn:hover svg {
    transform: translateX(4px);
}

.premium-btn:hover::before {
    opacity: 1;
    top: -50%;
    left: 0;
}

/* Trusted By Section */
.trusted-by-section {
    padding: 2rem 0;
    background: #f8fafc;
    position: relative;
    z-index: 1;
}

.premium-homepage .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.premium-homepage .section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}
.service-flow-section .section-title, .section-description{
    color: white !important;
}
.premium-homepage .section-description {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #1e293b !important;
    max-width: 600px;
    margin: 0 auto;
}

.clients-logos {
    margin-top: 3rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 120px;
}

.logo-item:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.logo-item img {
    max-width: 100%;
    max-height: 60px;
    /* filter: grayscale(100%); */
    /* opacity: 0.7; */
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Why AppsLink Section */
.why-appslink-section {
    padding: 2rem 0;
    background: white;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: white;
    border-color: #e2e8f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 1.5rem;
    color: red;
}

.feature-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-card p {
    font-family: 'Outfit', sans-serif;
    color: #64748b;
    line-height: 1.6;
}

/* Service Flow Section */
.service-flow-section {
    padding: 2rem 0;
    background: #0f172a;
    color: white;
    position: relative;
    z-index: 1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: red;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.process-step h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: red;
    margin-bottom: 1rem;
}

.process-step p {
    font-family: 'Outfit', sans-serif;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Global Presence Section */
.global-presence-section {
    padding: 2rem 0;
    background: white;
    position: relative;
    z-index: 1;
}



.world-map {
    position: relative;
}

.map-container {
    width: 100%;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.map-image{
    width: 100%;
}
.world-map-svg {
    width: 100%;
    height: 100%;
}

.pulse-dot {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { r: 5; opacity: 0.7; }
    50% { r: 8; opacity: 1; }
    100% { r: 5; opacity: 0.7; }
}



.location-item h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.location-item p {
    font-family: 'Outfit', sans-serif;
    color: #64748b;
    font-size: 1.1rem;
}

/* CTA Section */
.premium-cta-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button with same styling as header */
.premium-cta-button {
    position: relative;
    background: red;
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(79, 172, 254, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
    letter-spacing: -0.2px;
    border: none;
    cursor: pointer;
}

.premium-cta-button .button-icon {
    transition: transform 0.3s ease;
}

.premium-cta-button .button-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
}

.premium-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(79, 172, 254, 0.35);
}

.premium-cta-button:hover .button-icon {
    transform: translateX(3px);
}

.premium-cta-button:hover .button-shine {
    opacity: 1;
    top: -50%;
    left: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-buttons {
        grid-template-columns: 1fr;
    }
    
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    

    .service-flow-section .section-title, .section-description{
    color: white !important;
}
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0rem !important;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .premium-homepage .section-title {
        font-size: 2rem;
    }
    
    .logo-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card,
    .process-step {
        padding: 1.5rem;
    }
    
    .map-container {
        height: 250px;
    }
}












@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600&display=swap');

.punchline-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem;
    text-align: center;
    background-color: #fff; /* Optional: background contrast */
}

.punchline {
    font-style: italic;
    font-weight: bold;
    color: #0a0e1c;
    letter-spacing: 1.5px;
    font-size: clamp(1.2rem, 5vw, 1.2rem);
    animation: fadeSlideIn 1.5s ease-out forwards, glowPulse 2s ease-in-out infinite;
    opacity: 0;
}

/* Slide + Fade in effect */
@keyframes fadeSlideIn {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}











