
        :root {
            --primary-orange: #ed1c24;
            --secondary-orange: #ed1c24;
            --light-orange:#ed1c24;
            --dark-orange: #ed1c24;
            --orange-light: rgba(255, 107, 53, 0.1);
            --white: #FFFFFF;
            --light-gray: #F8F9FA;
            --medium-gray: #E9ECEF;
            --dark-gray: #01284f;
            --text-gray: #6C757D;
            --blue-accent: #01284f;
            --success: #198754;
            --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
            --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
        }
                :root {
            --brand-red: #ed1c24;
            --brand-blue: #01284f;
            --white: #ffffff;
            --gray-light: #f8f9fa;
            --gray-medium: #6c757d;
            --gray-dark: #343a40;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #f8f9fa;
        }

        /* Main Section */
        .testimonials-section {
            padding: 60px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
            position: relative;
            overflow: hidden;
        }

        /* Background Decoration */
        .testimonials-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(237, 28, 36, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            top: -150px;
            right: -150px;
        }

        .testimonials-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(1, 40, 79, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -200px;
            left: -200px;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .badge-custom {
            display: inline-block;
            background: var(--brand-red);
            color: white;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--brand-blue);
            margin-bottom: 10px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--gray-medium);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Testimonial Card */
        .testimonial-slide {
            padding: 15px;
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        /* Quote Icon */
        .quote-icon {
            width: 45px;
            height: 45px;
            background: var(--brand-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            margin-bottom: 20px;
        }

        /* Stars */
        .stars {
            margin-bottom: 15px;
        }

        .stars i {
            color: #ffc107;
            font-size: 14px;
            margin-right: 2px;
        }

        /* Testimonial Text */
        .testimonial-text {
            font-size: 15px;
            line-height: 1.6;
            color: var(--gray-dark);
            margin-bottom: 25px;
            min-height: 80px;
        }

       

        /* Custom Carousel Controls */
        .testimonial-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
        }

        .carousel-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--brand-blue);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            background: var(--brand-red);
            transform: scale(1.1);
        }

        .carousel-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .carousel-dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ccc;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            width: 25px;
            border-radius: 5px;
            background: var(--brand-red);
        }

        /* Stats Section */
        .stats-container {
            margin-top: 60px;
            background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-red) 100%);
            border-radius: 15px;
            padding: 40px 20px;
        }

        .stat-item {
            text-align: center;
            color: white;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 14px;
            opacity: 0.9;
        }

        /* Client Logos */
        .client-logos {
            margin-top: 60px;
            text-align: center;
        }

        .client-logos h4 {
            font-size: 24px;
            color: var(--brand-blue);
            margin-bottom: 30px;
            font-weight: 600;
        }

        .logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 80px;
            transition: transform 0.3s ease;
        }

        .logo-item:hover {
            transform: scale(1.1);
        }

        .logo-item i {
            font-size: 40px;
            color: #ccc;
            transition: color 0.3s ease;
        }

        .logo-item:hover i {
            color: var(--brand-red);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 28px;
            }

            .section-subtitle {
                font-size: 14px;
                padding: 0 15px;
            }

            .testimonial-card {
                padding: 25px;
                margin: 0 auto;
                max-width: 100%;
            }

            .testimonial-text {
                font-size: 14px;
                min-height: auto;
            }

            .testimonial-slide {
                padding: 10px;
            }

            .stat-number {
                font-size: 24px;
            }

            .logo-item i {
                font-size: 30px;
            }

            .carousel-btn {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
        }

        @media (max-width: 576px) {
            .testimonials-section {
                padding: 40px 0;
            }

            .section-title {
                font-size: 24px;
            }

            .testimonial-card {
                padding: 20px;
                width: 100%;
            }

            .testimonial-slide {
                padding: 5px;
            }

            .testimonial-text {
                font-size: 13px;
                line-height: 1.5;
            }

            .quote-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
                margin-bottom: 15px;
            }

            .stats-container {
                padding: 30px 15px;
            }

            .client-info {
                flex-direction: row;
                text-align: left;
                gap: 12px;
            }

            .client-avatar {
                width: 45px;
                height: 45px;
            }

            .client-details h6 {
                font-size: 13px;
            }

            .client-details p {
                font-size: 11px;
            }

            /* Ensure single column on mobile */
            .carousel-item .row {
                margin: 0 -5px;
            }

            .carousel-item .col-12 {
                padding: 0 5px;
            }

            /* Hide extra testimonials on mobile */
            .carousel-item .col-12:not(:first-child) {
                display: none !important;
            }

            /* Show only first testimonial on mobile */
            .carousel-item .col-12:first-child {
                display: block !important;
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* Top Header Bar */
        .top-header-bar {
            background: linear-gradient(135deg, var(--blue-accent), #0B5ED7);
            padding: 8px 0;
            color: white;
            font-size: 13px;
            font-weight: 500;
        }

        .top-header-bar a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .top-header-bar a:hover {
            opacity: 0.8;
        }

        .top-header-bar .fa {
            margin-right: 6px;
            font-size: 12px;
        }

        /* Main Header */
        .main-header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 12px 0;
            transition: all 0.3s ease;
        }

        .main-header.scrolled {
            padding: 8px 0;
            box-shadow: var(--shadow-lg);
        }

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-icon {
            width: 95px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: white;
           
            transition: transform 0.3s ease;
        }


        /* Desktop Navigation */
        .desktop-nav {
            display: none;
        }

        .desktop-nav .nav-link {
            color: var(--dark-gray);
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 0;
            transition: all 0.3s ease;
            position: relative;
            text-decoration: none;
            cursor: pointer;
        }

        .desktop-nav .nav-link:hover {
            color: #ed1c24;
        }

        .desktop-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: #ed1c24;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .desktop-nav .nav-link:hover::after {
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark-gray);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            color: #ed1c24;
        }

        /* CTA Button */
        .btn-orange {
            background: #ed1c24;
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            white-space: nowrap;
        }

        .btn-orange:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
            color: #01284f;
        }

        /* Navigation Menu Bar */
        .nav-menu-bar {
            background-color: var(--light-gray);
            border-top: 1px solid var(--medium-gray);
            padding: 0;
        }

        .nav-menu-bar .nav-link {
            color: var(--dark-gray);
            font-weight: 500;
            padding: 12px 15px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            font-size: 14px;
        }

        .nav-menu-bar .nav-link i {
            margin-right: 8px;
            width: 16px;
        }

        .nav-menu-bar .nav-link:hover {
            background-color: #ed1c24;
            color: white;
        }

        .nav-menu-bar .dropdown-menu {
            border: none;
            box-shadow: var(--shadow-lg);
            border-radius: 8px;
            padding: 8px 0;
        }

        .nav-menu-bar .dropdown-item {
            padding: 8px 16px;
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .nav-menu-bar .dropdown-item:hover {
            background-color: #ed1c24;
            color: white;
        }

        /* Mobile Navigation Menu */
        .mobile-nav-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 280px;
            height: 100vh;
            background: var(--white);
            box-shadow: var(--shadow-lg);
            z-index: 9999;
            transition: left 0.3s ease;
            overflow-y: auto;
        }

        .mobile-nav-menu.active {
            left: 0;
        }

        .mobile-nav-header {
            padding: 20px;
            border-bottom: 1px solid var(--medium-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-nav-close {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark-gray);
            cursor: pointer;
        }

        .mobile-nav-items {
            padding: 20px 0;
        }

        .mobile-nav-item {
            display: block;
            padding: 15px 20px;
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            cursor: pointer;
        }

        .mobile-nav-item:hover {
            background-color: #ed1c24;
            border-left-color: #01284f;
            color: white;
        }

        .mobile-nav-item i {
            margin-right: 12px;
            width: 20px;
            text-align: center;
        }

        .mobile-nav-section {
            padding: 10px 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 1px solid var(--medium-gray);
            margin: 10px 0;
        }

        /* Mobile Overlay */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

       

        /* Page Styles */
        .page {
            display: none;
            min-height: 80vh;
            padding: 100px 0 50px;
        }

        .page.active {
            display: block;
        }

        .page-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            color: var(--dark-gray);
        }

        .page-subtitle {
            text-align: center;
            color: var(--text-gray);
            margin-bottom: 50px;
            font-size: 1.1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background-color: var(--white);
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 16px;
            color: var(--dark-gray);
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-gray);
            margin-bottom: 50px;
            font-size: 1.1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .service-card {
            background: var(--white);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: 1px solid var(--medium-gray);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            transition: all 0.3s ease;
        }

        .service-icon.design {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
        }

        .service-icon.seo {
            background: linear-gradient(135deg, var(--blue-accent), #0B5ED7);
        }

        .service-icon.hosting {
            background: linear-gradient(135deg, var(--success), #157347);
        }

        .service-icon.analytics {
            background: linear-gradient(135deg, #9C27B0, #7B1FA2);
        }

        .service-icon.management {
            background: linear-gradient(135deg, #FF9800, #F57C00);
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotateY(180deg);
        }

        .service-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--dark-gray);
        }

        .service-description {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.5;
        }

        /* Company Introduction */
        .company-intro {
            padding: 80px 0;
            background-color: var(--light-gray);
        }

        .intro-content h1 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 20px;
        }

        .intro-content p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .solution-slider {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .solution-item {
            background: var(--white);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--dark-gray);
        }

        .solution-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            color: var(--primary-orange);
        }

        .solution-item i {
            font-size: 2rem;
            color: #ed1c24;
            margin-bottom: 15px;
        }

        /* How We Work Section */
        .how-we-work {
            padding: 80px 0;
            background-color: var(--white);
        }

        .work-tabs {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
            margin-top: 40px;
        }

        .tab-menu {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .tab-button {
            background: var(--light-gray);
            border: none;
            padding: 15px 20px;
            text-align: left;
            border-radius: 8px;
            color: var(--dark-gray);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-button.active {
            background: #ed1c24;
            color: white;
        }

        .tab-content {
            background: var(--light-gray);
            padding: 30px;
            border-radius: 12px;
        }

        .tab-panel {
            display: none;
        }

        .tab-panel.active {
            display: block;
        }

        .tab-panel h3 {
            color: var(--dark-gray);
            margin-bottom: 20px;
        }

        .tab-panel img {
            width: 100%;
            max-width: 200px;
            margin-bottom: 20px;
        }

        /* Why Choose Us */
        .why-choose-us {
            padding: 80px 0;
            background: #ed1c24;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .feature-card {
            background: var(--white);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: #ed1c24;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.5rem;
        }

        
        
        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, var(--dark-gray), #000);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange), var(--blue-accent), #9C27B0);
        }

        .footer-top {
            padding: 60px 0 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo .logo-text {
            color: white;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-icon:hover {
            background: var(--primary-orange);
            color: white;
            transform: translateY(-3px) scale(1.1);
        }

        .footer-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--primary-orange);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .footer-links a:hover {
            color: var(--primary-orange);
            padding-left: 5px;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-contact-item i {
            width: 20px;
            margin-right: 10px;
            color: var(--primary-orange);
        }

        .footer-contact-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact-item a:hover {
            color: var(--primary-orange);
        }

        .footer-bottom {
            padding: 20px 0;
            background: rgba(0, 0, 0, 0.3);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .footer-bottom a {
            color: var(--primary-orange);
            text-decoration: none;
        }

        /* Bottom Contact Bar */
        .bottom-contact-bar {
            background: #ed1c24;
            padding: 12px 0;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #FFFFFF;
            transition: all 0.3s ease;
            padding: 4px;
            border-radius: 8px;
        }

        .contact-item:hover {
            color: var(--primary-orange);
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.2);
        }

        .contact-item i {
            font-size: 18px;
            margin-bottom: 4px;
        }

        .contact-item span {
            font-size: 11px;
            font-weight: 600;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: var(--light-gray);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .faq-item {
            background: var(--white);
            border-radius: 8px;
            margin-bottom: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .faq-question {
            background: none;
            border: none;
            width: 100%;
            padding: 20px;
            text-align: left;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background-color: var(--orange-light);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 200px;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark-gray), #444);
            color: white;
        }

        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: 12px;
            color: var(--dark-gray);
        }

        .form-control {
            border: 1px solid var(--medium-gray);
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 15px;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
        }



         /* Clients Section - Mobile Optimized */
        .clients-section {
            padding: 50px 0;
            background: var(--white);
        }

        .clients-slider {
            margin-top: 30px;
        }

        .client-item {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 60px;
            padding: 10px;
            background: var(--light-gray);
            border-radius: 8px;
            transition: var(--transition);
            margin: 0 5px;
        }

        .client-item:hover {
            background: var(--white);
            box-shadow: var(--shadow-light);
        }

        .client-item img {
            max-height: 35px;
            max-width: 90px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: var(--transition);
        }

        .client-item:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }


        /* Workplace Page Styles */
        .workplace-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .benefit-card {
            background: var(--white);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
        }

        .benefit-title {
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 15px;
        }

        .benefit-description {
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (min-width: 992px) {
            .desktop-nav {
                display: flex;
            }
            
            .mobile-menu-toggle {
                display: none;
            }
            
            .nav-menu-bar {
                display: block;
            }
            
            .hero-title {
                font-size: 3.5rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        @media (max-width: 991px) {
            .nav-menu-bar {
                display: none;
            }
            
            .hero-slider {
                height: 60vh;
                min-height: 400px;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .work-tabs {
                grid-template-columns: 1fr;
            }
            
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .top-header-bar {
                font-size: 12px;
                padding: 6px 0;
            }
            
            .main-header {
                padding: 30px 0;
            }
            
            .logo-text {
                font-size: 18px;
            }
            
            .logo-icon {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
            
            .btn-orange {
                font-size: 12px;
                padding: 8px 16px;
            }
            
            .hero-slider {
                height: 50vh;
                min-height: 350px;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .services-section,
            .company-intro,
            .how-we-work,
            .why-choose-us,
            .testimonials,
            .blog-section,
            .faq-section,
            .contact-section {
                padding: 50px 0;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 16px;
            }
            
            .service-card {
                padding: 24px 16px;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .service-title {
                font-size: 1rem;
            }
            
            .contact-item i {
                font-size: 16px;
            }
            
            .contact-item span {
                font-size: 10px;
            }
            
            .bottom-contact-bar {
                padding: 8px 0;
            }
            
            .intro-content h1 {
                font-size: 1.8rem;
            }
            
            .solution-slider {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 15px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .testimonial-grid,
            .blog-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .career-grid {
                grid-template-columns: 1fr;
            }

            .workplace-benefits {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.6s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Loading States */
        .loading {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.4s ease;
        }

        .loading.loaded {
            opacity: 1;
            transform: scale(1);
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Focus States for Accessibility */
        .btn-orange:focus,
        .mobile-nav-item:focus,
        .contact-item:focus {
            outline: 2px solid #ed1c24;
            outline-offset: 2px;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 20px;
            width: 50px;
            height: 50px;
            background:#ed1c24;
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
        }
      :root {
            --primary-orange: #FF6B35;
            --secondary-orange: #FF8C42;
            --light-orange: #FFA366;
            --dark-orange: #E55B2B;
            --orange-light: rgba(255, 107, 53, 0.1);
            --white: #FFFFFF;
            --light-gray: #F8F9FA;
            --medium-gray: #E9ECEF;
            --dark-gray: #01284f;
            --text-gray: #6C757D;
            --blue-accent: #01284f;
            --success: #198754;
            --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
            --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* Top Header Bar */
        .top-header-bar {
            background: linear-gradient(135deg, var(--blue-accent), #0B5ED7);
            padding: 8px 0;
            color: white;
            font-size: 13px;
            font-weight: 500;
        }

        .top-header-bar a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .top-header-bar a:hover {
            opacity: 0.8;
        }

        .top-header-bar .fa {
            margin-right: 6px;
            font-size: 12px;
        }

        /* Main Header */
        .main-header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 12px 0;
            transition: all 0.3s ease;
        }

        .main-header.scrolled {
            padding: 8px 0;
            box-shadow: var(--shadow-lg);
        }

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: white;
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .logo-container:hover .logo-icon {
            transform: rotate(5deg) scale(1.05);
        }

        .logo-text {
            font-family: 'Poppins', sans-serif;
            font-size: 22px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .logo-subtext {
            font-size: 10px;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: none;
        }

        .desktop-nav .nav-link {
            color: var(--dark-gray);
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 0;
            transition: all 0.3s ease;
            position: relative;
            text-decoration: none;
            cursor: pointer;
        }

        .desktop-nav .nav-link:hover {
            color: #ed1c24;
        }

        .desktop-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: #ed1c24;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .desktop-nav .nav-link:hover::after {
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark-gray);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            color: #ed1c24;
        }

        /* CTA Button */
        .btn-orange {
            background: #ed1c24;
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            white-space: nowrap;
        }

        .btn-orange:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
            color: #01284f;
        }

        /* Navigation Menu Bar */
        .nav-menu-bar {
            background-color: var(--light-gray);
            border-top: 1px solid var(--medium-gray);
            padding: 0;
        }

        .nav-menu-bar .nav-link {
            color: var(--dark-gray);
            font-weight: 500;
            padding: 12px 15px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            font-size: 14px;
        }

        .nav-menu-bar .nav-link i {
            margin-right: 8px;
            width: 16px;
        }

        .nav-menu-bar .nav-link:hover {
            background-color: #ed1c24;
            color: white;
        }

        .nav-menu-bar .dropdown-menu {
            border: none;
            box-shadow: var(--shadow-lg);
            border-radius: 8px;
            padding: 8px 0;
        }

        .nav-menu-bar .dropdown-item {
            padding: 8px 16px;
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .nav-menu-bar .dropdown-item:hover {
            background-color: #ed1c24;
            color: white;
        }

        /* Mobile Navigation Menu */
        .mobile-nav-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 280px;
            height: 100vh;
            background: var(--white);
            box-shadow: var(--shadow-lg);
            z-index: 9999;
            transition: left 0.3s ease;
            overflow-y: auto;
        }

        .mobile-nav-menu.active {
            left: 0;
        }

        .mobile-nav-header {
            padding: 20px;
            border-bottom: 1px solid var(--medium-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-nav-close {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark-gray);
            cursor: pointer;
        }

        .mobile-nav-items {
            padding: 20px 0;
        }

        .mobile-nav-item {
            display: block;
            padding: 15px 20px;
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            cursor: pointer;
        }

        .mobile-nav-item:hover {
            background-color: #ed1c24;
            border-left-color: #01284f;
            color: white;
        }

        .mobile-nav-item i {
            margin-right: 12px;
            width: 20px;
            text-align: center;
        }

        .mobile-nav-section {
            padding: 10px 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 1px solid var(--medium-gray);
            margin: 10px 0;
        }

        /* Mobile Overlay */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Slider Section */
        .hero-slider {
            height: 10vh;
            min-height: 500px;
            position: relative;
            overflow: hidden;
        }

        .swiper-container {
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            display: flex;
          
            align-items: center;
            justify-content: center;
            position: relative;
            background-size: cover;
            background-position: center;
        }

        .slide-1 {
            background: linear-gradient(135deg, var(--blue-accent) 0%, #0B5ED7 100%);
        }

        .slide-2 {
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
        }

        .slide-3 {
            background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
        }

        .slide-4 {
            background: linear-gradient(135deg, var(--success) 0%, #157347 100%);
        }

        .hero-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
            z-index: 2;
            position: relative;
        }

        .hero-title {
            font-family: 'Poppins', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            animation: slideInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: slideInUp 1s ease-out 0.2s both;
        }

        .hero-cta {
            animation: slideInUp 1s ease-out 0.4s both;
        }

        .swiper-pagination-bullet {
            background: rgba(255, 255, 255, 0.5);
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background: white;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Page Styles */
        .page {
            display: none;
            min-height: 80vh;
            padding: 100px 0 50px;
        }

        .page.active {
            display: block;
        }

        .page-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            color: var(--dark-gray);
        }

        .page-subtitle {
            text-align: center;
            color: var(--text-gray);
            margin-bottom: 50px;
            font-size: 1.1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background-color: var(--white);
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 16px;
            color: var(--dark-gray);
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-gray);
            margin-bottom: 50px;
            font-size: 1.1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .service-card {
            background: var(--white);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: 1px solid var(--medium-gray);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #ed1c24;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            transition: all 0.3s ease;
        }

        .service-icon.design {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
        }

        .service-icon.seo {
            background: linear-gradient(135deg, var(--blue-accent), #0B5ED7);
        }

        .service-icon.hosting {
            background: linear-gradient(135deg, var(--success), #157347);
        }

        .service-icon.analytics {
            background: linear-gradient(135deg, #9C27B0, #7B1FA2);
        }

        .service-icon.management {
            background: linear-gradient(135deg, #FF9800, #F57C00);
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotateY(180deg);
        }

        .service-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--dark-gray);
        }

        .service-description {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.5;
        }

        /* Company Introduction */
        .company-intro {
            padding: 80px 0;
            background-color: var(--light-gray);
        }

        .intro-content h1 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 20px;
        }

        .intro-content p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .solution-slider {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .solution-item {
            background: var(--white);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--dark-gray);
        }

        .solution-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            color: var(--primary-orange);
        }

        .solution-item i {
            font-size: 2rem;
            color: #ed1c24;
            margin-bottom: 15px;
        }

        /* How We Work Section */
        .how-we-work {
            padding: 80px 0;
            background-color: var(--white);
        }

        .work-tabs {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
            margin-top: 40px;
        }

        .tab-menu {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .tab-button {
            background: var(--light-gray);
            border: none;
            padding: 15px 20px;
            text-align: left;
            border-radius: 8px;
            color: var(--dark-gray);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-button.active {
            background: var(--primary-orange);
            color: white;
        }

        .tab-content {
            background: var(--light-gray);
            padding: 30px;
            border-radius: 12px;
        }

        .tab-panel {
            display: none;
        }

        .tab-panel.active {
            display: block;
        }

        .tab-panel h3 {
            color: var(--dark-gray);
            margin-bottom: 20px;
        }

        .tab-panel img {
            width: 100%;
            max-width: 200px;
            margin-bottom: 20px;
        }

        /* Why Choose Us */
        .why-choose-us {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--orange-light), var(--light-gray));
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .feature-card {
            background: var(--white);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.5rem;
        }

       

        /* Blog Section */
        .blog-section {
            padding: 80px 0;
            background-color: var(--white);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .blog-card {
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .blog-image {
            width: 100%;
            height: 200px;
            background: var(--medium-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-gray);
            font-size: 3rem;
        }

        .blog-content {
            padding: 20px;
        }

        .blog-title {
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 10px;
        }

        .blog-excerpt {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .blog-link {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 600;
        }

        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, var(--dark-gray), #000);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange), var(--blue-accent), #9C27B0);
        }

        .footer-top {
            padding: 60px 0 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo .logo-text {
            color: white;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-icon:hover {
            background: var(--primary-orange);
            color: white;
            transform: translateY(-3px) scale(1.1);
        }

        .footer-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--primary-orange);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .footer-links a:hover {
            color: var(--primary-orange);
            padding-left: 5px;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-contact-item i {
            width: 20px;
            margin-right: 10px;
            color: var(--primary-orange);
        }

        .footer-contact-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact-item a:hover {
            color: var(--primary-orange);
        }

        .footer-bottom {
            padding: 20px 0;
            background: rgba(0, 0, 0, 0.3);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .footer-bottom a {
            color: var(--primary-orange);
            text-decoration: none;
        }

        /* Bottom Contact Bar */
        .bottom-contact-bar {
            background: #ed1c24;
            padding: 12px 0;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #FFFFFF;
            transition: all 0.3s ease;
            padding: 4px;
            border-radius: 8px;
        }

        .contact-item:hover {
            color: var(--primary-orange);
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.2);
        }

        .contact-item i {
            font-size: 18px;
            margin-bottom: 4px;
        }

        .contact-item span {
            font-size: 11px;
            font-weight: 600;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: var(--light-gray);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .faq-item {
            background: var(--white);
            border-radius: 8px;
            margin-bottom: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .faq-question {
            background: none;
            border: none;
            width: 100%;
            padding: 20px;
            text-align: left;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background-color: var(--orange-light);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 200px;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark-gray), #444);
            color: white;
        }

        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: 12px;
            color: var(--dark-gray);
        }

        .form-control {
            border: 1px solid var(--medium-gray);
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 15px;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
        }

        /* Career Page Styles */
        .career-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .job-card {
            background: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-orange);
        }

        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .job-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 10px;
        }

        .job-department {
            color: var(--primary-orange);
            font-weight: 500;
            margin-bottom: 15px;
        }

        .job-description {
            color: var(--text-gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .job-requirements {
            margin-bottom: 20px;
        }

        .job-requirements h6 {
            color: var(--dark-gray);
            margin-bottom: 10px;
        }

        .job-requirements ul {
            list-style: none;
            padding: 0;
        }

        .job-requirements li {
            color: var(--text-gray);
            margin-bottom: 5px;
            padding-left: 20px;
            position: relative;
        }

        .job-requirements li::before {
            content: '•';
            color: var(--primary-orange);
            position: absolute;
            left: 0;
        }

        /* Workplace Page Styles */
        .workplace-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .benefit-card {
            background: var(--white);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
        }

        .benefit-title {
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 15px;
        }

        .benefit-description {
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (min-width: 992px) {
            .desktop-nav {
                display: flex;
            }
            
            .mobile-menu-toggle {
                display: none;
            }
            
            .nav-menu-bar {
                display: block;
            }
            
            .hero-title {
                font-size: 3.5rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        @media (max-width: 991px) {
            .nav-menu-bar {
                display: none;
            }
            
            .hero-slider {
                height: 60vh;
                min-height: 400px;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .work-tabs {
                grid-template-columns: 1fr;
            }
            
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .top-header-bar {
                font-size: 12px;
                padding: 6px 0;
            }
            
            .main-header {
                padding: 10px 0;
            }
            
            
            .logo-icon {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
            
            .btn-orange {
                font-size: 12px;
                padding: 8px 16px;
            }
            
            .hero-slider {
                height: 50vh;
                min-height: 350px;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .services-section,
            .company-intro,
            .how-we-work,
            .why-choose-us,
            .testimonials,
            .blog-section,
            .faq-section,
            .contact-section {
                padding: 50px 0;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 16px;
            }
            
            .service-card {
                padding: 24px 16px;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .service-title {
                font-size: 1rem;
            }
            
            .contact-item i {
                font-size: 16px;
            }
            
            .contact-item span {
                font-size: 10px;
            }
            
            .bottom-contact-bar {
                padding: 8px 0;
            }
            
            .intro-content h1 {
                font-size: 1.8rem;
            }
            
            .solution-slider {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 15px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .testimonial-grid,
            .blog-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .career-grid {
                grid-template-columns: 1fr;
            }

            .workplace-benefits {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.6s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Loading States */
        .loading {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.4s ease;
        }

        .loading.loaded {
            opacity: 1;
            transform: scale(1);
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Focus States for Accessibility */
        .btn-orange:focus,
        .mobile-nav-item:focus,
        .contact-item:focus {
            outline: 2px solid var(--primary-orange);
            outline-offset: 2px;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: #ed1c24;
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
        }

        :root {
            --brand-red: #ed1c24;
            --brand-blue: #01284f;
            --white: #ffffff;
            --gray-light: #f8f9fa;
            --gray-medium: #6c757d;
            --gray-dark: #343a40;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #f8f9fa;
        }

        /* Main Section */
        .testimonials-section {
            padding: 60px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
            position: relative;
            overflow: hidden;
        }

        /* Background Decoration */
        .testimonials-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(237, 28, 36, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            top: -150px;
            right: -150px;
        }

        .testimonials-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(1, 40, 79, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -200px;
            left: -200px;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .badge-custom {
            display: inline-block;
            background: var(--brand-red);
            color: white;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--brand-blue);
            margin-bottom: 10px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--gray-medium);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Testimonial Card */
        .testimonial-slide {
            padding: 15px;
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        /* Quote Icon */
        .quote-icon {
            width: 45px;
            height: 45px;
            background: var(--brand-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            margin-bottom: 20px;
        }

        /* Stars */
        .stars {
            margin-bottom: 15px;
        }

        .stars i {
            color: #ffc107;
            font-size: 14px;
            margin-right: 2px;
        }

        /* Testimonial Text */
        .testimonial-text {
            font-size: 15px;
            line-height: 1.6;
            color: var(--gray-dark);
            margin-bottom: 25px;
            min-height: 80px;
        }

        /* Client Info */
        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 1px solid #e9ecef;
        }

        .client-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid var(--brand-red);
            flex-shrink: 0;
        }

        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .client-details h6 {
            margin: 0;
            font-size: 14px;
            font-weight: 600;
            color: var(--brand-blue);
        }

        .client-details p {
            margin: 0;
            font-size: 12px;
            color: var(--gray-medium);
        }

        /* Custom Carousel Controls */
        .testimonial-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
        }

        .carousel-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--brand-blue);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            background: var(--brand-red);
            transform: scale(1.1);
        }

        .carousel-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .carousel-dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ccc;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            width: 25px;
            border-radius: 5px;
            background: var(--brand-red);
        }

        /* Stats Section */
        .stats-container {
            margin-top: 60px;
            background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-red) 100%);
            border-radius: 15px;
            padding: 40px 20px;
        }

        .stat-item {
            text-align: center;
            color: white;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 14px;
            opacity: 0.9;
        }

        /* Client Logos */
        .client-logos {
            margin-top: 60px;
            text-align: center;
        }

        .client-logos h4 {
            font-size: 24px;
            color: var(--brand-blue);
            margin-bottom: 30px;
            font-weight: 600;
        }

        .logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 80px;
            transition: transform 0.3s ease;
        }

        .logo-item:hover {
            transform: scale(1.1);
        }

        .logo-item i {
            font-size: 40px;
            color: #ccc;
            transition: color 0.3s ease;
        }

        .logo-item:hover i {
            color: var(--brand-red);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 28px;
            }

            .section-subtitle {
                font-size: 14px;
                padding: 0 15px;
            }

            .testimonial-card {
                padding: 25px;
                margin: 0 auto;
                max-width: 100%;
            }

            .testimonial-text {
                font-size: 14px;
                min-height: auto;
            }

            .testimonial-slide {
                padding: 10px;
            }

            .stat-number {
                font-size: 24px;
            }

            .logo-item i {
                font-size: 30px;
            }

            .carousel-btn {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
        }

        @media (max-width: 576px) {
            .testimonials-section {
                padding: 40px 0;
            }

            .section-title {
                font-size: 24px;
            }

            .testimonial-card {
                padding: 20px;
                width: 100%;
            }

            .testimonial-slide {
                padding: 5px;
            }

            .testimonial-text {
                font-size: 13px;
                line-height: 1.5;
            }

            .quote-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
                margin-bottom: 15px;
            }

            .stats-container {
                padding: 30px 15px;
            }

            .client-info {
                flex-direction: row;
                text-align: left;
                gap: 12px;
            }

            .client-avatar {
                width: 45px;
                height: 45px;
            }

            .client-details h6 {
                font-size: 13px;
            }

            .client-details p {
                font-size: 11px;
            }

            /* Ensure single column on mobile */
            .carousel-item .row {
                margin: 0 -5px;
            }

            .carousel-item .col-12 {
                padding: 0 5px;
            }

            /* Hide extra testimonials on mobile */
            .carousel-item .col-12:not(:first-child) {
                display: none !important;
            }

            /* Show only first testimonial on mobile */
            .carousel-item .col-12:first-child {
                display: block !important;
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
