/* :root {
      --primary-orange: #FF5F15;
      --secondary-orange: #FFA802;
      --gradient-primary: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
      --bg-dark: #0d163e;
      --text-light: #ffffff;
      --shadow-primary: 0 20px 40px rgba(255, 95, 21, 0.2);
      --border-orange: rgba(255, 95, 21, 0.3);
      --shadow-primary: 0 20px 40px rgba(255, 95, 21, 0.2);
      --shadow-hover: 0 25px 50px rgba(255, 95, 21, 0.3);
      --border-orange: rgba(255, 95, 21, 0.3);
      --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);




      --primary-color: #00D9FF;
      --secondary-color: #FF6B6B;
      --accent-color: #9D4EDD;
      --dark-bg: #192153;
      --darker-bg: #071038;
      --card-bg: #141B3A;
      --text-primary: #FFFFFF;
      --text-secondary: #B0B8D4;
      --gradient-1: linear-gradient(135deg, #00D9FF 0%, #0099FF 100%);
      --gradient-2: linear-gradient(135deg, #FF6B6B 0%, #FF3366 100%);
      --gradient-3: linear-gradient(135deg, #9D4EDD 0%, #7B2CBF 100%);
    } */





:root {
    --primary-orange: #FF5F15;
    --secondary-orange: #FFA802;
    --gradient-primary: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    --gradient-orange-1: linear-gradient(135deg, #ff5f1554 0%, #ff8c0071 100%);
    --gradient-orange-2: linear-gradient(135deg, #ffa6025e 0%, #ff6a0049 100%);
    --gradient-orange-3: linear-gradient(135deg, #ff944d3b 0%, #ff5f1542 100%);
    --bg-dark: #0d163e;
    --dark-bg: #192153;
    --darker-bg: #050d33;
    --text-light: #ffffff;
    --shadow-hover: 0 25px 50px rgba(255, 95, 21, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}


/* Hero Section */
/* Hero Section */
.hero-section {
    min-height: 75vh;
    padding: clamp(80px, 15vw, 100px) 0 clamp(60px, 12vw, 70px);
    margin-top: 5rem;
    border-bottom: 4px solid var(--primary-orange);
    border-radius: 0 0 30px 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-container {
    height: 100%;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 max(40px, 3vw);
    display: flex;
    align-items: center;
    width: 100%;
}


.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    justify-content: center;
    min-height: 56.5vh;
    width: 100%;
}

/* Left Content */
.hero-content {
    position: relative;
    margin-top: 0;
    max-width: 700px;
    width: 100%;
}

.hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: rgba(255, 95, 21, 0.1) !important;
    border: 2px solid rgba(255, 95, 21, 0.3) !important;
    color: var(--secondary-orange) !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 30px !important;
    backdrop-filter: blur(10px) !important;
    animation: slideInLeft 1s ease-out !important;
}

.hero-badge i {
    font-size: 16px !important;
    animation: pulse 2s infinite !important;
}


.hero-badge:hover {
    background: rgba(255, 95, 21, 0.2);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}





.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: slideInLeft 1.2s ease-out 0.3s both;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: expandLine 1.5s ease-out 1.5s both;
}

@keyframes expandLine {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}



.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.6 !important;
    margin-bottom: 35px !important;
    animation: slideInLeft 1.2s ease-out 0.6s both !important;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary-gradient {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: 18px 35px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
    color: white;
    text-decoration: none;
}

.btn-primary-gradient:hover::before {
    left: 100%;
}

.btn-outline-gradient {
    background: transparent;
    border: 2px solid var(--primary-orange);
    border-radius: 50px;
    padding: 16px 35px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-outline-gradient:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
    color: white;
    text-decoration: none;
    border-color: transparent;
}

.btn-outline-gradient:hover::before {
    left: 0;
}

/* Right Side - Visual Card */
/* Right Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-height: calc(100vh - 200px);
    width: 100%;
    max-width: 700px;
    justify-self: end;
}

.visual-card {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 95, 21, 0.05) 0%, transparent 50%, rgba(255, 168, 2, 0.05) 100%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.visual-card:hover::before {
    opacity: 1;
}

.visual-card:hover {
    border-color: var(--secondary-orange);
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(255, 95, 21, 0.3);
}

/* Main Visual Content */
.visual-content {
    height: 100%;
    display: flex;
    /* flex-direction: column; */
    position: relative;
    z-index: 2;
}

.visual-header {
    text-align: center;
    margin-bottom: 30px;
}

.visual-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.visual-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Central Visual Element */
.central-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px 0;
}

.main-image-container {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    overflow: hidden;
    /* border: 3px solid var(--primary-orange); */
    position: relative;
    /* box-shadow: 0 20px 40px rgba(255, 95, 21, 0.4); */
    transition: all 0.5s ease;
}

.main-image-container:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 60px rgba(255, 95, 21, 0.6);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.main-image-container:hover .main-image {
    transform: scale(1.1);
}

/* Floating Feature Cards */
.feature-card {
    position: absolute;
    background: rgba(13, 22, 62, 0.85);
    border: 2px solid rgba(255, 95, 21, 0.4);
    border-radius: 20px;
    padding: 20px 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    cursor: pointer;
    color: white !;
    min-width: 200px;
}

.feature-card:hover {
    background: rgba(255, 95, 21, 0.15);
    border-color: var(--primary-orange);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 95, 21, 0.5);
}

