/* CSS Variables */
:root {
    --primary-pink: #e91e63;
    --primary-purple: #9c27b0;
    --primary-gradient: linear-gradient(90deg, #FFAA6F 0%, #F04988 15%, #8A64D4 45%, #4790CC 75%, #56BCAC 90%);
    --primary-gradient1: linear-gradient(90deg, #FFAA6F 0%, #d86893 15%, #9e81d6 45%, #649ece 75%, #6ec5b8 90%);

    --secondary-gradient: linear-gradient(145deg, #e91e63 0%, #9c27b0 50%, #4a90e2 100%);
    --footer-gradient: linear-gradient(130deg, #3DA7D9 0%, #8A5FD4 50%, #D74FA2 100%);
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --black: #212529;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-light: #adb5bd;
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --shadow-xl: 0 1.25rem 4rem rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; */

    font-family: Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--primary-gradient1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Warning Bar */
.warning-bar {
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1100;
}

/* Modern Navigation */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    top: 40px;
    transition: var(--transition);
}

.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    top: 39px;
}

.brand-logo {
    height: 55px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

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

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

.navbar-buttons .btn {
    margin: 0 0.25rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

/* Button Styles */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}



/* Enhanced Services Hero Section */

/* Services Hero Section */
/* Services Hero Section with BG Image */
.services-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;

    /* Background image + overlay */
    background: url("/images/servicesherobg3\ .png") center/cover no-repeat;
}


.services-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(39, 15, 35, 0.267),
            rgba(67, 32, 62, 0.329),
            rgba(89, 44, 100, 0.26));
    /* background: rgba(0, 0, 0, 0.55); */

    /* dark overlay */
    z-index: 0;
}

/* make sure content & blobs are above overlay */
.services-hero .hero-content,
.bg-blob,
.hero-visual {
    position: relative;
    z-index: 2;
}

/* Animated Blobs */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    animation: blobFloat 18s ease-in-out infinite;
    z-index: 0;
}

.bg-blob.one {
    top: 5%;
    left: 10%;
    width: 280px;
    height: 280px;
    background: #8a5fd480;
    animation-duration: 20s;
}

.bg-blob.two {
    bottom: 10%;
    right: 15%;
    width: 340px;
    height: 340px;
    background: #ffab6f88;
    animation-duration: 22s;
    animation-delay: 3s;
}

.bg-blob.three {
    top: 40%;
    right: 35%;
    width: 220px;
    height: 220px;
    background: #e91e627a;
    animation-duration: 24s;
    animation-delay: 6s;
}

@keyframes blobFloat {

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

    25% {
        transform: translate(30px, -20px) scale(1.1);
    }

    50% {
        transform: translate(-40px, 30px) scale(1.05);
    }

    75% {
        transform: translate(20px, 40px) scale(0.95);
    }
}

/* Visual ATM + Card */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: auto;
    z-index: 2;
}

.atm-machine {
    position: relative;
    width: 240px;
    height: 340px;
    background: #1c1f26;
    border-radius: 20px;
    margin: auto;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.card-swipe {
    width: 200px;
    height: 120px;
    background: linear-gradient(135deg, #e91e63, #8A5FD4);
    border-radius: 14px;
    position: absolute;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    animation: cardSlide 6s linear infinite;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 14px;
    font-family: 'Poppins', sans-serif;
}

@keyframes cardSlide {
    0% {
        top: -140px;
        opacity: 0;
    }

    20% {
        top: 40px;
        opacity: 1;
    }

    40% {
        top: 120px;
    }

    60% {
        top: 40px;
    }

    80% {
        top: -60px;
        opacity: 0.8;
    }

    100% {
        top: -140px;
        opacity: 0;
    }
}

.card-shadow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 160px;
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transform: translateX(-50%);
    filter: blur(8px);
}

/* Floating Mini Cards */
.mini-service-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    animation: miniFloat 6s ease-in-out infinite;
}

.mini-service-card:nth-child(1) {
    animation-delay: 1s;
}

.mini-service-card:nth-child(2) {
    animation-delay: 2s;
}

.mini-service-card:nth-child(3) {
    animation-delay: 3s;
}

@keyframes miniFloat {

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

    50% {
        transform: translateY(-12px) rotate(3deg);
    }
}


.services-hero .hero-content {
    position: relative;
    z-index: 5;
    color: white;
}


.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
    /* max-width: 700px; */
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    /* justify-content: center; */
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-width: 150px;
}

.hero-feature i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}



/* Service Categories */
.services-main {
    padding: 20px 0;
    background: white;
    margin-left: 3vw;
    margin-right: 3vw;

}

.service-category {
    background: white;
    border-radius: 30px;
    padding: 3.5rem;
    margin-bottom: 4rem;
    box-shadow: 0 15px 50px rgba(233, 30, 99, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(233, 30, 99, 0.08);
    position: relative;
    overflow: hidden;
}

.service-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.service-category:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(233, 30, 99, 0.15);
}

.service-category:hover::before {
    transform: scaleX(1);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(233, 30, 99, 0.08);
    position: relative;
}

.category-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-gradient);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin-right: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.service-category:hover .category-icon {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.4);
}

.category-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-info p {
    color: var(--text-secondary);
    font-size: larger;
    line-height: 1.7;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.service-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(233, 30, 99, 0.06);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.02) 0%, rgba(156, 39, 176, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.12);
    border-color: rgba(233, 30, 99, 0.15);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    font-size: 1.4rem;
    margin-right: 1rem;
    transition: all 0.4s ease;
}

