
        :root {
            --primary: #0a3d62;
            --secondary: #3c6382;
            --accent: #f39c12;
            --light: #f5f6fa;
            --dark: #1e272e;
            --white: #ffffff;
            --gray: #f1f2f6;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--accent);
            color: var(--white);
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }

        .btn:hover {
            background-color: #e67e22;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
        }

        .btn-outline:hover {
            background-color: var(--accent);
            color: var(--white);
        }

        /* Header */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 10px 0;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 4px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--accent);
        }

        .logo img {
            margin-right: 10px;
            font-size: 28px;
            overflow: hidden;
            width: 100px;
            height: 100px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: var(--dark);
            margin: 5px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(10, 61, 98, 0.8), rgba(10, 61, 98, 0.8)), url('img/home_background.png') no-repeat center center/cover;
            display: flex;
            align-items: center;
            color: var(--white);
            position: relative;
        }
        .hero-content {

            max-width: 650px;
            margin-left: 50px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        display: flex;
        .hero-btns {
            gap: 15px;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--accent);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title p {
            color: var(--secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-img {
            flex: 1;
            position: relative;
        }

        .about-img img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-img::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid var(--accent);
            top: -20px;
            left: -20px;
            border-radius: 8px;
            z-index: -1;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .about-text p {
            margin-bottom: 20px;
        }

        .about-features {
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            flex-direction: row;
            align-items: center;
            margin-bottom: 15px;
        }

        .feature-item i {
            color: var(--accent);
            font-size: 20px;
            margin-right: 15px;
        }
        
        .feature-item p {
            font-size: 1rem;
            margin-bottom: 5px;
            color: var(--primary);
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: var(--gray);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-img {
            height: 200px;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .service-content p {
            margin-bottom: 20px;
            color: var(--dark);
            opacity: 0.8;
        }

        /* Projects Section */
        .projects {
            padding: 100px 0;
            background-color: var(--white);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .project-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 300px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .project-img {
            width: 100%;
            height: 100%;
        }

        .project-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10, 61, 98, 0.9), rgba(10, 61, 98, 0.4));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-card:hover .project-img img {
            transform: scale(1.1);
        }

        .project-overlay h3 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .project-overlay p {
            color: var(--white);
            opacity: 0.9;
            margin-bottom: 15px;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background-color: var(--gray);
        }

        .testimonials-slider {
            margin-top: 50px;
            position: relative;
            overflow: hidden;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            min-width: 100%;
            padding: 40px;
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .testimonial-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 5px solid var(--accent);
        }

        .testimonial-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            padding: 0 30px;
        }

        .testimonial-text::before,
        .testimonial-text::after {
            content: '"';
            font-size: 50px;
            color: var(--accent);
            opacity: 0.3;
            position: absolute;
        }

        .testimonial-text::before {
            top: -20px;
            left: 0;
        }

        .testimonial-text::after {
            bottom: -40px;
            right: 0;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--primary);
        }

        .testimonial-position {
            font-size: 14px;
            color: var(--secondary);
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }

        .testimonial-nav button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--white);
            border: 2px solid var(--accent);
            color: var(--accent);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-nav button:hover {
            background-color: var(--accent);
            color: var(--white);
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background-color: var(--gray);
        }

        .contact-container {
            display: flex;
            gap: 50px;
            margin-top: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-item i {
            width: 40px;
            height: 40px;
            background-color: var(--accent);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .contact-form {
            flex: 1;
            background-color: var(--gray);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .contact-form h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: var(--primary);
            color: var(--white);
            padding: 70px 0 0;
        }
        
        footer img{
            max-width: 150px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .footer-col h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: var(--white);
            opacity: 0.8;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-col ul li a:hover {
            opacity: 1;
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-col p {
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            opacity: 0.7;
            font-size: 14px;
        }

        /* Responsive Styles */
        @media screen and (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }

            .about-content {
                flex-direction: column;
            }

            .about-img::before {
                display: none;
            }

            .contact-container {
                flex-direction: column;
            }
        }

        @media screen and (max-width: 768px) {
            .hamburger {
                display: block;
                z-index: 1001;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background-color: var(--white);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                z-index: 1000;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 20px 0;
            }

            .hamburger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .hamburger.active div:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .hero-content {
                margin-left: 0;
                text-align: center;
            }

            .hero-btns {
                justify-content: center;
                /*display: ruby-text;*/
            }
            
            .hero-btns a.btn {
                    margin: 1%;
                }

            .hero h1 {
                font-size: 2.2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }
            .logo-container {
                display: flex;
                flex-direction: row;
                align-items: center;
            }
            .logo-text {
                margin-left: 10px;
            }
        }

        @media screen and (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .btn {
                padding: 10px 20px;
                font-size: 12px;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }
        }
        
        .logo-marquee {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 30px 0;
            background-color: #f8f8f8;
        }
        
        .logo-track {
            display: flex;
            width: max-content;
            animation: scroll 10s linear infinite;
        }
        
        .logo-item {
            flex: 0 0 200px;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .logo-item img {
            max-width: 100%;
            max-height: 80px;
            object-fit: contain;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
        
            100% {
                transform: translateX(-1000px);
            }
        }
        
        .logo-track:hover {
            animation-play-state: paused;
        }

        /* =========================
   NAVIGATION DROPDOWN
========================= */

.nav-links li.dropdown {
    position: relative;
}

.nav-links li.dropdown > a {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-links li.dropdown > a i {
    font-size: 10px;
}

/* Dropdown Menu */
.nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 4px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all 0.3s ease;
    z-index: 9999;
}

/* Dropdown Items */
.nav-links .dropdown-menu li {
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav-links .dropdown-menu li a {
    display: block;
    padding: 11px 18px;
    color: #222;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* Hover */
.nav-links .dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #0b4775;
}

/* Show Dropdown */
.nav-links li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================
   FREE SITE VISIT BUTTON
========================= */

.nav-links .nav-cta {
    background: #f5a000;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links .nav-cta:hover {
    background: #0b4775;
    color: #fff !important;
}
     

/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {
    padding: 100px 0;
    background: #f5f6f8;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}


/* =========================================================
   FAQ INTRO
========================================================= */

.faq-intro {
    position: sticky;
    top: 100px;
}

.faq-subtitle {
    display: inline-block;
    margin-bottom: 15px;
    color: #ff6b35;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.hero-span {
    color: #f5a000;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.faq-intro h2 {
    margin: 0 0 20px;
    color: #1b365d;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.faq-intro h2 span {
    color: #ff6b35;
}

.faq-intro > p {
    margin: 0;
    max-width: 480px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   HELP BOX
========================================================= */

.faq-help-box {
    display: flex;
    gap: 18px;
    margin-top: 35px;
    padding: 25px;
    background: #1b365d;
    border-radius: 8px;
}

.faq-help-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ff6b35;
    color: #fff;
    border-radius: 50%;

    font-size: 20px;
}

.faq-help-content h4 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 18px;
}

.faq-help-content p {
    margin: 0 0 15px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition: all 0.3s ease;
}

.faq-contact-btn:hover {
    color: #fff;
}

.faq-contact-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.faq-contact-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #d3d9e0;
}


/* Active item */

.faq-item.active {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(27, 54, 93, 0.08);
}


/* =========================================================
   FAQ QUESTION
========================================================= */

.faq-question {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;

    display: flex;
    align-items: center;

    padding: 22px 24px;

    cursor: pointer;
    text-align: left;
}

.faq-number {
    width: 42px;
    min-width: 42px;

    color: #ff6b35;
    font-size: 13px;
    font-weight: 700;
}

.faq-question-text {
    flex: 1;

    padding-right: 20px;

    color: #1b365d;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f1f3f6;
    color: #1b365d;

    border-radius: 50%;

    font-size: 12px;

    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: #ff6b35;
    color: #fff;
}


/* =========================================================
   FAQ ANSWER
========================================================= */

.faq-answer {
    max-height: 0;
    overflow: hidden;

    padding: 0 24px 0 66px;

    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 25px;
}

.faq-answer p {
    margin: 0;

    color: #666;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .faq-intro {
        position: static;
    }

    .faq-intro h2 {
        font-size: 36px;
    }

}


@media (max-width: 767px) {

    .faq-section {
        padding: 70px 0;
    }

    .faq-intro h2 {
        font-size: 30px;
    }

    .faq-question {
        padding: 18px;
    }

    .faq-number {
        width: 35px;
        min-width: 35px;
    }

    .faq-question-text {
        font-size: 14px;
        padding-right: 10px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

    .faq-answer {
        padding-left: 53px;
        padding-right: 18px;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-help-box {
        padding: 20px;
    }

}


/* =========================================
   FREE SITE INSPECTION / QUOTE
========================================= */

.contact {
    padding: 100px 0;
    background: #f5f6f8;
}

.contact-container {
    align-items: stretch;
}

.contact-container > .col-lg-6 {
    padding-left: 15px;
    padding-right: 15px;
}

.contact-container > .col-lg-6 {
    padding-left: 15px;
    padding-right: 15px;
}


/* =========================================
   CONTACT INFORMATION
========================================= */

.contact-info {
    height: 100%;
    padding: 40px;
    background: #1b365d;
    border-radius: 8px;
}

.contact-info h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 28px;
}

.contact-intro {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}



.contact-item h4 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 16px;
}

.contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-size: 14px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.contact-item a:hover {
    color: #ff6b35;
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form {
    height: 100%;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
    margin-bottom: 10px;
    color: #1b365d;
    font-size: 28px;
}

.form-intro {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.7;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;

    border: 1px solid #ddd;
    border-radius: 5px;

    outline: none;

    font-family: inherit;
    font-size: 14px;

    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #1b365d;
    box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.08);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    border: 0;
    cursor: pointer;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .contact {
        padding: 70px 0;
    }

    .contact-container > .col-lg-6 {
        width: 100%;
    }

    .contact-info,
    .contact-form {
        padding: 25px;
    }

    .contact-info {
        margin-bottom: 25px;
    }

    .contact-info h3,
    .contact-form h3 {
        font-size: 24px;
    }

}

.footer-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-col ul li i {
    min-width: 18px;
    margin-top: 4px;
}

.footer-col ul li span {
    line-height: 1.6;
}


/* =========================================================
   OUR PROCESS
========================================================= */

.process-section {
    padding: 100px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.process-card {
    position: relative;
    padding: 35px 30px 30px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 12px 35px rgba(27, 54, 93, 0.10);
}


/* Step number */

.process-number {
    position: absolute;
    top: 15px;
    right: 20px;

    color: #e9edf2;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}


/* Icon */

.process-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background: #1b365d;
    color: #fff;

    border-radius: 50%;

    font-size: 21px;

    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: #ff6b35;
}


/* Content */

.process-content h3 {
    margin: 0 0 12px;

    color: #1b365d;
    font-size: 20px;
    font-weight: 600;
}

.process-content p {
    margin: 0;

    color: #666;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767px) {

    .process-section {
        padding: 70px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
    }

    .process-card {
        padding: 30px 25px;
    }

}


/* =========================================================
   SERVICES PAGE
========================================================= */

.inner-hero {
    min-height: 480px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            rgba(27, 54, 93, 0.82),
            rgba(27, 54, 93, 0.82)
        ),
        url("img/services-banner.jpg") center/cover no-repeat;
}

.inner-hero-content {
    margin-top: 50px;
    max-width: 800px;
    color: #fff;
}

@media(max-width:767px){
    .inner-hero-content 
    {
        margin-top: 100px;
        padding-top:15px;
    }
}

.hero-subtitle,
.section-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    color: #ff6b35;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.inner-hero h1 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 52px;
    line-height: 1.15;
}

.inner-hero p {
    max-width: 720px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

.btn-outline {
    margin-left: 10px;
    background: transparent !important;
    border: 1px solid #fff !important;
    color: #fff !important;
}


/* =========================================================
   MAIN SERVICES
========================================================= */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1b365d;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.service-link:hover {
    color: #ff6b35;
}




/* =========================================================
   CTA
========================================================= */

.service-cta {
    padding: 70px 0;
    background: #1b365d;
}

.service-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.service-cta-content h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 34px;
}

.service-cta-content p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.service-cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.service-cta .btn {
    white-space: nowrap;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .waterproofing-grid {
        grid-template-columns: 1fr;
    }

    .inner-hero h1 {
        font-size: 42px;
    }

    .service-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 767px) {

    .inner-hero {
        min-height: 420px;
    }

    .inner-hero h1 {
        font-size: 34px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
    }

    .service-detail-img {
        min-height: 220px;
    }

    .service-detail-img img {
        min-height: 220px;
    }

    .service-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .service-cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

}

/* =========================================================
   WATERPROOFING PAGE
========================================================= */

.waterproofing-hero {
    background:
        linear-gradient(
            rgba(27, 54, 93, 0.84),
            rgba(27, 54, 93, 0.84)
        ),
        url("img/waterproofing-banner.jpg")
        center / cover no-repeat;
}


/* =========================================================
   INTRO
========================================================= */

.waterproofing-intro {
    padding: 100px 0;
    background: #fff;
}

.waterproofing-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.waterproofing-intro-text h2 {
    margin: 0 0 20px;
    color: #1b365d;
    font-size: 42px;
    line-height: 1.2;
}

.waterproofing-intro-text p {
    margin-bottom: 18px;
    color: #666;
    line-height: 1.8;
}

.waterproofing-intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}


/* =========================================================
   WATERPROOFING SERVICES
========================================================= */

.waterproofing-services {
    padding: 100px 0;
    background: #f5f6f8;
}

.waterproofing-service-list {
    margin-top: 55px;
}

.waterproofing-service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    margin-bottom: 35px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(27, 54, 93, 0.06);
}

.waterproofing-service-item.reverse
.waterproofing-service-image {
    order: 2;
}

.waterproofing-service-item.reverse
.waterproofing-service-content {
    order: 1;
}

.waterproofing-service-image {
    position: relative;
    min-height: 480px;
}

.waterproofing-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-number {
    position: absolute;
    top: 25px;
    left: 25px;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ff6b35;
    color: #fff;

    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
}

.waterproofing-service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px;
}