.feature-card.card-1 {
    top: 5%;
    left: 3%;
    /* animation: float 6s ease-in-out infinite; */
}

.feature-card.card-2 {
    top: 5%;
    right: 3%;
    /* animation: float 6s ease-in-out infinite 2s; */
}

.feature-card.card-3 {
    bottom: 5%;
    left: 3%;
    /* animation: float 6s ease-in-out infinite 4s; */
}

.feature-card.card-4 {
    bottom: 5%;
    right: 3%;
    /* animation: float 6s ease-in-out infinite 1s; */
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.feature-desc {
    font-size: 12px;
    color: #ffffff;
    line-height: 1.3;
}

/* Progress Path */
.progress-path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px dashed rgba(255, 95, 21, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.progress-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 95, 21, 0.8);
}

.dot-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.dot-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.dot-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.dot-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Bottom Visual Stats */
.visual-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.visual-stat {
    background: rgba(255, 95, 21, 0.1);
    border: 1px solid var(--border-orange);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.visual-stat:hover {
    background: rgba(255, 95, 21, 0.2);
    transform: translateY(-3px);
}

.visual-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-orange);
    margin-bottom: 5px;
    display: block;
}

.visual-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.4s;
}

.fade-in-up.delay-3 {
    animation-delay: 0.6s;
}

.fade-in-up.delay-4 {
    animation-delay: 0.8s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-layout {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .feature-card.card-1,
    .feature-card.card-3 {
        left: -20px;
    }

    .feature-card.card-2,
    .feature-card.card-4 {
        right: -20px;
    }
}

@media (max-width: 968px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-visual {
        order: -1;
        min-height: 500px;
    }

    .main-image-container {
        width: 250px;
        height: 250px;
    }

    .hero-stats {
        justify-content: center;
        max-width: 600px;
        margin: 30px auto 0;
    }
}

@media (max-width: 768px) {

    .hero-section {
        padding: 60px 0;
        min-height: 60vh;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-content {
        margin-top: 0.5rem;
    }

    .hero-layout {
        min-height: auto;
    }


    .hero-badge {
        padding: 10px 20px;
        font-size: 12px;
    }


    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary-gradient,
    .btn-outline-gradient {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .feature-card {
        position: relative;
        margin: 10px;
        display: none;
    }

    .visual-card {
        padding: 20px;
        min-height: 400px;
    }

    .main-image-container {
        width: 200px;
        height: 200px;
    }

    .progress-path {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0 40px;
    }
}

/* Service Cards */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: clamp(20px, 5vw, 30px);
    margin: clamp(30px, 6vw, 50px) 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-orange);
    border-radius: 25px;
    padding: clamp(25px, 5vw, 40px);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 168, 2, 0.5);
    box-shadow: var(--shadow-primary);
    background: rgba(255, 255, 255, 0.1);
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    width: clamp(60px, 12vw, 80px);
    height: clamp(60px, 12vw, 80px);
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: clamp(24px, 5vw, 32px);
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-icon img {
    width: clamp(30px, 6vw, 40px);
    height: clamp(30px, 6vw, 40px);
    object-fit: contain;
}


/* Services Overview Section */
.services-overview-section {
    position: relative;
    padding: clamp(60px, 8vw, 100px) 0;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

/* Background Elements */
.services-bg-wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.services-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 95, 21, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 95, 21, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridSlide 20s linear infinite;
}

@keyframes gridSlide {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(80px, 80px);
    }
}

