
        :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: white !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: 155px;
            height: 155px;
            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: 97%;
            height: 97%;
            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: orange;
            line-height: 1.3;
            font-size: 20px !important;
        }

        /* Progress Path */
        .progress-path {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 280px;
            height: 280px;
            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: orange;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .showcase-description {
            font-size: clamp(1rem, 2.2vw, 1.1rem);
            color: white;
            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: 18px;
            color: white;
            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: 22px;
            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;
            font-size: 22px;
        }

        /* 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: 19px;
            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: white;
            line-height: 1.6;
            text-align: justify;
        }





        /* 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: orange;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .reason-content p {
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            color: white;
            line-height: 1.7;
            margin-bottom: 20px;
            text-align: justify;
        }

        /* 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;
            text-align: justify;
        }

        .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: justify;
            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: 25px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .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);
        }




        /* Name Inspiration */

        /* about n1 nexora section start  */


        /* About Section */
        .about-nexora {
            padding: 80px 0;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
            position: relative;
            overflow: hidden;
        }

        .about-nexora::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 95, 21, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }


        /* Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
        }





        /* Cards Container */
        .about-cards {
            position: relative;
            z-index: 2;
        }

        .about-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 95, 21, 0.2);
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            min-height: 520px;
        }

        .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;
        }

        .about-card:hover::before {
            left: 100%;
        }

        .about-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 95, 21, 0.5);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 20px 60px rgba(255, 95, 21, 0.2);
        }

        .about-card:hover .card-icon::after {
            opacity: 0.5;
            animation: pulse 1.5s infinite;
        }

        .card-number {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 6rem;
            font-weight: 800;
            background: linear-gradient(135deg, rgba(255, 95, 21, 0.1) 0%, rgba(255, 168, 2, 0.1) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            z-index: 0;
            opacity: 0.4;
        }

        /* Card Header */
        .card-header-custom {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.8rem;
            flex-shrink: 0;
            box-shadow: 0 10px 30px rgba(255, 95, 21, 0.4);
            position: relative;
        }

        .card-icon::after {
            content: '';
            position: absolute;
            inset: -3px;
            background: linear-gradient(135deg, #FF5F15, #FFA802);
            border-radius: 20px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .about-card:hover .card-icon::after {
            opacity: 0.5;
            animation: pulse 1.5s infinite;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #FFA802;
            margin: 0;
        }

        /* Card Content */
        .card-description {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .card-points {
            list-style: none;
            padding: 0;
            position: relative;
            z-index: 1;
            font-size: large;
        }

        .card-points li {
            padding: 15px 20px;
            padding-left: 50px;
            background: rgba(255, 95, 21, 0.08);
            border-radius: 12px;
            margin-bottom: 12px;
            position: relative;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            /* font-size: 18px; */
        }

        .card-points li:hover {
            background: rgba(255, 95, 21, 0.15);
            border-left-color: #FFA802;
            transform: translateX(8px);
        }

        .card-points li::before {
            content: '';
            position: absolute;
            left: 18px;
            top: 50%;
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #FF5F15, #FFA802);
            border-radius: 50%;
            transform: translateY(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-points li::after {
            content: '✓';
            position: absolute;
            left: 22px;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-size: 11px;
            font-weight: bold;
        }




        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .about-card {
                padding: 30px 20px;
            }

            .card-number {
                font-size: 4rem;
                right: 20px;
            }

            .card-header-custom {
                flex-direction: column;
                text-align: center;
            }

            .card-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .card-title {
                font-size: 1.3rem;
            }

            .card-points li {
                padding-left: 45px;
            }


        }

        .myFontSize {
            font-size: 22px !important;
        }






        /* About Section */
        .about-nexora {
            padding: 80px 0;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
            position: relative;
            overflow: hidden;
        }

        .about-nexora::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 95, 21, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }


        /* Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
        }





        /* Cards Container */
        .about-cards {
            position: relative;
            z-index: 2;
        }

        .about-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 95, 21, 0.2);
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            min-height: 520px;
        }

        .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;
        }

        .about-card:hover::before {
            left: 100%;
        }

        .about-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 95, 21, 0.5);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 20px 60px rgba(255, 95, 21, 0.2);
        }

        .about-card:hover .card-icon::after {
            opacity: 0.5;
            animation: pulse 1.5s infinite;
        }

        .card-number {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 6rem;
            font-weight: 800;
            background: linear-gradient(135deg, rgba(255, 95, 21, 0.1) 0%, rgba(255, 168, 2, 0.1) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            z-index: 0;
            opacity: 0.4;
        }

        /* Card Header */
        .card-header-custom {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.8rem;
            flex-shrink: 0;
            box-shadow: 0 10px 30px rgba(255, 95, 21, 0.4);
            position: relative;
        }

        .card-icon::after {
            content: '';
            position: absolute;
            inset: -3px;
            background: linear-gradient(135deg, #FF5F15, #FFA802);
            border-radius: 20px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .about-card:hover .card-icon::after {
            opacity: 0.5;
            animation: pulse 1.5s infinite;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #FFA802;
            margin: 0;
        }

        /* Card Content */
        .card-description {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .card-points {
            list-style: none;
            padding: 0;
            position: relative;
            z-index: 1;
        }

        .card-points li {
            padding: 15px 20px;
            padding-left: 50px;
            background: rgba(255, 95, 21, 0.08);
            border-radius: 12px;
            margin-bottom: 12px;
            position: relative;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            /* font-size: 18px; */
        }

        .card-points li:hover {
            background: rgba(255, 95, 21, 0.15);
            border-left-color: #FFA802;
            transform: translateX(8px);
        }

        .card-points li::before {
            content: '';
            position: absolute;
            left: 18px;
            top: 50%;
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #FF5F15, #FFA802);
            border-radius: 50%;
            transform: translateY(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-points li::after {
            content: '✓';
            position: absolute;
            left: 22px;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-size: 11px;
            font-weight: bold;
        }




        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .about-card {
                padding: 30px 20px;
            }

            .card-number {
                font-size: 4rem;
                right: 20px;
            }

            .card-header-custom {
                flex-direction: column;
                text-align: center;
            }

            .card-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .card-title {
                font-size: 1.3rem;
            }

            .card-points li {
                padding-left: 45px;
            }


        }

/* Skills Excellence Section */
.skills-excellence-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    overflow: hidden;
}

/* Background Effects */
.excellence-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.excellence-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: 40px 40px;
    animation: gridSlide 20s linear infinite;
}

@keyframes gridSlide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.excellence-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    animation: orbFloat 20s ease-in-out infinite;
}

.excellence-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: #FF5F15;
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.excellence-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: #FFA802;
    bottom: -150px;
    left: -150px;
    animation-delay: 7s;
}

.excellence-orb.orb-3 {
    width: 400px;
    height: 400px;
    background: #FF5F15;
    top: 50%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

/* Header Styling */
.excellence-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.header-icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon-container i {
    font-size: 40px;
    background: linear-gradient(135deg, #FF5F15, #FFA802);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.rotating-ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    animation: ringRotate 10s linear infinite;
}

.rotating-ring.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(255, 95, 21, 0.3);
    animation-duration: 8s;
}

.rotating-ring.ring-2 {
    width: 80%;
    height: 80%;
    border-color: rgba(255, 168, 2, 0.4);
    animation-duration: 6s;
    animation-direction: reverse;
}

.rotating-ring.ring-3 {
    width: 60%;
    height: 60%;
    border-color: rgba(255, 95, 21, 0.5);
    animation-duration: 4s;
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.excellence-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(255, 95, 21, 0.1);
    border: 2px solid rgba(255, 95, 21, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #FFA802;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #FFA802;
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.excellence-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.excellence-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Excellence Grid */
.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Excellence Cards */
.excellence-card {
    position: relative;
    background: rgba(25, 33, 83, 0.4);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeIn 0.8s ease-out forwards;
    /* animation-delay: var(--delay, 0s); */
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.excellence-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 95, 21, 0.6);
    box-shadow: 
        0 30px 60px rgba(255, 95, 21, 0.3),
        0 0 40px rgba(255, 95, 21, 0.2);
}

/* Card Glow */
.card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 95, 21, 0.3), rgba(255, 168, 2, 0.3));
    border-radius: 20px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.5s ease;
    z-index: -1;
}

