@import url("https://fonts.googleapis.com/css2?family=Boldonse&family=Cinzel+Decorative:wght@400;700;900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");

.cinzel-decorative-regular {
    font-family: "Cinzel Decorative", serif;
    font-weight: 400;
    font-style: normal;
}
.fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
}
.fa-solid, .fa-regular {
    font-family: "Font Awesome 6 Free" !important;
}


.cinzel-decorative-bold {
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    font-style: normal;
}

.cinzel-decorative-black {
    font-family: "Cinzel Decorative", serif;
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background: #020258;
    color: #13e8e9;
    padding-top: 56px; /* For fixed navbar */
    overflow-x: hidden;
}

.container-fluid {
    background: #020258;
}

.brandtext {
    position: absolute;
    /* margin-top: 20%; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    width: 100%;
    z-index: 1;
    padding: 0 1rem;
}

.brandtext h1 {
    font-family: "Cinzel Decorative", sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: normal;
    color: #13e8e9;
    padding: 1rem;
    font-style: italic;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
    z-index: 2;
}

.brandtext p {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
/* Brand Images Container */
.brandimgs-container {
    position: relative;
    height: 350px;
    overflow: visible;
}

.brandimgs {
    position: relative;
    height: 100%;
    width: 100%;
}

/* Image Wrapper Base Styles */
.image-wrapper {
    position: absolute;
    overflow: hidden;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Images (first two) */
.main-image-1 {
    width: 180px;
    height: 180px;
    bottom: 30px;
    left: 20px;
    z-index: 2;
    transition-delay: 0.5s;
}

.main-image-2 {
    width: 160px;
    height: 160px;
    bottom: 50px;
    left: 100px;
    z-index: 3;
    transition-delay: 1s;
}

/* External Images (last two) */
.external-image-1 {
    width: 140px;
    height: 140px;
    bottom: 100px;
    right: -80px;
    z-index: 1;
    transition-delay: 1.5s;
}

.external-image-2 {
    width: 120px;
    height: 120px;
    top: 50px;
    right: -60px;
    z-index: 1;
    transition-delay: 2s;
}

/* Connector Lines */
.connector-line {
    position: absolute;
    background: transparent;
    border: 2px dotted rgba(255,255,255,0.5);
    z-index: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.line-1 {
    width: 80px;
    height: 60px;
    border-radius: 50%;
    border-top: none;
    border-right: none;
    bottom: 120px;
    right: -40px;
    transition-delay: 2.5s;
}

.line-2 {
    width: 60px;
    height: 80px;
    border-radius: 50%;
    border-bottom: none;
    border-right: none;
    top: 100px;
    right: -30px;
    transition-delay: 3s;
}

/* Animation when loaded */
.loaded .image-wrapper {
    opacity: 1;
    transform: scale(1);
    border-radius: 10px;
    height: 220px; /* Make taller than wide */
}

.loaded .main-image-1 {
    height: 240px;
    width: 180px;
}

.loaded .main-image-2 {
    height: 220px;
    width: 160px;
    bottom: 70px;
    left: 120px;
}

.loaded .external-image-1 {
    height: 180px;
    width: 140px;
}

.loaded .external-image-2 {
    height: 160px;
    width: 120px;
}

.loaded .connector-line {
    opacity: 1;
}

/* Responsive - hide on small screens */
@media (max-width: 767.98px) {
    .brandimgs-container {
        display: none;
    }
}
canvas {
    display: block;
}

#particles-js {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    background-color: #020258;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

section {
    padding: 5rem 0;
    background: #020258;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #13e8e9 !important;
    border-color: #13e8e9;
    color: #020258 !important;
}

.btn-primary:hover {
    background-color: #fff !important;
    border-color: #0fb9ba !important;
}

.btn-outline-light:hover {
    color: #020258;
    background-color: #f8f9fa;
}

.text-primary {
    color: #13e8e9 !important;
}

.border-primary {
    border-color: #13e8e9 !important;
}

.bg-dark {
    background: #020258 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brandtext h1 {
        font-size: 2.5rem;
    }

    .brandtext p {
        font-size: 1.2rem;
    }
    .brandtext h1 {
        font-size: 2.5rem;
    }

    .brandtext p {
        font-size: 1.2rem;
    }

    .navbar {
        padding: 0.5rem 1rem;
    }
    .navbar-brand {
        font-size: 1.5rem;
    }
    .navbar-nav .nav-link {
        font-size: 1rem;
    }
    .navbar-toggler {
        padding: 0;
    }
    .navbar-toggler-icon {
        width: 1.5rem;
        height: 1.5rem;
        padding: 0;
        margin: 0;
    }
    .brandtext h1 {
        font-size: 1.8rem;
        padding: 0;
    }
    .container-fluid {
        padding: 0 1rem;
        padding-top: 8rem; /* For fixed navbar */
    }
    .btn-primary {
        margin: 1rem;
        font-size: 1rem;
    }
}
/* Responsive adjustments */
@media (max-width: 920px) {
    .brandtext h1 {
        font-size: 2.5rem;
    }

    .brandtext p {
        font-size: 1.2rem;
    }

    .navbar {
        padding: 0.5rem 1rem;
    }
    .navbar-brand {
        font-size: 1.5rem;
    }
    .navbar-nav .nav-link {
        font-size: 1rem;
    }
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
    }
    .navbar-toggler-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* Morphing Bubbles - Enhanced */
.morphing-bubbles {
    position: relative;
    height: 350px;
    width: 100%;
    overflow: visible;
}

.morphing-bubble {
    position: absolute;
    background: radial-gradient(
        circle at 30% 30%,
        #13e8e9,
        #0fb9ba 40%,
        #0a8a8b 70%,
        #020258 90%
    );
    box-shadow: 0 0 30px rgba(19, 232, 233, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    filter: blur(1px);
    animation: morph 12s infinite ease-in-out, glow 6s infinite ease-in-out,
        drift 18s infinite ease-in-out;
    will-change: border-radius, transform;
}

/* Main Bubble */
.main-bubble {
    width: 220px;
    height: 220px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s, 0s, 0s;
}
.bg-green {
    background: #0fb9ba !important;
}

/* Secondary Bubble */
.secondary-bubble {
    width: 160px;
    height: 160px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.7;
    top: 30%;
    left: 30%;
    animation-delay: 2s, 1s, 3s;
    animation-duration: 14s, 7s, 22s;
}

/* Accent Bubble */
.accent-bubble {
    width: 120px;
    height: 120px;
    border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%;
    opacity: 0.6;
    top: 60%;
    left: 60%;
    animation-delay: 4s, 2s, 6s;
    animation-duration: 16s, 8s, 24s;
}

/* Tiny Bubbles */
.tiny-bubble-1,
.tiny-bubble-2,
.tiny-bubble-3,
.tiny-bubble-4 {
    width: 40px;
    height: 40px;
    opacity: 0.4;
    animation-duration: 10s, 5s, 15s;
}

.tiny-bubble-1 {
    top: 20%;
    left: 70%;
    animation-delay: 1s, 0.5s, 2s;
}
.tiny-bubble-2 {
    top: 70%;
    left: 20%;
    animation-delay: 3s, 1.5s, 4s;
}
.tiny-bubble-3 {
    top: 80%;
    left: 70%;
    animation-delay: 2s, 1s, 3s;
}
.tiny-bubble-4 {
    top: 30%;
    left: 20%;
    animation-delay: 4s, 2s, 6s;
}

/* Enhanced Morphing Animation */
@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    20% {
        border-radius: 60% 40% 20% 80% / 50% 50% 50% 50%;
    }
    40% {
        border-radius: 40% 60% 30% 70% / 70% 50% 50% 30%;
    }
    60% {
        border-radius: 70% 30% 50% 50% / 30% 70% 30% 70%;
    }
    80% {
        border-radius: 50% 50% 70% 30% / 50% 30% 70% 50%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Drift Movement */
@keyframes drift {
    0%,
    100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(5%, 5%);
    }
    50% {
        transform: translate(10%, 0);
    }
    75% {
        transform: translate(0, 10%);
    }
}

/* Enhanced Glow Effect */
@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 30px rgba(19, 232, 233, 0.6),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 50px rgba(19, 232, 233, 0.9),
            inset 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .morphing-bubbles {
        height: 250px;
    }
    .main-bubble {
        width: 150px;
        height: 150px;
    }
    .secondary-bubble {
        width: 120px;
        height: 120px;
    }
    .accent-bubble {
        width: 80px;
        height: 80px;
    }
    .tiny-bubble-1,
    .tiny-bubble-2,
    .tiny-bubble-3,
    .tiny-bubble-4 {
        width: 30px;
        height: 30px;
    }
}
/* Hero Section Bubbles */
.morphing-bubbles-hero {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0; /* Below particles but above background */
}

/* Shared Bubble Styles (for both sections) */
.morphing-bubble {
    position: absolute;
    background: radial-gradient(
        circle at 30% 30%,
        #13e8e9,
        #0fb9ba 40%,
        #0a8a8b 70%,
        rgb(2, 2, 88) 90%
    );
    box-shadow: 0 0 30px rgba(19, 232, 233, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    filter: blur(1px);
    animation: morph 12s infinite ease-in-out, glow 6s infinite ease-in-out,
        drift 18s infinite ease-in-out;
    will-change: border-radius, transform;
}

/* Hero Section Specific Bubble Sizes/Positions */
#particles-js .morphing-bubble {
    opacity: 0.7; /* More transparent in hero section */
}

#particles-js .main-bubble {
    width: 180px;
    height: 180px;
    top: 20%;
    left: 10%;
}

#particles-js .secondary-bubble {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 80%;
}