.services-floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: orbPulse 8s ease-in-out infinite;
}

.orb-orange {
    width: 800px;
    height: 500px;
    background: var(--primary-orange);
    bottom: -100px;
    right: -100px;
}

.orb-yellow {
    width: 800px;
    height: 400px;
    background: var(--secondary-orange);
    bottom: -100px;
    left: -100px;
    animation-delay: 4s;
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.2) translateY(-30px);
    }
}

/* Section Header */
.services-header {
    text-align: center;
    margin-bottom: clamp(50px, 8vw, 80px);
    position: relative;
    z-index: 2;
}

.services-intro-text {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 30px auto 0;
    line-height: 1.8;
}

/* Main Content Wrapper */
.services-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    margin-bottom: clamp(40px, 6vw, 60px);
    position: relative;
    z-index: 2;
}

/* Main Feature Showcase */
.services-main-feature {
    position: relative;
}

.feature-showcase-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 30px;
    padding: clamp(35px, 6vw, 60px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-showcase-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 95, 21, 0.08) 0%, transparent 70%);
    animation: showcaseRotate 15s linear infinite;
}

@keyframes showcaseRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.feature-showcase-box:hover {
    border-color: var(--primary-orange);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 95, 21, 0.3);
}

.showcase-icon-large {
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    background: var(--gradient-primary);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-showcase-box:hover .showcase-icon-large {
    transform: scale(1.1) rotate(5deg);
}

.showcase-icon-large i {
    font-size: clamp(40px, 8vw, 60px);
    color: white;
}

.showcase-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.showcase-description {
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.showcase-stats {
    display: flex;
    gap: clamp(20px, 4vw, 40px);
    padding-top: 25px;
    border-top: 2px solid rgba(255, 95, 21, 0.2);
    position: relative;
    z-index: 2;
}

.mini-stat {
    text-align: center;
    flex: 1;
}

.mini-stat-value {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.mini-stat-label {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Icons Grid */
.services-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 4vw, 30px);
}

.service-icon-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 25px;
    padding: clamp(25px, 5vw, 40px);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-icon-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 95, 21, 0.3);
}

.service-icon-item:hover::before {
    left: 100%;
}

.icon-wrapper {
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    background: rgba(255, 95, 21, 0.1);
    border: 2px solid rgba(255, 95, 21, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--gradient-primary);
    border-radius: 22px;
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: opacity 0.3s ease;
}

.service-icon-item:hover .icon-wrapper {
    transform: rotateY(180deg);
    background: rgba(255, 95, 21, 0.2);
}

.service-icon-item:hover .icon-wrapper::after {
    opacity: 0.6;
}

.icon-wrapper img {
    max-width: 65%;
    max-height: 65%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.service-icon-item:hover .icon-wrapper img {
    transform: scale(1.1);
}

.icon-label {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 700;
    color: white;
    margin: 0;
}

/* Feature Pills */
.services-feature-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(15px, 3vw, 20px);
    position: relative;
    z-index: 2;
}

.feature-pill-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: clamp(12px, 2.5vw, 16px) clamp(20px, 4vw, 30px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 50px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-pill-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-pill-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 95, 21, 0.4);
}

.feature-pill-item:hover::before {
    opacity: 0.2;
}

.feature-pill-item i {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--secondary-orange);
    position: relative;
    z-index: 1;
}