.service-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #ff6b35;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.waterproofing-service-content h3 {
    margin: 0 0 18px;
    color: #1b365d;
    font-size: 30px;
}

.waterproofing-service-content > p {
    margin: 0 0 25px;
    color: #666;
    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   SYSTEMS USED
========================================================= */

.systems-box {
    padding: 20px 22px;
    background: #f5f6f8;
    border-left: 3px solid #ff6b35;
}

.systems-box h4 {
    display: flex;
    align-items: center;
    gap: 9px;

    margin: 0 0 12px;

    color: #1b365d;
    font-size: 15px;
}

.systems-box h4 i {
    color: #ff6b35;
}

.systems-box ul {
    margin: 0;
    padding-left: 20px;
}

.systems-box li {
    margin-bottom: 7px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.systems-box li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   BENEFITS
========================================================= */

.waterproofing-benefits {
    padding: 100px 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.benefit-card {
    padding: 30px 25px;
    text-align: center;
    background: #f5f6f8;
    border-radius: 7px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(27, 54, 93, 0.08);
}

.benefit-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    background: #1b365d;
    color: #fff;

    border-radius: 50%;

    font-size: 21px;
}

.benefit-card:hover .benefit-icon {
    background: #ff6b35;
}

.benefit-card h3 {
    margin: 0 0 12px;
    color: #1b365d;
    font-size: 18px;
}

.benefit-card p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .waterproofing-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .waterproofing-service-item {
        grid-template-columns: 1fr;
    }

    .waterproofing-service-item.reverse
    .waterproofing-service-image {
        order: 1;
    }

    .waterproofing-service-item.reverse
    .waterproofing-service-content {
        order: 2;
    }

    .waterproofing-service-image {
        min-height: 350px;
    }

    .waterproofing-service-content {
        padding: 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .waterproofing-intro,
    .waterproofing-services,
    .waterproofing-benefits {
        padding: 70px 0;
    }

    .waterproofing-intro-text h2 {
        font-size: 32px;
    }

    .waterproofing-intro-image img {
        height: 300px;
    }

    .waterproofing-service-image {
        min-height: 280px;
    }

    .waterproofing-service-content {
        padding: 30px 25px;
    }

    .waterproofing-service-content h3 {
        font-size: 25px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-hero {
    background:
        linear-gradient(
            rgba(27, 54, 93, 0.84),
            rgba(27, 54, 93, 0.84)
        ),
        url("img/contact-banner.jpg")
        center / cover no-repeat;
}


/* =========================================================
   CONTACT MAIN SECTION
========================================================= */

.contact-page {
    padding: 100px 0;
    background: #f5f6f8;
}

.contact-page-row {
    align-items: stretch;
    margin-top: 50px;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-page-info {
    height: 100%;
    padding: 40px;
    background: #1b365d;
    border-radius: 8px;
}

.contact-page-info h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 28px;
}

.contact-page-intro {
    margin-bottom: 35px;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.7;
}

.contact-page-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-page-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ff6b35;
    color: #fff;

    border-radius: 50%;
    font-size: 16px;
}

.contact-page-item h4 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 16px;
}

.contact-page-item p {
    margin: 0;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.7;
}

.contact-page-item a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

.contact-page-item a:hover {
    color: #ff6b35;
}


/* =========================================================
   CONTACT CTA BOX
========================================================= */

.contact-page-cta {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    margin-top: 35px;
    padding: 20px;

    background: rgba(255,255,255,0.08);
    border-left: 3px solid #ff6b35;
}

.contact-page-cta-icon {
    color: #ff6b35;
    font-size: 22px;
}

.contact-page-cta h4 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 16px;
}

.contact-page-cta p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-page-form {
    height: 100%;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.form-heading {
    margin-bottom: 30px;
}

.form-heading h3 {
    margin: 0 0 10px;
    color: #1b365d;
    font-size: 30px;
}

.form-heading p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

.contact-page-form .row {
    margin-left: -10px;
    margin-right: -10px;
}

.contact-page-form .row > div {
    padding-left: 10px;
    padding-right: 10px;
}

.contact-page-form .form-group {
    margin-bottom: 20px;
}

.contact-page-form label {
    display: block;
    margin-bottom: 7px;
    color: #1b365d;
    font-size: 14px;
    font-weight: 600;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
    width: 100%;
    padding: 14px 16px;

    border: 1px solid #ddd;
    border-radius: 5px;

    outline: none;

    font-family: inherit;
    font-size: 14px;

    transition: all 0.3s ease;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
    border-color: #1b365d;
    box-shadow: 0 0 0 3px rgba(27,54,93,0.08);
}

.contact-page-form textarea {
    resize: vertical;
}

.contact-page-form .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    border: 0;
    cursor: pointer;
}





/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .contact-page-row {
        row-gap: 25px;
    }

}