#particles-js .accent-bubble {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 70%;
}

#particles-js .tiny-bubble-1 {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 20%;
}

#particles-js .tiny-bubble-2 {
    width: 30px;
    height: 30px;
    top: 10%;
    left: 50%;
}
/* About Section Bubbles (existing but with adjusted z-index) */
.morphing-bubbles {
    position: relative;
    z-index: 0;
}
/* Service Cards - Blended Styles */
.uscard {
    background: #020258;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 15px rgba(19, 232, 233, 0.3);
    margin: 1rem 0;
    height: 100%;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(19, 232, 233, 0.2);
    transition: all 0.3s ease;
}

.uscard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 25px rgba(19, 232, 233, 0.4);
    border-color: rgba(19, 232, 233, 0.4);
}

.uscard .usicon i {
    font-size: 3em;
    color: #13e8e9;
    transform-style: preserve-3d;
    animation: rotate 6s infinite ease-in-out;
    text-shadow: 0 0 10px rgba(19, 232, 233, 0.5);
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.uscard:hover .usicon i {
    animation: rotate 3s infinite ease-in-out;
    text-shadow: 0 0 15px rgba(19, 232, 233, 0.8);
}

.uscontent {
    padding: 1rem 0;
}

.uscontent h3 {
    color: #13e8e9;
    font-family: "Cinzel Decorative", sans-serif;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.uscontent p {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
}

/* Animation */
@keyframes rotate {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        color: #0fb9ba;
    }
    100% {
        transform: rotateY(360deg);
        color: #fff;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .uscard {
        margin: 0.5rem 0;
    }
    .uscontent h3 {
        font-size: 1.3rem;
    }
}
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}
.alert-success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
}
.alert-danger {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Mobile Close Button */
.btn-close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #13e8e9;
    font-size: 1.5rem;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Mobile Menu Animation */
@media (max-width: 991px) {
    /* Drawing Bubble Animation */
    .drawing-bubble {
        position: absolute;
        width: 8px;
        height: 8px;
        background: #13e8e9;
        border-radius: 50%;
        opacity: 0;
        animation: draw-path 1s forwards;
        z-index: 95;
    }

    @keyframes draw-path {
        0% {
            opacity: 0;
            transform: translate(var(--start-x), var(--start-y)) scale(0);
        }
        30% {
            opacity: 0.8;
            transform: translate(var(--start-x), var(--start-y)) scale(1.2);
        }
        100% {
            opacity: 0;
            transform: translate(var(--end-x), var(--end-y)) scale(0);
        }
    }
}
/* Modern Navbar */
.navbar {
    background: rgba(2, 2, 88, 0.9) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.4s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(2, 2, 88, 0.95) !important;
}

.navbar-brand {
    font-family: "Cinzel Decorative", sans-serif;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-family: "Montserrat", sans-serif;
    position: relative;
    margin: 0 0.8rem;
    padding: 0.5rem 0 !important;
    transition: all 0.3s ease;
}

/* Bubble Canvas for Animations */
.bubble-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Nav Bubble Styles */
.nav-bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    transform: translateY(0) scale(0);
    transition: all 0.6s ease-out;
    pointer-events: none;
    z-index: -1;
    background: #13e8e9;
    animation: float-up 2s infinite ease-in-out;
}

