body {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            padding: 0;
        }
        
        /* Hero Section */
        .hero-section {
            background-color: #074780;
            background-image: url('../img/bg.jpg'); 
            background-blend-mode: multiply;
            background-position: center;
            background-size: cover;
            padding: 80px 0 90px;
            color: #ffffff;
            position: relative;
            border-bottom: 20px solid #021e43;
        }
        .hero-section::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, rgba(3, 46, 88, 0.8) 0%, rgba(10, 84, 153, 0.8) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-content img{max-width: 400px}

        /* Services Section */
        .services-section {
            background-color: #f8f4f3;
            padding: 50px 0;
        }
        
        .service-card {
            background-color: #ffffff;
            border: none;
            border-radius: 2px;
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
            padding: 2px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.5);
        }
        
        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255,255,255,0.8);
        }

        .service-icon {
            margin-bottom: 20px;
        }
        
        .service-title {
            font-size: 1.25rem;
            font-weight: 500;
            color: #000000;
            margin-bottom: 0;
            line-height: 1.4;
            letter-spacing: 0.5px;
        }

        .service_icon_item{width: 100%; float: left; padding: 30px 10px; text-align: center;background-color: #f3f3f4}
        .service_icon_text{padding-top: 20px; padding-bottom: 20px;}

        /* Contact Strip */
        .contact-strip {
            background-color: #093d69;
            color: #ffffff;
        }
        
        .contact-item {
            padding: 16px 0;
        }
        
        .contact-col {
            border-right: 1px solid #005a96;
        }
        
        .contact-col:last-child {
            border-right: none;
        }
        
        .contact-city {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2px;
            font-weight: 400;
        }
        
        .contact-number {
            font-size: 1.45rem;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* Address Strip */
        .address-strip {
            background-color: #064177;
            color: #ffffff;
            padding: 10px 0;
            font-size: 1.25rem;
            font-weight: 400; border-top: 2px solid #fff;
        }

        /* Footer / Construction Strip */
        .footer-strip {
            background-color: #f8f4f3;
            padding: 30px 0 35px;
        }
        
        .construction-text {
            color: #093d69;
            font-weight: 800;
            font-size: 2.2rem;
            margin-bottom: 2px;
            letter-spacing: -0.5px;
        }
        
        .footer-contact {
            color: #222222;
            font-weight: 500;
            font-size: 1.25rem;
        }

        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .hero-title {
                font-size: 3.5rem;
            }
            .hero-subtitle {
                font-size: 1.4rem;
            }
            .contact-col:nth-child(even) {
                border-right: none;
            }
            .contact-col {
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            }
            .contact-col:nth-last-child(-n+2) {
                border-bottom: none;
            }
        }
        
        @media (max-width: 767.98px) {
             .hero-section img{max-width: 70%}
            .construction-text {
                font-size: 1.5rem;
            }
            .contact-col {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            }
            .contact-col:last-child {
                border-bottom: none;
            }
            .address-strip {
                font-size: 1.25rem;
            }
            .footer-contact {
                font-size: 0.9rem;
            }
        }