.feature-pill-item span {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {


    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        order: 2;
        margin-top: 1rem;
        max-width: 100%;
        justify-self: center;
    }

    .hero-visual {
        order: 1;
        max-height: none;
        justify-self: center;
    }

    .services-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-overview-section {
        padding: 60px 0;
    }

    .services-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-icon-item {
        padding: 20px 15px;
    }

    .showcase-stats {
        flex-direction: row;
        gap: 15px;
    }

    .feature-pill-item {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
}

@media (max-width: 480px) {
    .services-icons-grid {
        grid-template-columns: 1fr 1fr;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .showcase-stats {
        gap: 10px;
    }

    .feature-pill-item {
        width: 100%;
        justify-content: center;
    }
}

/* Mission List */
.mission-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.mission-list li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 95, 21, 0.2);
    position: relative;
    padding-left: 50px;
    transition: var(--transition);
    font-size: 1rem;
}

.mission-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 20px;
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 95, 21, 0.3);
}

.mission-list li:hover {
    padding-left: 60px;
    color: var(--secondary-orange);
    transform: translateX(5px);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-orange);
    border-radius: 20px;
    padding: 30px 20px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-orange);
    box-shadow: var(--shadow-primary);
}

.stat-item h3 {
    color: var(--secondary-orange);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Testimonial Styles */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-orange);
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
    position: relative;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-orange);
    box-shadow: var(--shadow-primary);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: var(--primary-orange);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
}

.testimonial-info h6 {
    margin: 0;
    color: var(--secondary-orange);
    font-weight: 600;
}

.testimonial-info p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.stars {
    color: var(--secondary-orange);
    margin-bottom: 15px;
}

/* App Features */
.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.app-feature {
    padding: 25px;
    background: var(--gradient-primary);
    border-radius: 15px;
    text-align: center;
    color: white;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 95, 21, 0.2);
}

.app-feature:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 95, 21, 0.4);
}

.app-feature h5 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 700;
}

.app-feature p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.95;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseOverlay {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
}





/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .service-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .app-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
    }

    .app-features {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .service-card {
        padding: 25px;
    }

    .btn-primary-gradient,
    .btn-outline-gradient {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

}

@media (max-width: 480px) {


    .section {
        padding: 50px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px;
        margin: 15px 0;
    }

    .content-card,
    .service-card {
        padding: 20px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FFA802 0%, #FF5F15 100%);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Background Enhancements */
.section-alternate {
    /* background: rgba(255, 255, 255, 0.02); */
    max-width: 1800px;
    margin: auto;
}

.section-highlight {
    /* background: rgba(0, 0, 0, 0.05); */
    max-width: 1800px;
    margin: auto;
}










/* Section Styles */
.section {
    padding: clamp(60px, 8vw, 80px) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 70px);
    animation: fadeInUp 1s ease-out;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 95, 21, 0.1);
    border: 2px solid var(--border-orange);
    border-radius: 50px;
    padding: 8px 20px;
    color: #FFA802;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}





/* Where Finaance Meet technology  */

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(20px, 4vw, 30px);
    margin: clamp(30px, 6vw, 50px) 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-orange);
    border-radius: 15px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-orange);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-primary);
}

.feature-item img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    object-fit: contain;
}

.feature-item h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

/* Video Container */
.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-orange);
    transition: var(--transition);
}

.video-container:hover {
    border-color: var(--secondary-orange);
    box-shadow: var(--shadow-hover);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}






/* about nexora section style  */


/* About Nexora Section */
.about-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    /* margin-top: 40px; */
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-orange);
    border-radius: 25px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
    transition: left 0.6s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 168, 2, 0.5);
    box-shadow: var(--shadow-primary);
}

.about-card:hover::before {
    left: 100%;
}

.about-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 36px;
    color: white;
    transition: all 0.3s ease;
}

.about-card:hover .about-card-icon {
    transform: rotateY(180deg);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.about-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}





/* timeline section  */

.timeline-section {
    position: relative;
    padding: 4rem 0;
    background-color: #071038;
}

.timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line-vertical {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, transparent, var(--primary-orange), transparent);
    transform: translateX(-50%);
}

