 :root {
            --primary-red: #d32f2f;
            --dark-red: #b71c1c;
            --light-red: #ffcdd2;
            --dark-bg: #1a1a1a;
            --light-bg: #f5f5f5;
            --text-dark: #333;
            --text-light: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        
        /* Navigation */
        .navbar {
            background-color: rgba(0, 0, 0, 0.9);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: bold;
            font-size: 1.8rem;
        }
        
        .navbar-brand span {
            color: var(--primary-red);
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            margin: 0 10px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-red) !important;
        }
        
        /* Hero Section - Updated to 100vh */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('https://primaco.ae/images/banner_showroom_1_2000x800.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--light-red);
            line-height: 1.6;
        }
        
        .hero-lead {
            font-size: 1.2rem;
            margin-bottom: 40px;
            line-height: 1.7;
            opacity: 0.9;
        }
        
        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.2rem;
            animation: bounce 2s infinite;
        }
        
        .scroll-indicator i {
            color: var(--primary-red);
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }
        
        .section-title {
            color: var(--dark-red);
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--primary-red);
        }
        
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Sections */
        .section-content {
            padding: 100px 0;
        }
        
        .section-content:nth-child(even) {
            background-color: var(--light-bg);
        }
        
        .icon-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: transform 0.3s;
            border-top: 4px solid var(--primary-red);
        }
        
        .icon-box:hover {
            transform: translateY(-10px);
        }
        
        .icon-box i {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 20px;
        }
        
        .service-item, .industry-item {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            font-size: 1.1rem;
        }
        
        .service-item:last-child, .industry-item:last-child {
            border-bottom: none;
        }
        
        .service-item i, .industry-item i {
            color: var(--primary-red);
            margin-right: 10px;
        }
        
        /* Contact Section */
        .contact-info-box {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            border-left: 5px solid var(--primary-red);
        }
        
        .contact-item {
            margin-bottom: 25px;
            padding-left: 15px;
            border-left: 2px solid #eee;
            transition: all 0.3s;
        }
        
        .contact-item:hover {
            border-left-color: var(--primary-red);
        }
        
        .contact-item i {
            color: var(--primary-red);
            font-size: 1.2rem;
            margin-right: 15px;
            width: 25px;
        }
        
        .address-box {
            background-color: var(--light-bg);
            padding: 25px;
            border-radius: 8px;
            margin-top: 20px;
        }
        
        .address-title {
            color: var(--dark-red);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 100%;
            min-height: 350px;
        }
        
        .map-placeholder {
            background-color: #f0f0f0;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-weight: 500;
        }
        
        /* Footer with Company Details */
        .footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 80px 0 30px;
        }
        
        .footer h5 {
            color: white;
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1.2rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-red);
            padding-left: 5px;
        }
        
        .company-details-section {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 10px;
            border-left: 4px solid var(--primary-red);
            margin-bottom: 30px;
        }
        
        .company-details-section h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .legal-entity-box {
            background-color: rgba(255, 255, 255, 0.08);
            padding: 15px;
            border-radius: 6px;
            margin-top: 10px;
            font-weight: 500;
            border-left: 3px solid var(--primary-red);
        }
        
        .detail-row {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .detail-row:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .detail-label {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            margin-bottom: 5px;
        }
        
        .detail-value {
            color: white;
            font-weight: 600;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
            margin-top: 40px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .footer-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            margin-bottom: 15px;
        }
        
        .footer-brand span {
            color: var(--primary-red);
        }
        
        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-red);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: all 0.3s;
            opacity: 0;
            visibility: hidden;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--dark-red);
            transform: translateY(-5px);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                min-height: 700px;
                background-attachment: scroll;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-lead {
                font-size: 1.1rem;
            }
            
            .section-content {
                padding: 60px 0;
            }
            
            .contact-info-box {
                padding: 30px 20px;
            }
            
            .footer {
                padding: 60px 0 30px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-lead {
                font-size: 1rem;
            }
        }
        
        /* Updated service descriptions */
        .service-description {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            border-left: 3px solid var(--primary-red);
            margin-top: 10px;
        }
        
        .industry-description {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
        }