.service-item:hover .service-item-icon {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-item h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.service-item p {
    color: var(--text-secondary);
    font-size: larger;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.service-features li:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
}

.service-features li i {
    color: var(--primary-pink);
    margin-right: 0.8rem;
    font-size: 0.9rem;
    width: 16px;
}

/* Enhanced Detailed Services Section */
.detailed-services {
    padding: 100px 0;
    background: var(--bg-light);
}

.detailed-service {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 5rem;
    transition: var(--transition);
    position: relative;
}

.detailed-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.detailed-service:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.detailed-service:hover::before {
    opacity: 0.02;
}

.detailed-service-content {
    padding-top: 4rem;
    padding-left: 4rem;
    padding-right: 4rem;


    position: relative;
    z-index: 2;
}

.detailed-service-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.detailed-service-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.detailed-service-image {
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 450px;
}

.detailed-service-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px dashed rgba(139, 100, 212, 0.3);
    border-radius: 20px;
    z-index: 1;
}

.detailed-service-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.detailed-service-image img[alt="Money Transfer"],
.detailed-service-image img[alt="Banking Sakhi"] {
    max-width: 60vw;
    width: 100%;
    height: 100%;
}

.detailed-service-image:hover img {
    transform: scale(1.05);
}

/* Feature Grid in Detailed Services */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.feature-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-pink);
    transition: var(--transition);
}

.feature-box:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.feature-box h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-box li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.security-highlight {
    background: linear-gradient(135deg, #fff3e0 0%, #e8f5e8 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    margin-top: 2rem;
}

.security-highlight h6 {
    color: #ff8f00;
    font-weight: 700;
}

/* Process Steps */
.process-steps {
    padding: 80px 0;
    background: white;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1.5rem;
}


/* CTA Section */
.cta-section {
    padding: 100px 0;
    /* background: var(--primary-gradient); */
    background: linear-gradient(90deg, #2a4840, #1c4956, #522c60, #732b3c, #724f38);
    color: white;
    text-align: center;
}

.btn-white {
    background: white;
    color: var(--primary-pink);
    border: none;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-pink);
    transform: translateY(-2px);
}

/* Partners Section Styles Start Here */

.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Animated scroll container */
.marquee-content {
    display: flex;
    gap: 60px;
    animation: scrollLeft 30s linear infinite;
    width: max-content;
    align-items: center;
}

/* Partner logo styles */
.partner-logo {
    height: 119px;
    /* opacity: 0.7; */
    transition: opacity 0.3s ease;
}

.partners-section {
    background: url(/images/PARTNERBG.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 5px;
    border-radius: 299px;
    overflow: hidden;
}

.partner-logo:hover {
    opacity: 1;
}

/* Marquee animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }

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

/* Partners Responsive Styles */
@media (max-width: 768px) {
    .partners-section {
        padding: 50px 0;
        border-radius: 0px;

    }

    .partner-logo {
        height: 50px;
    }

    .marquee-content {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .partner-logo {
        height: 40px;
    }

    .marquee-content {
        gap: 20px;
    }
}

/* Partners Section Styles End Here */

/* Footer */
.footer-section {
    /* background: var(--footer-gradient); */
    color: white;
    position: relative;
    border-radius: 40px 40px 0 0;
    margin-top: 100px;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--footer-gradient);
}



.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--footer-gradient);
    background: url('/images/footer_bg.png') center / cover no-repeat;

}

.footer-section .container-fluid {
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 2rem;
    color: white;
}

.brand-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: white;
    margin-bottom: 2rem;
}

.footer-robot {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

.brand-info {
    flex: 1;
}

.footer-logo {
    height: 65px;
    width: auto;
    /* filter: brightness(0) invert(1); */
    margin-bottom: 1rem;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.terms-info p {
    color: rgba(255, 255, 255);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
}

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid rgb(222, 41, 238);
    border-radius: 12px;
    padding: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(219, 50, 253, 0.3);
}

.social-links a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 3rem 0 2rem;
}

.footer-bottom {
    color: rgba(255, 255, 255);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

    .section-title {
        font-size: 2.2rem;
    }

    .detailed-service-content {
        padding: 3rem 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .detailed-service-content {
        padding: 2.5rem 2rem;
    }

    .detailed-service-image {
        padding: 2rem;
        min-height: 300px;
    }

    .hero-features {
        gap: 1rem;
    }

    .hero-feature {
        min-width: 120px;
        padding: 0.8rem 1rem;
    }

    #navbarContent {
        background: white;
    }
}

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

    .section-title {
        font-size: 1.8rem;
    }

    .service-card,
    .detailed-service-content {
        padding: 2rem;
    }

    .detailed-service-image {
        padding: 1.5rem;
        min-height: 250px;
    }

    .detailed-service {
        margin-bottom: 3rem;
    }

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

    .hero-features {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .services-hero {
        padding: 80px 0 40px;
        min-height: 80vh;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .detailed-service-content {
        padding: 1.5rem;
    }

    .detailed-service-image {
        padding: 1rem;
        min-height: 200px;
    }

    .modern-navbar {
        margin-top: 1.3rem;
    }

    .partner-logo {
        height: 40px;
    }

    .marquee-content {
        gap: 20px;
    }
}

/* Utility Classes */
.section-tag {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Additional enhancements for image backgrounds */
.image-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(139, 100, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(71, 144, 204, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

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

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


.font-size-larger {
    font-size: larger;
}

.gradient-border {

    background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #FFAA6F 0%, #F04988 15%, #8A64D4 45%, #4790CC 75%, #56BCAC 90%) border-box;

    border-radius: 20px;
    border: 3px solid transparent;
}

.heading-box-shadow {
    box-shadow: rgba(198 26 239 / 35%) 0px 5px 15px;
    border-radius: 37px;
}

.service-features li {
    font-size: larger;
}