.timeline-event {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-event:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    max-width: 45%;
}

.timeline-dot-large {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border: 4px solid var(--bg-dark);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(255, 95, 21, 0.6);
    z-index: 10;
}

.event-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-orange);
    border-radius: 25px;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.event-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-hover);
}

.event-year {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.event-desc {
    color: rgba(255, 255, 255, 0.7);
}



.section-title-new {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}


/* Morphing Card Design */
.morph-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-orange);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.morph-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 95, 21, 0.1) 0%, transparent 70%);
    animation: morphRotate 15s linear infinite;
}

@keyframes morphRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.morph-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-hover);
}


/* Interactive Feature Pills */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-orange);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s;
}

.pill:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-primary);
}

.pill:hover::before {
    opacity: 0.2;
}

.pill i {
    position: relative;
    z-index: 1;
    color: var(--secondary-orange);
    font-size: 1.2rem;
}

.pill span {
    position: relative;
    z-index: 1;
}







/* Why N1 Nexora Section */
.why-nexora-section {
    position: relative;
    padding: clamp(40px, 4vw, 60px) 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--darker-bg) 100%);
    overflow: hidden;
}

/* Animated Background Grid */
.nexora-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 95, 21, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 95, 21, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

/* Floating Orbs */
.nexora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-orange);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--secondary-orange);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-orange);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 50px) scale(0.9);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    position: relative;
    z-index: 10;
}

/* Section Header */
.why-header {
    text-align: center;
    margin-bottom: clamp(50px, 8vw, 80px);
}

.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 95, 21, 0.1);
    border: 2px solid rgba(255, 95, 21, 0.3);
    border-radius: 50px;
    padding: 12px 28px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    color: var(--secondary-orange);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 95, 21, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 95, 21, 0);
    }
}

.why-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.1;
}

.why-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: clamp(25px, 4vw, 40px);
    margin-bottom: clamp(60px, 8vw, 80px);
}

.reason-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 30px;
    padding: clamp(30px, 5vw, 45px);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
    transition: left 0.6s ease;
}

.reason-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-orange);
    box-shadow: 0 30px 60px rgba(255, 95, 21, 0.3);
}

.reason-card:hover::before {
    left: 100%;
}

/* Number Badge */
.reason-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 95, 21, 0.4);
    transition: var(--transition);
}

.reason-card:hover .reason-number {
    transform: rotate(360deg) scale(1.1);
}

/* Icon Container */
.reason-icon {
    width: clamp(70px, 12vw, 90px);
    height: clamp(70px, 12vw, 90px);
    background: rgba(255, 95, 21, 0.1);
    border: 2px solid rgba(255, 95, 21, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: var(--transition);
}

.reason-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--gradient-primary);
    border-radius: 22px;
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: var(--transition);
}

.reason-card:hover .reason-icon {
    background: rgba(255, 95, 21, 0.2);
    transform: rotateY(180deg);
}

.reason-card:hover .reason-icon::after {
    opacity: 0.6;
}

.reason-icon i {
    font-size: clamp(32px, 6vw, 42px);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Content */
.reason-content h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.reason-content p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Feature Pills */
.reason-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 95, 21, 0.1);
    border: 1px solid rgba(255, 95, 21, 0.3);
    border-radius: 20px;
    font-size: clamp(12px, 1.8vw, 14px);
    font-weight: 600;
    color: var(--secondary-orange);
    transition: var(--transition);
}

.feature-pill:hover {
    background: rgba(255, 95, 21, 0.2);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}

.feature-pill i {
    font-size: 14px;
}

/* Stats Showcase */
.stats-showcase {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 30px;
    padding: clamp(40px, 6vw, 60px);
    position: relative;
    overflow: hidden;
}

.stats-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 95, 21, 0.1) 0%, transparent 70%);
    animation: rotateGradient 15s linear infinite;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(30px, 5vw, 50px);
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: clamp(20px, 4vw, 30px);
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 20px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 95, 21, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reason-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .orb-1,
    .orb-2,
    .orb-3 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Animation */
[data-animate] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}













