     :root {
            --primary-bg: #0E1117;
            --secondary-bg: #151A23;
            --tertiary-bg: #1A202C;
            --primary-text: #F5F5F5;
            --secondary-text: #A0AEC0;
            --accent-color: linear-gradient(135deg, #C0C0C0, #A9A9A9);
            --highlight-color: #F4A460;
            --highlight-hover: #e69550;
            --section-padding: 120px 0;
            --card-radius: 24px;
            --transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --glow-color: rgba(244, 164, 96, 0.4);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-bg);
            color: var(--primary-text);
            line-height: 1.8;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
        }

        /* Advanced Preloader */

        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-bg);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            flex-direction: column;
        }
        
        .loader {
            width: 80px;
            height: 80px;
            border: 5px solid rgba(244, 164, 96, 0.3);
            border-radius: 50%;
            border-top-color: var(--highlight-color);
            animation: spin 1.5s ease-in-out infinite;
            margin-bottom: 20px;
        }
        
        .loader-text {
            font-size: 1.2rem;
            color: var(--secondary-text);
            font-weight: 500;
        }

        /* #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-bg);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            flex-direction: column;
        }
        
        .loader-container {
            position: relative;
            width: 120px;
            height: 120px;
        }
        
        .loader {
            width: 100%;
            height: 100%;
            border: 4px solid rgba(244, 164, 96, 0.2);
            border-radius: 50%;
            border-top-color: var(--highlight-color);
            animation: spin 1.5s ease-in-out infinite;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        .loader-2 {
            border: 4px solid transparent;
            border-top-color: rgba(244, 164, 96, 0.5);
            animation: spin 2s linear infinite;
        }
        
        .loader-3 {
            border: 4px solid transparent;
            border-top-color: rgba(244, 164, 96, 0.8);
            animation: spin 2.5s linear infinite reverse;
        }
        
        .loader-text {
            font-size: 1.4rem;
            color: var(--secondary-text);
            font-weight: 600;
            margin-top: 30px;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
        }
        
        .loader-text:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--highlight-color);
            transform: scaleX(0);
            transform-origin: left;
            animation: loadingBar 2s ease-in-out infinite;
        } */
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        @keyframes loadingBar {
            0% { transform: scaleX(0); }
            50% { transform: scaleX(1); }
            100% { transform: scaleX(0); }
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 14px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--secondary-bg);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--highlight-color);
            border-radius: 10px;
            border: 3px solid var(--secondary-bg);
            background-clip: padding-box;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--highlight-hover);
        }
        
        /* Enhanced Navbar */
        .navbar {
            background-color: rgba(14, 17, 23, 0.98);
            backdrop-filter: blur(20px);
            padding: 20px 0;
            transition: var(--transition);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000;
        }
        
        .navbar.scrolled {
            padding: 15px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-family: 'Poppins', sans-serif;
            font-weight: 900;
            font-size: 36px;
            background: var(--accent-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: var(--transition);
            position: relative;
        }
        
        .logo-img {
            height: 50px;
            margin-right: 15px;
            transition: var(--transition);
            filter: drop-shadow(0 0 10px rgba(244, 164, 96, 0.3));
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(15deg) scale(1.1);
        }
        
        .nav-link {
            color: var(--primary-text) !important;
            font-weight: 600;
            margin: 0 15px;
            transition: var(--transition);
            position: relative;
            padding: 10px 0 !important;
            font-size: 1.1rem;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background: var(--highlight-color);
            transition: var(--transition);
            border-radius: 2px;
            box-shadow: 0 0 10px var(--glow-color);
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--highlight-color) !important;
            text-shadow: 0 0 10px rgba(244, 164, 96, 0.5);
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary-text);
            padding: 10px 15px;
            font-size: 1.4rem;
            transition: var(--transition);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(244, 164, 96, 0.3);
        }
        
        /* Advanced Hero Section */
        .testimonials-hero {
            padding: 200px 0 150px;
            background: linear-gradient(135deg, rgba(14, 17, 23, 0.95) 0%, rgba(26, 32, 44, 0.9) 100%), url('../assets/images/testimonialhero.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .testimonials-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(244, 164, 96, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(244, 164, 96, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(244, 164, 96, 0.08) 0%, transparent 50%);
            z-index: 1;
        }
        
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 2;
            pointer-events: none;
        }
        
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(244, 164, 96, 0.1);
            filter: blur(40px);
            animation: float 15s ease-in-out infinite;
        }
        
        .floating-element:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            left: 80%;
            animation-delay: 3s;
        }
        
        .floating-element:nth-child(3) {
            width: 250px;
            height: 250px;
            top: 30%;
            left: 70%;
            animation-delay: 6s;
        }
        
        .floating-element:nth-child(4) {
            width: 180px;
            height: 180px;
            top: 70%;
            left: 20%;
            animation-delay: 9s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }
        
        .testimonials-hero-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 3;
        }
        
        .testimonials-hero-title {
            font-size: 5.5rem;
            font-weight: 900;
            margin-bottom: 30px;
            background: linear-gradient(to right, #F5F5F5, #F4A460, #F5F5F5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: relative;
            display: inline-block;
            line-height: 1.1;
        }
        
        .testimonials-hero-title:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, transparent, var(--highlight-color), transparent);
            bottom: -15px;
            left: 0;
            border-radius: 3px;
            box-shadow: 0 0 20px var(--glow-color);
        }
        
        .testimonials-hero-subtitle {
            font-size: 1.8rem;
            color: var(--secondary-text);
            margin-bottom: 50px;
            font-weight: 400;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .testimonials-hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(244, 164, 96, 0.2);
            color: var(--highlight-color);
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.3rem;
            margin-bottom: 40px;
            border: 1px solid rgba(244, 164, 96, 0.4);
            backdrop-filter: blur(15px);
            font-weight: 700;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .testimonials-hero-badge:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: all 0.8s;
        }
        
        .testimonials-hero-badge:hover:before {
            left: 100%;
        }
        
        .testimonials-hero-badge i {
            margin-right: 15px;
            font-size: 1.5rem;
        }
        
        .breadcrumb {
            background: transparent;
            justify-content: center;
            margin-bottom: 0;
            font-size: 1.1rem;
        }
        
        .breadcrumb-item a {
            color: var(--highlight-color);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 600;
        }
        
        .breadcrumb-item a:hover {
            color: var(--highlight-hover);
            text-shadow: 0 0 10px rgba(244, 164, 96, 0.5);
        }
        
        .breadcrumb-item.active {
            color: var(--secondary-text);
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            color: var(--secondary-text);
        }
        
        /* Enhanced Section Titles */
        .section-header {
            text-align: center;
            margin-bottom: 90px;
            position: relative;
        }
        
        .section-title {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            background: linear-gradient(to right, #F5F5F5, #F4A460);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 120px;
            height: 6px;
            background: var(--highlight-color);
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
            box-shadow: 0 0 20px var(--glow-color);
        }
        
        .section-subtitle {
            font-size: 1.4rem;
            color: var(--secondary-text);
            max-width: 800px;
            margin: 40px auto 0;
            font-weight: 400;
            line-height: 1.7;
        }
        
        /* Advanced Testimonials Grid Section */
        .testimonials-grid-section {
            padding: var(--section-padding);
            background: var(--primary-bg);
            position: relative;
            overflow: hidden;
        }
        
        .testimonials-grid-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(244, 164, 96, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(244, 164, 96, 0.03) 0%, transparent 50%);
            z-index: 0;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-card {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            padding: 50px 40px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            height: 100%;
            backdrop-filter: blur(10px);
        }
        
        .testimonial-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(244, 164, 96, 0.08) 0%, transparent 50%);
            z-index: -1;
            transition: var(--transition);
            opacity: 0;
        }
        
        .testimonial-card:hover:before {
            opacity: 1;
        }
        
        .testimonial-card:hover {
            transform: translateY(-20px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 30px var(--glow-color);
            border-color: var(--highlight-color);
        }
        
        .testimonial-rating {
            margin-bottom: 30px;
            color: var(--highlight-color);
            font-size: 1.4rem;
            text-shadow: 0 0 10px rgba(244, 164, 96, 0.5);
        }
        
        .testimonial-text {
            color: var(--primary-text);
            font-style: italic;
            margin-bottom: 35px;
            font-size: 1.2rem;
            line-height: 1.8;
            flex-grow: 1;
            position: relative;
            padding-left: 30px;
        }
        
        .testimonial-text:before {
            content: '"';
            font-size: 6rem;
            color: var(--highlight-color);
            position: absolute;
            top: -30px;
            left: -20px;
            opacity: 0.3;
            font-family: Georgia, serif;
            line-height: 1;
            text-shadow: 0 0 20px rgba(244, 164, 96, 0.5);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: auto;
            position: relative;
        }
        
        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 25px;
            border: 4px solid var(--highlight-color);
            position: relative;
            box-shadow: 0 0 20px var(--glow-color);
            transition: var(--transition);
        }
        
        .testimonial-card:hover .testimonial-avatar {
            transform: scale(1.1);
        }
        
        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .testimonial-card:hover .testimonial-avatar img {
            transform: scale(1.1);
        }
        
        .testimonial-author-info h4 {
            font-size: 1.5rem;
            margin-bottom: 8px;
            font-weight: 700;
        }
        
        .testimonial-author-info p {
            color: var(--secondary-text);
            margin-bottom: 0;
            font-size: 1.1rem;
        }
        
        .testimonial-service {
            display: inline-block;
            background: rgba(244, 164, 96, 0.2);
            color: var(--highlight-color);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 1rem;
            margin-top: 15px;
            font-weight: 600;
            border: 1px solid rgba(244, 164, 96, 0.3);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Enhanced Featured Testimonials Section */
        .featured-testimonials-section {
            padding: var(--section-padding);
            background: var(--secondary-bg);
            position: relative;
            overflow: hidden;
        }
        
        .featured-testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(244, 164, 96, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(244, 164, 96, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(244, 164, 96, 0.07) 0%, transparent 50%);
            z-index: 0;
        }
        
        .featured-testimonial-card {
            background: var(--primary-bg);
            border-radius: var(--card-radius);
            padding: 70px 60px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            z-index: 1;
            height: 100%;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            display: flex;
            flex-direction: column;
            backdrop-filter: blur(15px);
        }
        
        .featured-testimonial-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(244, 164, 96, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }
        
        .featured-testimonial-card:hover::after {
            opacity: 1;
        }
        
        .featured-testimonial-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(244, 164, 96, 0.1), transparent);
            transition: all 1s;
            z-index: -1;
        }
        
        .featured-testimonial-card:hover:before {
            left: 100%;
        }
        
        .featured-testimonial-card:hover {
            transform: translateY(-25px);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35), 0 0 40px var(--glow-color);
            border-color: var(--highlight-color);
        }
        
        .featured-testimonial-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 40px;
            border: 6px solid var(--highlight-color);
            position: relative;
            box-shadow: 0 0 30px var(--glow-color);
            transition: var(--transition);
        }
        
        .featured-testimonial-card:hover .featured-testimonial-avatar {
            transform: scale(1.1);
        }
        
        .featured-testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .featured-testimonial-card:hover .featured-testimonial-avatar img {
            transform: scale(1.1);
        }
        
        .featured-testimonial-rating {
            margin-bottom: 35px;
            color: var(--highlight-color);
            font-size: 1.8rem;
            text-shadow: 0 0 15px rgba(244, 164, 96, 0.5);
        }
        
        .featured-testimonial-text {
            color: var(--primary-text);
            font-style: italic;
            margin-bottom: 40px;
            font-size: 1.5rem;
            line-height: 1.8;
            flex-grow: 1;
            position: relative;
            padding: 0 20px;
        }
        
        .featured-testimonial-text:before {
            content: '"';
            font-size: 8rem;
            color: var(--highlight-color);
            position: absolute;
            top: -50px;
            left: -30px;
            opacity: 0.3;
            font-family: Georgia, serif;
            line-height: 1;
            text-shadow: 0 0 30px rgba(244, 164, 96, 0.5);
        }
        
        .featured-testimonial-author h4 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 800;
        }
        
        .featured-testimonial-author p {
            color: var(--secondary-text);
            margin-bottom: 0;
            font-size: 1.2rem;
        }
        
        .featured-testimonial-service {
            display: inline-block;
            background: rgba(244, 164, 96, 0.2);
            color: var(--highlight-color);
            padding: 10px 25px;
            border-radius: 20px;
            font-size: 1.1rem;
            margin-top: 20px;
            font-weight: 700;
            border: 1px solid rgba(244, 164, 96, 0.4);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        /* Advanced Testimonial Carousel Section */
        .testimonial-carousel-section {
            padding: var(--section-padding);
            background: var(--primary-bg);
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-carousel-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 70% 30%, rgba(244, 164, 96, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(244, 164, 96, 0.03) 0%, transparent 50%);
            z-index: 0;
        }
        
        .swiper {
            width: 100%;
            height: 100%;
            padding: 60px 0;
            position: relative;
            z-index: 1;
        }
        
        .swiper-slide {
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .carousel-testimonial-card {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            padding: 60px 50px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            display: flex;
            flex-direction: column;
            height: 100%;
            max-width: 900px;
            margin: 0 auto;
            backdrop-filter: blur(10px);
        }
        
        .carousel-testimonial-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(244, 164, 96, 0.08) 0%, transparent 50%);
            z-index: -1;
            transition: var(--transition);
            opacity: 0;
        }
        
        .carousel-testimonial-card:hover:before {
            opacity: 1;
        }
        
        .carousel-testimonial-card:hover {
            box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35), 0 0 30px var(--glow-color);
            border-color: var(--highlight-color);
        }
        
        .carousel-testimonial-rating {
            margin-bottom: 30px;
            color: var(--highlight-color);
            font-size: 1.6rem;
            text-shadow: 0 0 10px rgba(244, 164, 96, 0.5);
        }
        
        .carousel-testimonial-text {
            color: var(--primary-text);
            font-style: italic;
            margin-bottom: 40px;
            font-size: 1.4rem;
            line-height: 1.8;
            flex-grow: 1;
            position: relative;
            padding-left: 40px;
        }
        
        .carousel-testimonial-text:before {
            content: '"';
            font-size: 7rem;
            color: var(--highlight-color);
            position: absolute;
            top: -40px;
            left: -25px;
            opacity: 0.3;
            font-family: Georgia, serif;
            line-height: 1;
            text-shadow: 0 0 25px rgba(244, 164, 96, 0.5);
        }
        
        .carousel-testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: auto;
        }
        
        .carousel-testimonial-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 25px;
            border: 4px solid var(--highlight-color);
            position: relative;
            box-shadow: 0 0 25px var(--glow-color);
            transition: var(--transition);
        }
        
        .carousel-testimonial-card:hover .carousel-testimonial-avatar {
            transform: scale(1.1);
        }
        
        .carousel-testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .carousel-testimonial-card:hover .carousel-testimonial-avatar img {
            transform: scale(1.1);
        }
        
        .carousel-testimonial-author-info h4 {
            font-size: 1.6rem;
            margin-bottom: 8px;
            font-weight: 700;
        }
        
        .carousel-testimonial-author-info p {
            color: var(--secondary-text);
            margin-bottom: 0;
            font-size: 1.2rem;
        }
        
        .carousel-testimonial-service {
            display: inline-block;
            background: rgba(244, 164, 96, 0.2);
            color: var(--highlight-color);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 1rem;
            margin-top: 15px;
            font-weight: 600;
            border: 1px solid rgba(244, 164, 96, 0.3);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .swiper-button-next, .swiper-button-prev {
            color: var(--highlight-color);
            width: 60px;
            height: 60px;
            background: rgba(244, 164, 96, 0.1);
            border-radius: 50%;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(244, 164, 96, 0.3);
            transition: var(--transition);
        }
        
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.5rem;
            font-weight: 900;
        }
        
        .swiper-button-next:hover, .swiper-button-prev:hover {
            background: rgba(244, 164, 96, 0.2);
            transform: scale(1.1);
            box-shadow: 0 0 20px var(--glow-color);
        }
        
        .swiper-pagination-bullet {
            background: var(--secondary-text);
            opacity: 0.5;
            width: 12px;
            height: 12px;
            transition: var(--transition);
        }
        
        .swiper-pagination-bullet-active {
            background: var(--highlight-color);
            opacity: 1;
            transform: scale(1.2);
            box-shadow: 0 0 10px var(--glow-color);
        }
        
        /* Advanced Stats Section */
        .stats-section {
            padding: var(--section-padding);
            background: var(--secondary-bg);
            position: relative;
            overflow: hidden;
        }
        
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(244, 164, 96, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(244, 164, 96, 0.05) 0%, transparent 50%);
            z-index: 0;
        }
        
        .stat-card {
            text-align: center;
            padding: 60px 30px;
            background: var(--primary-bg);
            border-radius: var(--card-radius);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            overflow: hidden;
            z-index: 1;
            height: 100%;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
        }
        
        .stat-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(244, 164, 96, 0.08) 0%, transparent 50%);
            z-index: -1;
            transition: var(--transition);
            opacity: 0;
        }
        
        .stat-card:hover:before {
            opacity: 1;
        }
        
        .stat-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 25px var(--glow-color);
            border-color: var(--highlight-color);
        }
        
        .stat-icon {
            width: 100px;
            height: 100px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .stat-card:hover .stat-icon {
            background: var(--highlight-color);
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-color);
        }
        
        .stat-icon i {
            font-size: 45px;
            color: var(--primary-bg);
            transition: var(--transition);
        }
        
        .stat-card:hover .stat-icon i {
            transform: scale(1.1);
        }
        
        .stat-number {
            font-size: 4.5rem;
            font-weight: 900;
            color: var(--highlight-color);
            margin-bottom: 15px;
            font-family: 'Poppins', sans-serif;
            text-shadow: 0 0 15px rgba(244, 164, 96, 0.5);
            position: relative;
            display: inline-block;
        }
        
        .stat-number:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--highlight-color);
            transform: scaleX(0);
            transition: var(--transition);
            box-shadow: 0 0 10px var(--glow-color);
        }
        
        .stat-card:hover .stat-number:after {
            transform: scaleX(1);
        }
        
        .stat-text {
            font-size: 1.4rem;
            color: var(--primary-text);
            font-weight: 700;
        }
        
        /* Enhanced CTA Section */
        .cta-section {
            padding: 180px 0;
            background: linear-gradient(135deg, rgba(244, 164, 96, 0.95) 0%, rgba(230, 149, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .cta-container {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .cta-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.3);
            color: var(--primary-bg);
            padding: 18px 45px;
            border-radius: 50px;
            font-size: 1.4rem;
            margin-bottom: 40px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(15px);
            font-weight: 700;
            letter-spacing: 2px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .cta-badge:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: all 0.8s;
        }
        
        .cta-badge:hover:before {
            left: 100%;
        }
        
        .cta-badge i {
            margin-right: 15px;
            font-size: 1.6rem;
        }
        
        .cta-title {
            font-size: 5rem;
            font-weight: 900;
            margin-bottom: 40px;
            color: var(--primary-bg);
            line-height: 1.1;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .cta-description {
            font-size: 1.8rem;
            margin-bottom: 60px;
            color: rgba(14, 17, 23, 0.9);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 500;
            line-height: 1.7;
        }
        
        .cta-btn {
            background: var(--primary-bg);
            border: none;
            color: var(--highlight-color);
            padding: 25px 60px;
            border-radius: 50px;
            font-weight: 800;
            transition: var(--transition);
            font-size: 1.5rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cta-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: all 0.8s;
            z-index: -1;
        }
        
        .cta-btn:hover:before {
            left: 100%;
        }
        
        .cta-btn:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(244, 164, 96, 0.5);
            background: var(--secondary-bg);
        }
        
        /* Enhanced Footer */
        .footer {
            background: var(--primary-bg);
            padding: 100px 0 0;
            position: relative;
        }
        
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--highlight-color);
            box-shadow: 0 0 20px var(--glow-color);
        }
        
        .footer-logo {
            font-family: 'Poppins', sans-serif;
            font-weight: 900;
            font-size: 36px;
            background: var(--accent-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 25px;
            display: inline-block;
        }
        
        .footer-description {
            color: var(--secondary-text);
            margin-bottom: 30px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .social-links {
            display: flex;
            gap: 20px;
        }
        
        .social-link {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: var(--secondary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-text);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.3rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .social-link:hover {
            background: var(--highlight-color);
            color: var(--primary-bg);
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 15px var(--glow-color);
        }
        
        .footer-title {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
            color: var(--highlight-color);
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--highlight-color);
            border-radius: 2px;
            box-shadow: 0 0 10px var(--glow-color);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: var(--secondary-text);
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .footer-links a:hover {
            color: var(--highlight-color);
            transform: translateX(10px);
            text-shadow: 0 0 10px rgba(244, 164, 96, 0.5);
        }
        
        .footer-links a i {
            margin-right: 12px;
            font-size: 14px;
            color: var(--highlight-color);
        }
        
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-info li {
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-right: 15px;
            color: var(--highlight-color);
            margin-top: 5px;
            font-size: 1.3rem;
            text-shadow: 0 0 10px rgba(244, 164, 96, 0.5);
        }
        
        .contact-info div {
            flex: 1;
        }
        
        .contact-info strong {
            display: block;
            margin-bottom: 8px;
            color: var(--primary-text);
            font-size: 1.1rem;
        }
        
        .contact-info p {
            color: var(--secondary-text);
            margin: 0;
            font-size: 1.05rem;
        }
        
        .copyright {
            text-align: center;
            padding: 35px 0;
            margin-top: 80px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--secondary-text);
            font-size: 1rem;
        }
        
        /* Enhanced Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 65px;
            height: 65px;
            background: var(--highlight-color);
            color: var(--primary-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 99;
            box-shadow: 0 10px 25px rgba(244, 164, 96, 0.4);
            font-size: 1.5rem;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--highlight-hover);
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(244, 164, 96, 0.5), 0 0 20px var(--glow-color);
        }
        
        /* Responsive Styles */
        @media (max-width: 1399px) {
            .testimonials-hero-title {
                font-size: 5rem;
            }
            
            .section-title {
                font-size: 3.5rem;
            }
            
            .cta-title {
                font-size: 4.5rem;
            }
        }
        
        @media (max-width: 1199px) {
            .testimonials-hero-title {
                font-size: 4.5rem;
            }
            
            .section-title {
                font-size: 3.2rem;
            }
            
            .cta-title {
                font-size: 4rem;
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            }
        }
        
        @media (max-width: 991px) {
            .testimonials-hero-title {
                font-size: 4rem;
            }
            
            .section-title {
                font-size: 2.8rem;
            }
            
            .cta-title {
                font-size: 3.5rem;
            }
            
            .cta-description {
                font-size: 1.6rem;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .featured-testimonial-card {
                padding: 50px 40px;
            }
        }
        
        @media (max-width: 767px) {
            .testimonials-hero {
                padding: 180px 0 120px;
            }
            
            .testimonials-hero-title {
                font-size: 3.2rem;
            }
            
            .testimonials-hero-subtitle {
                font-size: 1.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .cta-title {
                font-size: 3rem;
            }
            
            .cta-description {
                font-size: 1.4rem;
            }
            
            .testimonial-card, .featured-testimonial-card, .carousel-testimonial-card {
                padding: 40px 30px;
            }
            
            .testimonials-hero-badge, .cta-badge {
                font-size: 1.1rem;
                padding: 12px 30px;
            }
        }
        
        @media (max-width: 575px) {
            .testimonials-hero-title {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .cta-title {
                font-size: 2.5rem;
            }
            
            .cta-description {
                font-size: 1.2rem;
            }
            
            .cta-badge {
                font-size: 1rem;
                padding: 10px 25px;
            }
            
            .testimonial-author, .carousel-testimonial-author {
                flex-direction: column;
                text-align: center;
            }
            
            .testimonial-avatar, .carousel-testimonial-avatar {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .back-to-top {
                width: 55px;
                height: 55px;
                bottom: 20px;
                right: 20px;
            }
        }