:root {
            --primary-red: #dc3545;
            --secondary-color: #f8f9fa;
            --dark-color: #343a40;
        }
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar-nav .nav-item {
            margin: 0 0.5rem;
        }
        .navbar-nav .nav-link {
            position: relative;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
        }
        .navbar-nav .nav-link:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-red);
            transition: all 0.3s ease;
        }
        .navbar-nav .nav-link:hover:before {
            width: 100%;
        }
        .navbar-nav .nav-link.active:before {
            width: 100%;
        }
        .btn-primary {
            background-color: var(--primary-red);
            border-color: var(--primary-red);
        }
        .btn-primary:hover {
            background-color: #c82333;
            border-color: #bd2130;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1509391366360-2e959784a276');
            background-size: cover;
            background-position: center;
            min-height: 100vh; /* Change from fixed height to min-height */
            height: auto; /* Allow content to expand naturally */
            color: white;
            padding-top: 80px;
            padding: 120px 0 60px; /* Add proper padding for mobile */
            position: relative;
        }
        .hero-section .container {
            position: relative;
            z-index: 2;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.8) 0%,
                rgba(220, 53, 69, 0.4) 100%
            );
            z-index: 1;
        }
        .process-step {
            text-align: center;
            padding: 20px;
        }
        .process-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }
        .project-card {
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .project-card:hover {
            transform: translateY(-10px);
        }
        .project-overlay {
            position: absolute;
            bottom: -100%;
            left: 0;
            right: 0;
            background: rgba(220, 53, 69, 0.9);
            color: white;
            padding: 20px;
            transition: bottom 0.3s ease;
        }
        .project-card:hover .project-overlay {
            bottom: 0;
        }
        .fade-in-up {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.6s ease-out;
        }
        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }
        #about {
            padding: 80px 0;
            overflow: hidden; /* Prevent content overflow */
        }
        #about h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        #about .lead {
            font-size: 1.25rem;
            margin-bottom: 2rem;
        }
        #about p {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .experience-box {
            padding: 20px;
            border-radius: 10px;
            background: #f8f9fa;
            margin-bottom: 30px;
        }
        .experience-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #dc3545;
            margin-bottom: 10px;
        }
        #about .list-unstyled li {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        #about .list-unstyled li i {
            color: #dc3545;
            margin-right: 10px;
        }
        .footer {
            background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
            color: #f8f9fa;
            padding: 70px 0 20px;
            position: relative;
            z-index: 1;
        }
        .footer-column h5 {
            color: #dc3545;
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #a8a8a8;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .footer-links a:hover {
            color: #dc3545;
            padding-left: 5px;
        }
        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(220, 53, 69, 0.1);
            color: #dc3545;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .footer-social a:hover {
            background: #dc3545;
            color: white;
            transform: translateY(-3px);
        }
        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: #a8a8a8;
        }
        .footer-contact i {
            color: #dc3545;
            margin-right: 10px;
            margin-top: 5px;
        }
        .footer-bottom {
            padding-top: 20px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            display: inline-block;
        }
        .footer-brand i {
            color: #dc3545;
        }
        .newsletter-form {
            position: relative;
            margin-top: 20px;
        }
        .newsletter-form input {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50px;
            padding: 12px 20px;
            width: 100%;
            color: #fff;
        }
        .newsletter-form button {
            position: absolute;
            right: 5px;
            top: 5px;
            border-radius: 50px;
            padding: 7px 20px;
        }
        .section-light {
            background-color: #ffffff;
        }
        .section-gray {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        .section-light-blue {
            background: linear-gradient(135deg, #f5f9ff 0%, #edf4ff 100%);
        }
        .section-light-red {
            background: linear-gradient(135deg, #fff5f5 0%, #ffe9e9 100%);
        }
        .section-light-green {
            background: linear-gradient(135deg, #f5fff5 0%, #e9ffe9 100%);
        }
        .section-light-yellow {
            background: linear-gradient(135deg, #fffff5 0%, #ffffe9 100%);
        }
        .pattern-overlay {
            position: relative;
        }
        .pattern-overlay:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAEklEQVQImWNgYGD4z0AswK4SAFXuAf8EPy+xAAAAAElFTkSuQmCC');
            opacity: 0.05;
            pointer-events: none;
        }
        .navbar {
            padding: 0;
            height: 80px;
        }
        .logo-wrapper {
            margin: 0;
            padding: 0;
            position: relative;
            height: 80px;
            display: flex;
            align-items: center;
            margin-left: -15px;
        }
        .logo-shape {
            background: var(--primary-red);
            color: white;
            padding: 0 30px 0 15px;
            height: 80px;
            display: flex;
            align-items: center;
            position: relative;
            min-width: 280px;
            clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
        }
        .logo-shape::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 30px;
            background: linear-gradient(to left, rgba(255,255,255,0.2), transparent);
            transform: skewX(-10deg);
        }
        .logo-shape i {
            font-size: 1.8rem;
            margin-right: 15px;
            filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.2));
        }
        .logo-shape span {
            font-size: 1.4rem;
            font-weight: 700;
            white-space: nowrap;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .navbar-nav {
            margin-left: auto;
            height: 80px;
            display: flex;
            align-items: center;
        }
        .navbar-nav .nav-item {
            display: flex;
            align-items: center;
        }
        .navbar-nav .nav-link {
            padding: 0.5rem 1rem;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--primary-red);
            transition: all 0.3s ease;
        }
        .navbar-nav .nav-link:hover::before,
        .navbar-nav .nav-link.active::before {
            width: 80%;
        }
        @media (max-width: 991.98px) {
            .logo-shape {
                min-width: 220px;
                padding-right: 25px;
            }
            .logo-shape span {
                font-size: 1.2rem;
            }
            .navbar-collapse {
                background: white;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                padding: 1rem;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
            .navbar-nav {
                height: auto;
            }
            .navbar-nav .nav-item {
                margin: 0.5rem 0;
            }
        }
        .navbar-wrapper {
            display: flex;
            align-items: center;
            width: 100%;
            padding: 0;
            height: 100%;
        }
        .logo-section {
            width: 300px;
            margin: 0;
        }
        .logo-shape {
            background: var(--primary-red);
            color: white;
            height: 80px;
            display: flex;
            align-items: center;
            padding: 0 30px 0 30px;
            position: relative;
            clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
            margin-left: -15px;
        }
        .navbar-toggler {
            margin-right: 15px;
        }
        @media (max-width: 991.98px) {
            .navbar-wrapper {
                justify-content: space-between;
            }
            .logo-section {
                width: auto;
            }
            .logo-shape {
                min-width: auto;
                padding-right: 40px;
            }
            .logo-shape span {
                font-size: 1.1rem;
            }
            .navbar-collapse {
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: white;
                padding: 1rem;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
                z-index: 1000;
            }
            .navbar-toggler {
                padding: 0.5rem;
                margin-right: 15px;
            }
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            border: 2px solid #dc3545;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.3s ease;
            z-index: 999;
            overflow: hidden;
        }
        .back-to-top.show {
            opacity: 1;
            transform: translateY(0);
        }
        .back-to-top i {
            color: #dc3545;
            font-size: 20px;
            position: relative;
            z-index: 2;
            transition: color 0.3s ease;
        }
        .back-to-top::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: #dc3545;
            transition: height 0.3s ease;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
        }
    

        /* Enhanced Color Palette */
        :root {
            --primary-red: #dc3545;
            --primary-dark: #c82333;
            --primary-light: #ffebee;
            --accent-gold: #ffd700;
            --text-dark: #2d3436;
            --text-light: #ffffff;
            --gradient-dark: linear-gradient(135deg, #2d3436 0%, #1a1a1a 100%);
        }

        /* Enhanced Section Transitions */
        section {
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        section:before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            right: 0;
            height: 50px;
            background: inherit;
            transform: skewY(-2deg);
            transform-origin: 100%;
        }

        /* Enhanced Card Hover Effects */
        .service-card, .project-card, .testimonial-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .service-card:hover, .project-card:hover, .testimonial-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 30px rgba(220, 53, 69, 0.15);
        }

        /* Smooth Button Animations */
        .btn {
            overflow: hidden;
            position: relative;
            z-index: 1;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .btn:hover:before {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Enhanced Text Animations */
        .fade-in-up {
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Enhanced Section Headers */
        .section-title {
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            width: 60px;
            height: 3px;
            background: var(--primary-red);
            transform: translateX(-50%);
        }

        /* Professional Looking Stats */
        .stat-item {
            position: relative;
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        .stat-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(220, 53, 69, 0.03));
            transform: translateX(-100%);
            transition: transform 0.6s ease-in-out;
        }

        .stat-item:hover:before {
            transform: translateX(0);
        }

        /* Enhanced Navigation */
        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-red);
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link:hover:after,
        .nav-link.active:after {
            transform: scaleX(1);
        }

        /* Professional Form Inputs */
        .form-control {
            border: 2px solid transparent;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .form-control:focus {
            border-color: var(--primary-red);
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
            background: white;
        }

        /* Enhanced Loading Animation */
        .loader-container {
            background: var(--gradient-dark);
        }

        .energy-loader {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Professional Hero Section Enhancement */
        .hero-section {
            position: relative;
            overflow: hidden;
        }

        .hero-section:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(0,0,0,0.8) 0%,
                rgba(220, 53, 69, 0.6) 100%
            );
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        /* Enhanced Testimonial Cards */
        .testimonial-card {
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
            border: none;
        }

        /* Project Cards Enhancement */
        .project-card img {
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .project-card:hover img {
            transform: scale(1.1);
        }

        /* Enhanced Footer */
        .footer {
            position: relative;
            background: var(--gradient-dark);
        }

        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, transparent, var(--primary-red), transparent);
        }

        /* Micro-interactions */
        .btn:active {
            transform: scale(0.98);
        }

        .service-icon {
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: rotate(360deg);
        }
        
        .projects-slider-container {
            overflow: hidden;
            position: relative;
        }

        .projects-slider {
            display: flex;
            transition: transform 0.5s ease;
            flex-wrap: nowrap;
        }

        .project-item {
            flex: 0 0 25%;
            max-width: 25%;
            padding: 0 15px;
            transition: all 0.3s ease;
        }

        .project-card {
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }

        .project-image {
            width: 100%;
            height: 100%;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .project-overlay {
            position: absolute;
            bottom: -100%;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(220, 53, 69, 0.95), rgba(0, 0, 0, 0.8));
            color: white;
            padding: 20px;
            transition: bottom 0.3s ease;
        }

        .project-card:hover .project-overlay {
            bottom: 0;
        }

        @media (max-width: 991.98px) {
            .project-item {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }

        @media (max-width: 575.98px) {
            .project-item {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }
        
        .testimonials-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
            overflow: hidden;
        }

        .testimonial-slider-container {
            overflow: hidden;
            padding: 20px 0;
        }

        .testimonial-slider {
            display: flex;
            transition: transform 0.5s ease;
            gap: 30px;
        }

        .testimonial-card {
            flex: 0 0 calc(25% - 22.5px); /* Show 4 cards at once */
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .client-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
            border: 3px solid #dc3545;
        }

        .client-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .rating {
            color: #ffc107;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .testimonial-text {
            color: #4a4a4a;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        .top-info-bar {
            background: var(--dark-color);
            padding: 8px 0;
            font-size: 0.9rem;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
        }
    
        .info-list {
            margin: 0;
            display: flex;
            align-items: center;
        }
    
        .info-list li {
            margin-right: 25px;
            color: #fff;
            white-space: nowrap;
        }
    
        .info-list li:last-child {
            margin-right: 0;
        }
    
        .info-list li i {
            color: var(--primary-red);
            margin-right: 8px;
            font-size: 1rem;
        }
    
        .info-list li a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
    
        .info-list li a:hover {
            color: var(--primary-red);
        }
    
        .social-list {
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
    
        .social-list li {
            margin-left: 10px;
        }
    
        .social-list li:first-child {
            margin-left: 0;
        }
    
        .social-list li a {
            color: #fff;
            width: 28px;
            height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            font-size: 0.85rem;
        }
    
        .social-list li a:hover {
            background: var(--primary-red);
            color: #fff;
            transform: translateY(-2px);
        }
    
        @media (max-width: 991.98px) {
            .info-list {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .info-list li {
                margin: 5px 15px;
            }
            
            .social-list {
                justify-content: center;
                margin-top: 10px;
            }
            
            .social-list li {
                margin: 0 5px;
            }
        }
    
        /* Adjust navbar position */
        .navbar {
            top: 44px; /* Height of top-info-bar */
        }
    
        /* Adjust hero section */
        .hero-section {
            margin-top: 124px; /* navbar height + top-info-bar height */
        }
    
        @media (max-width: 991.98px) {
            .top-info-bar {
                display: none;
            }
            .navbar {
                top: 0;
            }
            .hero-section {
                margin-top: 80px;
                padding: 100px 0 40px;
            }
        }
    
        /* Sticky behavior for navbar */
        body.scrolled .top-info-bar {
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }
    
        body.scrolled .navbar {
            top: 0;
            transition: top 0.3s ease;
        }

        .about-content {
            height: auto !important; /* Override inline style */
            min-height: 600px;
            gap: 2rem; /* Add gap between flex items */
        }

        /* Add responsive adjustments */
        @media (max-width: 991.98px) {
            .about-content {
                min-height: auto;
                padding: 2rem 0;
            }
            
            .about-content > div {
                margin-bottom: 2rem;
            }
            
            .experience-box {
                margin-bottom: 1rem !important;
            }
            
            .achievements {
                margin-top: 1rem;
            }
        }

        /* Ensure images are responsive */
        .about-content img {
            max-width: 100%;
            height: auto;
        }

        /* Fix container padding on mobile */
        @media (max-width: 767.98px) {
            .container {
                padding-left: 20px;
                padding-right: 20px;
            }
        }