/* AVM Section */
.avm-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.avm-background {
    position: absolute;
    inset: 0;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 217, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.avm-section .container {
    position: relative;
    z-index: 1;
}

/* Card Base */
.avm-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 95, 21, 0.2);

    border-radius: 24px;
    padding: 3rem 2rem;
    height: 100%;
    overflow: hidden;
    transition: var(--transition);
}

/* Hover Effects - Each Card Unique */
.avm-card:hover {
    border-color: var(--primary-orange);
    background: var(--gradient-orange-1);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.vision-card:hover {
    border-color: var(--secondary-orange);
    background: var(--gradient-orange-2);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mission-card:hover {
    border-color: var(--primary-orange);
    background: var(--gradient-orange-3);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* Card Highlight Glow */
.card-highlight {
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    opacity: 0;
    filter: blur(25px);
    transition: opacity 0.4s;
    z-index: -1;
}

.avm-card .card-highlight {
    background: var(--gradient-orange-1);
}

.vision-card .card-highlight {
    background: var(--gradient-orange-2);
}

.mission-card .card-highlight {
    background: var(--gradient-orange-3);
}

.avm-card:hover .card-highlight {
    opacity: 1;
}

/* Decorative Lines */
.card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    overflow: hidden;
}

.deco-line {
    position: absolute;
    width: 200%;
    height: 2px;
    background: var(--gradient-1);
    opacity: 0.3;
}

.line-1 {
    top: 30px;
    right: -50px;
    transform: rotate(45deg);
}

.line-2 {
    top: 60px;
    right: -50px;
    transform: rotate(45deg);
}

.vision-card .deco-line {
    background: var(--gradient-2);
}

.mission-card .deco-line {
    background: var(--gradient-3);
}

/* Icon Section */
.avm-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0.25;
    transition: var(--transition);
    filter: brightness(0.9);
}

.avm-card .icon-bg {
    background: var(--gradient-orange-1);
}

.vision-card .icon-bg {
    background: var(--gradient-orange-2);
}

.mission-card .icon-bg {
    background: var(--gradient-orange-3);
}

.avm-card:hover .icon-bg {
    opacity: 0.6;
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* SVG Icon Fix - Visible & Smooth */
.avm-icon svg {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    color: var(--text-light);
    transition: var(--transition);
    opacity: 0.8;
}

.avm-card:hover .avm-icon svg {
    opacity: 1;
    transform: scale(1.1);
}

/* Text Content */
.avm-title {
    font-size: 1.75rem;
    font-weight: 800;
    text-align: center;
    color: var(--brand-color);
    margin-bottom: 1.5rem;
}

.avm-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.8;
    transition: var(--transition);
}

.avm-card:hover .avm-text {
    color: #fff;
}

[data-scroll] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-scroll].visible {
    opacity: 1;
}

[data-scroll="fade-right"] {
    transform: translateX(-50px);
}

[data-scroll="fade-right"].visible {
    transform: translateX(0);
}

[data-scroll="fade-left"] {
    transform: translateX(50px);
}

[data-scroll="fade-left"].visible {
    transform: translateX(0);
}

[data-scroll="reveal"] {
    transform: translateY(50px);
}

[data-scroll="reveal"].visible {
    transform: translateY(0);
}

























/* arnd section  */



/* Brands Section */
.brands-section {
    /* background: #050815; */
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.brand-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 28px;
    padding: 2.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.brand-card:hover {
    transform: translateY(-15px);
    border-color: var(--brand-color);
    box-shadow: 0 30px 80px rgba(255, 95, 21, 0.3);
}

.brand-orb {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: var(--brand-color);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    transition: var(--transition);
}

.brand-card:hover .brand-orb {
    opacity: 0.4;
    transform: scale(1.2);
}

.brand-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.brand-logo {
    position: relative;
    width: 70px;
    height: 70px;
}

.logo-symbol {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: var(--brand-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
}

.brand-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-content {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.brand-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--brand-color);
}

.brand-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.brand-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.brand-card:hover .feature-tag {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-color);
}

.brand-footer {
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 95, 21, 0.2);
}

.brand-stats {
    display: flex;
    justify-content: space-around;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}