@keyframes float-up {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}
.bg-dark {
    background-color: #020258 !important;
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .navbar-nav {
        width: 100%;
        position: relative;
    }

    .nav-item {
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.4s ease;
        margin: 1.5rem 0;
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered animation */
    .navbar-collapse.show .nav-item:nth-child(1) {
        transition-delay: 0.2s;
    }
    .navbar-collapse.show .nav-item:nth-child(2) {
        transition-delay: 0.3s;
    }
    .navbar-collapse.show .nav-item:nth-child(3) {
        transition-delay: 0.4s;
    }
    .navbar-collapse.show .nav-item:nth-child(4) {
        transition-delay: 0.5s;
    }

    /* Mobile menu bubbles */
    .mobile-bubble {
        position: absolute;
        width: 8px;
        height: 8px;
        background: #13e8e9;
        border-radius: 50%;
        opacity: 0;
        animation: draw-path 1.5s forwards;
    }

    @keyframes draw-path {
        0% {
            opacity: 0;
            transform: translate(0, 0) scale(0);
        }
        20% {
            opacity: 0.8;
            transform: translate(0, 0) scale(1);
        }
        100% {
            opacity: 0;
            transform: translate(var(--tx), var(--ty)) scale(0.5);
        }
    }
}
/* Contact Section Styles */
#contact {
    background: #020258;
    overflow: hidden;
    position: relative;
}

