        * {
            font-family: 'Inter', sans-serif;
        }

        /* Text Selection Color */
        ::selection {
            background-color: #dc2626;
            color: #ffffff;
        }

        ::-moz-selection {
            background-color: #dc2626;
            color: #ffffff;
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Grid background with dots */
        .grid-background {
            background-image:
                radial-gradient(circle, rgba(239, 68, 68, 0.08) 1px, transparent 1px),
                linear-gradient(to right, rgba(239, 68, 68, 0.02) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(239, 68, 68, 0.02) 1px, transparent 1px);
            background-size: 20px 20px, 40px 40px, 40px 40px;
            background-position: 0 0, 0 0, 0 0;
        }

        /* Animated gradient text */
        .gradient-text {
            background: linear-gradient(135deg, #DC2626 0%, #EF4444 50%, #F87171 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% auto;
            animation: gradientShift 3s ease infinite;
        }

        /* Reduce top padding for all sections */
        section[id]:not(#home) {
            padding-top: 40px !important;
        }

        @keyframes gradientShift {

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

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

        /* Enhanced glow effect */
        .glow {
            box-shadow:
                0 0 20px rgba(220, 38, 38, 0.3),
                0 0 40px rgba(220, 38, 38, 0.2),
                0 0 60px rgba(220, 38, 38, 0.1);
        }

        /* Floating animation with rotation */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(2deg);
            }
        }

        .float {
            animation: float 6s ease-in-out infinite;
        }

        /* Smooth pulse animation */
        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.6;
                transform: scale(1.05);
            }
        }

        .pulse {
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        /* Fade in with scale on scroll */
        .fade-in {
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Enhanced card hover with 3D effect */
        .card-hover {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
        }

        .card-hover:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.3),
                0 10px 20px rgba(220, 38, 38, 0.15);
        }

        /* Spotlight effect with radial gradient */
        .spotlight {
            position: relative;
            overflow: hidden;
        }

        .spotlight::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center,
                    rgba(220, 38, 38, 0.15) 0%,
                    rgba(239, 68, 68, 0.08) 30%,
                    transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease, transform 0.5s ease;
            transform: scale(0.8);
        }

        .spotlight:hover::before {
            opacity: 1;
            transform: scale(1);
        }

        /* Gradient border with animation */
        .gradient-border {
            position: relative;
            background: linear-gradient(135deg, #1f2937, #111827);
            border-radius: 1rem;
            overflow: hidden;
        }

        .gradient-border::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 1rem;
            padding: 1.5px;
            background: linear-gradient(135deg, #DC2626, #EF4444, #F87171);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
        }

        .gradient-border:hover::before {
            background: linear-gradient(135deg, #EF4444, #F87171, #DC2626);
        }

        /* Glassmorphism effect */
        .glass {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Shimmer effect for buttons */
        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }

            100% {
                background-position: 1000px 0;
            }
        }

        .shimmer {
            background: linear-gradient(90deg,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 0.1) 50%,
                    rgba(255, 255, 255, 0) 100%);
            background-size: 1000px 100%;
            animation: shimmer 3s infinite;
        }

        /* Custom scrollbar */
        * {
            scrollbar-width: thin;
            scrollbar-color: #DC2626 #111827;
        }

        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #111827;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #DC2626, #EF4444);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #EF4444, #F87171);
        }

        /* Mobile scrollbar support */
        html {
            scrollbar-width: thin;
            scrollbar-color: #DC2626 #111827;
        }

        body {
            scrollbar-width: thin;
            scrollbar-color: #DC2626 #111827;
        }

        /* Preloader Styles */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000000;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .preloader-text {
            display: flex;
            align-items: center;
            gap: 2px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 3px;
        }

        .preloader-text span {
            display: inline-block;
            color: #ffffff;
            animation: letterWave 1.4s ease-in-out infinite;
            animation-delay: calc(var(--i) * 0.1s);
        }

        .preloader-text .preloader-dot {
            color: #EF4444;
        }

        @keyframes letterWave {
            0%, 60%, 100% {
                transform: translateY(0);
                opacity: 0.5;
            }
            30% {
                transform: translateY(-6px);
                opacity: 1;
            }
        }

        /* Pencil loader */
        .preloader-pencil-wrapper {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .preloader-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .pencil {
            display: block;
            width: 10em;
            height: 10em;
            color: #ffffff;
        }

        .pencil__body1,
        .pencil__body2,
        .pencil__body3,
        .pencil__eraser,
        .pencil__eraser-skew,
        .pencil__point,
        .pencil__rotate,
        .pencil__stroke {
            animation-duration: 3s;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        .pencil__body1,
        .pencil__body2,
        .pencil__body3 {
            transform: rotate(-90deg);
        }

        .pencil__body1 { animation-name: pencilBody1; }
        .pencil__body2 { animation-name: pencilBody2; }
        .pencil__body3 { animation-name: pencilBody3; }

        .pencil__eraser {
            animation-name: pencilEraser;
            transform: rotate(-90deg) translate(49px, 0);
        }

        .pencil__eraser-skew {
            animation-name: pencilEraserSkew;
            animation-timing-function: ease-in-out;
        }

        .pencil__point {
            animation-name: pencilPoint;
            transform: rotate(-90deg) translate(49px, -30px);
        }

        .pencil__rotate { animation-name: pencilRotate; }

        .pencil__stroke {
            animation-name: pencilStroke;
            transform: translate(100px, 100px) rotate(-113deg);
        }

        @keyframes pencilBody1 {
            from, to {
                stroke-dashoffset: 351.86;
                transform: rotate(-90deg);
            }
            50% {
                stroke-dashoffset: 150.8;
                transform: rotate(-225deg);
            }
        }

        @keyframes pencilBody2 {
            from, to {
                stroke-dashoffset: 406.84;
                transform: rotate(-90deg);
            }
            50% {
                stroke-dashoffset: 174.36;
                transform: rotate(-225deg);
            }
        }

        @keyframes pencilBody3 {
            from, to {
                stroke-dashoffset: 296.88;
                transform: rotate(-90deg);
            }
            50% {
                stroke-dashoffset: 127.23;
                transform: rotate(-225deg);
            }
        }

        @keyframes pencilEraser {
            from, to { transform: rotate(-45deg) translate(49px, 0); }
            50% { transform: rotate(0deg) translate(49px, 0); }
        }

        @keyframes pencilEraserSkew {
            from, 32.5%, 67.5%, to { transform: skewX(0); }
            35%, 65% { transform: skewX(-4deg); }
            37.5%, 62.5% { transform: skewX(8deg); }
            40%, 45%, 50%, 55%, 60% { transform: skewX(-15deg); }
            42.5%, 47.5%, 52.5%, 57.5% { transform: skewX(15deg); }
        }

        @keyframes pencilPoint {
            from, to { transform: rotate(-90deg) translate(49px, -30px); }
            50% { transform: rotate(-225deg) translate(49px, -30px); }
        }

        @keyframes pencilRotate {
            from { transform: translate(100px, 100px) rotate(0); }
            to { transform: translate(100px, 100px) rotate(720deg); }
        }

        @keyframes pencilStroke {
            from {
                stroke-dashoffset: 439.82;
                transform: translate(100px, 100px) rotate(-113deg);
            }
            50% {
                stroke-dashoffset: 164.93;
                transform: translate(100px, 100px) rotate(-113deg);
            }
            75%, to {
                stroke-dashoffset: 439.82;
                transform: translate(100px, 100px) rotate(112deg);
            }
        }

        /* Blob animation for background */
        @keyframes blob {

            0%,
            100% {
                transform: translate(0px, 0px) scale(1);
            }

            33% {
                transform: translate(30px, -50px) scale(1.1);
            }

            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }

        .blob {
            animation: blob 7s ease-in-out infinite;
        }

        /* Text reveal animation */
        @keyframes textReveal {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        .text-reveal {
            animation: textReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        /* Bouncing arrow */
        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(10px);
            }
        }

        .bounce-arrow {
            animation: bounce 2s ease-in-out infinite;
        }

        /* Footer Styles */
        /* Footer Styles */
        .footer {
            position: relative;
            background: linear-gradient(180deg, #450a0a 0%, #7f1d1d 100%);
            color: #fff;
        }

        .footer-main {
            max-width: 1280px;
            margin: 0 auto;
            padding: 60px 24px 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #fff;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #dc2626, #ef4444);
        }

        .footer-about {
            max-width: 350px;
        }

        .footer-logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer-logo {
            width: 50px;
            height: 50px;
        }

        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .footer-address {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .footer-phone {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

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

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            display: inline-block;
        }

        .footer-links a:hover {
            color: #fca5a5;
            transform: translateX(5px);
        }

        .footer-social-text {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 16px;
            font-size: 0.95rem;
        }

        .footer-social-icons {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social-link:hover {
            background: #dc2626;
            transform: translateY(-3px);
        }

        .footer-social-link svg {
            width: 20px;
            height: 20px;
        }

        .footer-app-buttons {
            display: flex;
            flex-direction: row;
            gap: 6px;
            flex-wrap: nowrap;
        }

        .footer-app-btn {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 6px 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            text-decoration: none;
            color: #fff;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            flex: 1;
            min-width: 0;
        }

        .footer-app-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .footer-app-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .footer-app-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            min-width: 0;
        }

        .footer-app-label {
            font-size: 0.5rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.2;
            white-space: nowrap;
        }

        .footer-app-name {
            font-size: 0.7rem;
            font-weight: 600;
            color: #fff;
            line-height: 1.2;
            white-space: nowrap;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding: 24px 0;
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #fca5a5;
        }

        @media (max-width: 768px) {
            .footer-main {
                padding: 40px 20px 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                justify-content: center;
            }
        }

        /* CTA Section Styles - Mobile First */
        .cta-section {
            padding: 40px 0 60px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-container {
            position: relative;
            max-width: 1024px;
            margin: 0 auto;
            padding: 0 12px;
            text-align: center;
            z-index: 10;
        }

        .cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 9999px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 20px;
            animation: fadeInDown 0.8s ease-out, pulse 2s ease-in-out 1s infinite;
        }

        .cta-badge svg {
            width: 14px;
            height: 14px;
            color: #ef4444;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes fadeInDown {
            0% {
                opacity: 0;
                transform: translateY(-20px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
            }

            50% {
                box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
            }
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-3px);
            }
        }

        .cta-badge span {
            font-size: 0.75rem;
            font-weight: 500;
            color: #e5e7eb;
        }

        .cta-heading {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.2;
            color: #ffffff;
            padding: 0 8px;
            animation: fadeInUp 1s ease-out;
        }

        .cta-description {
            font-size: 0.95rem;
            color: #d1d5db;
            margin-bottom: 28px;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding: 0 12px;
            line-height: 1.6;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .cta-call-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.6s both, ctaCallPulse 2s ease-in-out 2s infinite;
        }

        .cta-call-button svg {
            width: 20px;
            height: 20px;
            animation: shake 2s ease-in-out 2s infinite;
        }

        .cta-call-button:hover {
            transform: scale(1.05) translateY(-2px);
            box-shadow: 0 12px 35px rgba(220, 38, 38, 0.7);
        }

        .cta-call-button:active {
            transform: scale(0.98);
        }

        @keyframes ctaCallPulse {

            0%,
            100% {
                box-shadow: 0 10px 30px rgba(220, 38, 38, 0.5);
            }

            50% {
                box-shadow: 0 15px 45px rgba(220, 38, 38, 0.8);
            }
        }

        @keyframes shake {

            0%,
            100% {
                transform: rotate(0deg);
            }

            10%,
            30%,
            50%,
            70%,
            90% {
                transform: rotate(-10deg);
            }

            20%,
            40%,
            60%,
            80% {
                transform: rotate(10deg);
            }
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Small Mobile - 480px+ */
        @media (min-width: 480px) {
            .cta-heading {
                font-size: 2rem;
            }

            .cta-description {
                font-size: 1rem;
            }

            .cta-call-button {
                padding: 16px 32px;
                font-size: 1rem;
                gap: 10px;
            }

            .cta-call-button svg {
                width: 22px;
                height: 22px;
            }

            .cta-badge {
                gap: 8px;
                padding: 10px 18px;
                margin-bottom: 24px;
            }

            .cta-badge svg {
                width: 16px;
                height: 16px;
            }

            .cta-badge span {
                font-size: 0.875rem;
            }
        }

        /* Tablet - 640px+ */
        @media (min-width: 640px) {
            .cta-section {
                padding: 64px 0 80px 0;
            }

            .cta-container {
                padding: 0 16px;
            }

            .cta-heading {
                font-size: 2.5rem;
                margin-bottom: 20px;
                padding: 0;
            }

            .cta-description {
                font-size: 1.125rem;
                margin-bottom: 32px;
                max-width: 600px;
                padding: 0;
            }

            .cta-call-button {
                padding: 18px 40px;
                font-size: 1.125rem;
                gap: 12px;
            }

            .cta-call-button svg {
                width: 24px;
                height: 24px;
            }

            .cta-badge {
                padding: 10px 20px;
                margin-bottom: 28px;
            }
        }

        /* Desktop - 768px+ */
        @media (min-width: 768px) {
            .cta-section {
                padding: 80px 0 96px 0;
            }

            .cta-heading {
                font-size: 3rem;
                margin-bottom: 24px;
            }

            .cta-description {
                font-size: 1.25rem;
                margin-bottom: 36px;
                max-width: 672px;
            }

            .cta-call-button {
                padding: 18px 45px;
                font-size: 1.25rem;
            }

            .cta-call-button svg {
                width: 26px;
                height: 26px;
            }
        }

        /* Large Desktop - 1024px+ */
        @media (min-width: 1024px) {
            .cta-section {
                padding: 96px 0 112px 0;
            }

            .cta-heading {
                font-size: 3.75rem;
            }

            .cta-badge {
                margin-bottom: 32px;
            }

            .cta-description {
                margin-bottom: 40px;
            }
        }

        /* Extra Large - 1280px+ */
        @media (min-width: 1280px) {
            .cta-section {
                padding: 112px 0 128px 0;
            }

            .cta-heading {
                font-size: 4.5rem;
            }
        }

        /* ===== Success Stories / Testimonials Section ===== */
        .testimonials-section {
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg,
                    transparent 0%,
                    rgba(220, 38, 38, 0.04) 40%,
                    rgba(220, 38, 38, 0.02) 60%,
                    transparent 100%);
        }

        .testimonials-bg-glow {
            position: absolute;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            filter: blur(140px);
            pointer-events: none;
            z-index: 0;
        }

        .testimonials-bg-glow-left {
            top: -180px;
            left: -280px;
            background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
        }

        .testimonials-bg-glow-right {
            bottom: -180px;
            right: -280px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
        }

        .testimonials-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* Header */
        .testimonials-header {
            text-align: center;
            margin-bottom: 72px;
        }

        .testimonials-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(220, 38, 38, 0.1);
            border: 1px solid rgba(220, 38, 38, 0.28);
            border-radius: 50px;
            padding: 8px 20px;
            margin-bottom: 24px;
            font-size: 0.875rem;
            color: #ef4444;
            font-weight: 600;
            letter-spacing: 0.03em;
        }

        .testimonials-badge svg {
            width: 15px;
            height: 15px;
            color: #fbbf24;
            flex-shrink: 0;
        }

        .testimonials-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 18px;
            color: #ffffff;
            line-height: 1.12;
            letter-spacing: -0.02em;
        }

        .testimonials-subtitle {
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.125rem;
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.65;
        }



        /* Section Divider */
        .testimonials-divider {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 56px;
        }

        .testimonials-divider::before,
        .testimonials-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.09), transparent);
        }

        .testimonials-divider span {
            color: rgba(255, 255, 255, 0.28);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        /* Text Testimonials Slider */
        .slider-container {
            overflow: hidden;
            position: relative;
            width: 100%;
            margin: 0 auto;
        }

        .slider-container::before,
        .slider-container::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 180px;
            z-index: 10;
            pointer-events: none;
        }

        .slider-container::before {
            left: 0;
            background: linear-gradient(to right,
                    rgba(0, 0, 0, 1) 0%,
                    rgba(0, 0, 0, 0.7) 35%,
                    transparent 100%);
        }

        .slider-container::after {
            right: 0;
            background: linear-gradient(to left,
                    rgba(0, 0, 0, 1) 0%,
                    rgba(0, 0, 0, 0.7) 35%,
                    transparent 100%);
        }

        .slider-track {
            display: flex;
            gap: 24px;
            animation: scroll 30s linear infinite;
            width: fit-content;
        }

        .slider-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .testimonial-card {
            flex: 0 0 380px;
            background: linear-gradient(145deg, rgba(20, 27, 40, 0.95), rgba(10, 13, 22, 0.98));
            border-radius: 22px;
            padding: 32px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.07);
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 22px;
            padding: 1px;
            background: linear-gradient(135deg,
                    rgba(220, 38, 38, 0.45) 0%,
                    rgba(255, 255, 255, 0.04) 50%,
                    rgba(220, 38, 38, 0.18) 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 52px rgba(220, 38, 38, 0.18);
        }

        .testimonial-quote {
            position: absolute;
            top: 16px;
            right: 22px;
            font-size: 72px;
            color: rgba(239, 68, 68, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
            user-select: none;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .testimonial-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: 2.5px solid rgba(239, 68, 68, 0.55);
            object-fit: cover;
            flex-shrink: 0;
        }

        .testimonial-info h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 3px;
        }

        .testimonial-info p {
            font-size: 0.82rem;
            color: #ef4444;
            font-weight: 600;
        }

        .testimonial-stars {
            display: flex;
            gap: 3px;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .testimonial-stars svg {
            width: 17px;
            height: 17px;
            color: #fbbf24;
        }

        .testimonial-text {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            line-height: 1.75;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .ts-video-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }

        @media (max-width: 480px) {
            .ts-video-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (min-width: 640px) {
            .testimonials-section {
                padding: 100px 0 80px;
            }

            .testimonials-title {
                font-size: 3.75rem;
            }
        }

        @media (min-width: 1024px) {
            .testimonials-section {
                padding: 120px 0 100px;
            }

            .testimonials-title {
                font-size: 4rem;
            }

            .ts-video-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }



        /* Video Testimonials Scroll (inside testimonials-section) */
        .video-testimonials-scroll {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 16px 4px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: rgba(220, 38, 38, 0.5) transparent;
        }

        .video-testimonials-scroll .video-testimonial-card {
            flex: 0 0 280px;
            scroll-snap-align: start;
        }

        /* Features Section Styles */
        .features-section {
            padding: 20px 0 64px 0;
            position: relative;
        }

        .features-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .features-header {
            text-align: center;
            margin-top: 32px;
            margin-bottom: 64px;
        }

        .features-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .features-subtitle {
            color: #9ca3af;
            font-size: 1.125rem;
            max-width: 672px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .feature-card {
            background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
            border-radius: 24px;
            padding: 40px 32px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1.5px solid rgba(239, 68, 68, 0.2);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #dc2626, #ef4444, #f87171);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: rgba(239, 68, 68, 0.5);
            box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
        }

        .feature-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(239, 68, 68, 0.1));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.25), rgba(239, 68, 68, 0.15));
            transform: scale(1.1) rotate(5deg);
        }

        .feature-icon svg {
            width: 36px;
            height: 36px;
            color: #ef4444;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .feature-description {
            color: #d1d5db;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Courses Section Styles */
        .courses-section {
            padding: 20px 0 64px 0;
            position: relative;
            overflow: hidden;
        }

        .courses-bg-decoration {
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(60px);
        }

        .courses-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
            position: relative;
            z-index: 10;
        }

        .courses-header {
            text-align: center;
            margin-top: 32px;
            margin-bottom: 80px;
        }

        .courses-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .courses-subtitle {
            color: #d1d5db;
            font-size: 1.125rem;
            max-width: 672px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .course-card-wrapper {
            position: relative;
        }

        .course-card-glow {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            border-radius: 24px;
            filter: blur(30px);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .course-card-wrapper:hover .course-card-glow {
            opacity: 0.3;
        }

        .course-card {
            position: relative;
            background: linear-gradient(135deg, #1f2937, #111827);
            border-radius: 24px;
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1.5px solid transparent;
            background-clip: padding-box;
            transition: all 0.4s ease;
        }

        .course-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 1.5px;
            background: linear-gradient(135deg, #dc2626, #ef4444, #f87171);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

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

        .course-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: linear-gradient(to right, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
            color: #fca5a5;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 700;
            margin-bottom: 24px;
            border: 1px solid rgba(239, 68, 68, 0.3);
            width: fit-content;
        }

        .course-badge svg {
            width: 16px;
            height: 16px;
        }

        .course-title {
            font-size: 15px;
            font-weight: 800;
            margin-bottom: 8px;
            background: linear-gradient(to bottom right, #ffffff, #d1d5db);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .course-duration-label {
            font-size: 0.95rem;
            font-weight: 600;
            color: #f87171;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .course-description {
            color: #d1d5db;
            margin-bottom: 32px;
            font-size: 1rem;
        }

        .course-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 32px;
            flex-grow: 1;
        }

        .course-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .course-feature-icon {
            margin-top: 2px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(34, 197, 94, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .course-feature-icon svg {
            width: 12px;
            height: 12px;
            color: #4ade80;
        }

        .course-feature-text {
            color: #e5e7eb;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .course-enroll-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(to right, #dc2626, #ef4444);
            color: white;
            border-radius: 16px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .course-enroll-btn:hover {
            box-shadow: 0 20px 40px rgba(239, 68, 68, 0.5);
            transform: scale(1.02);
        }


        @media (min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .courses-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .features-section {
                padding: 96px 0;
            }

            .courses-section {
                padding: 96px 0;
            }

            .features-title,
            .courses-title {
                font-size: 3rem;
            }
        }

        /* Trusted Brands Section */
        .trusted-brands-section {
            padding: 20px 0 80px 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(220, 38, 38, 0.03) 50%, rgba(0, 0, 0, 0) 100%);
            position: relative;
            overflow: hidden;
        }

        .trusted-brands-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .trusted-brands-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .trusted-brands-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #ffffff;
        }

        .trusted-brands-subtitle {
            font-size: 1.125rem;
            color: #9ca3af;
            max-width: 600px;
            margin: 0 auto;
        }

        .brands-wrapper {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        .brands-wrapper::before,
        .brands-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 150px;
            z-index: 10;
            pointer-events: none;
        }

        .brands-wrapper::before {
            left: 0;
            background: linear-gradient(to right,
                    rgba(0, 0, 0, 1) 0%,
                    rgba(0, 0, 0, 0.8) 20%,
                    rgba(0, 0, 0, 0.4) 50%,
                    transparent 100%);
        }

        .brands-wrapper::after {
            right: 0;
            background: linear-gradient(to left,
                    rgba(0, 0, 0, 1) 0%,
                    rgba(0, 0, 0, 0.8) 20%,
                    rgba(0, 0, 0, 0.4) 50%,
                    transparent 100%);
        }

        .brands-row {
            display: flex;
            gap: 16px;
            margin-bottom: 16px;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        .brands-row-left {
            animation: slideLeft 40s linear infinite;
        }

        .brands-row-right {
            animation: slideRight 40s linear infinite;
        }

        .brands-track {
            display: flex;
            gap: 16px;
            flex-shrink: 0;
        }

        @keyframes slideLeft {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes slideRight {
            0% {
                transform: translateX(-50%);
            }

            100% {
                transform: translateX(0);
            }
        }

        .brands-row:hover {
            animation-play-state: paused;
        }

        .brand-pill {
            display: inline-flex;
            align-items: center;
            padding: 12px 24px;
            background: rgba(31, 41, 55, 0.6);
            border: 1px solid rgba(75, 85, 99, 0.5);
            border-radius: 9999px;
            color: #d1d5db;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: default;
            backdrop-filter: blur(10px);
        }

        .brand-pill:hover {
            background: rgba(31, 41, 55, 0.9);
            border-color: rgba(239, 68, 68, 0.5);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
        }

        .brand-pill.highlight {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.15));
            border-color: rgba(59, 130, 246, 0.4);
            color: #93c5fd;
        }

        .brand-pill.highlight:hover {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(37, 99, 235, 0.25));
            border-color: rgba(59, 130, 246, 0.6);
            color: #bfdbfe;
        }

        .brand-pill.accent {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(147, 51, 234, 0.15));
            border-color: rgba(168, 85, 247, 0.4);
            color: #c4b5fd;
        }

        .brand-pill.accent:hover {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(147, 51, 234, 0.25));
            border-color: rgba(168, 85, 247, 0.6);
            color: #ddd6fe;
        }

        @media (max-width: 768px) {
            .trusted-brands-section {
                padding: 60px 0;
            }

            .trusted-brands-title {
                font-size: 2rem;
            }

            .brand-pill {
                padding: 10px 20px;
                font-size: 0.875rem;
            }
        }

        /* Enhanced Hero Section */
        .hero-section {
            position: relative;
            min-height: auto;
            padding: 100px 0 80px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: radial-gradient(ellipse at top, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
        }



        .hero-glow-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: blob-pulse 8s infinite ease-in-out;
        }

        .hero-glow-blob.blob-1 {
            top: 10%;
            left: 10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.4), transparent);
            animation-delay: 0s;
        }

        .hero-glow-blob.blob-2 {
            bottom: 10%;
            right: 10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent);
            animation-delay: -4s;
        }

        .hero-glow-blob.blob-3 {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(220, 38, 38, 0.2), transparent);
            animation-delay: -2s;
        }

        .hero-glow-blob.blob-4 {
            top: 30%;
            right: 20%;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.35), transparent);
            animation-delay: -6s;
        }

        .hero-glow-blob.blob-5 {
            bottom: 20%;
            left: 30%;
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, rgba(185, 28, 28, 0.3), transparent);
            animation-delay: -8s;
        }

        @keyframes blob-pulse {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(30px, -50px) scale(1.1);
            }

            66% {
                transform: translate(-20px, 30px) scale(0.9);
            }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 24px 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-left {
            text-align: center;
        }

        .hero-right {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 500px;
        }

        .hero-image-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(220, 38, 38, 0.3), transparent 70%);
            filter: blur(60px);
            animation: rotate-glow 10s linear infinite;
        }

        @keyframes rotate-glow {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            100% {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .hero-image {
            position: relative;
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(220, 38, 38, 0.4);
            animation: float-image 6s ease-in-out infinite;
        }

        @keyframes float-image {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }



        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-left {
                text-align: center;
            }

            .hero-image-wrapper {
                max-width: 400px;
                margin: 0 auto;
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: rgba(31, 41, 55, 0.5);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 9999px;
            margin-bottom: 32px;
            animation: slide-down 0.8s ease-out;
        }

        .hero-badge-pulse {
            width: 8px;
            height: 8px;
            background: #ef4444;
            border-radius: 50%;
            animation: pulse-ring 2s infinite;
            box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
        }

        @keyframes pulse-ring {
            0% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
            }
        }

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

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

        .hero-title {
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: slide-up 0.8s ease-out 0.2s both;
            letter-spacing: -0.02em;
        }

        .hero-title-gradient {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            position: relative;
            animation: gradient-shift 3s ease infinite;
            background-size: 200% 200%;
        }

        @keyframes gradient-shift {

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

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

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

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

        .hero-description {
            font-size: 1.375rem;
            line-height: 1.8;
            color: #d1d5db;
            max-width: 800px;
            margin: 0 auto 48px;
            animation: slide-up 0.8s ease-out 0.4s both;
        }

        .hero-cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-bottom: 50px;
            animation: slide-up 0.8s ease-out 0.6s both;
        }

        .hero-btn-primary {
            position: relative;
            padding: 18px 48px;
            background: linear-gradient(135deg, #dc2626, #ef4444, #dc2626);
            background-size: 200% 200%;
            color: white;
            border: none;
            border-radius: 9999px;
            font-size: 1.125rem;
            font-weight: 700;
            cursor: pointer;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .hero-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 50px rgba(220, 38, 38, 0.6);
            animation: gradient-shift 2s ease infinite;
        }

        .hero-btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .hero-btn-primary:hover::before {
            transform: translateX(100%);
        }



        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 48px;
            max-width: 1000px;
            margin: 0 auto;
            animation: slide-up 0.8s ease-out 0.8s both;
        }

        .hero-stat-item {
            text-align: center;
            padding: 24px;
            background: rgba(31, 41, 55, 0.3);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(75, 85, 99, 0.3);
            border-radius: 20px;
            transition: all 0.4s ease;
        }

        .hero-stat-item:hover {
            transform: translateY(-8px);
            background: rgba(31, 41, 55, 0.5);
            border-color: rgba(239, 68, 68, 0.5);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .hero-stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ef4444, #f87171);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 0.875rem;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .hero-scroll-indicator:hover {
            transform: translateX(-50%) translateY(6px);
        }

        .scroll-mouse {
            width: 28px;
            height: 42px;
            border: 2px solid rgba(239, 68, 68, 0.5);
            border-radius: 14px;
            position: relative;
            background: rgba(31, 41, 55, 0.3);
            backdrop-filter: blur(10px);
            animation: pulse-border 2s infinite;
        }

        .scroll-mouse::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: linear-gradient(180deg, #ef4444, #dc2626);
            border-radius: 2px;
            animation: scroll-wheel 2s infinite;
            box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
        }

        @keyframes scroll-wheel {
            0% {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }

            100% {
                opacity: 0;
                transform: translateX(-50%) translateY(18px);
            }
        }

        @keyframes pulse-border {

            0%,
            100% {
                border-color: rgba(239, 68, 68, 0.5);
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
            }

            50% {
                border-color: rgba(239, 68, 68, 0.8);
                box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
            }
        }

        .scroll-text {
            font-size: 0.75rem;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
            animation: fade-pulse 2s infinite;
        }

        @keyframes fade-pulse {

            0%,
            100% {
                opacity: 0.5;
            }

            50% {
                opacity: 1;
            }
        }

        .scroll-arrows {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
            margin-top: 2px;
        }

        .scroll-arrow {
            width: 18px;
            height: 18px;
            display: block;
            margin-top: -5px;
            opacity: 0;
            animation: arrow-wave 2s infinite;
        }

        .scroll-arrow:first-child {
            margin-top: 0;
        }

        .scroll-arrow:nth-child(1) {
            animation-delay: 0s;
        }

        .scroll-arrow:nth-child(2) {
            animation-delay: 0.15s;
        }

        .scroll-arrow:nth-child(3) {
            animation-delay: 0.3s;
        }

        @keyframes arrow-wave {
            0% {
                opacity: 0;
                transform: translateY(-10px);
            }

            50% {
                opacity: 1;
            }

            100% {
                opacity: 0;
                transform: translateY(10px);
            }
        }

        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3.5rem;
            }

            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-description {
                font-size: 1.125rem;
            }

            .hero-cta-buttons {
                flex-direction: column;
            }

            .hero-btn-primary,
            .hero-btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .hero-stats {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .hero-stat-number {
                font-size: 2.5rem;
            }



            /* Fix scroll indicator position on mobile */
            .hero-scroll-indicator {
                display: none;
            }
        }

        /* Enhanced Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(24px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(239, 68, 68, 0.2);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            text-decoration: none;
            color: white;
        }

        .nav-logo-img {
            height: 44px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .nav-logo:hover .nav-logo-img {
            transform: scale(1.05) rotate(-2deg);
        }

        .nav-logo-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.125rem;
            color: white;
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
            transition: all 0.3s ease;
        }

        .nav-logo:hover .nav-logo-icon {
            transform: scale(1.05) rotate(-5deg);
            box-shadow: 0 6px 16px rgba(220, 38, 38, 0.6);
        }

        .nav-logo-text {
            font-size: 1.375rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #ffffff, #f3f4f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-link {
            position: relative;
            padding: 10px 20px;
            color: #d1d5db;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 20px;
            right: 20px;
            height: 2px;
            background: linear-gradient(90deg, #dc2626, #ef4444, #f97316);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .nav-link:hover {
            color: #ffffff;
        }

        .nav-link:hover::before {
            transform: scaleX(1);
        }

        .nav-link.active {
            color: #ffffff;
        }

        .nav-link.active::before {
            transform: scaleX(1);
        }

        .nav-cta {
            margin-left: 8px;
            padding: 12px 28px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            border-radius: 9999px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
            position: relative;
            overflow: hidden;
        }

        .nav-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(220, 38, 38, 0.5);
        }

        .nav-cta:hover::before {
            transform: translateX(100%);
        }

        /* Start Learning Button */
        .start-learning-btn {
            padding: 12px 28px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            border-radius: 9999px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
            position: relative;
            overflow: hidden;
            display: inline-block;
            cursor: pointer;
            border: none;
        }

        .start-learning-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .start-learning-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(220, 38, 38, 0.5);
        }

        .start-learning-btn:hover::before {
            transform: translateX(100%);
        }

        .nav-mobile-toggle {
            display: none;
            padding: 8px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: #d1d5db;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-mobile-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border-color: rgba(239, 68, 68, 0.3);
        }

        .nav-mobile-menu {
            display: none;
            flex-direction: column;
            gap: 8px;
            padding: 24px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 16px;
        }

        .nav-mobile-menu.active {
            display: flex;
            animation: slideDown 0.3s ease-out;
        }

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

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

        .nav-mobile-link {
            padding: 14px 20px;
            color: #d1d5db;
            text-decoration: none;
            font-weight: 600;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .nav-mobile-link:hover,
        .nav-mobile-link.active {
            color: #ffffff;
            background: rgba(239, 68, 68, 0.15);
        }

        .nav-mobile-cta {
            margin-top: 8px;
            padding: 16px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
            text-decoration: none;
            font-weight: 700;
            text-align: center;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .nav-mobile-toggle {
                display: block;
            }

            .nav-content {
                height: 70px;
            }

            .nav-logo-text {
                font-size: 1.125rem;
            }

            .nav-logo-img {
                height: 52px;
                width: auto;
            }

            .nav-logo-icon {
                height: 44px;
                width: 44px;
            }
        }

        /* Go to Top Button */
        .go-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.8);
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
        }

        .go-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .go-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
        }

        .go-to-top:active {
            transform: translateY(-2px) scale(1.05);
        }

        .go-to-top::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            animation: pulse-glow 2s infinite;
        }

        @keyframes pulse-glow {

            0%,
            100% {
                opacity: 0;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(1.2);
            }
        }

        .go-to-top svg {
            width: 24px;
            height: 24px;
            color: white;
            transition: transform 0.3s ease;
        }

        .go-to-top:hover svg {
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .go-to-top {
                width: 48px;
                height: 48px;
                bottom: 20px;
                right: 20px;
            }

            .go-to-top svg {
                width: 20px;
                height: 20px;
            }
        }

        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            animation: shake 3s infinite;
        }

        @keyframes shake {

            0%,
            50%,
            100% {
                transform: rotate(0deg);
            }

            10%,
            30% {
                transform: rotate(-10deg);
            }

            20%,
            40% {
                transform: rotate(10deg);
            }
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
            animation: none;
        }


        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            color: white;
            fill: white;
        }

        .whatsapp-tooltip {
            position: absolute;
            right: 75px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(31, 41, 55, 0.95);
            backdrop-filter: blur(16px);
            color: white;
            padding: 10px 16px;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(37, 211, 102, 0.3);
        }

        .whatsapp-tooltip::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid rgba(31, 41, 55, 0.95);
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                width: 52px;
                height: 52px;
                bottom: 80px;
                right: 20px;
            }

            .whatsapp-float svg {
                width: 28px;
                height: 28px;
            }

            .whatsapp-tooltip {
                display: none;
            }
        }

        /* Contact Form Section */
        .contact-section {
            padding: 20px 0 100px 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(220, 38, 38, 0.03) 50%, rgba(0, 0, 0, 0) 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .contact-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .contact-subtitle {
            font-size: 1.25rem;
            color: #9ca3af;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .contact-info-item {
            display: flex;
            gap: 20px;
            align-items: start;
            padding: 24px;
            background: rgba(31, 41, 55, 0.3);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(75, 85, 99, 0.3);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover {
            background: rgba(31, 41, 55, 0.5);
            border-color: rgba(239, 68, 68, 0.5);
            transform: translateY(-5px);
        }

        .contact-info-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-info-icon svg {
            width: 24px;
            height: 24px;
            color: #ef4444;
        }

        .contact-info-content h3 {
            font-size: 1.125rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .contact-info-content p {
            font-size: 0.95rem;
            color: #d1d5db;
            line-height: 1.6;
        }

        .contact-form-wrapper {
            background: rgba(31, 41, 55, 0.3);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(75, 85, 99, 0.3);
            border-radius: 24px;
            padding: 40px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-size: 0.875rem;
            font-weight: 600;
            color: #e5e7eb;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 14px 18px;
            background: rgba(17, 24, 39, 0.5);
            border: 1px solid rgba(75, 85, 99, 0.5);
            border-radius: 12px;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            background: rgba(17, 24, 39, 0.7);
            border-color: #ef4444;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }

        .form-submit-btn {
            padding: 16px 40px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.125rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
            position: relative;
            overflow: hidden;
        }

        .form-submit-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .form-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
        }

        .form-submit-btn:hover::before {
            transform: translateX(100%);
        }

        .form-submit-btn:active {
            transform: translateY(0);
        }

        @media (max-width: 1024px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 60px 0;
            }

            .contact-title {
                font-size: 2rem;
            }

            .contact-subtitle {
                font-size: 1rem;
            }

            .cta-call-button {
                font-size: 1rem;
                padding: 14px 30px;
            }

            .cta-call-button svg {
                width: 20px;
                height: 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .contact-form-wrapper {
                padding: 24px;
            }
        }

        /* Brand Banner Section */
        .brand-banner-wrapper {
            background: linear-gradient(135deg, #450a0a 0%, #7f1d1d 100%);
            padding: 30px 0;
            overflow: hidden;
            position: relative;
            transform: skewY(-2deg);
            margin: 0;
            margin-top: -50px;
            z-index: 2;
        }

        .brand-banner-content {
            display: flex;
            align-items: center;
        }

        .brand-scroll-container {
            display: flex;
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .brand-scroll-track {
            display: flex;
            align-items: center;
            animation: scroll-brands 30s linear infinite;
            gap: 80px;
            padding: 10px 0;
        }

        .brand-scroll-track:hover {
            animation-play-state: paused;
        }

        .brand-item {
            display: flex;
            align-items: center;
            gap: 15px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .brand-star {
            width: 30px;
            height: 30px;
            color: #fbbf24;
        }

        .brand-text {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            font-family: Georgia, serif;
            font-style: italic;
        }

        @keyframes scroll-brands {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Colorful Features Section */
        .colorful-features-section {
            padding: 20px 0 100px 0;
            background: transparent;
            position: relative;
        }

        .colorful-features-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .colorful-features-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .features-subtitle-text {
            font-size: 1rem;
            color: #dc2626;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            display: inline-block;
            padding: 12px 30px;
            border: 2px solid rgba(220, 38, 38, 0.3);
            border-radius: 50px;
            background: rgba(220, 38, 38, 0.1);
            position: relative;
        }

        .features-subtitle-text::before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border: 1px solid rgba(220, 38, 38, 0.2);
            border-radius: 50px;
        }

        .colorful-features-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .colorful-features-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto;
        }

        .colorful-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .colorful-feature-card {
            background: #fff;
            border-radius: 24px;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .colorful-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .colorful-feature-card.card-blue {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
        }

        .colorful-feature-card.card-purple {
            background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
        }

        .colorful-feature-card.card-yellow {
            background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
        }

        .colorful-feature-decorative {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
        }

        .decorative-sparkle {
            width: 24px;
            height: 24px;
            opacity: 0.4;
        }

        .card-blue .decorative-sparkle {
            color: #dc2626;
        }

        .card-purple .decorative-sparkle {
            color: #b91c1c;
        }

        .card-yellow .decorative-sparkle {
            color: #ea580c;
        }

        .colorful-feature-icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.4s ease;
        }

        .card-blue .colorful-feature-icon-wrapper {
            background: linear-gradient(135deg, #ef4444, #dc2626);
        }

        .card-purple .colorful-feature-icon-wrapper {
            background: linear-gradient(135deg, #dc2626, #b91c1c);
        }

        .card-yellow .colorful-feature-icon-wrapper {
            background: linear-gradient(135deg, #f97316, #ea580c);
        }

        .colorful-feature-card:hover .colorful-feature-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .colorful-feature-icon-wrapper svg {
            width: 28px;
            height: 28px;
            color: #fff;
        }

        .colorful-feature-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .colorful-feature-description {
            font-size: 1.05rem;
            color: #4b5563;
            line-height: 1.7;
        }

        @media (max-width: 768px) {
            .brand-text {
                font-size: 1.8rem;
            }

            .brand-item {
                gap: 10px;
            }

            .brand-star {
                width: 20px;
                height: 20px;
            }

            .colorful-features-title {
                font-size: 2.5rem;
            }

            .colorful-features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .colorful-feature-card {
                padding: 40px 30px;
            }

            .colorful-features-section {
                padding: 60px 0;
            }
        }

        /* Floating Call Button */
        .floating-call-btn {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 9998;
            animation: slideUpFromBottom 1s ease-out 0.5s both;
        }

        @keyframes slideUpFromBottom {
            0% {
                transform: translateX(-50%) translateY(200px);
                opacity: 0;
            }

            100% {
                transform: translateX(-50%) translateY(0);
                opacity: 1;
            }
        }

        .call-btn-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .call-btn-circle {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
            box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
            transition: all 0.3s ease;
            animation: pulseCall 2s infinite;
        }

        .call-btn-circle:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 40px rgba(220, 38, 38, 0.6);
        }

        @keyframes pulseCall {

            0%,
            100% {
                box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
            }

            50% {
                box-shadow: 0 8px 30px rgba(220, 38, 38, 0.8), 0 0 0 20px rgba(220, 38, 38, 0.1);
            }
        }

        .call-btn-circle::before {
            content: '';
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            border: 2px solid rgba(220, 38, 38, 0.3);
            border-radius: 50%;
            animation: rippleCall 2s infinite;
        }

        @keyframes rippleCall {
            0% {
                transform: scale(0.8);
                opacity: 1;
            }

            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }

        .call-btn-icon {
            width: 32px;
            height: 32px;
            color: #fff;
            animation: shake 3s infinite;
        }

        @keyframes shake {

            0%,
            100% {
                transform: rotate(0deg);
            }

            10%,
            30% {
                transform: rotate(-15deg);
            }

            20%,
            40% {
                transform: rotate(15deg);
            }

            50% {
                transform: rotate(0deg);
            }
        }

        .call-btn-text {
            position: relative;
            background: linear-gradient(135deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.95));
            backdrop-filter: blur(10px);
            padding: 12px 25px;
            border-radius: 50px;
            border: 1px solid rgba(220, 38, 38, 0.3);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            gap: 2px;
            overflow: hidden;
        }

        .call-btn-text::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -100%;
            width: 30%;
            height: 200%;
            background: linear-gradient(120deg,
                    transparent,
                    rgba(255, 255, 255, 0.15),
                    transparent);
            transform: skewX(-25deg);
            animation: shimmer 4s ease-in-out infinite;
        }

        .call-btn-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .call-btn-number {
            font-size: 1.1rem;
            font-weight: 700;
            color: #ef4444;
            letter-spacing: 0.5px;
        }

        @media (max-width: 768px) {
            .floating-call-btn {
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
            }

            .call-btn-wrapper {
                gap: 8px;
            }

            .call-btn-text {
                padding: 6px 12px;
            }

            .call-btn-label {
                font-size: 0.55rem;
                letter-spacing: 0.5px;
            }

            .call-btn-number {
                font-size: 0.75rem;
                letter-spacing: 0.3px;
            }

            .call-btn-circle {
                width: 45px;
                height: 45px;
            }

            .call-btn-icon {
                width: 22px;
                height: 22px;
            }
        }

        /* Gallery Collage Section */
        .gallery-section {
            padding: 20px 0 100px 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(220, 38, 38, 0.03) 50%, rgba(0, 0, 0, 0) 100%);
            position: relative;
            overflow: hidden;
        }

        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 60px;
            margin-top: 0;
        }

        .gallery-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .gallery-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
        }

        .gallery-collage {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(3, 250px);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .gallery-item:nth-child(1) {
            grid-column: 1 / 3;
            grid-row: 1 / 3;
        }

        .gallery-item:nth-child(2) {
            grid-column: 3 / 4;
            grid-row: 1 / 2;
        }

        .gallery-item:nth-child(3) {
            grid-column: 4 / 5;
            grid-row: 1 / 2;
        }

        .gallery-item:nth-child(4) {
            grid-column: 3 / 5;
            grid-row: 2 / 3;
        }

        .gallery-item:nth-child(5) {
            grid-column: 1 / 2;
            grid-row: 3 / 4;
        }

        .gallery-item:nth-child(6) {
            grid-column: 2 / 4;
            grid-row: 3 / 4;
        }

        .gallery-item:nth-child(7) {
            grid-column: 4 / 5;
            grid-row: 3 / 4;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s ease;
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.4), rgba(0, 0, 0, 0.4));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(220, 38, 38, 0.4);
            z-index: 10;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .gallery-collage {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(4, 200px);
            }

            .gallery-item:nth-child(1) {
                grid-column: 1 / 3;
                grid-row: 1 / 2;
            }

            .gallery-item:nth-child(2) {
                grid-column: 1 / 2;
                grid-row: 2 / 3;
            }

            .gallery-item:nth-child(3) {
                grid-column: 2 / 3;
                grid-row: 2 / 3;
            }

            .gallery-item:nth-child(4) {
                grid-column: 1 / 3;
                grid-row: 3 / 4;
            }

            .gallery-item:nth-child(5) {
                grid-column: 1 / 2;
                grid-row: 4 / 5;
            }

            .gallery-item:nth-child(6) {
                grid-column: 2 / 3;
                grid-row: 4 / 5;
            }

            .gallery-item:nth-child(7) {
                display: none;
            }

            .gallery-title {
                font-size: 2.5rem;
            }

            .gallery-section {
                padding: 60px 0;
            }
        }

        /* Video Testimonials Section */
        .video-testimonials-section {
            padding: 20px 0 100px 0;
            background: linear-gradient(180deg, rgba(220, 38, 38, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
            position: relative;
            overflow: hidden;
        }

        .video-testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .video-testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .video-testimonials-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .video-testimonials-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
        }

        .video-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            margin-top: 50px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .video-testimonial-card {
            background: linear-gradient(135deg, rgba(31, 41, 55, 0.6), rgba(17, 24, 39, 0.8));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(220, 38, 38, 0.2);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
        }

        .video-testimonial-card:hover {
            transform: translateY(-10px);
            border-color: rgba(220, 38, 38, 0.5);
            box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 9/16;
            background: #000;
            overflow: hidden;
            margin-bottom: 15px;
        }

        .video-wrapper iframe,
        .video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .video-play-overlay:hover {
            background: rgba(220, 38, 38, 0.6);
        }

        .video-play-button {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(220, 38, 38, 0.5);
            transition: all 0.3s ease;
        }

        .video-play-overlay:hover .video-play-button {
            transform: scale(1.1);
        }

        .video-play-button svg {
            width: 32px;
            height: 32px;
            color: #fff;
            margin-left: 4px;
        }

        .video-testimonial-info {
            padding: 30px;
        }

        .testimonial-student-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
        }

        .testimonial-student-details h4 {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .testimonial-student-details p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .testimonial-achievement {
            background: rgba(220, 38, 38, 0.1);
            border: 1px solid rgba(220, 38, 38, 0.3);
            border-radius: 12px;
            padding: 12px 16px;
            margin-top: 15px;
            display: none;
            align-items: center;
            gap: 10px;
        }

        .testimonial-achievement svg {
            width: 20px;
            height: 20px;
            color: #ef4444;
            flex-shrink: 0;
        }

        .testimonial-achievement span {
            color: #ef4444;
            font-size: 0.95rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .video-testimonials-title {
                font-size: 2.5rem;
            }

            .video-testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .video-testimonials-section {
                padding: 60px 0;
            }

            .video-play-button {
                width: 60px;
                height: 60px;
            }

            .video-play-button svg {
                width: 24px;
                height: 24px;
            }
        }

        /* Promo Video Section */
        .promo-video-section {
            padding: 20px 0 100px 0;
            background: linear-gradient(180deg, rgba(220, 38, 38, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
            position: relative;
            overflow: hidden;
        }

        .promo-video-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .promo-video-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .promo-video-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .promo-video-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Thumbnail card */
        .promo-video-thumb {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 16 / 9;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .promo-video-thumb-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: filter 0.35s ease, transform 0.35s ease;
        }

        .promo-video-thumb-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        }

        .promo-video-thumb-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.3);
            transition: background 0.35s ease;
        }

        /* Play button — layered pulse design */
        .promo-video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            cursor: pointer;
            background: none;
            border: none;
        }

        .promo-play-rings {
            position: relative;
            width: 88px;
            height: 88px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Outer pulse ring */
        .promo-play-rings::before,
        .promo-play-rings::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.35);
            animation: promoRingPulse 2.2s ease-out infinite;
        }

        .promo-play-rings::after {
            animation-delay: 1.1s;
        }

        @keyframes promoRingPulse {
            0%   { transform: scale(1);    opacity: 0.7; }
            100% { transform: scale(2.2);  opacity: 0; }
        }

        /* Inner circle */
        .promo-play-inner {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1.5px solid rgba(255, 255, 255, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
            position: relative;
            z-index: 1;
        }

        .promo-play-inner svg {
            width: 40px;
            height: 40px;
            margin-left: 5px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        }

        /* "Watch Now" label */
        .promo-play-label {
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.85);
            text-shadow: 0 2px 8px rgba(0,0,0,0.6);
            white-space: nowrap;
            transition: color 0.3s ease, letter-spacing 0.3s ease;
        }

        /* Hover effects */
        .promo-video-thumb:hover .promo-video-thumb-img {
            filter: blur(3px);
            transform: scale(1.03);
        }

        .promo-video-thumb:hover .promo-video-thumb-overlay {
            background: rgba(0, 0, 0, 0.5);
        }

        .promo-video-thumb:hover .promo-play-inner {
            background: rgba(220, 38, 38, 0.85);
            transform: scale(1.1);
            box-shadow: 0 12px 48px rgba(220, 38, 38, 0.55), inset 0 1px 0 rgba(255,255,255,0.25);
            border-color: rgba(255, 255, 255, 0.7);
        }

        .promo-video-thumb:hover .promo-play-label {
            color: #fff;
            letter-spacing: 0.16em;
        }

        /* Modal */
        .promo-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0, 0, 0, 0.85);
            align-items: center;
            justify-content: center;
            padding: 20px;
            backdrop-filter: blur(6px);
        }

        .promo-modal-overlay.active {
            display: flex;
        }

        .promo-modal-box {
            position: relative;
            width: 100%;
            max-width: 900px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
            animation: promoModalIn 0.3s ease;
        }

        @keyframes promoModalIn {
            from { opacity: 0; transform: scale(0.92); }
            to   { opacity: 1; transform: scale(1); }
        }

        .promo-modal-close {
            position: absolute;
            top: -44px;
            right: 0;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s ease;
            z-index: 1;
        }

        .promo-modal-close:hover {
            background: rgba(220, 38, 38, 0.8);
        }

        .promo-modal-close svg {
            width: 18px;
            height: 18px;
        }

        .promo-modal-video {
            position: relative;
            padding-top: 56.25%;
            background: #000;
        }

        @media (max-width: 768px) {
            .promo-video-section {
                padding: 60px 0;
            }

            .promo-video-title {
                font-size: 2.2rem;
            }

            .promo-play-rings {
                width: 64px;
                height: 64px;
            }

            .promo-play-inner {
                width: 54px;
                height: 54px;
            }

            .promo-play-inner svg {
                width: 22px;
                height: 22px;
            }

            .promo-play-label {
                font-size: 0.7rem;
            }
        }

        /* We Guarantee Section */
        .guarantee-section {
            padding: 20px 0 100px 0;
            background: linear-gradient(180deg, rgba(220, 38, 38, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
            position: relative;
            overflow: hidden;
        }

        .guarantee-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .guarantee-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .guarantee-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .guarantee-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .guarantee-checklist {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .guarantee-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: transform 0.3s ease;
        }

        .guarantee-item:hover {
            transform: translateX(10px);
        }

        .guarantee-check {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 4px;
        }

        .guarantee-check svg {
            width: 20px;
            height: 20px;
            color: #fff;
            stroke-width: 3;
        }

        .guarantee-text {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fff;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .guarantee-title {
                font-size: 2.5rem;
            }

            .guarantee-subtitle {
                font-size: 1rem;
            }

            .guarantee-checklist {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .guarantee-text {
                font-size: 1.1rem;
            }

            .guarantee-section {
                padding: 60px 0;
            }
        }

        /* FAQ Section */
        .faq-section {
            padding: 20px 0 100px 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(220, 38, 38, 0.03) 50%, rgba(0, 0, 0, 0) 100%);
            position: relative;
            overflow: hidden;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .faq-subtitle {
            font-size: 1.25rem;
            color: #9ca3af;
            max-width: 600px;
            margin: 0 auto;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: rgba(31, 41, 55, 0.3);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(75, 85, 99, 0.3);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(239, 68, 68, 0.5);
        }

        .faq-item.active {
            background: rgba(31, 41, 55, 0.5);
            border-color: rgba(239, 68, 68, 0.7);
        }

        .faq-question {
            padding: 24px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            user-select: none;
        }

        .faq-question h3 {
            font-size: 1.125rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0;
            padding-right: 20px;
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            background: rgba(220, 38, 38, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .faq-icon svg {
            width: 16px;
            height: 16px;
            color: #ef4444;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            background: rgba(220, 38, 38, 0.4);
        }

        .faq-item.active .faq-icon svg {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 28px 24px 28px;
            color: #d1d5db;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 60px 0;
            }

            .faq-title {
                font-size: 2rem;
            }

            .faq-subtitle {
                font-size: 1rem;
            }

            .faq-question {
                padding: 20px;
            }

            .faq-question h3 {
                font-size: 1rem;
            }

            .faq-answer-content {
                padding: 0 20px 20px 20px;
                font-size: 0.9rem;
            }
        }

        /* Achievements Section */
        .achievements-section {
            padding: 20px 0 100px 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(220, 38, 38, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
            position: relative;
            overflow: hidden;
        }

        .achievements-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .achievements-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .achievements-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .achievements-subtitle {
            font-size: 1.25rem;
            color: #9ca3af;
            max-width: 700px;
            margin: 0 auto;
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .achievement-card {
            background: linear-gradient(135deg, rgba(31, 41, 55, 0.4), rgba(17, 24, 39, 0.6));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(75, 85, 99, 0.3);
            border-radius: 24px;
            padding: 40px 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .achievement-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #dc2626, #ef4444, #f87171);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .achievement-card:hover {
            transform: translateY(-10px);
            border-color: rgba(239, 68, 68, 0.5);
            box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
        }

        .achievement-card:hover::before {
            transform: scaleX(1);
        }

        .achievement-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.15));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .achievement-card:hover .achievement-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), rgba(239, 68, 68, 0.25));
        }

        .achievement-icon svg {
            width: 40px;
            height: 40px;
            color: #ef4444;
        }

        .achievement-number {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            line-height: 1;
        }

        .achievement-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .achievement-description {
            font-size: 0.95rem;
            color: #9ca3af;
            line-height: 1.6;
        }

        @media (max-width: 1024px) {
            .achievements-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .achievements-section {
                padding: 60px 0;
            }

            .achievements-title {
                font-size: 2rem;
            }

            .achievements-subtitle {
                font-size: 1rem;
            }

            .achievements-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .achievement-card {
                padding: 32px 24px;
            }

            .achievement-number {
                font-size: 2rem;
            }
        }

        /* ── Faculty Section ── */
        .faculty-section {
            padding: 20px 0 72px;
            background: linear-gradient(180deg, transparent 0%, rgba(220, 38, 38, 0.025) 50%, transparent 100%);
            position: relative;
        }

        .faculty-scroll-outer {
            margin-top: 44px;
            position: relative;
            overflow: hidden;
        }

        .faculty-scroll-outer::before,
        .faculty-scroll-outer::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px;
            z-index: 2;
            pointer-events: none;
        }

        .faculty-scroll-outer::before {
            left: 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
        }

        .faculty-scroll-outer::after {
            right: 0;
            background: linear-gradient(to left, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
        }

        /* Scroll track – JS controls scrollLeft for auto-play */
        .faculty-scroll-track {
            display: flex;
            gap: 20px;
            overflow-x: scroll;
            padding: 12px 60px 16px;
            -webkit-overflow-scrolling: touch;
            user-select: none;
        }

        .faculty-scroll-track::-webkit-scrollbar {
            display: none;
        }

        .faculty-scroll-track {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Centered track for 1-2 items */
        .faculty-scroll-track.faculty-centered {
            justify-content: center;
            overflow-x: hidden;
        }

        /* ── Card ── */
        .faculty-compact-card {
            width: 256px;
            min-width: 256px;
            max-width: 256px;
            flex-shrink: 0;
            flex-grow: 0;
            background: linear-gradient(160deg, rgba(20, 26, 44, 0.98) 0%, rgba(15, 19, 36, 0.96) 100%);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
            cursor: default;
            display: flex;
            flex-direction: column;
        }

        /* Red top accent line */
        .faculty-compact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #b91c1c, #ef4444, #b91c1c);
            background-size: 200% 100%;
            animation: fac-bar 4s ease infinite;
        }

        @keyframes fac-bar {

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

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

        .faculty-compact-card:hover {
            transform: translateY(-7px);
            border-color: rgba(220, 38, 38, 0.35);
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(220, 38, 38, 0.12);
        }

        /* ── Photo ── */
        .faculty-card-photo-wrap {
            position: relative;
            width: 80px;
            height: 80px;
            margin: 28px auto 0;
            flex-shrink: 0;
        }

        .faculty-card-photo-wrap::before {
            content: '';
            position: absolute;
            inset: -2.5px;
            background: linear-gradient(135deg, #dc2626 0%, #f87171 50%, #dc2626 100%);
            background-size: 200% 200%;
            border-radius: 50%;
            z-index: 0;
            animation: fac-ring 3s linear infinite;
        }

        @keyframes fac-ring {
            0% {
                background-position: 0% 0%;
            }

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

        .faculty-card-photo {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 2.5px solid #0e1220;
            z-index: 1;
            display: block;
        }

        /* ── Name / Role / Bio ── */
        .faculty-card-body {
            padding: 14px 20px 0;
            text-align: center;
            flex-shrink: 0;
        }

        .faculty-card-name {
            font-size: 1.02rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 4px;
            line-height: 1.25;
            letter-spacing: -0.2px;
        }

        .faculty-card-role {
            font-size: 0.73rem;
            color: #f87171;
            font-weight: 600;
            margin: 0 0 8px;
            letter-spacing: 0.1px;
        }

        /* Bio — max 2 lines, no badge overflow */
        .faculty-card-badge {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.5;
            margin: 0;
            padding: 0 4px;
        }

        /* ── Stats ── */
        .faculty-card-stats {
            display: flex;
            margin: 16px 0 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            flex-shrink: 0;
        }

        .faculty-card-stat {
            flex: 1;
            padding: 12px 0;
            text-align: center;
            position: relative;
        }

        .faculty-card-stat+.faculty-card-stat::before {
            content: '';
            position: absolute;
            left: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background: rgba(255, 255, 255, 0.07);
        }

        .faculty-card-stat-num {
            display: block;
            font-size: 1.05rem;
            font-weight: 800;
            color: #ef4444;
            line-height: 1;
            margin-bottom: 3px;
        }

        .faculty-card-stat-lbl {
            display: block;
            font-size: 0.58rem;
            color: rgba(255, 255, 255, 0.38);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.6px;
        }

        /* ── Tags ── */
        .faculty-card-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            justify-content: center;
            padding: 12px 16px 0;
            flex-shrink: 0;
        }

        .faculty-card-spec-tag {
            padding: 3px 10px;
            background: rgba(220, 38, 38, 0.1);
            border: 1px solid rgba(220, 38, 38, 0.22);
            border-radius: 20px;
            font-size: 0.63rem;
            font-weight: 600;
            color: #fca5a5;
            letter-spacing: 0.2px;
        }

        /* ── Email ── */
        .faculty-card-contact {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            padding: 10px 16px 18px;
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.3);
            overflow: hidden;
            margin-top: auto;
        }

        .faculty-card-contact svg {
            flex-shrink: 0;
            color: rgba(239, 68, 68, 0.55);
        }

        .faculty-card-contact span {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .faculty-section {
                padding: 50px 0 60px;
            }

            .faculty-scroll-outer {
                margin-top: 32px;
            }

            .faculty-compact-card {
                width: 226px;
                min-width: 226px;
                max-width: 226px;
            }

            .faculty-scroll-track {
                padding: 10px 32px 14px;
                gap: 16px;
            }
        }

        @media (max-width: 480px) {
            .faculty-compact-card {
                width: 206px;
                min-width: 206px;
                max-width: 206px;
            }
        }

        /* ── View Profile Button ── */
        .faculty-view-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            width: calc(100% - 32px);
            margin: 10px 16px 18px;
            padding: 9px 0;
            background: transparent;
            border: 1px solid rgba(220, 38, 38, 0.35);
            border-radius: 10px;
            font-size: 0.72rem;
            font-weight: 600;
            color: #f87171;
            cursor: pointer;
            letter-spacing: 0.3px;
            transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
            flex-shrink: 0;
        }

        .faculty-view-btn:hover {
            background: rgba(220, 38, 38, 0.12);
            border-color: rgba(220, 38, 38, 0.6);
            color: #fca5a5;
        }

        /* ── Faculty Modal Overlay ── */
        .fac-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0, 0, 0, 0.72);
            backdrop-filter: blur(6px);
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow-y: auto;
        }

        .fac-modal-overlay.open {
            display: flex;
            animation: fac-overlay-in 0.22s ease;
        }

        @keyframes fac-overlay-in {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* ── Modal Box ── */
        .fac-modal-box {
            position: relative;
            background: linear-gradient(160deg, rgba(18, 24, 42, 0.99) 0%, rgba(12, 17, 32, 0.99) 100%);
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 22px;
            width: 100%;
            max-width: 640px;
            overflow: hidden;
            animation: fac-modal-in 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes fac-modal-in {
            from {
                transform: scale(0.88) translateY(20px);
                opacity: 0;
            }

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

        /* Red top stripe */
        .fac-modal-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #b91c1c, #ef4444, #b91c1c);
        }

        /* Close button */
        .fac-modal-close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            cursor: pointer;
            color: rgba(255, 255, 255, 0.7);
            transition: background 0.2s, color 0.2s;
            z-index: 1;
        }

        .fac-modal-close:hover {
            background: rgba(220, 38, 38, 0.2);
            color: #fff;
        }

        /* ── Modal Header ── */
        .fac-modal-header {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 28px 28px 0;
        }

        .fac-modal-photo-wrap {
            position: relative;
            width: 80px;
            height: 80px;
            flex-shrink: 0;
        }

        .fac-modal-photo-wrap::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #dc2626, #f87171);
            border-radius: 50%;
            z-index: 0;
        }

        .fac-modal-photo {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #0c1120;
            z-index: 1;
            display: block;
        }

        .fac-modal-header-info {
            flex: 1;
            min-width: 0;
        }

        .fac-modal-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 4px;
            line-height: 1.25;
        }

        .fac-modal-title {
            font-size: 0.8rem;
            color: #f87171;
            font-weight: 600;
            margin: 0 0 8px;
        }

        .fac-modal-bio {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.55;
            margin: 0 0 10px;
        }

        .fac-modal-contacts {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .fac-modal-contact-chip {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 20px;
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .fac-modal-contact-chip svg {
            color: rgba(239, 68, 68, 0.7);
            flex-shrink: 0;
        }

        /* ── Stats row ── */
        .fac-modal-stats {
            display: flex;
            margin: 22px 28px 0;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 14px;
            overflow: hidden;
        }

        .fac-modal-stat {
            flex: 1;
            padding: 14px 0;
            text-align: center;
            position: relative;
        }

        .fac-modal-stat+.fac-modal-stat::before {
            content: '';
            position: absolute;
            left: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background: rgba(255, 255, 255, 0.07);
        }

        .fac-modal-stat-num {
            display: block;
            font-size: 1.25rem;
            font-weight: 800;
            color: #ef4444;
            line-height: 1;
            margin-bottom: 4px;
        }

        .fac-modal-stat-lbl {
            display: block;
            font-size: 0.6rem;
            color: rgba(255, 255, 255, 0.38);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ── Modal Body (sections) ── */
        .fac-modal-body {
            padding: 20px 28px 28px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }


        .fac-modal-section-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.8);
            margin: 0 0 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(220, 38, 38, 0.2);
        }

        .fac-modal-section-title svg {
            color: #ef4444;
            flex-shrink: 0;
        }

        /* Education timeline */
        .fac-modal-timeline {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-left: 16px;
            border-left: 2px solid rgba(220, 38, 38, 0.25);
        }

        .fac-modal-timeline-item {
            position: relative;
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .fac-modal-timeline-dot {
            position: absolute;
            left: -21px;
            top: 5px;
            width: 8px;
            height: 8px;
            background: #dc2626;
            border-radius: 50%;
            border: 2px solid #0c1120;
            flex-shrink: 0;
        }

        .fac-modal-edu-degree {
            font-size: 0.85rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
        }

        .fac-modal-edu-inst {
            font-size: 0.75rem;
            color: #fca5a5;
            font-weight: 600;
            margin-top: 1px;
        }

        .fac-modal-edu-year {
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.38);
            margin-top: 1px;
        }

        /* Certifications grid */
        .fac-modal-cert-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        .fac-modal-cert-item {
            display: flex;
            align-items: flex-start;
            gap: 7px;
            padding: 9px 12px;
            background: rgba(220, 38, 38, 0.07);
            border: 1px solid rgba(220, 38, 38, 0.18);
            border-radius: 10px;
            font-size: 0.73rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.35;
        }

        .fac-modal-cert-item svg {
            color: #ef4444;
            flex-shrink: 0;
            margin-top: 1px;
        }

        /* Specializations */
        .fac-modal-spec-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
        }

        .fac-modal-spec-tag {
            padding: 5px 13px;
            background: rgba(220, 38, 38, 0.1);
            border: 1px solid rgba(220, 38, 38, 0.25);
            border-radius: 20px;
            font-size: 0.73rem;
            font-weight: 600;
            color: #fca5a5;
        }

        @media (max-width: 640px) {
            .fac-modal-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 24px 20px 0;
            }

            .fac-modal-contacts {
                justify-content: center;
            }

            .fac-modal-stats {
                margin: 18px 20px 0;
            }

            .fac-modal-body {
                padding: 16px 20px 24px;
            }

            .fac-modal-cert-grid {
                grid-template-columns: 1fr;
            }

            .fac-modal-stat-num {
                font-size: 1.05rem;
            }
        }

        /* -----------Interface_Section-Css-Start----------------- */

        /* interface wraper */
        .interface_section .screen_slider {
            margin-top: 35px;
            min-height: 720px;
        }

        /* interface images */
        .interface_section .owl-item .screen_frame_img img {
            transform: scale(.9);
            border: 2px solid #000;
            border-radius: 20px;
            transition: 1s all;
            margin: 0 auto;
        }

        .interface_section .owl-item.center .screen_frame_img img {
            transform: scale(1);
            border: 3px solid #000;
        }

        .interface_section .section_title {
            text-align: center;
        }

        .interface_section .section_title h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .interface_section .section_title h2 span {
            color: #6c63ff;
        }

        .interface_section .section_title p {
            font-size: 16px;
            color: #666;
        }

        /* -----------Interface_Section-Css-End----------------- */

        /* -----------Download_App_Section-Start------------------ */
        /* All styling is now handled by Tailwind CSS classes */
        /* -----------Download_App_Section-End------------------ */

        /* -----------Certifications_Section-Start------------------ */
        .certifications-section {
            padding: 80px 0;
            background: linear-gradient(180deg, #000 0%, rgba(17, 24, 39, 0.95) 100%);
            position: relative;
            overflow: hidden;
        }

        .certifications-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 40%);
            pointer-events: none;
        }

        .certifications-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        .certifications-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .certifications-left {
            padding-right: 20px;
        }

        .certifications-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(34, 197, 94, 0.15);
            border: 1px solid rgba(34, 197, 94, 0.3);
            padding: 8px 16px;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .certifications-badge svg {
            width: 18px;
            height: 18px;
            color: #22c55e;
        }

        .certifications-badge span {
            font-size: 14px;
            font-weight: 600;
            color: #22c55e;
        }

        .certifications-title {
            font-size: 42px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .certifications-description {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 30px;
            max-width: 500px;
        }

        .certifications-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .certification-feature {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .certification-feature:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(220, 38, 38, 0.2);
        }

        .certification-feature-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .certification-feature-icon svg {
            width: 22px;
            height: 22px;
            color: #ef4444;
        }

        .certification-feature-text h4 {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 4px;
        }

        .certification-feature-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
        }

        .certifications-right {
            display: flex;
            justify-content: center;
        }

        .certification-card-large {
            background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.9));
            border: 1px solid rgba(220, 38, 38, 0.2);
            border-radius: 24px;
            padding: 40px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            max-width: 420px;
            width: 100%;
        }

        .certification-card-glow {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.5s ease;
            animation: rotate-glow 10s linear infinite;
        }

        @keyframes rotate-glow {
            from {
                transform: rotate(0deg);
            }

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

        .certification-card-large:hover {
            border-color: rgba(220, 38, 38, 0.5);
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(220, 38, 38, 0.2);
        }

        .certification-card-large:hover .certification-card-glow {
            opacity: 1;
        }

        .certification-card-content {
            position: relative;
            z-index: 1;
        }

        .certification-logo-wrapper {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .certification-logo-large {
            width: 70px;
            height: 70px;
            object-fit: contain;
        }

        .certification-info h3 {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .certification-info p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 20px;
        }

        .certification-meta {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .certification-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(34, 197, 94, 0.15);
            border: 1px solid rgba(34, 197, 94, 0.3);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            color: #22c55e;
        }

        .certification-tag svg {
            width: 14px;
            height: 14px;
        }

        .certification-view-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: #fff;
            padding: 14px 24px;
            border-radius: 12px;
            border: none;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .certification-view-btn svg {
            width: 20px;
            height: 20px;
        }

        .certification-view-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
        }

        /* Modal Styles */
        .certification-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .certification-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .certification-modal-content {
            background: #1f2937;
            border-radius: 16px;
            width: 100%;
            max-width: 900px;
            max-height: 90vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .certification-modal.active .certification-modal-content {
            transform: scale(1);
        }

        .certification-modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .certification-modal-header h3 {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            margin: 0;
        }

        .certification-modal-close {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .certification-modal-close:hover {
            background: rgba(220, 38, 38, 0.2);
        }

        .certification-modal-close svg {
            width: 24px;
            height: 24px;
            color: #fff;
        }

        .certification-modal-body {
            flex: 1;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .certification-modal-body iframe {
            width: 100%;
            height: 70vh;
            border: none;
        }

        .certification-fallback {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            text-align: center;
        }

        .certification-fallback svg {
            width: 80px;
            height: 80px;
            color: rgba(255, 255, 255, 0.3);
            margin-bottom: 20px;
        }

        .certification-fallback p {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 20px;
        }

        .certification-download-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: #fff;
            padding: 14px 28px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .certification-download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
        }

        @media (max-width: 1024px) {
            .certifications-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .certifications-left {
                padding-right: 0;
                text-align: center;
            }

            .certifications-description {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }

            .certifications-features {
                align-items: center;
            }

            .certification-feature {
                max-width: 400px;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .certifications-section {
                padding: 60px 0;
            }

            .certifications-title {
                font-size: 32px;
            }

            .certifications-description {
                font-size: 15px;
            }

            .certification-card-large {
                padding: 30px;
            }

            .certification-logo-wrapper {
                width: 80px;
                height: 80px;
            }

            .certification-logo-large {
                width: 55px;
                height: 55px;
            }

            .certification-info h3 {
                font-size: 18px;
            }

            .certification-modal-body iframe {
                height: 60vh;
            }
        }

        /* -----------Certifications_Section-End------------------ */

        /* -----------Map_Section-Start------------------ */
        .map-section {
            padding: 60px 0;
            background: #000;
        }

        .map-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .map-wrapper {
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(220, 38, 38, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            transition: all 0.3s ease;
        }

        .map-wrapper:hover {
            border-color: rgba(220, 38, 38, 0.4);
            box-shadow: 0 25px 50px rgba(220, 38, 38, 0.15);
        }

        .map-wrapper iframe {
            display: block;
            filter: grayscale(0.2) contrast(1.1);
        }

        @media (max-width: 768px) {
            .map-section {
                padding: 40px 0;
            }

            .map-wrapper iframe {
                height: 350px;
            }
        }

        /* -----------Map_Section-End------------------ */