.excellence-card:hover .card-glow {
    opacity: 1;
}

/* Card Number */
.card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(255, 95, 21, 0.15), rgba(255, 168, 2, 0.15));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    z-index: 0;
}

/* Skill Icon Wrapper */
.skill-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-outer-ring,
.icon-inner-ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.icon-outer-ring {
    width: 100%;
    height: 100%;
    border-color: rgba(255, 95, 21, 0.3);
    animation: ringPulse 3s ease-in-out infinite;
}

.icon-inner-ring {
    width: 70%;
    height: 70%;
    border-color: rgba(255, 168, 2, 0.4);
    animation: ringPulse 3s ease-in-out infinite 1.5s;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.excellence-card:hover .icon-outer-ring {
    transform: rotate(180deg) scale(1.1);
}

.excellence-card:hover .icon-inner-ring {
    transform: rotate(-180deg) scale(1.1);
}

.skill-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #FF5F15, #FFA802);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 95, 21, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.skill-icon i {
    font-size: 24px;
    color: #ffffff;
}

.excellence-card:hover .skill-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Card Corners */
.card-corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid #FF5F15;
    transition: all 0.3s ease;
}

.corner-tl {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.excellence-card:hover .card-corner {
    width: 20px;
    height: 20px;
    border-color: #FFA802;
}

/* Skill Content */
.skill-content {
    text-align: center;
}

.skill-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.skill-description {
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
}

/* Skill Metrics */
.skill-metrics {
    display: flex;
    align-items: center;
    gap: 15px;
}

.metric-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.metric-progress {
    height: 100%;
    background: linear-gradient(90deg, #FF5F15, #FFA802);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(255, 95, 21, 0.6);
    position: relative;
}

.metric-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}



.metric-value {
    font-size: 0.95rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF5F15, #FFA802);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 45px;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .excellence-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .skills-excellence-section {
        padding: 60px 0;
    }

    .excellence-header {
        margin-bottom: 50px;
    }

    .excellence-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .excellence-card {
        padding: 30px 25px;
    }

    .header-icon-container {
        width: 80px;
        height: 80px;
    }

    .header-icon-container i {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .excellence-grid {
        grid-template-columns: 1fr;
    }

    .excellence-card {
        padding: 35px 25px;
    }

    .skill-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .skill-icon {
        width: 50px;
        height: 50px;
    }

    .skill-icon i {
        font-size: 20px;
    }
}





        /* Brand Story Section - Ultra Creative Design */
.brand-story-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    overflow: hidden;
}