.contact-particles,
.footer-particles {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.glass-card {
    background: rgba(2, 2, 88, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(19, 232, 233, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(19, 232, 233, 0.4);
    box-shadow: 0 8px 32px rgba(19, 232, 233, 0.2);
}

.form-control {
    color: #fff !important;
    border: 1px solid rgba(19, 232, 233, 0.3);
    padding: 0.75rem 1rem;
}

.form-control:focus {
    background: rgba(19, 232, 233, 0.1);
    border-color: #13e8e9;
    box-shadow: 0 0 0 0.25rem rgba(19, 232, 233, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(19, 232, 233, 0.1);
    transition: all 0.3s ease;
}

.contact-info li:hover {
    transform: translateX(5px);
    border-color: rgba(19, 232, 233, 0.3);
}

/* Social Bubbles */
.social-bubbles {
    display: flex;
    gap: 1rem;
}

.social-bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(19, 232, 233, 0.1);
    border-radius: 50%;
    color: #13e8e9;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-bubble::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(19, 232, 233, 0.3) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-bubble:hover {
    transform: translateY(-3px);
    background: rgba(19, 232, 233, 0.2);
    box-shadow: 0 0 15px rgba(19, 232, 233, 0.4);
}

.social-bubble:hover::before {
    opacity: 1;
}

/* Hover Bubble Effect */
.hover-bubble {
    position: relative;
    display: inline-block;
}

.hover-bubble::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #13e8e9;
    transition: width 0.3s ease;
}

.hover-bubble:hover::after {
    width: 100%;
}

.bubble-hover {
    position: relative;
    overflow: hidden;
}

.bubble-hover::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s ease;
}

.bubble-hover:hover::before {
    width: 200px;
    height: 200px;
    opacity: 0.3;
}
  /* Brand Images Animation */
        .brandimgs-container {
            position: relative;
            height: 500px;
            /* Increased height */
            overflow: visible;
            z-index: 10;
            margin-top: 50px;
        }

        /* Feature Bubbles Animation */
        .feature-bubbles-container {
            position: relative;
            height: 500px;
            /* Increased height */
            z-index: 10;
            margin-top: 50px;
        }

        /* Image Wrapper Base Styles */
        .image-bubble {
            position: absolute;
            overflow: hidden;
            border-radius: 50%;
            opacity: 0;
            transform: scale(0.5);
            transition: all 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }

        .image-bubble img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Brand Images (first two) - Doubled in size */
        .brand-bubble-1 {
            width: 300px;
            /* Increased from 150px */
            height: 300px;
            /* Increased from 150px */
            bottom: 60px;
            /* Adjusted position */
            left: 100px;
            /* Adjusted position */
            transition-delay: 2s;
        }

        .brand-bubble-2 {
            width: 260px;
            /* Increased from 130px */
            height: 260px;
            /* Increased from 130px */
            bottom: 120px;
            /* Adjusted position */
            left: 300px;
            /* Adjusted position */
            transition-delay: 3s;
        }

        /* Feature Bubbles (last two) - Doubled in size */
        .feature-bubble-1 {
            width: 280px;
            /* Increased from 140px */
            height: 280px;
            /* Increased from 140px */
            top: 100px;
            /* Adjusted position */
            right: 200px;
            /* Adjusted position */
            transition-delay: 2s;
        }

        .feature-bubble-2 {
            width: 240px;
            /* Increased from 120px */
            height: 240px;
            /* Increased from 120px */
            top: 240px;
            /* Adjusted position */
            right: 100px;
            /* Adjusted position */
            transition-delay: 4s;
        }

        .connector-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
            pointer-events: none;
            overflow: visible;
        }

        .connector-line {
            stroke: rgba(255, 255, 255, 0.7);
            stroke-width: 2;
            stroke-dasharray: 5, 5;
            fill: none;
            opacity: 0;
            transition: all 5s ease;
        }

        /* Animation when loaded - Adjusted final sizes */
        .loaded .image-bubble {
            opacity: 1;
            transform: scale(1);
            border-radius: 10px;
            height: 400px;
            /* Increased from 200px */
        }

        .loaded .brand-bubble-1 {
            height: 360px;
            /* Increased from 220px */
            width: 280px;
            /* Increased from 160px */
        }

        .loaded .brand-bubble-2 {
            height: 320px;
            /* Increased from 200px */
            width: 240px;
            /* Increased from 140px */
            bottom: 160px;
            /* Adjusted position */
            left: 255px;
            
            /* Adjusted position */
        }

        .loaded .feature-bubble-1 {
            height: 360px;
            /* Increased from 180px */
            width: 280px;
            /* Increased from 140px */
        }

        .loaded .feature-bubble-2 {
            height: 320px;
            /* Increased from 160px */
            width: 240px;
            /* Increased from 120px */
        }

        .loaded .connector-line {
            opacity: 1;
            transform: scaleX(1);
        }

        /* Make sure morphing bubbles don't interfere */
        .morphing-bubbles {
            z-index: 1;
        }

        /* Responsive - hide on small screens */
        @media (max-width: 767.98px) {
            .hero-section {
                min-height: 100vh;
                padding: 2rem 1rem;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                overflow: hidden;
            }

            .brandimgs-container,
            .feature-bubbles-container {
                display: none;
            }
            
            .brandtext {
                position: relative !important;
                top: auto !important;
                left: auto !important;
                transform: none !important;
                margin-top: 0 !important;
                padding-top: 0 !important;
                text-align: center;
                width: 100%;
                z-index: 10;
            }

            .brandtext h1 {
                font-size: 2.2rem !important;
                line-height: 1.2 !important;
                margin-bottom: 1rem !important;
                padding: 0 !important;
                font-weight: 700;
            }

            .brandtext .lead {
                font-size: 1.1rem !important;
                line-height: 1.4 !important;
                margin-bottom: 1.5rem !important;
                color: #fff !important;
            }

            .brandtext p {
                font-size: 1rem !important;
                line-height: 1.5 !important;
                margin-bottom: 2rem !important;
                color: #fff !important;
            }

            .brandtext .btn {
                display: block !important;
                width: 100% !important;
                margin: 0.5rem 0 !important;
                padding: 0.75rem 1.5rem !important;
                font-size: 1rem !important;
                font-weight: 600 !important;
                border-radius: 8px !important;
                text-decoration: none !important;
                transition: all 0.3s ease !important;
            }

            .brandtext .btn-primary {
                background: #13e8e9 !important;
                color: #020258 !important;
                border: 2px solid #13e8e9 !important;
                margin-bottom: 1rem !important;
            }

            .brandtext .btn-primary:hover {
                background: #020258 !important;
                color: #13e8e9 !important;
                transform: translateY(-2px) !important;
                box-shadow: 0 8px 25px rgba(19, 232, 233, 0.3) !important;
            }

            .brandtext .btn-outline-light {
                background: transparent !important;
                color: #13e8e9 !important;
                border: 2px solid #13e8e9 !important;
            }

            .brandtext .btn-outline-light:hover {
                background: #13e8e9 !important;
                color: #020258 !important;
                transform: translateY(-2px) !important;
                box-shadow: 0 8px 25px rgba(19, 232, 233, 0.3) !important;
            }

            .morphing-bubbles-hero {
                position: absolute !important;
                top: 0 !important;
                left: 0 !important;
                width: 100% !important;
                height: 100% !important;
                z-index: 1 !important;
            }

            .morphing-bubble {
                opacity: 0.3 !important;
            }

            .container-fluid {
                padding: 0 1rem !important;
                padding-top: 5rem !important;
            }

            .brandtext .row {
                margin: 0 !important;
            }

            .brandtext .col-md-7,
            .brandtext .col-md-5 {
                padding: 0 !important;
                margin: 0 !important;
            }

            .brandtext .col-md-7 {
                padding-top: 0 !important;
            }
        }

        .col-md-5 {
            position: relative;
            overflow: visible;
        }
        .brandtext {
            position: relative;
            margin-top: 20rem;
            
            color: white;
        }
        .brandtext .col-md-7 {
            padding-top: 10rem;
        }

        /* Tablet improvements */
        @media (min-width: 768px) and (max-width: 991.98px) {
            .hero-section {
                min-height: 90vh;
                padding: 3rem 2rem;
            }

            .brandtext h1 {
                font-size: 2.8rem !important;
                line-height: 1.3 !important;
            }

            .brandtext .lead {
                font-size: 1.3rem !important;
            }

            .brandtext p {
                font-size: 1.1rem !important;
            }

            .brandtext .btn {
                padding: 0.875rem 2rem !important;
                font-size: 1.1rem !important;
            }
        }

        /* Small mobile devices */
        @media (max-width: 575.98px) {
            .hero-section {
                padding: 1.5rem 0.75rem;
                min-height: 100vh;
            }

            .brandtext h1 {
                font-size: 1.8rem !important;
                line-height: 1.3 !important;
                margin-bottom: 0.75rem !important;
            }

            .brandtext .lead {
                font-size: 1rem !important;
                margin-bottom: 1rem !important;
            }

            .brandtext p {
                font-size: 0.9rem !important;
                margin-bottom: 1.5rem !important;
            }

            .brandtext .btn {
                padding: 0.625rem 1.25rem !important;
                font-size: 0.9rem !important;
                margin: 0.25rem 0 !important;
            }

            .container-fluid {
                padding: 0 0.75rem !important;
                padding-top: 4rem !important;
            }
        }

        /* Extra small devices */
        @media (max-width: 375px) {
            .brandtext h1 {
                font-size: 1.6rem !important;
            }

            .brandtext .lead {
                font-size: 0.9rem !important;
            }

            .brandtext p {
                font-size: 0.85rem !important;
            }

            .brandtext .btn {
                padding: 0.5rem 1rem !important;
                font-size: 0.85rem !important;
            }
        }

        /* Touch-friendly improvements for mobile */
        @media (max-width: 767.98px) {
            .brandtext .btn {
                min-height: 44px !important;
                touch-action: manipulation !important;
                -webkit-tap-highlight-color: transparent !important;
            }

            .brandtext .btn:active {
                transform: scale(0.98) !important;
            }

            /* Improve text readability on mobile */
            .brandtext h1,
            .brandtext .lead,
            .brandtext p {
                text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
            }

                     /* Ensure proper spacing for mobile */
         .hero-section {
             padding-top: 80px !important;
             padding-bottom: 40px !important;
         }

         /* Mobile floating elements */
         .mobile-floating-elements {
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             height: 100%;
             pointer-events: none;
             z-index: 2;
         }

         .mobile-bubble-1,
         .mobile-bubble-2,
         .mobile-bubble-3 {
             position: absolute;
             border-radius: 50%;
             background: radial-gradient(circle, rgba(19, 232, 233, 0.3) 0%, transparent 70%);
             animation: float 6s ease-in-out infinite;
         }

         .mobile-bubble-1 {
             width: 60px;
             height: 60px;
             top: 20%;
             left: 10%;
             animation-delay: 0s;
         }

         .mobile-bubble-2 {
             width: 40px;
             height: 40px;
             top: 60%;
             right: 15%;
             animation-delay: 2s;
         }

         .mobile-bubble-3 {
             width: 30px;
             height: 30px;
             bottom: 30%;
             left: 20%;
             animation-delay: 4s;
         }

         @keyframes float {
             0%, 100% { transform: translateY(0px); }
             50% { transform: translateY(-20px); }
         }

         /* Mobile badge */
         .mobile-badge .badge {
             background: linear-gradient(45deg, #13e8e9, #0fb9ba) !important;
             border: none;
             font-size: 0.8rem;
             font-weight: 600;
             border-radius: 20px;
             box-shadow: 0 4px 15px rgba(19, 232, 233, 0.3);
         }

         /* Feature highlights */
         .feature-highlight {
             background: rgba(19, 232, 233, 0.1);
             border: 1px solid rgba(19, 232, 233, 0.3);
             border-radius: 8px;
             padding: 0.5rem;
             text-align: center;
             transition: all 0.3s ease;
         }

         .feature-highlight:hover {
             background: rgba(19, 232, 233, 0.2);
             transform: translateY(-2px);
         }

         .feature-highlight i {
             display: block;
             font-size: 1.2rem;
             margin-bottom: 0.25rem;
         }

         .feature-highlight small {
             color: #fff;
             font-weight: 600;
             font-size: 0.7rem;
         }

         /* Trust indicators */
         .mobile-trust-indicators small {
             color: rgba(255, 255, 255, 0.7) !important;
             font-size: 0.75rem;
         }

         /* Enhanced button styles */
         .brandtext .btn i {
             transition: transform 0.3s ease;
         }

         .brandtext .btn:hover i {
             transform: translateX(2px);
         }

         .brandtext .btn-primary:hover i {
             transform: translateY(-1px);
         }

         /* Mobile feature cards */
         .mobile-feature-cards {
             margin-bottom: 2rem;
         }

         .mobile-feature-card {
             background: rgba(19, 232, 233, 0.1);
             border: 1px solid rgba(19, 232, 233, 0.3);
             border-radius: 12px;
             padding: 1rem 0.5rem;
             text-align: center;
             transition: all 0.3s ease;
             height: 100%;
         }

         .mobile-feature-card:hover {
             background: rgba(19, 232, 233, 0.2);
             transform: translateY(-3px);
             box-shadow: 0 8px 25px rgba(19, 232, 233, 0.2);
         }

         .mobile-feature-card .feature-icon {
             width: 50px;
             height: 50px;
             background: linear-gradient(45deg, #13e8e9, #0fb9ba);
             border-radius: 50%;
             display: flex;
             align-items: center;
             justify-content: center;
             margin: 0 auto 0.5rem;
             box-shadow: 0 4px 15px rgba(19, 232, 233, 0.3);
         }

         .mobile-feature-card .feature-icon i {
             color: #020258;
             font-size: 1.2rem;
         }

         .mobile-feature-card h6 {
             color: #13e8e9;
             font-weight: 700;
             margin-bottom: 0.25rem;
             font-size: 0.9rem;
         }

         .mobile-feature-card small {
             color: rgba(255, 255, 255, 0.8);
             font-size: 0.7rem;
         }

         /* Initial animation states */
         .mobile-floating-elements > div {
             opacity: 0;
             transform: translateY(20px);
             transition: all 0.6s ease;
         }

         .mobile-feature-card,
         .feature-highlight {
             opacity: 0;
             transform: translateY(20px);
             transition: all 0.6s ease;
         }

         /* Scroll-triggered animations */
         .fade-in-up {
             animation: fadeInUp 0.8s ease forwards;
         }

         @keyframes fadeInUp {
             from {
                 opacity: 0;
                 transform: translateY(30px);
             }
             to {
                 opacity: 1;
                 transform: translateY(0);
             }
         }
     }

/* Mobile-first hero section improvements */
@media (max-width: 767.98px) {
    .hero-section {
        min-height: 100vh;
        padding: 2rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .brandtext {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        text-align: center;
        width: 100%;
        z-index: 10;
    }

    .brandtext h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        padding: 0 !important;
        font-weight: 700;
    }

    .brandtext .lead {
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.5rem !important;
        color: #fff !important;
    }

    .brandtext p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 2rem !important;
        color: #fff !important;
    }

    .brandtext .btn {
        display: block !important;
        width: 100% !important;
        margin: 0.5rem 0 !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
    }

    .brandtext .btn-primary {
        background: #13e8e9 !important;
        color: #020258 !important;
        border: 2px solid #13e8e9 !important;
        margin-bottom: 1rem !important;
    }

    .brandtext .btn-primary:hover {
        background: #020258 !important;
        color: #13e8e9 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(19, 232, 233, 0.3) !important;
    }

    .brandtext .btn-outline-light {
        background: transparent !important;
        color: #13e8e9 !important;
        border: 2px solid #13e8e9 !important;
    }

    .brandtext .btn-outline-light:hover {
        background: #13e8e9 !important;
        color: #020258 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(19, 232, 233, 0.3) !important;
    }

    /* Hide image containers on mobile */
    .brandimgs-container,
    .feature-bubbles-container {
        display: none !important;
    }

    /* Adjust morphing bubbles for mobile */
    .morphing-bubbles-hero {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
    }

    .morphing-bubble {
        opacity: 0.3 !important;
    }

    /* Container adjustments */
    .container-fluid {
        padding: 0 1rem !important;
        padding-top: 5rem !important;
    }

    /* Row and column adjustments */
    .brandtext .row {
        margin: 0 !important;
    }

    .brandtext .col-md-7,
    .brandtext .col-md-5 {
        padding: 0 !important;
        margin: 0 !important;
    }

    .brandtext .col-md-7 {
        padding-top: 0 !important;
    }
}

/* Tablet improvements */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section {
        min-height: 90vh;
        padding: 3rem 2rem;
    }

    .brandtext h1 {
        font-size: 2.8rem !important;
        line-height: 1.3 !important;
    }

    .brandtext .lead {
        font-size: 1.3rem !important;
    }

    .brandtext p {
        font-size: 1.1rem !important;
    }

    .brandtext .btn {
        padding: 0.875rem 2rem !important;
        font-size: 1.1rem !important;
    }
}

