    :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: 100px 0;
            --card-radius: 16px;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-bg);
            color: var(--primary-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--secondary-bg);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--highlight-color);
            border-radius: 10px;
            border: 2px solid var(--secondary-bg);
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--highlight-hover);
        }
        
        /* 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;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Particle Background */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: rgba(14, 17, 23, 0.95);
            backdrop-filter: blur(15px);
            padding: 18px 0;
            transition: var(--transition);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            z-index: 1000;
        }
        
        .navbar.scrolled {
            padding: 12px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 32px;
            background: var(--accent-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: var(--transition);
        }
        
        .logo-img {
            height: 45px;
            margin-right: 12px;
            transition: var(--transition);
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(15deg);
        }
        
        .nav-link {
            color: var(--primary-text) !important;
            font-weight: 500;
            margin: 0 12px;
            transition: var(--transition);
            position: relative;
            padding: 8px 0 !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background: var(--highlight-color);
            transition: var(--transition);
            border-radius: 2px;
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--highlight-color) !important;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary-text);
            padding: 8px 12px;
            font-size: 1.2rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        /* Mobile Menu */
        .offcanvas {
            background-color: var(--primary-bg);
            width: 300px !important;
        }
        
        .offcanvas-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px;
        }
        
        .offcanvas-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 26px;
            background: var(--accent-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .offcanvas-body {
            padding: 25px;
        }
        
        .offcanvas-body .nav-link {
            margin: 12px 0;
            padding: 12px 0 !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 1.1rem;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(14, 17, 23, 0.95) 0%, rgba(26, 32, 44, 0.9) 100%);
            padding: 180px 0 120px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero-content {
            max-width: 650px;
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.1;
            background: linear-gradient(to right, #F5F5F5, #F4A460);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-description {
            font-size: 1.3rem;
            margin-bottom: 35px;
            color: var(--secondary-text);
            font-weight: 400;
        }
        
        .btn-primary-custom {
            background: var(--highlight-color);
            border: none;
            color: var(--primary-bg);
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(244, 164, 96, 0.3);
        }
        
        .btn-primary-custom: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.6s;
            z-index: -1;
        }
        
        .btn-primary-custom:hover:before {
            left: 100%;
        }
        
        .btn-primary-custom:hover {
            background: var(--highlight-hover);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(244, 164, 96, 0.4);
        }
        
        .btn-outline-custom {
            border: 2px solid var(--highlight-color);
            color: var(--highlight-color);
            background: transparent;
            padding: 13px 33px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        
        .btn-outline-custom:hover {
            background: var(--highlight-color);
            color: var(--primary-bg);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(244, 164, 96, 0.2);
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(244, 164, 96, 0.1);
            color: var(--highlight-color);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            border: 1px solid rgba(244, 164, 96, 0.2);
        }
        
        .hero-badge i {
            margin-right: 8px;
        }
        
        /* Enhanced Hero Slider */
        .hero-slider-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            height: 500px;
        }
        
        .hero-slider {
            height: 100%;
        }
        
        .swiper {
            width: 100%;
            height: 100%;
        }
        
        .swiper-slide {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }
        
        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .swiper-slide-active .slide-image {
            transform: scale(1.05);
        }
        
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(14, 17, 23, 0.85) 0%, rgba(26, 32, 44, 0.7) 100%);
            display: flex;
            align-items: center;
            padding: 0 50px;
        }
        
        .slide-content {
            max-width: 500px;
        }
        
        .slide-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-text);
        }
        
        .slide-description {
            font-size: 1.2rem;
            margin-bottom: 25px;
            color: rgba(245, 245, 245, 0.9);
            line-height: 1.6;
        }
        
        .slide-btn {
            background: var(--highlight-color);
            border: none;
            color: var(--primary-bg);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            font-size: 1rem;
        }
        
        .slide-btn:hover {
            background: var(--highlight-hover);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(244, 164, 96, 0.3);
        }
        
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 1;
        }
        
        .swiper-pagination-bullet-active {
            background: var(--highlight-color);
            transform: scale(1.2);
        }
        
        .swiper-button-next, .swiper-button-prev {
            color: var(--highlight-color);
            background: rgba(255, 255, 255, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            backdrop-filter: blur(10px);
        }
        
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.2rem;
        }
        
        .swiper-button-next:hover, .swiper-button-prev:hover {
            background: rgba(244, 164, 96, 0.2);
        }
        
        /* Hero Shapes */
        .hero-shape {
            position: absolute;
            z-index: 1;
        }
        
        .shape-1 {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(244, 164, 96, 0.1) 0%, transparent 70%);
            top: -200px;
            right: -100px;
        }
        
        .shape-2 {
            width: 300px;
            height: 300px;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            background: radial-gradient(circle, rgba(192, 192, 192, 0.05) 0%, transparent 70%);
            bottom: -150px;
            left: -100px;
        }
        
        /* Section Titles */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 5px;
            background: var(--highlight-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--secondary-text);
            max-width: 700px;
            margin: 30px auto 0;
            font-weight: 400;
        }
        
        /* Enhanced Stats Section */
        .stats-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--tertiary-bg) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .stats-section:before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(244, 164, 96, 0.05) 0%, transparent 70%);
            top: -150px;
            right: -150px;
        }
        
        .stats-section:after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(192, 192, 192, 0.05) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
        }
        
        .stat-card {
            text-align: center;
            padding: 40px 30px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: var(--card-radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .stat-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(244, 164, 96, 0.05), transparent);
            transition: all 0.8s;
            z-index: -1;
        }
        
        .stat-card:hover:before {
            left: 100%;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: rgba(244, 164, 96, 0.2);
        }
        
        .stat-icon {
            width: 70px;
            height: 70px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: var(--transition);
        }
        
        .stat-card:hover .stat-icon {
            transform: scale(1.1);
            background: var(--highlight-color);
        }
        
        .stat-icon i {
            font-size: 30px;
            color: var(--primary-bg);
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--highlight-color);
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }
        
        .stat-text {
            font-size: 1.2rem;
            color: var(--secondary-text);
            font-weight: 500;
        }
        
        /* Why Choose Us Section */
        .why-choose-us {
            padding: var(--section-padding);
            background-color: var(--secondary-bg);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card {
            background: var(--primary-bg);
            border-radius: var(--card-radius);
            padding: 40px 30px;
            height: 100%;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(244, 164, 96, 0.05), transparent);
            transition: all 0.8s;
            z-index: -1;
        }
        
        .feature-card:hover:before {
            left: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: var(--highlight-color);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--accent-color);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: var(--transition);
        }
        
        .feature-card:hover .feature-icon {
            transform: rotateY(180deg) scale(1.1);
            background: var(--highlight-color);
        }
        
        .feature-icon i {
            font-size: 35px;
            color: var(--primary-bg);
            transition: var(--transition);
        }
        
        .feature-card:hover .feature-icon i {
            transform: rotateY(-180deg);
        }
        
        .feature-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .feature-description {
            color: var(--secondary-text);
            font-size: 1rem;
        }
        
        /* Enhanced Services Section */
        .services-section {
            padding: var(--section-padding);
            position: relative;
            overflow: hidden;
        }
        
        .service-card {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            overflow: hidden;
            height: 100%;
            transition: var(--transition);
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            border-color: var(--highlight-color);
        }
        
        .service-icon {
            width: 100px;
            height: 100px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .service-card:hover .service-icon {
            transform: rotateY(180deg);
            background: var(--highlight-color);
        }
        
        .service-icon i {
            font-size: 45px;
            color: var(--primary-bg);
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon i {
            transform: rotateY(-180deg);
        }
        
        .service-content {
            padding: 35px 30px;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .service-title {
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .service-description {
            color: var(--secondary-text);
            margin-bottom: 25px;
            font-size: 1.05rem;
        }
        
        .service-link {
            color: var(--highlight-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
            font-size: 1.05rem;
        }
        
        .service-link:hover {
            color: var(--highlight-hover);
            transform: translateX(8px);
        }
        
        /* Team Section */
        .team-section {
            padding: var(--section-padding);
            background-color: var(--secondary-bg);
        }
        
        .team-card {
            background: var(--primary-bg);
            border-radius: var(--card-radius);
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            height: 100%;
            position: relative;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: var(--highlight-color);
        }
        
        .team-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .team-card:hover .team-image {
            transform: scale(1.05);
        }
        
        .team-content {
            padding: 30px 25px;
            text-align: center;
        }
        
        .team-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .team-position {
            color: var(--highlight-color);
            margin-bottom: 15px;
            font-size: 1rem;
            font-weight: 500;
        }
        
        .team-description {
            color: var(--secondary-text);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 12px;
        }
        
        .team-social a {
            width: 40px;
            height: 40px;
            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);
        }
        
        .team-social a:hover {
            background: var(--highlight-color);
            color: var(--primary-bg);
            transform: translateY(-5px);
        }
        
        /* Portfolio Section */
        .portfolio-section {
            padding: var(--section-padding);
            position: relative;
        }
        
        .portfolio-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 50px;
            gap: 10px;
        }
        
        .filter-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--primary-text);
            padding: 10px 25px;
            border-radius: 50px;
            transition: var(--transition);
            cursor: pointer;
            font-weight: 500;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: var(--highlight-color);
            color: var(--primary-bg);
            border-color: var(--highlight-color);
            transform: translateY(-3px);
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .portfolio-item {
            position: relative;
            border-radius: var(--card-radius);
            overflow: hidden;
            height: 320px;
            cursor: pointer;
        }
        
        .portfolio-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(14, 17, 23, 0.95));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            opacity: 0;
            transition: var(--transition);
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-item:hover .portfolio-image {
            transform: scale(1.1);
        }
        
        .portfolio-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 10px;
            transform: translateY(20px);
            transition: var(--transition);
        }
        
        .portfolio-item:hover .portfolio-title {
            transform: translateY(0);
        }
        
        .portfolio-category {
            color: var(--highlight-color);
            font-size: 0.95rem;
            margin-bottom: 15px;
            transform: translateY(20px);
            transition: var(--transition);
            transition-delay: 0.1s;
        }
        
        .portfolio-item:hover .portfolio-category {
            transform: translateY(0);
        }
        
        .portfolio-link {
            color: var(--primary-text);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
            transform: translateY(20px);
            transition: var(--transition);
            transition-delay: 0.2s;
        }
        
        .portfolio-item:hover .portfolio-link {
            transform: translateY(0);
        }
        
        .portfolio-link:hover {
            color: var(--highlight-color);
            transform: translateX(5px);
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding: var(--section-padding);
            background-color: var(--secondary-bg);
        }
        
        .testimonial-card {
            background: var(--primary-bg);
            border-radius: var(--card-radius);
            padding: 40px 35px;
            margin: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            transition: var(--transition);
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .testimonial-card:before {
            content: "";
            font-size: 100px;
            color: var(--highlight-color);
            opacity: 0.1;
            position: absolute;
            top: -30px;
            left: 15px;
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-content {
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            color: var(--primary-text);
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid var(--highlight-color);
        }
        
        .author-info h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .author-info p {
            color: var(--highlight-color);
            font-size: 0.95rem;
            font-weight: 500;
        }
        
      
          /* Enhanced CTA Section */
        .cta-section {
            padding: 140px 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: 900px;
            margin: 0 auto;
        }
        
        .cta-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.2);
            color: var(--primary-bg);
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 1rem;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        .cta-badge i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .cta-title {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 25px;
            color: var(--primary-bg);
            line-height: 1.1;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .cta-description {
            font-size: 1.4rem;
            margin-bottom: 45px;
            color: rgba(14, 17, 23, 0.9);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 500;
            line-height: 1.6;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .cta-btn {
            background: var(--primary-bg);
            border: none;
            color: var(--highlight-color);
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            transition: var(--transition);
            font-size: 1.2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .cta-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s;
            z-index: -1;
        }
        
        .cta-btn:hover:before {
            left: 100%;
        }
        
        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            background: var(--secondary-bg);
        }
        
        .cta-btn-secondary {
            background: transparent;
            border: 2px solid var(--primary-bg);
            color: var(--primary-bg);
        }
        
        .cta-btn-secondary:hover {
            background: var(--primary-bg);
            color: var(--highlight-color);
        }
        
        .cta-features {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            flex-wrap: wrap;
        }
        
        .cta-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.15);
            padding: 15px 25px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }
        
        .cta-feature:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.25);
        }
        
        .cta-feature i {
            font-size: 1.5rem;
            color: var(--primary-bg);
        }
        
        .cta-feature span {
            color: var(--primary-bg);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .cta-shape {
            position: absolute;
            z-index: 1;
        }
        
        .cta-shape-1 {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
            top: -100px;
            left: -100px;
        }
        
        .cta-shape-2 {
            width: 150px;
            height: 150px;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
            bottom: -75px;
            right: -75px;
        }
        
        .cta-shape-3 {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            top: 50%;
            left: 10%;
        }
        
        .cta-shape-4 {
            width: 80px;
            height: 80px;
            border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            bottom: 20%;
            right: 15%;
        }
        
        /* Floating Animation */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        /* Responsive Styles */
        @media (max-width: 991px) {
            .cta-title {
                font-size: 3.2rem;
            }
            
            .cta-description {
                font-size: 1.2rem;
            }
            
            .cta-features {
                gap: 20px;
            }
        }
        
        @media (max-width: 767px) {
            .cta-section {
                padding: 100px 0;
            }
            
            .cta-title {
                font-size: 2.5rem;
            }
            
            .cta-description {
                font-size: 1.1rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .cta-features {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-feature {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }
        
        @media (max-width: 575px) {
            .cta-title {
                font-size: 2.2rem;
            }
            
            .cta-description {
                font-size: 1rem;
            }
            
            .cta-badge {
                font-size: 0.9rem;
                padding: 8px 20px;
            }
        }
        /* Footer */
        .footer {
            background: var(--primary-bg);
            padding: 80px 0 0;
            position: relative;
        }
        
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--highlight-color);
        }
        
        .footer-logo {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 32px;
            background: var(--accent-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-description {
            color: var(--secondary-text);
            margin-bottom: 25px;
            font-size: 1.05rem;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            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);
        }
        
        .social-link:hover {
            background: var(--highlight-color);
            color: var(--primary-bg);
            transform: translateY(-5px);
        }
        
        .footer-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--highlight-color);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--secondary-text);
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            font-size: 1.05rem;
        }
        
        .footer-links a:hover {
            color: var(--highlight-color);
            transform: translateX(8px);
        }
        
        .footer-links a i {
            margin-right: 10px;
            font-size: 12px;
            color: var(--highlight-color);
        }
        
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-info li {
            margin-bottom: 18px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-right: 12px;
            color: var(--highlight-color);
            margin-top: 5px;
            font-size: 1.1rem;
        }
        
        .contact-info div {
            flex: 1;
        }
        
        .contact-info strong {
            display: block;
            margin-bottom: 5px;
            color: var(--primary-text);
        }
        
        .contact-info p {
            color: var(--secondary-text);
            margin: 0;
        }
        
        .copyright {
            text-align: center;
            padding: 25px 0;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--secondary-text);
            font-size: 0.95rem;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            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 5px 15px rgba(244, 164, 96, 0.3);
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--highlight-hover);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(244, 164, 96, 0.4);
        }
        
        /* Responsive Styles */
        @media (max-width: 1199px) {
            .hero-title {
                font-size: 3.5rem;
            }
            
            .section-title {
                font-size: 2.8rem;
            }
            
            .cta-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .hero-slider-container {
                margin-top: 50px;
                height: 400px;
            }
            
            .slide-title {
                font-size: 2.2rem;
            }
            
            .cta-title {
                font-size: 2.5rem;
            }
            
            .navbar-collapse {
                background: var(--primary-bg);
                padding: 20px;
                border-radius: 10px;
                margin-top: 15px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            }
        }
        
        @media (max-width: 767px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .hero-slider-container {
                height: 350px;
            }
            
            .slide-title {
                font-size: 1.8rem;
            }
            
            .slide-description {
                font-size: 1rem;
            }
            
            .cta-title {
                font-size: 2.2rem;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-section {
                padding: 150px 0 80px;
            }
            
            .section-header {
                margin-bottom: 50px;
            }
            
            .swiper-button-next, .swiper-button-prev {
                display: none;
            }
        }
        
        @media (max-width: 575px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
            
            .hero-buttons {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            
            .btn-primary-custom, .btn-outline-custom {
                width: 100%;
                text-align: center;
            }
            
            .filter-btn {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
            
            .stat-number {
                font-size: 2.8rem;
            }
        }