/* Animated Background */
.brand-story-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.animated-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 95, 21, 0.1) 0%, transparent 50%);
    animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.floating-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle, rgba(255, 95, 21, 0.4) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 168, 2, 0.3) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    animation: particlesFloat 20s linear infinite;
}

@keyframes particlesFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

/* Section Header */
.brand-story-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.header-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.header-icon-wrapper i {
    font-size: 40px;
    background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.icon-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 95, 21, 0.3), rgba(255, 168, 2, 0.3));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(255, 95, 21, 0.1);
    border: 2px solid rgba(255, 95, 21, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #FFA802;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #FFA802;
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.story-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
}

.brand-highlight {
    /* background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: white;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.brand-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF5F15, #FFA802);
    border-radius: 2px;
    animation: lineExpand 2s ease-out infinite;
}

@keyframes lineExpand {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(0.8); }
}

.story-subtitle {
    font-size: 22px;
    color: white;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    
    box-shadow: rgb(225 93 16 / 64%) 0px 7px 29px 0px;
    border-radius: 21px;
    padding: 18px;
}

/* Brand Story Grid */
.brand-story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

/* Story Cards */
.story-card {
    position: relative;
    background: rgba(25, 33, 83, 0.4);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 30px;
    padding: 45px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 95, 21, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.story-card:hover::before {
    opacity: 1;
}

.story-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 95, 21, 0.6);
    box-shadow: 
        0 30px 60px rgba(255, 95, 21, 0.3),
        0 0 40px rgba(255, 95, 21, 0.2);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 95, 21, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: glowRotate 10s linear infinite;
}

