body {

    font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif !important;

}

h1,
h2,
h3 {
    font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif !important;
    /* font-weight: 700; */
    /* font-size: 40px; */
    font-size: 32px;
    /* color: #FFFFFF !important; */
    line-height: 1.3em;
    /* text-align: left; */
}

p {
    font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif !important;
}

.custom-services {
    background-color: #f9f9f9;
}

section.detail-page {
    padding-bottom: 1px;
}

.hashtag-line {
    font-size: 16px;
    color: #333;
    padding: 10px 0;
    line-height: 1.8;
    max-width: 92%;
    text-align: center;
    margin: 0 auto;
}

section.container {
    padding-bottom: 0;
}

.hashtag-line strong {
    font-weight: 700;
    /* background-color: #dd9932; */
    padding: 2px 6px;
    border-radius: 4px;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 15px 0;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* background-color: #25D366; */
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

button.navbar-toggler {
    margin-right: 5%;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

.custom-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.custom-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-card-header h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.custom-icon {
    font-size: 18px;
    color: #666;
}

.custom-card:hover .custom-icon {
    color: #007bff;
}

/* banner css  */
/* Banner Section */
.banner-section {
    position: relative;
    background: url('../assets/images/banner/image.png') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Overlay for better readability */
.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: 1;
}

/* Container for banner content */
.banner-section .container {
    position: relative;
    z-index: 2;
    /* Ensure content is above the overlay */
    max-width: 900px;
}

/* Heading */
.banner-section h1 {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Paragraph */
.banner-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Button */
.banner-section .btn {
    background-color: #d28042;
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

/* Hover effect on the button */
.banner-section .btn:hover {
    background-color: #c3712c;
}

/* Responsive Design */
@media (max-width: 992px) {
    .banner-section h1 {
        font-size: 1rem;
    }

    .banner-section p {
        font-size: 1rem;
    }

    div#navbarNav {
        background: #1E1F2D;
    }

    .banner-section {
        position: relative;
        background: url(../assets/images/banner/cessna-citation-latitude.webp) no-repeat center center / cover;
        height: 64vh;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        margin-top: -23%;

        overflow: hidden;
    }

    .navbar-nav .nav-link {
        color: #e9e8ec;
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .banner-section .btn {
        font-size: 1rem;
        padding: 10px 25px;
    }
}

@media (max-width: 768px) {
    .banner-section h1 {
        font-size: 2rem;
    }

    .banner-section p {
        font-size: 0.9rem;
    }

    div#navbarNav {
        background: #1E1F2D;
    }

    .banner-section {
        position: relative;
        background: url(../assets/images/banner/cessna-citation-latitude.webp) no-repeat center center / cover;
        height: 64vh;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -23%;

        color: white;
        text-align: center;
        overflow: hidden;
    }

    .navbar-nav .nav-link {
        color: #e9e8ec;
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .banner-section .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* text section css  */

section {
    background-color: #f9f9f9;
    padding: 40px 20px;
}

/* .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
} */

.info-box {
    background-color: #eae9ed;
    color: #030100;
    padding: 20px;
    border-left: 5px solid #d28042;
    animation: slideInLeft 1s ease-in-out;
}

.info-box p {
    margin: 0;
}

.section-heading {
    color: #cc7722;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 10px;
    animation: fadeInEffect 1s ease-in-out;
}

.section-text {
    animation: slideUpEffect 1.2s ease-in-out;
}

.section-text a {
    color: #1d3557;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.section-text a:hover {
    color: #cc7722;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUpEffect {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-box {
        font-size: 14px;
        padding: 15px;
    }

    .navbar-nav .nav-link {
        color: #e9e8ec;
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    div#navbarNav {
        background: #1E1F2D;
    }

    .banner-section {
        position: relative;
        background: url(../assets/images/banner/cessna-citation-latitude.webp) no-repeat center center / cover;
        height: 64vh;
        display: flex;
        margin-top: -23%;

        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        overflow: hidden;
    }

    .section-heading {
        font-size: 20px;
    }

    .content-wrapper {
        padding: 0 10px;
    }
}



section.custom-services.py-5 {
    padding-top: 0px !important;
}

.test-heading {
    margin: 0% !important;
}

.info-box {
    font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif !important;
}

h1.main-heading-country {
    font-size: 28px;
    color: #333;
    padding-bottom: 10px;
    font-weight: 500;
    font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif !important;
}

.section-heading {
    font-size: 32px;
    color: #333;
    padding-bottom: 10px;
    font-weight: 500;
    font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif !important;
}

li.nav-item {
    list-style: none !important;
}