/* Small mobile devices */
@media (max-width: 575.98px) {
    .hero-section {
        padding: 1.5rem 0.75rem;
        min-height: 100vh;
    }

    .brandtext h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
    }

    .brandtext .lead {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .brandtext p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }

    .brandtext .btn {
        padding: 0.625rem 1.25rem !important;
        font-size: 0.9rem !important;
        margin: 0.25rem 0 !important;
    }

    .container-fluid {
        padding: 0 0.75rem !important;
        padding-top: 4rem !important;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .brandtext h1 {
        font-size: 1.6rem !important;
    }

    .brandtext .lead {
        font-size: 0.9rem !important;
    }

    .brandtext p {
        font-size: 0.85rem !important;
    }

    .brandtext .btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
    }
}

/* Mobile styles for Key Features Section */
@media (max-width: 767.98px) {
    #services {
        padding: 3rem 1rem !important;
    }

    #services .display-4 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }

    #services .lead {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    /* Mobile feature grid */
    .mobile-features-grid {
        margin-bottom: 2rem;
    }

    .mobile-feature-item {
        background: rgba(19, 232, 233, 0.1);
        border: 1px solid rgba(19, 232, 233, 0.3);
        border-radius: 12px;
        padding: 1rem 0.5rem;
        text-align: center;
        transition: all 0.3s ease;
        height: 100%;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .mobile-feature-item:hover {
        background: rgba(19, 232, 233, 0.2);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(19, 232, 233, 0.2);
    }

    .feature-icon-mobile {
        width: 50px;
        height: 50px;
        background: linear-gradient(45deg, #13e8e9, #0fb9ba);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.5rem;
        box-shadow: 0 4px 15px rgba(19, 232, 233, 0.3);
    }

    .feature-icon-mobile i {
        color: #020258;
        font-size: 1.2rem;
    }

    .mobile-feature-item h6 {
        color: #13e8e9;
        font-weight: 700;
        margin-bottom: 0.25rem;
        font-size: 0.9rem;
    }

    .mobile-feature-item small {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.7rem;
    }

    /* Touch effects for mobile feature items */
    .mobile-feature-item:active {
        transform: scale(0.95);
    }

    /* Hide desktop cards on mobile */
    .d-none.d-lg-flex {
        display: none !important;
    }
}

/* Tablet improvements for features */
@media (min-width: 768px) and (max-width: 991.98px) {
    #services .display-4 {
        font-size: 2.5rem !important;
    }

    #services .lead {
        font-size: 1.1rem !important;
    }
}

