        * {
            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-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 {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 200px;
        }

        .preloader-logo-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 60px;
        }

        .preloader-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .preloader-logo img {
            height: 35px;
            width: auto;
        }

        .preloader-site-name {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: 1px;
            text-align: center;
            z-index: 2;
        }

        .preloader-spinner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            pointer-events: none;
        }

        .spinner-circle {
            width: 100%;
            height: 100%;
            border: 3px solid rgba(220, 38, 38, 0.1);
            border-radius: 50%;
            position: relative;
        }

        .spinner-circle::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 50%;
            border: 3px solid transparent;
            border-top-color: #DC2626;
            border-right-color: #EF4444;
            animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
        }

        .spinner-circle::after {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border-radius: 50%;
            border: 2px solid transparent;
            border-bottom-color: #F87171;
            border-left-color: #FCA5A5;
            animation: spin 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite reverse;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .preloader-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.75rem;
            letter-spacing: 2px;
            animation: pulse 1.5s ease-in-out infinite;
            text-align: center;
            z-index: 2;
            margin-top: 0;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.6;
            }

            50% {
                opacity: 1;
            }
        }

        /* 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;
            }
        }

        /* Testimonials Slider Styles */
        .testimonials-section {
            padding: 20px 0 64px;
            position: relative;
            overflow: hidden;
        }

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

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

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

        .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: 200px;
            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.8) 20%,
                    rgba(0, 0, 0, 0.4) 50%,
                    transparent 100%);
        }

        .slider-container::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%);
        }

        .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 400px;
            background: linear-gradient(135deg, #1f2937, #111827);
            border-radius: 20px;
            padding: 32px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1.5px solid transparent;
            background-clip: padding-box;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            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;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(239, 68, 68, 0.3);
        }

        .testimonial-quote {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 60px;
            color: rgba(239, 68, 68, 0.2);
            font-family: Georgia, serif;
            line-height: 1;
        }

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

        .testimonial-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            margin-right: 16px;
            border: 3px solid #ef4444;
            object-fit: cover;
        }

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

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

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
        }

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

        .testimonial-text {
            color: #d1d5db;
            font-size: 1rem;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

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

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

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

        /* 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: 3rem;
            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-badge-blue {
            background: linear-gradient(to right, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.15));
            color: #93c5fd;
            border-color: rgba(59, 130, 246, 0.3);
        }

        .course-badge-purple {
            background: linear-gradient(to right, rgba(168, 85, 247, 0.15), rgba(147, 51, 234, 0.15));
            color: #c4b5fd;
            border-color: rgba(168, 85, 247, 0.3);
        }

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

        .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);
        }

        .course-enroll-btn-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .course-enroll-btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            box-shadow: none;
        }

        @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: 3.75rem;
            }
        }

        /* 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: 100vh;
            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: 120px 24px 80px;
            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: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

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

        .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;
            gap: -6px;
            margin-top: 4px;
        }

        .scroll-arrow {
            width: 20px;
            height: 20px;
            opacity: 0;
            animation: arrow-wave 2s infinite;
        }

        .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,
            .nav-logo-icon {
                height: 36px;
                width: 36px;
            }
        }

        /* 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;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            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: 40px 0;
            overflow: hidden;
            position: relative;
            transform: skewY(-2deg);
            margin: 80px 0;
        }

        .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: 90px;
            height: 90px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            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: 45px;
            height: 45px;
            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(4, 1fr);
            grid-template-rows: repeat(2, 350px);
            gap: 20px;
            margin-top: 50px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .video-testimonial-card:nth-child(1) {
            grid-column: 1 / 3;
            grid-row: 1 / 2;
        }

        .video-testimonial-card:nth-child(2) {
            grid-column: 3 / 5;
            grid-row: 1 / 2;
        }

        .video-testimonial-card:nth-child(3) {
            grid-column: 1 / 2;
            grid-row: 2 / 3;
        }

        .video-testimonial-card:nth-child(4) {
            grid-column: 2 / 4;
            grid-row: 2 / 3;
        }

        .video-testimonial-card:nth-child(5) {
            grid-column: 4 / 5;
            grid-row: 2 / 3;
        }

        .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%;
            height: 200px;
            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;
                grid-template-rows: auto;
                gap: 20px;
            }

            .video-testimonial-card:nth-child(1),
            .video-testimonial-card:nth-child(2),
            .video-testimonial-card:nth-child(3),
            .video-testimonial-card:nth-child(4),
            .video-testimonial-card:nth-child(5) {
                grid-column: 1;
                grid-row: auto;
            }

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

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

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

        /* 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 - Unique CV Style */
        .faculty-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;
        }

        .faculty-showcase {
            max-width: 1100px;
            margin: 50px auto 0;
            padding: 0 24px;
        }

        .faculty-unique-card {
            position: relative;
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 0;
            background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(31, 41, 55, 0.9));
            backdrop-filter: blur(30px);
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(75, 85, 99, 0.3);
            min-height: 500px;
            transition: all 0.3s ease;
        }

        .faculty-unique-card:hover {
            border-color: rgba(75, 85, 99, 0.5);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        @keyframes gradientShift {

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

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

        /* Left Panel - Photo & Info */
        .faculty-left-panel {
            position: relative;
            background: linear-gradient(180deg, rgba(220, 38, 38, 0.15), rgba(0, 0, 0, 0.3));
            padding: 30px 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            border-right: 1px solid rgba(75, 85, 99, 0.3);
        }

        .faculty-photo-frame {
            position: relative;
            width: 180px;
            height: 180px;
            margin-bottom: 20px;
        }

        .faculty-photo-frame::before {
            content: '';
            position: absolute;
            inset: -4px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            border-radius: 50%;
            z-index: 0;
            animation: rotate 10s linear infinite;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .faculty-photo-frame::after {
            content: '';
            position: absolute;
            inset: -4px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            border-radius: 50%;
            z-index: 0;
            filter: blur(20px);
            opacity: 0.5;
        }

        .faculty-main-photo {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid rgba(17, 24, 39, 1);
            z-index: 1;
        }

        .faculty-main-info {
            text-align: center;
            margin-bottom: 20px;
        }

        .faculty-main-name {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 6px;
            letter-spacing: -0.5px;
        }

        .faculty-main-title {
            font-size: 1rem;
            color: #ef4444;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .faculty-main-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(220, 38, 38, 0.2);
            border: 2px solid #dc2626;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            color: #fca5a5;
            letter-spacing: 1px;
        }

        .faculty-contact-info {
            width: 100%;
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid rgba(75, 85, 99, 0.3);
        }

        .faculty-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: rgba(220, 38, 38, 0.1);
            border-radius: 10px;
            margin-bottom: 8px;
            transition: all 0.3s ease;
        }

        .faculty-contact-item:hover {
            background: rgba(220, 38, 38, 0.2);
            transform: translateX(5px);
        }

        .faculty-contact-icon {
            width: 20px;
            height: 20px;
            color: #ef4444;
        }

        .faculty-contact-text {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Right Panel - CV Details */
        .faculty-right-panel {
            padding: 30px 35px;
            overflow-y: auto;
        }

        .faculty-cv-section {
            margin-bottom: 24px;
        }

        .faculty-cv-heading {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(220, 38, 38, 0.3);
        }

        .faculty-cv-icon {
            width: 24px;
            height: 24px;
            color: #ef4444;
        }

        .faculty-cv-heading h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: white;
            margin: 0;
        }

        /* Education Timeline */
        .faculty-education-timeline {
            position: relative;
            padding-left: 28px;
        }

        .faculty-education-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, #dc2626, transparent);
        }

        .faculty-education-item {
            position: relative;
            margin-bottom: 18px;
            padding-left: 8px;
        }

        .faculty-education-item::before {
            content: '';
            position: absolute;
            left: -32px;
            top: 4px;
            width: 10px;
            height: 10px;
            background: #dc2626;
            border-radius: 50%;
            border: 3px solid rgba(17, 24, 39, 1);
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
        }

        .faculty-degree {
            font-size: 1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 3px;
        }

        .faculty-institution {
            font-size: 0.9rem;
            color: #fca5a5;
            font-weight: 600;
            margin-bottom: 3px;
        }

        .faculty-year {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Experience Cards */
        .faculty-experience-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .faculty-exp-card {
            padding: 16px;
            background: rgba(220, 38, 38, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 14px;
            transition: all 0.3s ease;
        }

        .faculty-exp-card:hover {
            background: rgba(220, 38, 38, 0.15);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 38, 38, 0.2);
        }

        .faculty-exp-number {
            font-size: 1.75rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 6px;
        }

        .faculty-exp-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
        }

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

        .faculty-cert-item {
            padding: 12px;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.05));
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .faculty-cert-item:hover {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1));
            transform: translateX(5px);
        }

        .faculty-cert-check {
            width: 20px;
            height: 20px;
            color: #ef4444;
            flex-shrink: 0;
        }

        .faculty-cert-name {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 600;
        }

        /* Specializations */
        .faculty-specializations {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .faculty-spec-tag {
            padding: 8px 14px;
            background: rgba(220, 38, 38, 0.15);
            border: 1px solid rgba(239, 68, 68, 0.4);
            border-radius: 16px;
            font-size: 0.85rem;
            color: #fca5a5;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .faculty-spec-tag:hover {
            background: rgba(220, 38, 38, 0.3);
            border-color: #ef4444;
            transform: scale(1.05);
        }

        @media (max-width: 1024px) {
            .faculty-unique-card {
                grid-template-columns: 1fr;
            }

            .faculty-left-panel {
                border-right: none;
                border-bottom: 1px solid rgba(75, 85, 99, 0.3);
            }

            .faculty-experience-grid,
            .faculty-cert-grid {
                grid-template-columns: 1fr;
            }
        }

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

            .faculty-right-panel {
                padding: 30px 24px;
            }

            .faculty-left-panel {
                padding: 30px 20px;
            }
        }

        /* -----------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------------------ */