* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.05;
    z-index: 1;
}


body {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: white;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8% 2px 8%;
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(0, 245, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 40px rgba(0, 245, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar:hover {
    background: rgba(15, 12, 41, 0.98);
    border-bottom-color: rgba(0, 245, 255, 0.25);
    box-shadow: 0 12px 50px rgba(0, 245, 255, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    height: fit-content;
}

.logo::before {
    content: "";
    position: absolute;
    inset: -1.5px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e90ff, #00f5ff);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    filter: blur(10px);
}

.logo:hover::before {
    opacity: 0.4;
}

.logo:hover {
    border-color: rgba(0, 245, 255, 0.6);
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.2), rgba(0, 245, 255, 0.12));
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.2);
    transform: translateY(-2px);
}

.logo img {
    height: 150px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    opacity: 0.8;
    filter: none;
}

.logo:hover img {
    transform: scale(1.1) drop-shadow(0 0 12px rgba(0, 245, 255, 0.4));
}

.nav-menu {
    display: flex;
    flex: 1;
    justify-content: center;
}

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

.nav-link {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e90ff, #00f5ff);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #00f5ff;
}

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

.nav-link.active {
    color: #00f5ff;
    font-weight: 600;
}

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

/* CTA Button */
.cta-btn {
    padding: 12px 28px;
    background: linear-gradient(90deg, #1e90ff, #00f5ff);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.3);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.5);
    border-color: #00f5ff;
    background: linear-gradient(90deg, #00f5ff, #1e90ff);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 5%;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 12, 41, 0.98);
        backdrop-filter: blur(15px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid rgba(0, 245, 255, 0.1);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 245, 255, 0.05);
    }

    .nav-link::after {
        bottom: 0;
    }

    .logo {
        padding: 5px 10px;
        border-radius: 10px;
        gap: 6px;
    }

    .logo img {
        height: 38px;
    }

    .cta-btn {
        display: none;
    }

    .navbar+.cta-btn-mobile {
        display: block;
        width: 90%;
        margin: 15px auto 0 auto;
        padding: 12px 0;
        font-size: 15px;
        background: linear-gradient(90deg, #1e90ff, #00f5ff);
        color: white;
        text-align: center;
        border-radius: 25px;
        font-weight: 600;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 245, 255, 0.3);
        letter-spacing: 0.5px;
        text-decoration: none;
    }
}

/* HERO */
/* HERO CENTER */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 8%;
    position: relative;
    overflow: hidden;
}

.hero-content.center-align {
    max-width: 850px;
    position: relative;
    z-index: 2;
}

/* HEADING */
.hero-content h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideDown 0.8s ease;
}

/* PARAGRAPH */
.hero-content p {
    margin-top: 30px;
    font-size: 19px;
    line-height: 1.8;
    color: #b0b8d0;
    animation: slideUp 0.8s ease 0.2s both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* BUTTONS */
.hero-buttons {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 42px;
    background: linear-gradient(135deg, #1e90ff, #00f5ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    margin-right: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 245, 255, 0.5);
}

.btn-secondary {
    padding: 16px 42px;
    border: 2px solid rgba(0, 245, 255, 0.6);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 245, 255, 0.05);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: rgba(0, 245, 255, 0.15);
    border-color: rgba(0, 245, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.2);
}

/* FADE UP ANIMATION */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

.highlight {
    background: linear-gradient(90deg, #1e90ff, #00f5ff, #1e90ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
    position: relative;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Animated Gradient Underline */
.highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1e90ff, #00f5ff);
    animation: underlineMove 3s ease-in-out infinite alternate;
}

@keyframes underlineMove {
    from {
        transform: scaleX(0.6);
        opacity: 0.6;
    }

    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

.ripple {
    position: relative;
    overflow: hidden;
}

.ripple span {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, 0.6);
    animation: rippleAnim 600ms linear;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* PARTICLES CONTAINER */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

/* SINGLE PARTICLE */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle linear infinite;
}

/* PARTICLE ANIMATION */
@keyframes floatParticle {
    from {
        transform: translateY(0px);
        opacity: 0.6;
    }

    to {
        transform: translateY(-800px);
        opacity: 0;
    }
}

/* hero section end */
/* About Us */
/* ABOUT SECTION */
.about-section {
    padding: 120px 8%;
    position: relative;
    z-index: 2;
}

.about-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: space-between;
}

/* LEFT SIDE */
.about-left {
    flex: 1;
}

.section-tag {
    font-size: 13px;
    letter-spacing: 3px;
    color: #00f5ff;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(0, 245, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 245, 255, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
}

.about-left h2 {
    font-size: 52px;
    margin-top: 15px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
}

/* 30+ Badge */
.experience-badge {
    margin-top: 25px;
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15), rgba(0, 245, 255, 0.1));
    border: 2px solid rgba(0, 245, 255, 0.4);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    color: #00f5ff;
    box-shadow: 0 8px 20px rgba(0, 245, 255, 0.15);
    transition: all 0.3s ease;
}