/* Small mobile devices */
@media (max-width: 575.98px) {
    #services {
        padding: 2rem 0.75rem !important;
    }

    #services .display-4 {
        font-size: 1.8rem !important;
    }

    #services .lead {
        font-size: 0.9rem !important;
    }

    .mobile-feature-item {
        padding: 0.75rem 0.25rem;
        min-height: 100px;
    }

    .feature-icon-mobile {
        width: 40px;
        height: 40px;
    }

    .feature-icon-mobile i {
        font-size: 1rem;
    }

    .mobile-feature-item h6 {
        font-size: 0.8rem;
    }

    .mobile-feature-item small {
        font-size: 0.65rem;
    }
}

/* Mobile styles for Statistics Section */
@media (max-width: 767.98px) {
    .stat-card {
        background: rgba(19, 232, 233, 0.1);
        border: 1px solid rgba(19, 232, 233, 0.3);
        border-radius: 12px;
        padding: 1.5rem 1rem;
        text-align: center;
        transition: all 0.3s ease;
        margin-bottom: 1rem;
    }

    .stat-card:hover {
        background: rgba(19, 232, 233, 0.2);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(19, 232, 233, 0.2);
    }

    .stat-card h3 {
        font-size: 2rem !important;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #13e8e9;
    }

    .stat-card p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 0;
    }

    /* Touch effects for stat cards */
    .stat-card:active {
        transform: scale(0.98);
    }

    /* Improve spacing for mobile stats */
    .row.mt-4 {
        margin-top: 2rem !important;
    }

    .col-md-3.col-6 {
        margin-bottom: 1rem;
    }
}