.story-card:hover .card-glow {
    opacity: 1;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Card Pattern */
.card-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(45deg, rgba(255, 95, 21, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 95, 21, 0.03) 25%, transparent 25%);
    background-size: 20px 20px;
    opacity: 0.5;
}

/* Card Number Badge */
.card-number-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.card-number-badge .number {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.badge-ring {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(255, 95, 21, 0.3);
    border-radius: 50%;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

/* Card Icon Box */
.card-icon-box {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-box i {
    font-size: 42px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.story-card:hover .card-icon-box i {
    transform: scale(1.2) rotate(10deg);
}

.icon-bg-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    border-radius: 22px;
    transition: all 0.4s ease;
}

.story-card:hover .icon-bg-effect {
    transform: rotate(180deg);
    box-shadow: 0 0 30px rgba(255, 95, 21, 0.6);
}

/* Icon Particles */
.icon-particles {
    position: absolute;
    inset: 0;
}

.icon-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFA802;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.icon-particles span:nth-child(1) {
    top: -10px;
    left: 50%;
}

.icon-particles span:nth-child(2) {
    top: 50%;
    right: -10px;
}

.icon-particles span:nth-child(3) {
    bottom: -10px;
    left: 50%;
}

.story-card:hover .icon-particles span {
    opacity: 1;
    animation: particleBurst 1s ease-out forwards;
}

@keyframes particleBurst {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(var(--x, 20px), var(--y, -20px)) scale(0); }
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight-text {
    color: #FFA802;
    position: relative;
}

/* Title Underline */
.title-underline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.title-underline .line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #FF5F15, #FFA802, transparent);
}

.title-underline .dot {
    width: 8px;
    height: 8px;
    background: #FFA802;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 168, 2, 0.6);
}

/* Card Description */
.card-description {
    font-size: 22px;
    color: white;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
}

/* Feature Points */
.feature-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-points li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 95, 21, 0.1);
    transition: all 0.3s ease;
}

.feature-points li:last-child {
    border-bottom: none;
}

.feature-points li:hover {
    padding-left: 10px;
    background: rgba(255, 95, 21, 0.05);
    border-radius: 10px;
}

.point-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #FF5F15, #FFA802);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-points li:hover .point-icon {
    transform: scale(1.2) rotate(360deg);
}

.point-icon i {
    font-size: 12px;
    color: #ffffff;
}

.feature-points li span {
    font-size: 21px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.5;
}

/* Card Footer Decoration */
.card-footer-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, #FF5F15, #FFA802, transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.story-card:hover .card-footer-decoration {
    opacity: 1;
}

/* Bottom CTA Section */
.brand-story-cta {
    text-align: center;
    padding: 60px;
    background: rgba(255, 95, 21, 0.05);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.brand-story-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 95, 21, 0.1) 50%, transparent 70%);
    animation: ctaShine 3s linear infinite;
}

@keyframes ctaShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 22px;
    color: white;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FFA802 0%, #FF5F15 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 95, 21, 0.4);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button span,
.cta-button i {
    position: relative;
    z-index: 1;
}

