    body {
        font-family: Arial, sans-serif;
        line-height: 1.6;
        margin: 0;
        padding: 0;
        background-color: #f4f4f4;
        color: #333;
    }

header {
    background-color: #3f5965; 
    padding: 15px 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
        flex: 1;
}

.logo img {
    max-height: 50px;
    transition: transform 0.3s ease;
    background-color: #ffffff; 
    padding: 5px; 
    border-radius: 5px;
}

.logo img:hover {
    transform: scale(1.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right   : 20px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle span {
    background: #289db9; 
    height: 3px;
    width: 25px;
    margin: 3px;
}

nav {
    transition: all 0.3s ease-in-out;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

nav ul li {
    transition: transform 0.3s ease;
}

nav ul li:hover {
    transform: scale(1.05);
}

nav ul li a {
    color: #289db9; 
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 10px;
}

nav ul li a:hover {
    background-color: #000000; 
    color: #fff;
}

/* Mobile Menu Popup */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    nav {
        display: none;
        width: 100%;
        background-color: #3f5965;  
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 100;
    }

    nav.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        width: 100%;
        padding: 15px;
        text-align: left;
    }
}   
.hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-image: linear-gradient(to bottom, #f0f8ff, #add8e6);
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    color: #333;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 20px auto;
}

.quote-form {
    order: 1;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    /*margin-bottom: 40px;*/
    width: 100%;
    max-width: 700px;
    transition: transform 0.3s ease;
    border: 1px solid #d1d1d1;
    backdrop-filter: blur(15px);
}

.quote-form:hover {
    transform: scale(1.05);
}

.quote-form h2 {
    margin-top: 0;
    color: #289db9;
    font-weight: bold;
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 30px;
}

.quote-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #3f5965;
}

.quote-form input,
.quote-form textarea {
    width: 90%;
    padding: 12px;
    margin-top: 12px;
    border-radius: 15px;
    border: 2px solid #ccc;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.1em;
    background: #fff;
}

.quote-form input:focus,
.quote-form textarea:focus {
    border-color: #289db9;
    box-shadow: 0 0 15px rgba(40, 157, 185, 0.5);
}

.grid-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .grid-two-col {
        grid-template-columns: 1fr 1fr;
    }
}

.quote-form button {
    margin-top: 35px;
    padding: 18px;
    width: 100%;
    background-color: #3f5965;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.4em;
}

.quote-form button:hover {
    background-color: #289db9;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.hero-text {
    order: 2;
    max-width: 600px;
    margin-top: 20px;
    font-size: 1.7em;
    line-height: 1.6;
    align-self: center;
    color: #3f5965;
}

.hero-text h1 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #289db9;
    font-weight: bold;
}

.hero-text p {
    font-size: 19px;
    color: #3f5965;
}