.experience-badge:hover {
    border-color: rgba(0, 245, 255, 0.7);
    box-shadow: 0 12px 30px rgba(0, 245, 255, 0.25);
    transform: translateY(-2px);
}

/* RIGHT SIDE */
.about-right {
    flex: 1.5;
}

.about-right p {
    font-size: 17px;
    line-height: 2;
    color: #b0b8d0;
    margin-bottom: 28px;
    transition: all 0.3s ease;
}

.about-right strong {
    color: #00f5ff;
    font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
    }

    .about-left h2 {
        font-size: 34px;
    }
}

/* ABOUT CTA BUTTON */
.about-cta {
    margin-top: 30px;
}

.btn-about {
    display: inline-block;
    padding: 16px 42px;
    background: linear-gradient(135deg, #1e90ff, #00f5ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
    letter-spacing: 0.5px;
}

.btn-about:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 245, 255, 0.5);
}



/* CARDS */
.section {
    padding: 100px 10%;
    text-align: center;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: 0.4s;
}

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

/* BACKGROUND DIVIDER LINE */
.stats-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1e90ff, #00f5ff, transparent);
    margin-bottom: 60px;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

/* STATS SECTION */
.stats-section {
    padding: 120px 8%;
    position: relative;
    overflow: hidden;
}

/* PARTICLE BACKGROUND */
.stats-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.08;
    z-index: 0;
}

/* CONTAINER */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* STAT CARD */
.stat-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 50px 40px;
    text-align: center;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(30, 144, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* GLOWING BORDER EFFECT */
.stat-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 25px;
    background: linear-gradient(135deg, #1e90ff, #00f5ff, #1e90ff);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(15px);
}

.stat-card:hover::before {
    opacity: 0.7;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 245, 255, 0.2);
}

/* NUMBER STYLE */
.stat-card h3 {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e90ff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-card p {
    margin-top: 12px;
    color: #a0a8c0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

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


/* HERO POSITION FIX */
.hero {
    position: relative;
    overflow: hidden;
}

/* FLOATING SHAPES CONTAINER */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* COMMON SHAPE STYLE */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.7;
    animation: float 8s ease-in-out infinite alternate;
}

/* SHAPE 1 */
.shape1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00f5ff, #0066ff);
    top: 10%;
    left: 15%;
}

/* SHAPE 2 */
.shape2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ff00ff, #8000ff);
    bottom: 15%;
    right: 20%;
    animation-delay: 2s;
}

/* SHAPE 3 */
.shape3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #00ff99, #00cc66);
    top: 40%;
    right: 40%;
    animation-delay: 4s;
}

/* FLOATING ANIMATION */
@keyframes float {
    from {
        transform: translateY(0px) translateX(0px) scale(1);
    }

    to {
        transform: translateY(-40px) translateX(30px) scale(1.1);
    }
}

/* KEEP TEXT ABOVE SHAPES */
/* HERO */
.hero {
    position: relative;
    overflow: hidden;
}

/* WRAPPER */
.ring-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

/* COMMON GLASS RING STYLE */
.glass-ring {
    position: absolute;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            rgba(0, 245, 255, 0.6),
            rgba(255, 0, 255, 0.6),
            rgba(0, 255, 153, 0.6),
            rgba(0, 102, 255, 0.6),
            rgba(0, 245, 255, 0.6));
    animation: rotateRing linear infinite;
    backdrop-filter: blur(20px);
    opacity: 0.6;
}

/* Hollow Center */
.glass-ring::before {
    content: "";
    position: absolute;
    inset: 50px;
    background: rgba(15, 12, 41, 0.85);
    border-radius: 50%;
    backdrop-filter: blur(30px);
}

/* Soft Glow */
.glass-ring::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow:
        0 0 30px rgba(255, 0, 255, 0.4),
        0 0 60px rgba(0, 255, 255, 0.3),
        inset 0 0 40px rgba(255, 255, 255, 0.1);
}


/* MAIN BIG RING */
.main-ring {
    width: 500px;
    height: 500px;
    animation-duration: 15s;
}

/* SMALL RINGS */
.small-ring {
    width: 200px;
    height: 200px;
}

/* POSITION SMALL RINGS */
.ring1 {
    top: 15%;
    left: 20%;
    animation-duration: 10s;
}

.ring2 {
    bottom: 20%;
    right: 25%;
    animation-duration: 12s;
    animation-direction: reverse;
}

.ring3 {
    top: 50%;
    right: 15%;
    animation-duration: 18s;
}

/* ROTATION */
@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

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

