

 /**  App   **/ 


 /**  navBar   **/ 

 
    /* Header Styling */
    .header-grid {
        margin-top: 1.5rem;
    }
    /* Menu Button Styling */
    .menu-button {
        font-weight: 600;
        transition: all 0.3s ease;

        &:hover {
            color: var(--primary-color);
        }

        .menu-icon {
            font-size: 1.2rem;
        }

        .menu-text {
            font-size: 0.9rem;
        }
    }

    /* Contact Info Styling */
    .contact-info {
        display: flex;
        align-items: center;
        gap: 20px;

        .phone-icon {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .contact-text {
            .phone-number {
                font-weight: bold;
                color: var(--text-color);
                font-size: 1rem;
            }

            .service-text {
                font-size: 0.8rem;
                color: var(--text-color);
            }
        }
    }

    .header-grid {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        align-items: center;
        padding: 1rem;

        .menu-section {
            justify-self: start;

            @media (max-width: 767px) {
                display: none;
            }
        }

        .logo-section {
            justify-self: center;

            .logo {
                max-width: 150px;
                img {
                    width: 100%;
                    height: auto;
                }
            }
        }

        .action-section {
            justify-self: end;
            text-decoration: none;
            color: var(--text-color);
        }

        button {
            padding: 0.5rem 1rem;
            cursor: pointer;
            border: none;
            background: transparent;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        @media (max-width: 767px) {
            grid-template-columns: 1fr 1fr;

            .logo-section {
                justify-self: start;
            }
        }
    }
 

 /**  footBar   **/ 

 
    .footbar {
        padding: 20px 0;
        width: 100%;
        position: relative;
        bottom: 0;
    }

    .bottom {
        padding: 15px 0;
        border-top: 1px solid #e9ecef;
    }

    .columns {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .center {
        flex: 1;
    }

    .text-center {
        text-align: center;
    }

    .footbar p {
        margin: 0;
        color: #6c757d;
        font-size: 14px;
    }

    .footbar b {
        font-weight: 600;
        color: var(--accent-color);
    }
 

 /**  homePage   **/ 

 
    .animation-scale-out {
        animation-timeline: scroll(root);
        animation-name: scaleOutAnimation;
        animation-duration: auto;
        animation-timing-function: linear;
    }
    @keyframes scaleOutAnimation {
        0% {
            filter: blur(0px);
            transform: scale(1) translateY(0);
            opacity: 1;
        }
        100% {
            filter: blur(5px);
            transform: scale(0.8) translateY(100px);
            opacity: 0.5;
        }
    }

    .animation-scale-in {
        animation: scaleAnimation linear both;
        animation-timeline: view(80% auto);
    }
    @keyframes scaleAnimation {
        0% {
            filter: blur(5px);
            transform: scale(0.98) translateY(-100px);
            /* Start small and below */
            opacity: 0.5;
        }
        100% {
            filter: blur(0px);
            transform: scale(1) translateY(0);
            /* End at normal size and position */
            opacity: 1;
            /* Fully visible */
        }
    }

    .services-section {
        margin-top: 60px;
        padding: 40px 0;
    }

    .services-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .services-title {
        font-size: 32px;
        color: #000;
        margin-bottom: 10px;
    }

    .services-divider {
        width: 85px;
        height: 5px;
        background-color: #43b54a;
        border-radius: 60px;
        margin: 0 auto;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .service-card {
        background: #fff;
        border-radius: 6px;
        padding: 30px;
        padding-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;

        box-shadow: 3px 6px 14.1px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-5px);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .service-icon svg {
        width: 100%;
        height: 100%;
    }

    .service-title {
        font-size: 18px;
        color: #000;
        text-align: center;
        margin: 0;
    }

    @media (max-width: 1200px) {
        .services-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 900px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .services-grid {
            grid-template-columns: 1fr;
        }

        .services-title {
            font-size: 28px;
        }
    }

    .cta-section {
        margin-top: 60px;
        display: flex;
        justify-content: center;
    }

    .cta-container {
        width: 100%;

        height: 117px;
        background-color: #ffffff;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 40px;
        box-shadow: 0 4px 14.9px rgba(0, 0, 0, 0.1);
    }

    .cta-content {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .cta-heading {
        font-size: 16px;
        color: #000000;
        font-weight: 500;
        margin: 0;
    }

    .cta-text {
        font-size: 16px;
        color: #000000;
        margin: 0;
    }

    .cta-button-container {
        width: 340px;
        height: 117px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cta-button {
        background-color: #43b54a;
        border: none;
        border-radius: 6px;
        padding: 12px 24px;
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .cta-button:hover {
        background-color: #389a3e;
    }

    .cta-button-icon {
        display: flex;
        color: white;
    }

    .cta-button-text {
        color: white;
        font-size: 16px;
        font-weight: 500;
    }

    @media (max-width: 768px) {
        .cta-container {
            flex-direction: column;
            height: auto;
            padding: 20px;
            gap: 20px;
        }

        .cta-button-container {
            width: 100%;
            height: auto;
        }

        .cta-content {
            text-align: center;
        }

        .cta-button {
            width: 100%;
            justify-content: center;
        }
    }

    .home {
        padding: 50px 0;
    }

    .hero-section {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .hero-content {
        flex: 1;
        min-width: 300px;
        text-align: center;
    }

    .hero-tagline {
        font-size: 24px;
        color: #555;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 48px;
        font-weight: 700;
        color: var(--accent-color);
        margin: 0 0 20px 0;
    }

    .hero-divider {
        width: 80px;
        height: 4px;
        background-color: var(--accent-color);
        margin: 5px auto 15px;
    }

    .quote-form-container {
        flex: 1;
        width: 100%;
        max-width: 600px;
        background-color: #fff;
        padding: 1.5rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
    }

    .quote-form-title {
        font-size: 1.1em;
        color: #333;
        text-align: left;
        margin-bottom: 30px;
        padding: 0px;
        margin: 0px;
        margin-bottom: 20px;
        b {
            color: var(--accent-color);
        }
    }

    .quote-form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        grid-column: 1 / -1;
    }

    .form-group {
        display: block;
    }

    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        height: 44px;
        box-sizing: border-box;
    }

    .form-control:focus {
        outline: none;
        border-color: var(--accent-color);
        box-shadow: 0 0 0 2px rgba(0, 128, 0, 0.2);
    }

    .btn-submit {
        width: 100%;
        background-color: var(--accent-color);
        color: white;
        border: none;
        border-radius: 4px;
        padding: 12px 15px;
        height: 44px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s;
        box-sizing: border-box;
    }

    .btn-submit:hover {
        background-color: #003d82;
    }

    @media (max-width: 768px) {
        .hero-section {
            flex-direction: column;
            gap: 30px;
        }

        .hero-content {
            text-align: center;
            min-width: 100%;
        }

        .hero-tagline {
            font-size: 20px;
        }

        .hero-title {
            font-size: 36px;
        }

        .hero-divider {
            margin: 15px auto 20px;
        }

        .quote-form-container {
            padding: 20px 15px;
            max-width: 100%;
        }

        .quote-form-title {
            font-size: 22px;
            margin-bottom: 20px;
        }

        .quote-form {
            grid-template-columns: 1fr;
        }

        .form-row {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .form-control {
            padding: 10px 12px;
            font-size: 14px;
            height: 40px;
        }

        .btn-submit {
            padding: 10px 12px;
            font-size: 15px;
            height: 40px;
        }

        .home {
            padding: 30px 0;
        }

        .container {
            padding: 0 15px;
        }
    }

    @media (max-width: 480px) {
        .hero-tagline {
            font-size: 18px;
        }

        .hero-title {
            font-size: 30px;
        }

        .quote-form-container {
            padding: 15px 10px;
        }
    }

    .about-section {
        display: grid;
        width: 100%;
        grid-template-columns: 2fr 1fr;
        gap: 80px;
        align-items: center;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .about-title {
        font-size: 1.75rem;
        color: var(--accent-color);
        margin-bottom: 30px;
    }

    .about-content p {
        margin-bottom: 15px;

        color: #555;
    }

    .about-image {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        img {
            object-fit: scale-down;
            width: 100%;
            height: 350px;
        }
    }

    @media (max-width: 768px) {
        .about-section {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .about-title {
            font-size: 28px;
        }

        .image-placeholder {
            height: 250px;
        }
    }
 
 
    /* Base Styles */
    :root {
        --primary-color: #003366;
        --secondary-color: #f2f2f2;
        --accent-color: #43b54a;
        --text-color: #333;
        --light-text: #fff;
    }

    html {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        width: 100vw;
    }
    body {
        background-color: #f4f4f4;
        background-image: url(/assets/img/body.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        margin: 0 auto;
        color: #414042;
        font-family: 'Inter', sans-serif;
    }
    /* Bootstrap standard container styles */
    .container {
        width: 100%;
        max-width: 1440px; /* Standard laptop max width */
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }

    @media (min-width: 576px) {
        .container {
            max-width: 540px;
        }
    }

    @media (min-width: 768px) {
        .container {
            max-width: 720px;
        }
    }

    @media (min-width: 992px) {
        .container {
            max-width: 960px;
        }
    }

    @media (min-width: 1200px) {
        .container {
            max-width: 1140px;
        }
    }
 