@media (max-width: 767px) {

    .contact-page,
    .contact-services {
        padding: 70px 0;
    }

    .contact-page-info,
    .contact-page-form {
        padding: 25px;
    }

}



/* =========================================================
   WATERPROOFING SYSTEMS HIGHLIGHT
========================================================= */

.systems-highlight {
    margin-top: 22px;
    padding: 18px;

    background: #fff8f3;

    border: 1px solid #ff6b35;
    border-left: 4px solid #ff6b35;

    border-radius: 7px;
}


/* Systems heading */

.systems-title {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 14px;

    color: #1b365d;

    font-size: 15px;
    font-weight: 700;
}

.systems-title i {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ff6b35;
    color: #fff;

    border-radius: 50%;

    font-size: 12px;
}


/* Small orange label */

.systems-title span {
    text-transform: uppercase;
    letter-spacing: 0.7px;
}


/* System tags */

.system-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}


/* Individual system */

.system-tag {
    display: inline-flex;
    align-items: center;

    padding: 8px 11px;

    background: #fff;

    border: 1px solid #e5e5e5;
    border-radius: 4px;

    color: #1b365d;

    font-size: 12px;
    font-weight: 600;

    line-height: 1.4;

    transition: all 0.3s ease;
}


/* Check mark */

.system-tag::before {
    content: "\f00c";

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    margin-right: 7px;

    color: #ff6b35;

    font-size: 10px;
}


/* Hover */

.system-tag:hover {
    background: #1b365d;
    border-color: #1b365d;
    color: #fff;
}

.system-tag:hover::before {
    color: #ff6b35;
}


.nav-links li a.active {
    color: #c9a227;
}


/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 100px;
    right: 25px;

    background-color: #25D366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    text-decoration: none;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);

    z-index: 9999;

    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    color: #fff;
    background-color: #20bd5a;
    transform: scale(1.1);
}


@media (max-width: 768px) {

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 100px;
        right: 18px;
        font-size: 27px;
    }

}



.form-message {
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
}

.form-message.success {
    background: #e8f7ee;
    color: #176b3a;
    border: 1px solid #b8e6c9;
}

.form-message.error {
    background: #fff0f0;
    color: #a52828;
    border: 1px solid #f0b8b8;
}