/* Keep Text Above */
.hero-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 36px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 16px;
    }

    .glass-ring.main-ring {
        width: 300px;
        height: 300px;
    }

    .small-ring {
        width: 120px;
        height: 120px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        margin-right: 0;
    }
}

/* SERVICES SECTION */
.services-section {
    padding: 120px 8%;
    position: relative;
    overflow: hidden;
}

/* Divider */
.services-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1e90ff, #00f5ff, transparent);
    margin-bottom: 60px;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

/* Header */
.services-header {
    text-align: center;
    max-width: 800px;
    margin: auto;
    animation: fadeInDown 0.8s ease;
}

.services-header h2 {
    font-size: 48px;
    margin-top: 10px;
    background: linear-gradient(135deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header p {
    margin-top: 20px;
    color: #a0a8c0;
    font-size: 16px;
    line-height: 1.8;
}

/* Grid */
.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

/* Card */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(30, 144, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Glow Border Effect */
.service-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 25px;
    background: linear-gradient(135deg, #1e90ff, #00f5ff, #1e90ff);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(15px);
}

.service-card:hover::before {
    opacity: 0.8;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 245, 255, 0.2);
}

/* Icon */
.service-icon {
    font-size: 48px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.2), rgba(0, 245, 255, 0.2));
    border-radius: 18px;
    border: 2px solid rgba(0, 245, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.4), rgba(0, 245, 255, 0.4));
    border-color: rgba(0, 245, 255, 0.6);
    transform: scale(1.1) rotate(5deg);
}

/* Text */
.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    color: white;
    transition: color 0.3s ease;
}

.service-card p {
    color: #a0a8c0;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Service List */
.service-list {
    list-style: none;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 245, 255, 0.1);
}

.service-list li {
    color: #96d8ff;
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00f5ff;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.service-card:hover .service-list li {
    transform: translateX(5px);
    color: #00f5ff;
}

.service-list li:last-child {
    margin-bottom: 0;
}

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

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

    .services-header h2 {
        font-size: 32px;
    }
}

/* SERVICES BACKGROUND ANIMATION */
.services-section {
    position: relative;
    padding: 120px 8%;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, #0f0c29, #1a1446, #0f0c29);
    background-size: 600% 600%;
    animation: gradientMove 15s ease infinite;
    z-index: 0;
}

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

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

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

.services-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
    z-index: 1;
}


/* SERVICES CTA */
.services-cta {
    text-align: center;
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

.btn-services {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, #1e90ff, #00f5ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.3);
}

.btn-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00f5ff, #1e90ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-services:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.5);
}

.btn-services:hover::before {
    opacity: 1;
}

/* SERVICES SECTION BASE */
.services-section {
    position: relative;
    padding: 120px 8%;
    overflow: hidden;
    z-index: 1;
}

/* ANIMATED GRADIENT BACKGROUND */
.services-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg,
            #0f0c29,
            #1a1446,
            #1c1b4b,
            #0f0c29);
    background-size: 600% 600%;
    animation: gradientShift 18s ease infinite;
    z-index: 0;
}

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

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

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

/* SUBTLE PARTICLE LAYER */
.services-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px,
            transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    animation: particleDrift 40s linear infinite;
    z-index: 0;
}

@keyframes particleDrift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 200px 200px;
    }
}

.services-header,
.services-container,
.services-divider,
.services-cta {
    position: relative;
    z-index: 2;
}

/* SUPPORT SECTION */
.support-section {
    position: relative;
    padding: 120px 8%;
    overflow: hidden;
}

/* Background Gradient */
.support-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, #0f0c29, #1c1b4b, #0f0c29);
    background-size: 600% 600%;
    animation: gradientShift 20s ease infinite;
    z-index: 0;
}

/* Subtle Particle Grid */
.support-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    animation: particleDrift 50s linear infinite;
    z-index: 0;
}

/* Divider */
.support-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f5ff, #1e90ff, transparent);
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

/* Header */
.support-header {
    text-align: center;
    max-width: 800px;
    margin: auto;
    position: relative;
    z-index: 2;
    animation: fadeInDown 0.8s ease;
}

