* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #091b2c;
    background-color: #f4f6f7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

p2 {
    display: block;
    margin-bottom: 20px;
    color: #0b3954;
    font-size: 1.2em;
}


.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

/* Header Styling */
header {
    background-color: #fff;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 205px;
    height: 125px;
    background: url("path/to/logo.png") no-repeat center center;
    background-size: contain;
}

    .logo img {
        width: 150px;
        height: auto;
    }


/* Navigation Styling */
nav ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    nav ul li {
        margin-left: 45px;
    }

        nav ul li a {
            color: #091b2c;
            text-decoration: none;
            font-weight: 550;
            font-size: 16px;
            letter-spacing: 0.7px;
            padding: 10px 0;
            transition: color 0.3s ease, text-decoration 0.3s ease;
        }

            nav ul li a:hover {
                color: #0077cc;
                text-decoration: underline;
            }

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Hero Section */
.hero {
    background: url("path/to/hero-image.jpg") no-repeat center center;
    background-size: cover;
    color: #f4f6f7;
    padding: 100px 0;
    position: relative;
}

    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.hero h1 {
    font-size: 46px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

/* Button Styling */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #32549a;
    color: #f4f6f7;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .btn:hover {
        background-color: #253973;
        transform: translateY(-3px);
    }

/* Section Titles */
.section-title {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin: 60px 0 30px;
}

/* Request Info Section */
.request-info {
    padding: 60px 60px;
}

.request-info-content {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.request-info-text {
    flex: 1;
    padding-right: 60px;
}

.request-info h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.request-info p {
    font-size: 20px;
    color: rgba(9, 27, 44, 0.75);
    margin-bottom: 10px;
}

.request-form {
    flex: 1;
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Footer Styling */
footer {
    background-color: #091b2c;
    color: #f4f6f7;
    padding: 20px 0;
    font-size: 14px;
    line-height: 1.6;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-left {
    text-align: left;
    flex: 1;
}

.footer-center {
    text-align: center;
    flex: 1;
}

.footer-right {
    text-align: right;
    flex: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(244, 246, 247, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-footer a {
    color: #56b0f0;
    text-decoration: underline;
}

    .container-footer a:hover {
        color: #0077cc;
        text-decoration: underline;
    }

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: #f4f6f7;
    transition: transform 0.3s ease-in-out;
}

    .social-icon:hover {
        transform: scale(1.2);
    }

.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: 140px;
    /* Adjust the width as needed */
    background-color: #091b2c;
    /* Matches the footer background */
    color: #ffffff;
    /* White text for readability */
    text-align: center;
    border-radius: 8px;
    padding: 4px 6px;
    position: absolute;
    bottom: 130%;
    /* Position above the icon */
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    /* Subtle shadow for a modern look */
    font-size: 14px;
    z-index: 1;
    border: 1px solid #ffffff;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    /* Arrow at the bottom of the tooltip */
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #091b2c transparent transparent transparent;
    /* Matches tooltip background */
}

/* Carousel Styling (bootstrap carousel) */
.carousel-item {
    height: 400px;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    border-radius: 15px;
}

    .carousel-item img {
        height: 100%;
        width: auto;
        max-width: inherit;
        max-height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
        border-radius: 15px;
        margin: auto;
    }

.carousel-item video {
    height: 100%;
    width: auto;
    max-width: inherit;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin: auto;
}

    .carousel-item a {
        display: block;
        height: 100%;
    }

.carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.8), rgba(56, 189, 248, 0.8));
    padding: 30px 15px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover effects */
.carousel-item:hover img {
    transform: scale(1.05);
}

.carousel-item:hover .carousel-caption {
    opacity: 1;
}

.carousel-caption h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 24px;
}

.carousel-caption p {
    color: white;
    margin-bottom: 15px;
}

.learn-more {
    display: inline-block;
    color: white;
    background-color: rgba(0,0,0,0.5);
    padding: 8px 20px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

    .learn-more:hover {
        background-color: rgba(0,0,0,0.7);
        text-decoration: none;
    }

/* Carousel Control Styling (buttons) */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background: rgba(0, 0, 0, 0.7);
        opacity: 1;
    }



/* Keyframes for Text Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Mobile config under 767px */
@media (max-width: 767px) {
    /* NAVBAR MOBILE */
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        font-size: 1.5rem;
        color: #091b2c;
    }

        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }

    .offcanvas {
        max-width: 250px;
    }

    .offcanvas-title {
        color: #091b2c;
    }

    .btn-close {
        color: #091b2c;
    }

    .offcanvas nav ul {
        flex-direction: column;
    }

        .offcanvas nav ul li {
            margin: 0;
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

            .offcanvas nav ul li:last-child {
                border-bottom: none;
            }

            .offcanvas nav ul li a {
                color: #091b2c;
            }

    /* FOOTER MOBILE */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
        padding-right: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        display: flex;
        gap: 15px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        fill: #f4f6f7;
        transition: transform 0.3s ease-in-out;
    }

        .social-icon:hover {
            transform: scale(1.2);
        }

    .footer-section {
        margin-bottom: 20px;
    }

        .footer-section h3 {
            color: #f4f6f7;
            font-size: 1.2em;
            margin-bottom: 10px;
            font-weight: bold;
        }

    .footer-links a {
        display: inline-block;
        margin: 5px 10px;
        color: #0077cc;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: #005fa3;
            text-decoration: underline;
        }

    /* CAROUSEL MOBILE */
    .carousel-item {
        height: 300px;
    }

    .carousel-caption {
        padding: 20px 15px;
    }

        .carousel-caption h3 {
            font-size: 18px;
        }

        .carousel-caption p {
            font-size: 14px;
        }

    .learn-more {
        font-size: 14px;
        padding: 6px 15px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    /* Section Titles mobile */
    .section-title {
        font-size: 36px;
        font-weight: bold;
        text-align: center;
        margin: 40px 0 20px;
    }

    /* Request Info Section mobile */
    .request-info {
        padding: 40px 0;
    }

    .request-info-content {
        display: flex;
        justify-content: space-between;
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .request-info-text {
        flex: 1;
        padding-right: 40px;
    }

    .request-info h2 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .request-info p {
        font-size: 16px;
        color: rgba(9, 27, 44, 0.75);
        margin-bottom: 20px;
    }
}