@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }

    .quote-form {
        order: 1;
        margin-right: 30px;
    }

    .hero-text {
        order: 2;
        text-align: left;
        margin-left: 20px;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .quote-form {
        max-width: 100%;
    }
}
    #why-choose-us {
        padding: 40px 20px;
        background-color: #eaf6ff;
        text-align: center;
        border-radius: 20px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        margin-bottom: 50px;
        max-width: 1200px;
        margin: 20px auto;
    }

    #why-choose-us h2 {
        margin-bottom: 30px;
        color: #003366;
        font-weight: bold;
        font-size: 2em;
    }

    #why-choose-us ul {
        list-style-type: none;
        padding: 0;
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #why-choose-us ul li {
        display: flex;
        align-items: center;
        background-color: #ffffff;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    #why-choose-us ul li:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    #why-choose-us ul li img {
        height: 50px;
        margin-right: 15px;
    }

    #why-choose-us ul li p {
        margin: 0;
        font-size: 1.2em;
        color: #333;
    }

    #why-choose-us ul li .icon {
        font-size: 2em;
        margin-right: 15px;
        color: #0073e6;
    }

    @media (min-width: 768px) {
        #why-choose-us ul {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (min-width: 1024px) {
        #why-choose-us ul {
            grid-template-columns: 1fr 1fr 1fr;
        }
    }

    .container-link {
        padding: 30px;
        background-color: #f9f9f9;
        text-align: center;
        border-radius: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 50px;
        max-width: 1200px;
        margin: 20px auto;
    }

    .container-link .heading {
        font-size: 1.8em;
        margin-bottom: 25px;
        color: #003366;
        font-weight: bold;
    }

    .grid-three-col {
        display: grid;
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .list-1 {
        background-color: #ffffff;
        padding: 15px;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .list-1:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .list-1 li {
        margin-bottom: 10px;
        list-style: none;
    }

    .list-1 a {
        text-decoration: none;
        color: #004080;
        font-weight: bold;
        font-size: 1.1em;
    }

    .list-1 a:hover {
        color: #ffa500;
    }

    @media (min-width: 768px) {
        .grid-three-col {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (min-width: 1024px) {
        .grid-three-col {
            grid-template-columns: 1fr 1fr 1fr;
        }
    }

    #testimonials {
        padding: 50px 20px;
        background-color: #f9f9f9;
        text-align: center;
        max-width: 1200px;
        margin: 40px auto;
        border-radius: 20px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }

    #testimonials h2 {
        margin-bottom: 30px;
        color: #003366;
        font-weight: bold;
        font-size: 2em;
    }

    .carousel {
        display: flex;
        overflow: hidden;
        position: relative;
    }

    .carousel-inner {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .testimonial {
        background-color: #ffffff;
        padding: 30px;
        margin: 15px;
        min-width: 90%;
        max-width: 600px;
        border-radius: 15px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
    }

    .testimonial:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .testimonial p {
        font-style: italic;
        color: #555;
        font-size: 1.1em;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .testimonial .author {
        margin-top: 20px;
        font-weight: bold;
        color: #333;
    }

    .carousel-buttons {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
    }

    .carousel-buttons button {
        background-color: #004080;
        color: #fff;
        border: none;
        padding: 10px;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-size: 1.5em;
    }

    .carousel-buttons button:hover {
        background-color: #003366;
    }

    @media (max-width: 768px) {
        .testimonial {
            min-width: 100%;
            padding: 20px;
        }

        #testimonials h2 {
            font-size: 1.8em;
        }
    }

    #contact-support {
        padding: 30px 20px;
        background-color: #004080;
        color: #fff;
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    #contact-support h2 {
        margin-bottom: 20px;
        font-size: 2em;
    }

    #contact-support ul {
        list-style-type: none;
        padding: 0;
    }

    #contact-support ul li {
        margin-bottom: 10px;
    }

    @media (max-width: 768px) {
        #contact-support {
            padding: 20px;
        }

        #contact-support h2 {
            font-size: 1.8em;
        }
    }

    footer {
        padding: 20px 30px;
        background-color: #002050;
        color: #fff;
        text-align: center;
        border-top: 5px solid #004080;
    }

    footer p {
        margin: 0;
        font-size: 1em;
        line-height: 1.4;
    }

    footer a {
        color: #ffa500;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    footer a:hover {
        color: #fff;
    }

    #about-us {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 60px 20px;
        background-color: #ffffff;
        border-radius: 20px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        margin-bottom: 50px;
        max-width: 1200px;
        margin: 20px auto;
    }

    #about-us img {
        width: 100%;
        max-width: 450px;
        height: auto;
        max-height: 600px;
        border-radius: 15px;
        margin-top: 30px;
    }

    #about-us div {
        flex: 1;
    }

    #about-us h2 {
        color: #004080;
        font-weight: bold;
        font-size: 2.2em;
        margin-bottom: 20px;
    }

    #about-us p {
        font-size: 1.1em;
        line-height: 1.6;
        color: #333;
    }

    #about-us-right-img {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 60px 20px;
        background-color: #ffffff;
        border-radius: 20px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        margin-bottom: 50px;
        max-width: 1200px;
        margin: 20px auto;
    }

    #about-us-right-img img {
        width: 100%;
        max-width: 450px;
        height: auto;
        max-height: 600px;
        border-radius: 15px;
        margin-left: 30px;
    }

    #about-us-right-img div {
        flex: 1;
    }

    #about-us-right-img h2 {
        color: #004080;
        font-weight: bold;
        font-size: 2.2em;
        margin-bottom: 20px;
    }

    #about-us-right-img p {
        font-size: 1.1em;
        line-height: 1.6;
        color: #333;
    }

    @media (min-width: 768px) {
        #about-us {
            flex-direction: row;
            align-items: center;
            text-align: left;
        }

        #about-us img {
            margin-top: 0;
            margin-right: 30px;
        }

        #about-us-right-img {
            flex-direction: row;
            align-items: center;
            text-align: left;
        }

        #about-us-right-img img {
            margin-left: 30px;
            order: 2;
        }

        #about-us-right-img div {
            order: 1;
        }
    }

    .points-of-moving {
        padding: 40px 20px;
        background-color: #f9f9f9;
        text-align: center;
        border-radius: 20px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        margin-bottom: 50px;
        max-width: 1200px;
        margin: 20px auto;
    }

    .points-of-moving .container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }

    .points-of-moving h3 {
        flex-basis: 100%;
        color: #004080;
        font-weight: bold;
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .points-of-moving ul {
        display: flex;
        gap: 15px;
        list-style-type: none;
        padding: 0;
        margin: 0;
        flex-wrap: wrap;
    }

    .points-of-moving ul li {
        background-color: #ffffff;
        padding: 15px 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .points-of-moving ul li:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .points-of-moving ul li a {
        text-decoration: none;
        color: #004080;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    .points-of-moving ul li a:hover {
        color: #ffa500;
    }

    @media (max-width: 768px) {
        .points-of-moving ul {
            flex-direction: column;
            gap: 10px;
        }
    }

    .page2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 60px 20px;
        background-color: #f9f9f9;
        border-radius: 20px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        margin-bottom: 50px;
        max-width: 1200px;
        margin: 20px auto;
    }

    .page2 .container {
        display: grid;
        gap: 20px;
        grid-template-columns: 1fr;
        align-items: center;
    }

    .page2 .container .left img {
        width: 100%;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page2 .container .right {
        padding: 2px;
        text-align: left;
    }

    .page2 .container .right h2 {
        color: #004080;
        font-weight: bold;
        font-size: 2em;
        margin-bottom: 20px;
    }

    .page2 .container .right p {
        font-size: 1.1em;
        line-height: 1.6;
        color: #333;
        margin-bottom: 15px;
    }

    .page2 .container .right .table7 {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
    }

    .page2 .container .right .table7 th,
    .page2 .container .right .table7 td {
        border: 1px solid #ccc;
        padding: 12px;
        text-align: center;
    }

    .page2 .container .right .table7 th {
        background-color: #004080;
        color: #fff;
        font-weight: bold;
    }

    .page2 .container .right .table7 td {
        background-color: #ffffff;
        color: #333;
    }

    @media (min-width: 768px) {
        .page2 .container {
            grid-template-columns: 1fr 1fr;
        }
    }
    #services-area {
        padding: 40px 20px;
        background-color: #ffffff;
        text-align: center;
        border-radius: 20px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        margin-bottom: 50px;
        max-width: 1200px;
        margin: 20px auto;
    }

    #services-area h2 {
        font-size: 2em;
        color: #004080;
        margin-bottom: 30px;
        font-weight: bold;
    }

    .service-box a {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        font-weight: bold;
        color: #004080;
        font-size: 1.1em;
        transition: color 0.3s ease;
    }

    .service-box a img {
        height: 20px;
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .service-box a:hover {
        color: #ffa500;
    }

    .service-box a:hover img {
        transform: scale(1.1);
    }

    .services-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .service-box {
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-box:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .service-box img {
        height: 60px;
        margin-bottom: 15px;
    }

    .service-box a {
        text-decoration: none;
        font-weight: bold;
        color: #004080;
        font-size: 1.1em;
        transition: color 0.3s ease;
    }

    .service-box a:hover {
        color: #ffa500;
    }

    @media (max-width: 768px) {
        .services-container {
            grid-template-columns: 1fr;
        }
    }

    #main-services {
        padding: 40px 20px;
        background-color: #f4f4f4;
        text-align: center;
        border-radius: 20px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        margin-bottom: 50px;
        max-width: 1200px;
        margin: 20px auto;
    }

    #main-services h2 {
        font-size: 2em;
        color: #004080;
        margin-bottom: 30px;
        font-weight: bold;
    }

    .main-services-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .main-service-box {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        align-items: center;
    }

    .main-service-box:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .main-service-box i {
        font-size: 2em;
        color: #0073e6;
        margin-right: 15px;
    }

    .main-service-box a {
        text-decoration: none;
        font-weight: bold;
        color: #004080;
        font-size: 1.1em;
        transition: color 0.3s ease;
    }

    .main-service-box a:hover {
        color: #ffa500;
    }      