.support-header h2 {
    font-size: 48px;
    margin-top: 10px;
    background: linear-gradient(135deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-header p {
    margin-top: 20px;
    color: #a0a8c0;
    font-size: 16px;
    line-height: 1.8;
}

/* Cards */
.support-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

.support-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(30, 144, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 25px;
    background: linear-gradient(135deg, #00f5ff, #1e90ff, #00f5ff);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(15px);
}

.support-card:hover::before {
    opacity: 0.6;
}

.support-card:hover {
    transform: translateY(-18px) scale(1.03);
    border-color: rgba(0, 245, 255, 0.6);
    box-shadow: 0 30px 60px rgba(0, 245, 255, 0.25);
}

.support-icon {
    font-size: 52px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.15), rgba(30, 144, 255, 0.15));
    border-radius: 20px;
    border: 2px solid rgba(0, 245, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.support-card:hover .support-icon {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.35), rgba(30, 144, 255, 0.35));
    border-color: rgba(0, 245, 255, 0.7);
    transform: scale(1.15) rotateY(10deg);
}

.support-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.support-card p {
    color: #a0a8c0;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* CTA */
.support-cta {
    text-align: center;
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

.btn-support {
    padding: 16px 45px;
    background: linear-gradient(135deg, #00f5ff, #1e90ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.3);
    display: inline-block;
}

.btn-support::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e90ff, #00f5ff);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-support:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.5);
}

.btn-support:hover::before {
    opacity: 1;
}

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

    .support-header h2 {
        font-size: 32px;
    }
}

/* CONTACT SECTION */
.contact-section {
    position: relative;
    padding: 120px 8%;
    overflow: hidden;
}

/* Animated Background */
.contact-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, #0f0c29, #1a1446, #0f0c29);
    background-size: 600% 600%;
    animation: gradientShift 25s ease infinite;
    z-index: 0;
}

/* Particle Grid */
.contact-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    animation: particleDrift 60s linear infinite;
    z-index: 0;
}

/* Divider */
.contact-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1e90ff, #00f5ff, transparent);
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

/* Header */
.contact-header {
    text-align: center;
    max-width: 800px;
    margin: auto;
    position: relative;
    z-index: 2;
    animation: fadeInDown 0.8s ease;
}

.contact-header h2 {
    font-size: 52px;
    margin-top: 10px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    margin-top: 20px;
    color: #b0b8d0;
    font-size: 16px;
    line-height: 1.8;
}

/* Container */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

/* Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(30, 144, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 25px;
    background: linear-gradient(135deg, #1e90ff, #00f5ff, #1e90ff);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(15px);
}

.contact-info:hover::before {
    opacity: 0.5;
}

.contact-block {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-block:hover {
    transform: translateX(8px);
}

.contact-info h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #00f5ff;
    letter-spacing: 0.5px;
}

.contact-info p {
    margin-bottom: 12px;
    color: #a0a8c0;
    font-size: 15px;
    line-height: 1.7;
}

.company-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.address {
    color: #b0b8d0;
    font-size: 14px;
    line-height: 1.9;
}

.contact-info small {
    color: #8a92a8;
    font-size: 13px;
}

.contact-info strong {
    color: #00f5ff;
    font-weight: 700;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(30, 144, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.input-group {
    margin-bottom: 22px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 12px;
    border: 2px solid rgba(0, 245, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: white;
    outline: none;
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #7a82a0;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #00f5ff;
    background: rgba(0, 245, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
}

/* Button */
.btn-contact {
    padding: 16px 45px;
    background: linear-gradient(135deg, #1e90ff, #00f5ff);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

.btn-contact:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 245, 255, 0.5);
}

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

    .contact-header h2 {
        font-size: 32px;
    }
}

.contact-map {
    margin-top: 70px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 245, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.15);
    transition: all 0.4s ease;
}

.contact-map:hover {
    box-shadow: 0 15px 60px rgba(0, 245, 255, 0.25);
}

.map-label {
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15), rgba(0, 245, 255, 0.1));
    border-bottom: 2px solid rgba(0, 245, 255, 0.2);
    color: #b0b8d0;
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
    border-radius: 20px 20px 0 0;
    transition: all 0.3s ease;
}

.map-label strong {
    display: block;
    color: #00f5ff;
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.form-success {
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(0, 255, 153, 0.1);
    border: 2px solid rgba(0, 255, 153, 0.5);
    border-radius: 12px;
    color: #00ff99;
    display: none;
    animation: fadeInSuccess 0.5s ease forwards;
    font-weight: 600;
    text-align: center;
}

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

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

.footer {
    position: relative;
    padding: 100px 8% 40px;
    background: #0f0c29;
    color: white;
    overflow: hidden;
    border-top: 1px solid rgba(0, 245, 255, 0.1);
}

.footer-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 144, 255, 0.05), rgba(0, 245, 255, 0.02));
    opacity: 1;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

.footer h3 {
    font-size: 18px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer h4 {
    font-size: 14px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00f5ff;
    font-weight: 700;
}

.footer-contact p {
    margin-bottom: 14px;
}

.footer-contact p strong {
    color: #00f5ff;
    font-weight: 700;
}

.footer-contact p:first-of-type strong {
    color: white;
    font-size: 15px;
    display: block;
    margin-bottom: 8px;
}

.footer p,
.footer a {
    color: #a0a8c0;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.8;
    transition: all 0.3s ease;
}

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

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

.footer a:hover {
    color: #00f5ff;
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #6a7080;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: whatsappPulse 2s infinite;
    transition: 0.3s ease;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

/* Hover */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.5);
}

/* Pulse Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

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