* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0f172a;
    color: #e2e8f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}



/* Header Transparency */
header {
    width: 100%;
    min-height: 90px;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

/* Logo Section */
.uper-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.uper-logo img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: contain;
    border: 2px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

.uper-logo img:hover {
    transform: scale(1.05);
}

.logo-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 1;
}

.tag {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 2px;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
    animation: slide 3s infinite linear;
}

@keyframes slide {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: 200px 0;
    }
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

nav ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease;
    padding: 15px 20px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

nav ul li a:hover {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.1);
}

nav ul li a.active-ul {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.15);
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav ul li a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Share Button with Dropdown */
.uper-icon {
    flex-shrink: 0;
    position: relative;
}

.uper-icon button {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    cursor: pointer;
    padding: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #60a5fa;
    font-size: 18px;
}

.uper-icon button:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    transform: scale(1.05);
}

/* Dropdown Styling */
.drop-down {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 10px;
    padding: 15px;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.uper-icon:hover .drop-down {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Social Links */
.socail-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.l1 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 6px;
    color: #cbd5e1;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.l1:hover {
    background-color: rgba(59, 130, 246, 0.1);
    color: #ffffff;
    transform: translateX(5px);
}

.l1 a {
    color: inherit;
    text-decoration: none;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.l1 i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

/* Social Media Specific Colors */
.l1:nth-child(1) i {
    color: #1877f2;
}

.l1:nth-child(2) i {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.l1:nth-child(3) i {
    color: #0a66c2;
}

.l1:nth-child(4) i {
    color: #1da1f2;
}

/* Dropdown Arrow */
.drop-down::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background-color: #1e293b;
    border-left: 1px solid #334155;
    border-top: 1px solid #334155;
}

.hero-section {
    width: 100%;
    height: 800px;
    background-image: url("./images/main-bg.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Hero Section Styling */
.hero {
    width: 100%;
    height: 650px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.p1 {
    width: 50%;
    height: 100px;
    flex: 1;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Left Content */
.p1:first-child {
    animation: fadeInLeft 1s ease;
}

/* Uper-s Section Styling */
.uper-s {
    width: 90%;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.indicator-container {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(30, 41, 59, 0.7);
    padding: 12px 25px;
    border-radius: 12px;
    border: 1px solid rgba(20, 216, 36, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: slideInFromLeft 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.indicator-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(20, 216, 36, 0.1),
            transparent);
    animation: shimmer 3s infinite;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #4dec03, #06910d);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.indicator-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(20, 216, 36, 0.2);
    animation: ripple 2s infinite;
    z-index: -1;
}

.indicator-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-me {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.experience-tag {
    font-size: 12px;
    color: #b0f7b5;
    font-weight: 500;
    background: rgba(20, 216, 36, 0.15);
    padding: 2px 10px;
    border-radius: 4px;
    border-left: 2px solid #4dec03;
    display: inline-block;
    margin-top: 2px;
    animation: fadeIn 1s ease 0.5s both;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(77, 236, 3, 0.7);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(8, 82, 5, 0.3);
    }
}

@keyframes ripple {
    0% {
        width: 20px;
        height: 20px;
        opacity: 0.5;
    }

    100% {
        width: 40px;
        height: 40px;
        opacity: 0;
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
.indicator-container:hover {
    transform: translateY(-2px);
    border-color: rgba(20, 216, 36, 0.5);
    box-shadow: 0 8px 25px rgba(20, 216, 36, 0.2);
    transition: all 0.3s ease;
}

.indicator-container:hover .indicator-dot {
    animation: pulse 0.5s infinite;
}

/* Responsive Design for Indicator */
@media (max-width: 768px) {
    .indicator-container {
        padding: 10px 20px;
        gap: 12px;
    }

    .about-me {
        font-size: 14px;
    }

    .experience-tag {
        font-size: 11px;
        padding: 2px 8px;
    }
}

@media (max-width: 480px) {
    .indicator-container {
        padding: 8px 15px;
        width: 100%;
        justify-content: flex-start;
    }
}

/* Responsive Design for Indicator */
@media (max-width: 768px) {
    .indicator-container {
        padding: 10px 15px;
        gap: 12px;
    }

    .about-me {
        font-size: 14px;
    }

    .experience-tag {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .indicator-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .indicator-dot {
        align-self: center;
    }
}

.uper-heading {
    width: 90%;
    height: 120px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.heading {
    display: flex;
    font-size: 1.5rem;
    background: linear-gradient(90deg, #60a5fa, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.uper-para {
    width: 90%;
    height: 130px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.para {
    width: 80%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: start;
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 600px;
}

.uper-btn {
    width: 90%;
    height: 100px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.uper-btn button {
    height: 50px;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.uper-btn button:first-child {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.uper-btn button:first-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.uper-btn button:last-child {
    background: transparent;
    color: #60a5fa;
}

.uper-btn button:last-child:hover {
    border-color: #60a5fa;
    transform: translateY(-3px);
}

/* Right Image */
.p1:last-child {
    animation: fadeInRight 1s ease 0.3s;
    animation-fill-mode: both;
}

.uper-man {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uper-man img {
    width: 50%;
    border-radius: 20px;
    transform: perspective(1000px);
    transition: transform 0.5s ease;
    transform: scale(1.5);
}

.uper-man img:hover {
    transform: perspective(1000px);
}



/* Partner section style Here */


.uper-partner {
    width: 100%;
    height: 500px;
    background-color: white;
}




















/* Features Section */
.features-section {
    width: 100%;
    padding: 100px 5%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Section Header */
.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(20, 216, 36, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(20, 216, 36, 0.3);
    backdrop-filter: blur(10px);
}

.section-dot {
    width: 8px;
    height: 8px;
    background: #4dec03;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.section-indicator span {
    color: #b0f7b5;
    font-size: 14px;
    font-weight: 500;
}

.section-title {
    font-size: 3.5rem;
    background: linear-gradient(90deg, #60a5fa, #4dec03);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-weight: 700;
}

.highlight {
    color: #4dec03;
    -webkit-text-fill-color: #4dec03;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Feature Card */
.feature-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(20, 216, 36, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(20, 216, 36, 0.1),
        0 0 50px rgba(20, 216, 36, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4dec03, #06910d);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* Feature Icon */
.feature-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: rgba(20, 216, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 2px solid rgba(20, 216, 36, 0.2);
}

.feature-icon i {
    font-size: 28px;
    color: #4dec03;
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(20, 216, 36, 0.2);
    animation: iconPulse 2s infinite;
}

/* Feature Content */
.feature-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-desc {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Progress Bar */
.feature-progress {
    margin: 25px 0;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #4dec03, #06910d);
    border-radius: 3px;
    animation: fillProgress 1.5s ease-out forwards;
}

.feature-progress span {
    font-size: 12px;
    color: #b0f7b5;
    font-weight: 500;
}

/* Feature Button */
.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #4dec03;
    border: 1px solid rgba(20, 216, 36, 0.3);
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.feature-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 216, 36, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-btn:hover {
    background: rgba(20, 216, 36, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(20, 216, 36, 0.2);
}

.feature-btn:hover::before {
    left: 100%;
}

.feature-btn i {
    transition: transform 0.3s ease;
}

.feature-btn:hover i {
    transform: translateX(5px);
}

/* Hover Effect */
.feature-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(20, 216, 36, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover .feature-hover-effect {
    opacity: 1;
}

/* Background Elements */
.features-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: #4dec03;
    top: 10%;
    left: 10%;
    animation: floatOrb 20s infinite linear;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: #3b82f6;
    bottom: 20%;
    right: 10%;
    animation: floatOrb 25s infinite linear reverse;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: #8b5cf6;
    top: 50%;
    left: 80%;
    animation: floatOrb 30s infinite linear;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
}

/* Animations */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes fillProgress {
    to {
        width: var(--progress-width, 95%);
    }
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(50px, -50px);
    }

    50% {
        transform: translate(0, -100px);
    }

    75% {
        transform: translate(-50px, -50px);
    }
}

/* AOS Animation Classes */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.8rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .feature-title {
        font-size: 1.3rem;
    }
}








/* Services Section */
.services-section {
    width: 100%;
    padding: 120px 5%;
    background: linear-gradient(135deg,
            #0f172a 0%,
            #1e293b 50%,
            #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Section Header */
.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header .section-indicator {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg,
            rgba(20, 216, 36, 0.1),
            rgba(59, 130, 246, 0.1));
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(20, 216, 36, 0.2);
    backdrop-filter: blur(10px);
}

.services-header .section-dot {
    width: 8px;
    height: 8px;
    background: #4dec03;
    border-radius: 50%;
    position: relative;
}

.services-header .section-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid #4dec03;
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

.services-header .section-indicator span {
    color: #b0f7b5;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.services-header .section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(90deg,
            #ffffff 0%,
            #60a5fa 30%,
            #4dec03 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header .highlight {
    position: relative;
    display: inline-block;
}

.services-header .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg,
            rgba(77, 236, 3, 0.3),
            transparent);
    border-radius: 4px;
    z-index: -1;
}

.services-header .section-subtitle {
    font-size: 1.3rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Service Card */
.service-card {
    background: linear-gradient(145deg,
            rgba(30, 41, 59, 0.8) 0%,
            rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 24px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(20, 216, 36, 0.4);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(20, 216, 36, 0.2),
        0 0 80px rgba(20, 216, 36, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            #4dec03,
            #3b82f6,
            transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Service Icon */
.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.icon-circle {
    width: 100%;
    height: 100%;
    background: rgba(20, 216, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(20, 216, 36, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover .icon-circle {
    background: rgba(20, 216, 36, 0.2);
    border-color: rgba(20, 216, 36, 0.4);
    transform: scale(1.1);
}

.icon-circle i {
    font-size: 32px;
    color: #4dec03;
    transition: all 0.3s ease;
}

.service-card:hover .icon-circle i {
    color: #ffffff;
    transform: scale(1.1);
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(77, 236, 3, 0.1);
    border-radius: 50%;
    animation: iconPulse 3s infinite;
    z-index: 1;
}

/* Service Content */
.service-title {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.service-desc {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-desc {
    color: #cbd5e1;
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-features li {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover .service-features li {
    border-bottom-color: rgba(77, 236, 3, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-features li i {
    color: #4dec03;
    font-size: 12px;
    background: rgba(77, 236, 3, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-features li i {
    background: rgba(77, 236, 3, 0.2);
    transform: scale(1.1);
}

/* Service CTA */
.service-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #4dec03, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(20, 216, 36, 0.1);
    color: #4dec03;
    border: 1px solid rgba(20, 216, 36, 0.3);
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(20, 216, 36, 0.2),
            transparent);
    transition: left 0.6s ease;
}

.service-btn:hover {
    background: rgba(20, 216, 36, 0.2);
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(20, 216, 36, 0.2);
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Service Hover Effect */
.service-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%,
            rgba(77, 236, 3, 0.05) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover .service-hover {
    opacity: 1;
}

/* Background Elements */
.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    animation: floatCircle 20s infinite linear;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: #4dec03;
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: #3b82f6;
    bottom: 15%;
    right: 10%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: #8b5cf6;
    top: 60%;
    left: 15%;
    animation-duration: 35s;
}

.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(77, 236, 3, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    animation: particleFloat 20s linear infinite;
}

/* Animations */
@keyframes pulseDot {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

@keyframes floatCircle {
    0% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -20px);
    }

    66% {
        transform: translate(-20px, 30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .services-header .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 20px;
    }

    .services-header .section-title {
        font-size: 2.5rem;
    }

    .services-header .section-subtitle {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-cta {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .services-header .section-title {
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.4rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .icon-circle i {
        font-size: 28px;
    }
}














/* Why Choose Us Section */
.why-choose-us {
    width: 100%;
    padding: 120px 5%;
    background: linear-gradient(135deg,
            #0a0f1a 0%,
            #0f172a 30%,
            #1a233d 100%);
    position: relative;
    overflow: hidden;
}

.choose-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Background Elements */
.choose-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.choose-bg .bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: floatOrb 25s infinite linear;
}

.choose-bg .orb-1 {
    width: 400px;
    height: 400px;
    background: #4dec03;
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.choose-bg .orb-2 {
    width: 300px;
    height: 300px;
    background: #3b82f6;
    bottom: 25%;
    right: 10%;
    animation-delay: -5s;
    animation-direction: reverse;
}

.choose-bg .orb-3 {
    width: 250px;
    height: 250px;
    background: #8b5cf6;
    top: 60%;
    left: 80%;
    animation-delay: -10s;
}

.choose-bg .bg-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

/* Section Header */
.choose-header {
    text-align: center;
    margin-bottom: 80px;
}

.choose-indicator {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg,
            rgba(20, 216, 36, 0.1),
            rgba(59, 130, 246, 0.1));
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(20, 216, 36, 0.2);
    backdrop-filter: blur(10px);
    animation: indicatorFloat 3s ease-in-out infinite;
}

.choose-indicator .indicator-dot {
    width: 8px;
    height: 8px;
    background: #4dec03;
    border-radius: 50%;
    position: relative;
}

.choose-indicator .indicator-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid #4dec03;
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

.choose-indicator span {
    color: #b0f7b5;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.choose-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(90deg,
            #ffffff 0%,
            #60a5fa 30%,
            #4dec03 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.choose-subtitle {
    font-size: 1.3rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Content Layout */
.choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

/* Left Side - Image */
.choose-image {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: radial-gradient(circle, #0ac749 1px, rgba(0, 0, 0, 0) 1px);
    background-size: 20px 20px;


}

.img2 {
    transform: scale(1.2);
    filter: drop-shadow(20px 0px 1px rgba(54, 189, 13, 0.5));
    animation-name: changeshadow;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

.image-container {
    position: relative;
    height: 600px;
}

.main-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame {
    width: 80%;
    height: 80%;
    background: linear-gradient(145deg,
            rgba(30, 41, 59, 0.8) 0%,
            rgba(15, 23, 42, 0.9) 100%);
    border-radius: 30px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 60px;
}

.image-placeholder i {
    font-size: 48px;
    color: rgba(77, 236, 3, 0.3);
    animation: iconFloat 6s ease-in-out infinite;
}

.image-placeholder i:nth-child(1) {
    animation-delay: 0s;
    color: #4dec03;
}

.image-placeholder i:nth-child(2) {
    animation-delay: -2s;
    color: #3b82f6;
}

.image-placeholder i:nth-child(3) {
    animation-delay: -4s;
    color: #8b5cf6;
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
            rgba(77, 236, 3, 0.1) 0%,
            transparent 70%);
    animation: glowPulse 4s ease-in-out infinite alternate;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg,
            rgba(77, 236, 3, 0.1),
            rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(77, 236, 3, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: floatElement 8s ease-in-out infinite;
}

.floating-element i {
    font-size: 28px;
    color: #4dec03;
}

.floating-element.elem-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(77, 236, 3, 0.1);
    border-color: rgba(77, 236, 3, 0.3);
}

.floating-element.elem-2 {
    top: 70%;
    right: 15%;
    animation-delay: -2s;
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.floating-element.elem-2 i {
    color: #3b82f6;
}

.floating-element.elem-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: -4s;
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.floating-element.elem-3 i {
    color: #8b5cf6;
}

/* Right Side - Reasons */
.choose-reasons {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Reason Card */
.reason-card {
    background: linear-gradient(145deg,
            rgba(30, 41, 59, 0.8) 0%,
            rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    gap: 20px;
}

.reason-card:hover {
    transform: translateX(10px);
    border-color: rgba(20, 216, 36, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(20, 216, 36, 0.2),
        0 0 50px rgba(20, 216, 36, 0.1);
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #4dec03, #3b82f6);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.reason-card:hover::before {
    transform: scaleY(1);
}

/* Reason Number */
.reason-number {
    position: relative;
    flex-shrink: 0;
}

.reason-number span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,
            rgba(77, 236, 3, 0.1),
            rgba(59, 130, 246, 0.1));
    color: #4dec03;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    border: 1px solid rgba(77, 236, 3, 0.2);
    transition: all 0.3s ease;
}

.reason-card:hover .reason-number span {
    background: linear-gradient(135deg, #4dec03, #3b82f6);
    color: white;
}

.number-line {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 90px);
    background: linear-gradient(to bottom,
            transparent,
            rgba(77, 236, 3, 0.3),
            transparent);
}

.reason-card:last-child .number-line {
    display: none;
}

/* Reason Content */
.reason-content {
    flex: 1;
}

.reason-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.reason-desc {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Reason stas */
.reason-stats {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.reason-stats .stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reason-stats .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #4dec03, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reason-stats .stat-label {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Reason Features */
.reason-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.feature-tag {
    background: rgba(77, 236, 3, 0.1);
    color: #b0f7b5;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(77, 236, 3, 0.2);
    transition: all 0.3s ease;
}

.reason-card:hover .feature-tag {
    background: rgba(77, 236, 3, 0.2);
    border-color: rgba(77, 236, 3, 0.4);
}

/* Tech Stack */
.tech-stack {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.tech-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tech-icon i {
    font-size: 18px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.reason-card:hover .tech-icon {
    background: rgba(77, 236, 3, 0.1);
    transform: translateY(-5px);
}

.reason-card:hover .tech-icon i {
    color: #4dec03;
}

/* Support Features */
.support-features {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-item i {
    color: #4dec03;
    font-size: 16px;
}

.support-item span {
    color: #cbd5e1;
    font-size: 14px;
}

/* Reason Hover Effect */
.reason-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%,
            rgba(77, 236, 3, 0.05) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.reason-card:hover .reason-hover {
    opacity: 1;
}

/* Bottom Stats */
.choose-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(30, 41, 59, 0.5);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 216, 36, 0.3);
    background: rgba(30, 41, 59, 0.7);
}

.stat-icon {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 32px;
    color: #4dec03;
    position: relative;
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(77, 236, 3, 0.1);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #4dec03, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 500;
}

/* Animations */
@keyframes indicatorFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes pulseDot {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(40px, -30px);
    }

    50% {
        transform: translate(0, -60px);
    }

    75% {
        transform: translate(-40px, -30px);
    }

    100% {
        transform: translate(0, 0);
    }
}


@keyframes glowPulse {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.7;
    }
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0);
    }

    33% {
        transform: translateY(-20px);
    }

    66% {
        transform: translateY(10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .choose-content {
        gap: 40px;
    }

    .choose-title {
        font-size: 3rem;
    }

    .image-container {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .choose-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .image-container {
        height: 400px;
    }

    .choose-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 80px 20px;
    }

    .choose-title {
        font-size: 2.5rem;
    }

    .choose-subtitle {
        font-size: 1.1rem;
    }

    .image-container {
        height: 300px;
    }

    .image-placeholder {
        padding: 30px;
        gap: 20px;
    }

    .image-placeholder i {
        font-size: 32px;
    }

    .floating-element {
        width: 50px;
        height: 50px;
    }

    .floating-element i {
        font-size: 20px;
    }

    .reason-card {
        padding: 25px;
    }

    .choose-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .choose-title {
        font-size: 2rem;
    }

    .reason-card {
        flex-direction: column;
        gap: 15px;
    }

    .reason-number span {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .number-line {
        left: 25px;
        top: 60px;
        height: calc(100% - 70px);
    }

    .reason-stats {
        flex-direction: column;
        gap: 15px;
    }

    .support-features {
        flex-direction: column;
        gap: 15px;
    }

    .stat-item {
        padding: 25px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon i {
        font-size: 28px;
    }

    .stat-number {
        font-size: 2rem;
    }
}



/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 40%;
    right: 15%;
    width: 150px;
    height: 150px;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    width: 80px;
    height: 80px;
    animation-delay: -10s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero {
        padding: 100px 5% 60px;
    }

    .heading {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .p1 {
        width: 100%;
        min-height: auto;
    }

    .uper-man {
        height: 400px;
    }

    nav ul {
        gap: 5px;
    }

    nav ul li a {
        padding: 12px 15px;
        font-size: 14px;
    }

    .uper-btn {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 20px;
        min-height: 70px;
    }

    .hero {
        padding: 90px 20px 40px;
        margin-top: 70px;
    }

    .heading {
        font-size: 2.5rem;
    }

    .para {
        font-size: 1rem;
    }

    .uper-btn button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .uper-man {
        height: 350px;
    }

    nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }

    nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .uper-logo {
        order: 1;
    }

    .uper-icon {
        order: 2;
    }
}

@media (max-width: 480px) {
    .heading {
        font-size: 2rem;
    }

    .uper-btn {
        flex-direction: column;
        align-items: center;
    }

    .uper-btn button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .uper-man {
        height: 300px;
    }

    .logo {
        font-size: 22px;
    }

    .tag {
        font-size: 12px;
    }
}

/* Chip Loader Container */
.chip-loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.chip-loader-container.hidden {
    opacity: 0;
    pointer-events: none;
}

.chip-loader-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding: 40px;
}

/* Animated Background */
.loader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 20s linear infinite;
}

.bg-orbits {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(77, 236, 3, 0.1);
    border-radius: 50%;
    animation: orbitRotate 20s linear infinite;
}

.orbit-1 {
    width: 400px;
    height: 400px;
    top: 0;
    left: 100px;
    animation-delay: 0s;
}

.orbit-2 {
    width: 500px;
    height: 300px;
    top: 50px;
    left: 50px;
    animation-delay: -5s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 300px;
    height: 500px;
    top: -50px;
    left: 150px;
    animation-delay: -10s;
}

/* Main Chip Loader */
.chip-loader {
    position: relative;
    z-index: 2;
    text-align: center;
}

.chip-loader svg {
    width: 100%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 0 30px rgba(77, 236, 3, 0.1));
}

/* Circuit Traces */
.trace-bg {
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 2;
    fill: none;
}

.trace-flow {
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 40 400;
    stroke-dashoffset: 438;
    filter: drop-shadow(0 0 8px currentColor);
    animation: flow 3s cubic-bezier(0.5, 0, 0.9, 1) infinite;
}

.yellow {
    stroke: #fbbf24;
    color: #fbbf24;
}

.blue {
    stroke: #3b82f6;
    color: #3b82f6;
}

.green {
    stroke: #4dec03;
    color: #4dec03;
}

.purple {
    stroke: #8b5cf6;
    color: #8b5cf6;
}

.red {
    stroke: #ef4444;
    color: #ef4444;
}

/* Chip Body */
.chip-body {
    animation: chipPulse 2s ease-in-out infinite;
}

/* Chip Text */
.chip-text {
    font-weight: 600;
    letter-spacing: 1px;
    animation: textGlow 2s ease-in-out infinite;
}

/* Chip Pins */
.chip-pin {
    stroke: #475569;
    stroke-width: 0.5;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.6));
    animation: pinGlow 2s ease-in-out infinite;
}

.pins-left .chip-pin:nth-child(1) {
    animation-delay: 0s;
}

.pins-left .chip-pin:nth-child(2) {
    animation-delay: 0.1s;
}

.pins-left .chip-pin:nth-child(3) {
    animation-delay: 0.2s;
}

.pins-left .chip-pin:nth-child(4) {
    animation-delay: 0.3s;
}

.pins-right .chip-pin:nth-child(1) {
    animation-delay: 0.4s;
}

.pins-right .chip-pin:nth-child(2) {
    animation-delay: 0.5s;
}

.pins-right .chip-pin:nth-child(3) {
    animation-delay: 0.6s;
}

.pins-right .chip-pin:nth-child(4) {
    animation-delay: 0.7s;
}

/* Connection Points */
.connection-points circle {
    animation: pointPulse 2s ease-in-out infinite;
}

.connection-points circle:nth-child(1) {
    animation-delay: 0s;
}

.connection-points circle:nth-child(2) {
    animation-delay: 0.2s;
}

.connection-points circle:nth-child(3) {
    animation-delay: 0.4s;
}

.connection-points circle:nth-child(4) {
    animation-delay: 0.6s;
}

.connection-points circle:nth-child(5) {
    animation-delay: 0.8s;
}

.connection-points circle:nth-child(6) {
    animation-delay: 1s;
}

.connection-points circle:nth-child(7) {
    animation-delay: 1.2s;
}

.connection-points circle:nth-child(8) {
    animation-delay: 1.4s;
}

/* Animated Dots */
.animated-dots {
    animation: dotsRotate 5s linear infinite;
}

.dot {
    animation: dotPulse 1.5s ease-in-out infinite;
}

.dot-1 {
    animation-delay: 0s;
}

.dot-2 {
    animation-delay: 0.5s;
}

.dot-3 {
    animation-delay: 1s;
}

/* Progress Ring */
.progress-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    opacity: 0.5;
}

.progress-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3;
}

.progress-bar {
    fill: none;
    stroke: url(#textGradient);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: progressFill 3s ease-in-out infinite;
}

/* Loading Text */
.loading-text {
    margin-top: 40px;
    text-align: center;
}

.text-static {
    display: block;
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 10px;
    font-weight: 500;
}

.text-dynamic {
    display: block;
    font-size: 1.5rem;
    color: #4dec03;
    font-weight: 600;
    min-height: 30px;
}

.text-dynamic::after {
    content: '';
    animation: typing 3s steps(40) infinite;
}

/* Loader Controls */
.loader-controls {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.control-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.control-btn.restart:hover {
    color: #4dec03;
    border-color: rgba(77, 236, 3, 0.3);
}

.control-btn.skip:hover {
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
}

.control-btn i {
    font-size: 16px;
}

/* Status Indicators */
.status-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.status-dot.active {
    background: #4dec03;
    box-shadow: 0 0 10px rgba(77, 236, 3, 0.5);
    animation: statusPulse 2s infinite;
}

.status-dot.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid #4dec03;
    border-radius: 50%;
    opacity: 0.5;
}

/* Animations */
@keyframes flow {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes chipPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(77, 236, 3, 0.1));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(77, 236, 3, 0.3));
    }
}

@keyframes textGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.8));
    }
}

@keyframes pinGlow {

    0%,
    100% {
        opacity: 0.7;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-2px);
    }
}

@keyframes pointPulse {

    0%,
    100% {
        r: 5;
        opacity: 0.7;
    }

    50% {
        r: 7;
        opacity: 1;
    }
}

@keyframes dotsRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes dotPulse {

    0%,
    100% {
        r: 2;
        opacity: 0.3;
    }

    50% {
        r: 4;
        opacity: 1;
    }
}

@keyframes progressFill {
    0% {
        stroke-dashoffset: 283;
    }

    50% {
        stroke-dashoffset: 70;
    }

    100% {
        stroke-dashoffset: 283;
    }
}

@keyframes typing {
    0% {
        content: '.';
    }

    33% {
        content: '..';
    }

    66% {
        content: '...';
    }

    100% {
        content: '.';
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 40px;
    }
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(77, 236, 3, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(77, 236, 3, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .chip-loader-wrapper {
        padding: 20px;
    }

    .loading-text {
        font-size: 0.9rem;
    }

    .status-indicators {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .loader-controls {
        flex-direction: column;
        align-items: center;
    }

    .control-btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .chip-loader svg {
        max-height: 300px;
    }

    .progress-ring {
        width: 150px;
        height: 150px;
    }

    .loading-text .text-static {
        font-size: 1rem;
    }

    .loading-text .text-dynamic {
        font-size: 1.2rem;
    }
}

/* Tube Cursor Styles */
#tube-cursor-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

#tube-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Disable cursor on canvas */
#tube-canvas:hover {
    cursor: none;
}

/* Hide default cursor when tube cursor is active */
body.tube-cursor-active {
    cursor: none !important;
}

/* Make sure your content stays on top */
.hero-section,
.features-section,
.services-section,
.why-choose-us,
.creative-testimonials,
.modern-testimonials,
.creative-testimonials {
    position: relative;
    z-index: 2;
}

/* Interactive elements should have pointer cursor */
a,
button,
.service-card,
.feature-card,
.reason-card,
.testimonial-card {
    cursor: pointer !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #tube-canvas {
        display: none;
        /* Hide on mobile for better performance */
    }

    body.tube-cursor-active {
        cursor: auto !important;
    }
}