
        /* === GLOBAL STYLES === */
        :root {
            --primary-color: #011638; 
            --accent-color: #ffc72c; 
            --secondary-color: #f4f7f6;
            --dark-color: #333;
            --gradient-primary: linear-gradient(135deg, #011638 0%, #00015e 100%);
            --gradient-accent: linear-gradient(135deg, #ffc72c 0%, #ffb700 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
            padding-top: 80px;
            overflow-x: hidden;
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* === ENHANCED NAVIGATION === */
        .navbar {
            background: var(--gradient-primary);
            padding: 1rem 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-brand {
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--accent-color) !important;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            text-transform: uppercase;
            font-size: 0.9rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after,
        .nav-item.active .nav-link::after {
            width: 80%;
        }

        .nav-link:hover,
        .nav-item.active .nav-link {
            color: var(--accent-color) !important;
        }

        .dropdown-menu {
            background: rgba(1, 22, 56, 0.98);
            border: none;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            margin-top: 10px;
        }

        @media (min-width: 992px) {
            .dropdown-menu {
                display: block;
                visibility: hidden;
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.3s ease;
            }

            .dropdown:hover .dropdown-menu {
                visibility: visible;
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .dropdown-item {
            color: white;
            padding: 12px 20px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .dropdown-item:hover {
            background: rgba(255, 199, 44, 0.15);
            color: var(--accent-color);
            border-left-color: var(--accent-color);
            padding-left: 25px;
        }

        .btn-quote {
            background: var(--gradient-accent);
            color: var(--primary-color) !important;
            font-weight: 700;
            border: none;
            border-radius: 25px;
            padding: 10px 25px !important;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 199, 44, 0.3);
        }

        .btn-quote:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 199, 44, 0.5);
            color: var(--primary-color) !important;
        }

        .nav-contact-info {
            color: white;
            font-weight: 600;
        }

        .btn-search {
            background: transparent;
            border: none;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .btn-search:hover {
            color: var(--accent-color);
        }

        /* === ENHANCED HERO SLIDER === */
        .hero-slider {
            width: 100%;
            height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        .hero-slider::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(transparent, white);
            z-index: 2;
        }
        
        .carousel-item {
            height: 100vh;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(1, 22, 56, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
        }

        .carousel-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(255, 199, 44, 0.03) 2px,
                rgba(255, 199, 44, 0.03) 4px
            );
            pointer-events: none;
        }
        
        .carousel-caption {
            top: 50%;
            transform: translateY(-50%);
            bottom: auto;
            z-index: 10;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.2;
            text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
            margin-bottom: 20px;
        }

        .hero-text {
            font-size: 1.3rem;
            max-width: 750px;
            margin: 0 auto 40px;
            text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);
            line-height: 1.6;
        }

        .hero-btn {
            font-size: 1.1rem;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-warning {
            background: var(--gradient-accent);
            border: none;
            box-shadow: 0 5px 20px rgba(255, 199, 44, 0.4);
        }

        .btn-warning:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 199, 44, 0.6);
        }

        .btn-outline-light {
            border: 2px solid white;
            background: transparent;
        }

        .btn-outline-light:hover {
            background: white;
            color: var(--primary-color) !important;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
        }

        /* === TRUST BADGES === */
        .trust-badges {
            border-bottom: 1px solid #e9ecef;
        }

        .trust-item {
            text-align: center;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .rating {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* === ENHANCED SECTIONS === */
        .page-section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            color: var(--primary-color);
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        /* === MILESTONE SECTION === */
        .milestone-section {
            background: var(--gradient-primary);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .milestone-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="rgba(255,199,44,0.1)"/></svg>');
            opacity: 0.5;
        }

        .milestone-item {
            text-align: center;
            padding: 20px;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .milestone-number {
            font-size: 4rem;
            font-weight: 900;
            color: var(--accent-color);
            text-shadow: 0 3px 10px rgba(255, 199, 44, 0.3);
            margin-bottom: 10px;
            line-height: 1;
            transition: all 0.3s ease;
        }

        .milestone-label {
            font-size: 1.1rem;
            color: white;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .milestone-item:hover .milestone-number {
            transform: scale(1.1);
            text-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
        }

        .milestone-item:hover .milestone-label {
            opacity: 1;
            transform: translateY(-2px);
        }

        /* === SERVICE CARDS === */
        .bg-light-gray {
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
        }

        .service-card {
            border: none;
            border-radius: 15px;
            transition: all 0.4s ease;
            overflow: hidden;
            background: white;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            height: 100%;
            margin-bottom: 30px;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            font-size: 4rem;
            color: var(--accent-color);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-card .card-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        /* === ENHANCED PROJECTS SHOWCASE === */
        .projects-showcase {
            padding: 100px 0;
            background: #fff;
        }

        .section-header {
            margin-bottom: 60px;
        }

        .section-subtitle {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            color: #00015e;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .project-filters {
            margin-bottom: 3rem;
            text-align: center;
        }

        .filter-btn {
            background: none;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 10px 25px;
            margin: 0 5px 10px;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 600;
            cursor: pointer;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--primary-color);
            color: white;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 50px;
        }

        .project-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            margin-bottom: 30px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            opacity: 1;
            transform: translateY(0);
        }

        .project-card.hidden-project {
            display: none;
        }

        .project-card.visible {
            display: block;
            animation: fadeInUp 0.6s ease forwards;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .project-image {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.1);
        }

        .project-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-color);
            color: var(--primary-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            z-index: 2;
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(1, 22, 56, 0.95) 0%, transparent 100%);
            display: flex;
            align-items: flex-end;
            opacity: 0;
            transition: all 0.4s ease;
            padding: 25px;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-content {
            color: white;
            transform: translateY(20px);
            transition: transform 0.3s ease;
            width: 100%;
        }

        .project-card:hover .project-content {
            transform: translateY(0);
        }

        .project-category {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #ffc107;
            margin-bottom: 8px;
        }

        .project-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .project-stats {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }

        .project-stats span {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .project-stats i {
            margin-right: 5px;
        }

        .project-description {
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            color: #ffc107;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .project-link:hover {
            color: #fff;
        }

        .project-link::after {
            content: '→';
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .project-link:hover::after {
            transform: translateX(5px);
        }

        .btn-more-projects {
            display: inline-block;
            padding: 15px 40px;
            background: #00015e;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 2px solid #00015e;
            cursor: pointer;
            border: none;
        }

        .btn-more-projects:hover {
            background: transparent;
            color: #00015e;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
        }

        .btn-more-projects.hidden {
            display: none;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* === VIDEO SECTION === */
        .video-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .video-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.4s ease;
        }

        .video-wrapper:hover {
            transform: perspective(1000px) rotateY(0deg) scale(1.02);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
        }

        .video-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 199, 44, 0.95);
            color: #011638;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 2;
        }

        .video-label {
            color: #ffc72c;
            font-weight: 700;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 15px;
        }

        .video-features .feature-item {
            display: flex;
            align-items: start;
            margin-bottom: 20px;
        }

        .feature-icon {
            background: linear-gradient(135deg, #ffc72c 0%, #ffb700 100%);
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .feature-icon i {
            color: #011638;
            font-size: 1.2rem;
        }

        .feature-content h5 {
            color: #011638;
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 1rem;
        }

        .feature-content p {
            color: #666;
            margin: 0;
            font-size: 0.95rem;
        }

        /* === TESTIMONIALS === */
        .testimonial-carousel {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 30px;
        }

        .testimonial-slide {
            flex: 0 0 calc(33.333% - 20px);
            min-width: calc(33.333% - 20px);
        }

        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .quote-icon {
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .testimonial-quote {
            font-size: 1.2rem;
            line-height: 1.7;
            color: #495057;
            font-style: italic;
            margin-bottom: 25px;
            position: relative;
        }

        .testimonial-author {
            border-top: 1px solid #e9ecef;
            padding-top: 20px;
        }

        .testimonial-author p {
            font-size: 1.1rem;
            color: #212529;
        }

        .testimonial-author small {
            font-size: 0.95rem;
        }

        /* Carousel Controls */
        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            gap: 20px;
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid #00015e;
            background: white;
            color: #00015e;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            background: #00015e;
            color: white;
            transform: scale(1.1);
        }

        .carousel-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .carousel-btn:disabled:hover {
            background: white;
            color: #00015e;
        }

        .carousel-dots {
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #dee2e6;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #00015e;
            transform: scale(1.2);
        }

        /* === QUICK CONTACT === */
        .quick-contact-fixed {
            position: fixed;
            bottom: 100px;
            right: 30px;
            z-index: 1000;
        }

        .quick-contact-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .quick-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .quick-btn.phone { background: #28a745; }
        .quick-btn.whatsapp { background: #25D366; }
        .quick-btn.email { background: #007bff; }

        .quick-btn:hover {
            transform: scale(1.1);
            color: white;
        }

        /* === FOOTER === */
        .footer {
            background: var(--gradient-primary);
            color: white;
            padding: 70px 0 30px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-accent);
        }
        
        .footer h4,
        .footer h5 {
            color: var(--accent-color);
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .social-icons a {
            display: inline-block;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 45px;
            margin-right: 10px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--accent-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* === ANIMATION CLASSES === */
        .fade-in {
            animation: fadeIn 1s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* === SCROLL REVEAL === */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* === LOADING OPTIMIZATION === */
        .lazy-load {
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .lazy-load.loaded {
            opacity: 1;
        }
        
        /* === UNIQUE ENHANCEMENTS === */
        .floating-element {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        .gradient-text {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .cursor-pointer {
            cursor: pointer;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-accent);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
        }

        /* === ACCESSIBILITY === */
        button:focus,
        a:focus {
            outline: 2px solid var(--accent-color);
            outline-offset: 2px;
        }

        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: var(--accent-color);
            color: var(--primary-color);
            padding: 8px;
            text-decoration: none;
            z-index: 10000;
            transition: top 0.3s;
        }

        .skip-link:focus {
            top: 6px;
        }

        /* === RESPONSIVE DESIGN === */
        @media (max-width: 1200px) {
            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonial-slide {
                flex: 0 0 calc(50% - 15px);
                min-width: calc(50% - 15px);
            }
        }

        @media (max-width: 992px) {
            .navbar-brand {
                font-size: 1.5rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-text {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .milestone-number {
                font-size: 3rem;
            }
            
            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonial-slide {
                flex: 0 0 calc(50% - 15px);
                min-width: calc(50% - 15px);
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }

            .hero-slider,
            .carousel-item {
                height: 70vh;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-text {
                font-size: 1rem;
            }

            .hero-btn {
                font-size: 0.95rem;
                padding: 12px 30px;
                margin: 5px 0;
            }
            
            .page-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 1.8rem;
                text-align: center;
            }

            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .milestone-section {
                padding: 50px 0;
            }

            .milestone-number {
                font-size: 2.5rem;
            }

            .milestone-label {
                font-size: 0.95rem;
            }

            .service-icon {
                font-size: 3rem;
            }

            .about-text-content {
                text-align: center;
            }

            .about-text-content .btn {
                width: 100%;
                margin-bottom: 10px;
            }

            .testimonial-card {
                padding: 30px 25px;
            }
            
            .testimonial-slide {
                flex: 0 0 calc(100% - 10px);
                min-width: calc(100% - 10px);
            }
            
            .testimonial-quote {
                font-size: 1.1rem;
            }
            
            .carousel-controls {
                gap: 15px;
            }
            
            .carousel-btn {
                width: 45px;
                height: 45px;
            }

            .footer {
                padding: 50px 0 20px;
            }
            
            /* Mobile navigation button spacing */
            .navbar-nav .nav-item {
                margin: 5px 0;
            }
            
            .btn-quote {
                margin-top: 10px;
                width: 100%;
                text-align: center;
            }
            
            .quick-contact-fixed {
                bottom: 80px;
                right: 15px;
            }
            
            .quick-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .project-filters {
                overflow-x: auto;
                white-space: nowrap;
                padding-bottom: 10px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.6rem;
            }

            .hero-text {
                font-size: 0.9rem;
            }

            .btn-quote {
                padding: 8px 15px !important;
                font-size: 0.8rem;
            }

            .milestone-section .row > div {
                margin-bottom: 30px;
            }

            .milestone-section .row > div:last-child {
                margin-bottom: 0;
            }
            
            /* Improved mobile button spacing */
            .carousel-caption .btn {
                margin: 5px 0;
                display: block;
                width: 100%;
            }
            
            .carousel-caption .btn + .btn {
                margin-top: 10px;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .milestone-number {
                font-size: 2.2rem;
            }
            
            .milestone-label {
                font-size: 0.9rem;
            }
        }
  