.cta-button i {
    transition: transform 0.4s ease;
}

.cta-button:hover i {
    transform: translateX(10px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .brand-story-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 35px;
    }
}

@media (max-width: 992px) {
    .brand-story-section {
        padding: 80px 0;
    }

    .brand-story-header {
        margin-bottom: 60px;
    }

    .brand-story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-card {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .brand-story-section {
        padding: 60px 0;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-card {
        padding: 30px;
    }

    .card-icon-box {
        width: 70px;
        height: 70px;
    }

    .card-icon-box i {
        font-size: 32px;
    }

    .card-number-badge {
        width: 50px;
        height: 50px;
    }

    .card-number-badge .number {
        font-size: 24px;
    }

    .brand-story-cta {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .brand-story-grid {
        grid-template-columns: 1fr;
    }

    .story-card {
        padding: 25px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-description {
        font-size: 16px;
    }

    .feature-points li span {
        font-size: 15px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

















        /* --- Anniversary Section Layout --- */
        .anniversary-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            perspective: 2000px;
            padding: 40px 20px;
          
            /* background: url('/award-1.png');

            background-repeat: no-repeat;
            background-size: contain; */
        }

        /* --- Gold Dust Particles --- */
        #particle-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        /* --- Volumetric Light Rays --- */
        .light-rays {
            position: absolute;
            /* top: -50%; */
            top: 10%;
            left: -50%;
            width: 200%;
            width: 100%;
            height: 50%;
            

            background: radial-gradient(circle at 50% 50%, rgb(25 76 204 / 36%) 0%, #6e440c91 40%, transparent 100%);

            animation: rotateRays 25s linear infinite;
            filter: blur(80px);
            z-index: 2;
            opacity: 0.7;
            mix-blend-mode: screen;
        }

        @keyframes rotateRays {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* --- Content & Animation Wrapper --- */
        .content-animation-wrapper {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: row;
            width: 100%;
            max-width: 1400px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 8px;
            box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.7);
            overflow: hidden;
         
            transform-style: preserve-3d;
            will-change: transform;
            transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

        /* Inner glow/border */
        .content-animation-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 8px;
            padding: 2px;
            background: linear-gradient(45deg, rgba(212, 175, 55, 0.4), transparent);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            z-index: 11;
        }

        /* --- Content Side --- */
        .content-side {
            flex: 1;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            text-align: left;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease-out, transform 1s ease-out;
            transform-style: preserve-3d;
            
        }

        .content-side.is-revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .pre-title {
            font-size: 0.9rem;
            letter-spacing: 0.5rem;
            color: #d4af37;
            text-transform: uppercase;
            margin-bottom: 1rem;
            font-weight: 400;
            opacity: 0.8;
            transform: translateZ(20px);
        }

        .main-headline {
            font-family: 'Cinzel', serif;
            font-size: 36px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.2rem;
            background: linear-gradient(to bottom, #fff 30%,#f9e29d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
            transform: translateZ(40px);
        }

        .tagline {
            font-size: 22px;
            font-weight: 500;
            letter-spacing: 0.1rem;
            color: white;
            margin-bottom: 2.5rem;
            max-width: 500px;
            transform: translateZ(30px);
            box-shadow: rgb(30 0 0) 3px 3px 6px 0px inset, rgb(231 191 50 / 50%) -3px -3px 6px 1px inset;
            padding: 13px;
            border-radius: 16px;
        }

        .year-range {
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            letter-spacing: 0.3rem;
            color: #d4af37;
            opacity: 0.7;
            margin-bottom: 3rem;
            transform: translateZ(25px);
        }

        /* --- Premium CTA Button --- */
        .gold-button {
            position: relative;
            display: inline-flex;
            
            align-items: center;
            justify-content: center;
            padding: 18px 45px;
            background: transparent;
            border: 1px solid #d4af37;
            color: #d4af37;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.2rem;
            text-transform: uppercase;
            overflow: hidden;
            transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s;
            transform: translateZ(35px);
            cursor: pointer;
            outline: none;
            border-radius: 2px;
        }

        .gold-button:hover {
            color: #0e0d16;
           
            border-color: #f9e29d;
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
        }

        .gold-button::after {
            content: '';
            position: absolute;
            left: -100%;
            
            top: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(90deg, #d4af37, #f9e29d);
            
            z-index: -1;
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gold-button:hover::after {
            left: 0;
           
        }

        /* --- 3D Animation Side --- */
        .animation-side {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            min-height: 400px;
            /* Ensure height on smaller screens before stacking */
            /* transform-style: preserve-3d; */
            perspective: 1000px;
          
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease-out, transform 1s ease-out;

           
            background: url('/public/media/images/jewels-4759026.png');
           
            background-position: center;
            background-size: contain;
            background-repeat: no-repeat;
        }

        .animation-side.is-revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Pure CSS 3D "10" Element --- */
        .golden-ten-container {
            position: relative;
            width: 250px;
            height: 250px;
            transform-style: preserve-3d;
            animation:
                rotateTen 20s linear infinite,
                floatTen 8s ease-in-out infinite;
            transform-origin: center center;

         
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(11.2px);
            -webkit-backdrop-filter: blur(11.2px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        @keyframes rotateTen {
            0% {
                transform: rotateY(0deg) rotateX(0deg);
            }

            100% {
                transform: rotateY(360deg) rotateX(0deg);
            }
        }

        @keyframes floatTen {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        /* Basic shape for the '1' */
        .digit-one,
        .digit-zero {
            position: absolute;
            background: linear-gradient(135deg, #f9e29d 0%, #d4af37 50%, #926d08 100%);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
            border-radius: 5px;
          
        }

        /* Enhanced 3D effect with multiple layers for depth and reflection */
        .digit-layer {
            position: absolute;
            inset: 0;
            transform-style: preserve-3d;
        }

        /* Front face */
        .digit-layer::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #f9e29d 0%, #d4af37 50%, #926d08 100%);
            transform: translateZ(5px);
            /* Front surface */
            border-radius: inherit;
        }

        /* Reflection/Gloss layer */
        .digit-layer::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.7) 0%, transparent 40%, rgba(255, 255, 255, 0.3) 60%, transparent 100%);
            transform: translateZ(5.1px);
          
            opacity: 0.4;
            mix-blend-mode: screen;
            animation: shimmerEffect 4s infinite ease-in-out;
            border-radius: inherit;
        }

        @keyframes shimmerEffect {

            0%,
            100% {
                background-position: -200% -200%;
            }

            50% {
                background-position: 200% 200%;
            }
        }


        /* Side and back layers for thickness */
        .digit-one {
            width: 50px;
            height: 180px;
            left: 20px;
            top: 35px;
            transform: rotateX(20deg) rotateY(10deg);
            transform-style: preserve-3d;
        }

        .digit-one .digit-layer {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
         
        }

        .digit-one .digit-layer::before {
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
            
        }

        .digit-one-bar {
            position: absolute;
            width: 25px;
            height: 60px;
            background: inherit;
            left: -15px;
            top: 20px;
            transform: rotateZ(35deg) translateZ(5px);
            border-radius: inherit;
        }

        .digit-one-base {
            position: absolute;
            width: 70px;
            height: 20px;
            background: inherit;
            left: -10px;
            bottom: -5px;
            transform: translateZ(5px);
            border-radius: inherit;
        }

        .digit-zero {
            width: 140px;
            height: 140px;
            border-radius: 50%;
       
            right: 20px;
            top: 55px;
            transform: rotateX(-10deg) rotateY(-5deg);
            transform-style: preserve-3d;
            display: flex;
            
            align-items: center;
            justify-content: center;
            padding: 15px;
 
        }

        .digit-zero .digit-layer {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            
            border-radius: 50%;
        }

        .digit-zero .digit-layer::before {
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
          
            border-radius: 50%;
        }

        .digit-zero-inner {
            position: absolute;
            width: calc(100% - 30px);
            
            height: calc(100% - 30px);
            background: #0e0d16;
           
            border-radius: 50%;
            transform: translateZ(6px);
           
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
        }

        .tenth-img{
            width: 251px;
        }


        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .anniversary-section {
                padding: 20px;
            }

            .content-animation-wrapper {
                flex-direction: column;
                max-width: 700px;
            }

            .content-side {
                padding: 40px;
                align-items: center;
                text-align: center;
            }

            .main-headline {
                font-size: clamp(2.5rem, 8vw, 4rem);
            }

            .animation-side {
                min-height: 350px;
                padding: 40px;
            }

            /* Disable mouse parallax on smaller devices */
            .content-animation-wrapper {
                transform: none !important;
                transition: none !important;
            }

            .golden-ten-container {
                animation-duration: calc(20s * 1.5), calc(8s * 1.5);
               
            }

            .tenth-img{
                width: 205px;
            }
            
        }

        @media (max-width: 768px) {
            .content-side {
                padding: 30px 20px;
            }

            .main-headline {
                font-size: clamp(2rem, 10vw, 3.5rem);
            }

            .tagline {
                font-size: 1rem;
            }

            .gold-button {
                padding: 15px 30px;
                font-size: 0.8rem;
            }

            .animation-side {
                min-height: 300px;
                padding: 30px 20px;
            }

            .golden-ten-container {
                width: 200px;
                height: 200px;
            }

            .digit-one {
                width: 40px;
                height: 150px;
                left: 15px;
                top: 25px;
            }

            .digit-one-bar {
                width: 20px;
                height: 50px;
                left: -10px;
                top: 15px;
            }

            .digit-one-base {
                width: 60px;
                height: 15px;
                left: -5px;
                bottom: -5px;
            }

            .digit-zero {
                width: 120px;
                height: 120px;
                right: 15px;
                top: 40px;
                padding: 12px;
            }

            .digit-zero-inner {
                width: calc(100% - 24px);
                height: calc(100% - 24px);
            }
        }

        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {

            .light-rays,
            .golden-ten-container,
            .gold-button::after,
            .digit-layer::after {
                animation: none !important;
                transition: none !important;
            }

            .content-animation-wrapper {
                transition: none !important;
            }

            .content-side,
            .animation-side {
                transition: none !important;
            }

            .golden-ten-container {
                transform: none !important;
                
            }
        }


        /*// Glow Border Animation //*/

        .animated-border-box,
        .animated-border-box-glow {
            
            position: absolute;
            overflow: hidden;
            z-index: 0;
           
            border-radius: 10px;
        }

        .animated-border-box-glow {
            overflow: hidden;
            
            filter: blur(20px);
        }

        .animated-border-box:before,
        .animated-border-box-glow:before {
            content: '';
            z-index: -2;
            text-align: center;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(0deg);
            position: absolute;
            width: 99999px;
            height: 99999px;
            background-repeat: no-repeat;
            background-position: 0 0;
            
            background-image: conic-gradient(rgba(0, 0, 0, 0), #f9f295, rgba(0, 0, 0, 0) 25%);
           
            animation: rotate 4s linear infinite;
        }

        .animated-border-box:after {
            content: '';
            position: absolute;
            z-index: -1;
         
            left: 5px;
            top: 5px;
            
            width: calc(100% - 10px);
            height: calc(100% - 10px);
            

            background: linear-gradient(272deg, rgba(13, 22, 62, 1) 0%, rgb(106 50 19) 100%);
           
            border-radius: 7px;
        }

        @keyframes rotate {
            100% {
                transform: translate(-50%, -50%) rotate(1turn);
            }
        }