/* Small mobile devices */
@media (max-width: 575.98px) {
    .stat-card {
        padding: 1rem 0.75rem;
    }

    .stat-card h3 {
        font-size: 1.5rem !important;
    }

    .stat-card p {
        font-size: 0.8rem;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .stat-card h3 {
        font-size: 1.3rem !important;
    }

    .stat-card p {
        font-size: 0.75rem;
    }
}

/* Mobile styles for Testimonials Section */
@media (max-width: 767.98px) {
    .testimonial-card {
        background: rgba(19, 232, 233, 0.1) !important;
        border: 1px solid rgba(19, 232, 233, 0.3) !important;
        border-radius: 16px !important;
        padding: 1.5rem !important;
        margin: 0 1rem;
    }

    .testimonial-card:hover {
        background: rgba(19, 232, 233, 0.15) !important;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(19, 232, 233, 0.2);
    }

    .testimonial-text {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
        color: #fff !important;
    }

    .testimonial-name {
        font-size: 1rem !important;
        font-weight: 700;
        color: #13e8e9 !important;
    }

    .testimonial-card .text-muted {
        font-size: 0.85rem !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    /* Carousel controls for mobile */
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px !important;
        height: 40px !important;
        background: rgba(19, 232, 233, 0.2) !important;
        border-radius: 50% !important;
        border: 1px solid rgba(19, 232, 233, 0.3) !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .carousel-control-prev {
        left: 10px !important;
    }

    .carousel-control-next {
        right: 10px !important;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px !important;
        height: 20px !important;
    }

    /* Carousel indicators for mobile */
    .carousel-indicators {
        bottom: -40px !important;
    }

    .carousel-indicators button {
        width: 10px !important;
        height: 10px !important;
        border-radius: 50% !important;
        background-color: rgba(19, 232, 233, 0.3) !important;
        border: none !important;
        margin: 0 5px !important;
    }

    .carousel-indicators button.active {
        background-color: #13e8e9 !important;
    }

    /* Touch effects for testimonial cards */
    .testimonial-card:active {
        transform: scale(0.98);
    }

    /* Improve spacing for mobile testimonials */
    .carousel-inner {
        padding: 0 1rem;
    }

    .carousel-item {
        padding: 1rem 0;
    }
}

/* Small mobile devices */
@media (max-width: 575.98px) {
    .testimonial-card {
        padding: 1rem !important;
        margin: 0 0.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem !important;
    }

    .testimonial-name {
        font-size: 0.9rem !important;
    }

    .testimonial-card .text-muted {
        font-size: 0.8rem !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 35px !important;
        height: 35px !important;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 18px !important;
        height: 18px !important;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .testimonial-card {
        padding: 0.75rem !important;
        margin: 0 0.25rem;
    }

    .testimonial-text {
        font-size: 0.85rem !important;
    }

    .testimonial-name {
        font-size: 0.85rem !important;
    }

    .testimonial-card .text-muted {
        font-size: 0.75rem !important;
    }
}

/* Mobile styles for Pricing Section */
@media (max-width: 767.98px) {
    #signup {
        padding: 3rem 1rem !important;
    }

    #signup .display-4 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }

    #signup .lead {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .pricing-card {
        background: rgba(19, 232, 233, 0.1) !important;
        border: 1px solid rgba(19, 232, 233, 0.3) !important;
        border-radius: 16px !important;
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        transition: all 0.3s ease;
    }

    .pricing-card:hover {
        background: rgba(19, 232, 233, 0.15) !important;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(19, 232, 233, 0.2);
    }

    .pricing-card.featured {
        background: rgba(19, 232, 233, 0.2) !important;
        border: 2px solid #13e8e9 !important;
        transform: scale(1.02);
    }

    .pricing-card.featured:hover {
        background: rgba(19, 232, 233, 0.25) !important;
        transform: scale(1.02) translateY(-3px);
    }

    .pricing-card .card-title {
        font-size: 1.5rem !important;
        font-weight: 700;
        color: #13e8e9 !important;
        margin-bottom: 1rem !important;
    }

    .price {
        margin-bottom: 1.5rem !important;
    }

    .price .currency {
        font-size: 1rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .price .amount {
        font-size: 2.5rem !important;
        font-weight: 700;
        color: #13e8e9 !important;
    }

    .price .period {
        font-size: 1rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .pricing-list {
        margin-bottom: 1.5rem !important;
    }

    .pricing-list li {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .pricing-list li i {
        color: #13e8e9 !important;
        margin-right: 0.5rem !important;
    }

    .pricing-card .btn {
        width: 100% !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
        min-height: 44px !important;
    }

    .popular-badge {
        background: linear-gradient(45deg, #13e8e9, #0fb9ba) !important;
        color: #020258 !important;
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        padding: 0.5rem 1rem !important;
        border-radius: 20px !important;
        margin-bottom: 1rem !important;
        display: inline-block;
    }

    /* Touch effects for pricing cards */
    .pricing-card:active {
        transform: scale(0.98);
    }

    .pricing-card.featured:active {
        transform: scale(0.98);
    }

    /* Improve spacing for mobile pricing */
    .row.justify-content-center {
        margin: 0 -0.5rem;
    }

    .col-md-4 {
        padding: 0 0.5rem;
    }
}

/* Small mobile devices */
@media (max-width: 575.98px) {
    #signup {
        padding: 2rem 0.75rem !important;
    }

    #signup .display-4 {
        font-size: 1.8rem !important;
    }

    #signup .lead {
        font-size: 0.9rem !important;
    }

    .pricing-card {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .pricing-card .card-title {
        font-size: 1.3rem !important;
    }

    .price .amount {
        font-size: 2rem !important;
    }

    .pricing-list li {
        font-size: 0.85rem !important;
    }

    .pricing-card .btn {
        padding: 0.625rem 1.25rem !important;
        font-size: 0.9rem !important;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    #signup .display-4 {
        font-size: 1.6rem !important;
    }

    .pricing-card .card-title {
        font-size: 1.2rem !important;
    }

    .price .amount {
        font-size: 1.8rem !important;
    }

    .pricing-list li {
        font-size: 0.8rem !important;
    }

    .pricing-card .btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
    }
}

/* Mobile styles for Contact Section */
@media (max-width: 767.98px) {
    #contact {
        padding: 3rem 1rem !important;
    }

    #contact .display-4 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }

    #contact .lead {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .glass-card {
        background: rgba(19, 232, 233, 0.1) !important;
        border: 1px solid rgba(19, 232, 233, 0.3) !important;
        border-radius: 16px !important;
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        backdrop-filter: blur(10px) !important;
    }

    .glass-card:hover {
        background: rgba(19, 232, 233, 0.15) !important;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(19, 232, 233, 0.2);
    }

    .glass-card h3 {
        font-size: 1.5rem !important;
        font-weight: 700;
        color: #13e8e9 !important;
        margin-bottom: 1.5rem !important;
    }

    .form-control {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(19, 232, 233, 0.3) !important;
        border-radius: 8px !important;
        color: #fff !important;
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
        min-height: 44px !important;
    }

    .form-control:focus {
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: #13e8e9 !important;
        box-shadow: 0 0 0 0.2rem rgba(19, 232, 233, 0.25) !important;
        color: #fff !important;
    }

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.6) !important;
    }

    .form-select {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(19, 232, 233, 0.3) !important;
        border-radius: 8px !important;
        color: #fff !important;
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
        min-height: 44px !important;
    }

    .form-select:focus {
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: #13e8e9 !important;
        box-shadow: 0 0 0 0.2rem rgba(19, 232, 233, 0.25) !important;
        color: #fff !important;
    }

    .glass-card .btn {
        width: 100% !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
        min-height: 44px !important;
    }

    .contact-info li {
        background: rgba(19, 232, 233, 0.1) !important;
        border: 1px solid rgba(19, 232, 233, 0.3) !important;
        border-radius: 12px !important;
        padding: 1rem !important;
        margin-bottom: 1rem !important;
        transition: all 0.3s ease;
    }

    .contact-info li:hover {
        background: rgba(19, 232, 233, 0.15) !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(19, 232, 233, 0.2);
    }

    .contact-info li i {
        color: #13e8e9 !important;
        font-size: 1.2rem !important;
        margin-right: 1rem !important;
    }

    .contact-info li strong {
        color: #13e8e9 !important;
        font-size: 0.9rem !important;
        font-weight: 700 !important;
    }

    .contact-info li span {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 0.9rem !important;
    }

    .contact-info li small {
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 0.8rem !important;
    }

    .social-bubbles {
        justify-content: center !important;
        gap: 1rem !important;
    }

    .social-bubble {
        width: 50px !important;
        height: 50px !important;
        background: rgba(19, 232, 233, 0.1) !important;
        border: 1px solid rgba(19, 232, 233, 0.3) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease;
        min-height: 44px !important;
    }

    .social-bubble:hover {
        background: rgba(19, 232, 233, 0.2) !important;
        transform: translateY(-3px);
        box-shadow: 0 4px 15px rgba(19, 232, 233, 0.3);
    }

    .social-bubble i {
        font-size: 1.2rem !important;
        color: #13e8e9 !important;
    }

    /* Touch effects for contact elements */
    .glass-card:active,
    .contact-info li:active,
    .social-bubble:active {
        transform: scale(0.98);
    }

    /* Improve spacing for mobile contact */
    .col-lg-6 {
        margin-bottom: 1.5rem;
    }

    .mt-4.mt-lg-0 {
        margin-top: 0 !important;
    }
}

/* Mobile styles for Contact Section */
@media (max-width: 767.98px) {
    #contact {
        padding: 3rem 1rem !important;
    }

    #contact .display-4 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }

    #contact .lead {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .glass-card {
        background: rgba(19, 232, 233, 0.1) !important;
        border: 1px solid rgba(19, 232, 233, 0.3) !important;
        border-radius: 16px !important;
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        backdrop-filter: blur(10px) !important;
    }

    .glass-card:hover {
        background: rgba(19, 232, 233, 0.15) !important;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(19, 232, 233, 0.2);
    }

    .glass-card h3 {
        font-size: 1.5rem !important;
        font-weight: 700;
        color: #13e8e9 !important;
        margin-bottom: 1.5rem !important;
    }

    .form-control {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(19, 232, 233, 0.3) !important;
        border-radius: 8px !important;
        color: #fff !important;
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
        min-height: 44px !important;
    }

    .form-control:focus {
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: #13e8e9 !important;
        box-shadow: 0 0 0 0.2rem rgba(19, 232, 233, 0.25) !important;
        color: #fff !important;
    }

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.6) !important;
    }

    .form-select {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(19, 232, 233, 0.3) !important;
        border-radius: 8px !important;
        color: #fff !important;
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
        min-height: 44px !important;
    }

    .form-select:focus {
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: #13e8e9 !important;
        box-shadow: 0 0 0 0.2rem rgba(19, 232, 233, 0.25) !important;
        color: #fff !important;
    }

    .glass-card .btn {
        width: 100% !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
        min-height: 44px !important;
    }

    .contact-info li {
        background: rgba(19, 232, 233, 0.1) !important;
        border: 1px solid rgba(19, 232, 233, 0.3) !important;
        border-radius: 12px !important;
        padding: 1rem !important;
        margin-bottom: 1rem !important;
        transition: all 0.3s ease;
    }

    .contact-info li:hover {
        background: rgba(19, 232, 233, 0.15) !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(19, 232, 233, 0.2);
    }

    .contact-info li i {
        color: #13e8e9 !important;
        font-size: 1.2rem !important;
        margin-right: 1rem !important;
    }

    .contact-info li strong {
        color: #13e8e9 !important;
        font-size: 0.9rem !important;
        font-weight: 700 !important;
    }

    .contact-info li span {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 0.9rem !important;
    }

    .contact-info li small {
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 0.8rem !important;
    }

    .social-bubbles {
        justify-content: center !important;
        gap: 1rem !important;
    }

    .social-bubble {
        width: 50px !important;
        height: 50px !important;
        background: rgba(19, 232, 233, 0.1) !important;
        border: 1px solid rgba(19, 232, 233, 0.3) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease;
        min-height: 44px !important;
    }

    .social-bubble:hover {
        background: rgba(19, 232, 233, 0.2) !important;
        transform: translateY(-3px);
        box-shadow: 0 4px 15px rgba(19, 232, 233, 0.3);
    }

    .social-bubble i {
        font-size: 1.2rem !important;
        color: #13e8e9 !important;
    }

    /* Touch effects for contact elements */
    .glass-card:active,
    .contact-info li:active,
    .social-bubble:active {
        transform: scale(0.98);
    }

    /* Improve spacing for mobile contact */
    .col-lg-6 {
        margin-bottom: 1.5rem;
    }

    .mt-4.mt-lg-0 {
        margin-top: 0 !important;
    }
}

/* Small mobile devices */
@media (max-width: 575.98px) {
    #contact {
        padding: 2rem 0.75rem !important;
    }

    #contact .display-4 {
        font-size: 1.8rem !important;
    }

    #contact .lead {
        font-size: 0.9rem !important;
    }

    .glass-card {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .glass-card h3 {
        font-size: 1.3rem !important;
    }

    .form-control,
    .form-select {
        padding: 0.625rem 0.875rem !important;
        font-size: 0.9rem !important;
    }

    .glass-card .btn {
        padding: 0.625rem 1.25rem !important;
        font-size: 0.9rem !important;
    }

    .contact-info li {
        padding: 0.75rem !important;
    }

    .contact-info li i {
        font-size: 1.1rem !important;
        margin-right: 0.75rem !important;
    }

    .contact-info li strong {
        font-size: 0.85rem !important;
    }

    .contact-info li span {
        font-size: 0.85rem !important;
    }

    .contact-info li small {
        font-size: 0.75rem !important;
    }

    .social-bubble {
        width: 45px !important;
        height: 45px !important;
    }

    .social-bubble i {
        font-size: 1.1rem !important;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    #contact .display-4 {
        font-size: 1.6rem !important;
    }

    .glass-card h3 {
        font-size: 1.2rem !important;
    }

    .form-control,
    .form-select {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.85rem !important;
    }

    .glass-card .btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
    }

    .contact-info li {
        padding: 0.5rem !important;
    }

    .contact-info li i {
        font-size: 1rem !important;
        margin-right: 0.5rem !important;
    }

    .contact-info li strong {
        font-size: 0.8rem !important;
    }

    .contact-info li span {
        font-size: 0.8rem !important;
    }

    .contact-info li small {
        font-size: 0.7rem !important;
    }

    .social-bubble {
        width: 40px !important;
        height: 40px !important;
    }

    .social-bubble i {
        font-size: 1rem !important;
    }
}