@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: 'Poppins', sans-serif;
}

h2 {
    font-size: 32px;
    font-family: 600;
}

p {
    font-size: 18px;
    font-family: 400 !important;
}

h3 {
    font-size: 28px;
}

.navbar {
    padding: 1rem 2rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-link {
    margin: 0 10px;
}

.auth-buttons .btn {
    margin-left: 10px;
}



/* Positioning for sub-dropdown */
.dropdown-submenu {
    position: relative;
}


@media (min-width: 769px) {
.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
    position: absolute;

}
}
@media (max-width: 767px) {
    .dropdown-submenu>.dropdown-menu {
        top: 0;
        right: 0;
        margin-top: -1px;
        display: none;
        position: absolute;
        /* transform: translateX(-80%); */
    }   
}


.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}


/* banner-content */


.banner-slide {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust darkness here */
    z-index: 2;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    /* Text stays on top */
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: bold;
}

.banner-content p {
    font-size: 1.25rem;
}






/* about us */

.travel-section {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    /* background: linear-gradient(135deg, #1e3c72, #f3904f); */
    background-color: #F2F6FF;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    animation: move 10s linear infinite;
    z-index: 0;
}

/* 10 Circles with different positions/sizes/delays */
.circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 10%;
    animation-delay: 1s;
}

.circle:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.circle:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 60%;
    animation-delay: 3s;
}

.circle:nth-child(5) {
    width: 180px;
    height: 180px;
    top: 70%;
    left: 75%;
    animation-delay: 4s;
}

.circle:nth-child(6) {
    width: 90px;
    height: 90px;
    top: 50%;
    left: 45%;
    animation-delay: 1.5s;
}

.circle:nth-child(7) {
    width: 130px;
    height: 130px;
    top: 30%;
    left: 80%;
    animation-delay: 2.5s;
}

.circle:nth-child(8) {
    width: 70px;
    height: 70px;
    top: 85%;
    left: 15%;
    animation-delay: 3.5s;
}

.circle:nth-child(9) {
    width: 200px;
    height: 200px;
    top: 90%;
    left: 50%;
    animation-delay: 4.5s;
}

.circle:nth-child(10) {
    width: 110px;
    height: 110px;
    top: 10%;
    left: 90%;
    animation-delay: 5s;
}

@keyframes move {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-1200px) rotate(720deg);
        opacity: 0;
    }
}

.travel-text,
.travel-image {
    flex: 1;
    padding: 50px;
    box-sizing: border-box;
    z-index: 2;
    color: #fff;
}

.travel-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #000;
}

.travel-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #000;
}

.travel-text a {
    text-decoration: none;
    background-color: #ffffff;
    color: #2980b9;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
}

.travel-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    /* top-right and bottom-left */
    z-index: 2;
    position: relative;
}

.tech-stk a {
    text-decoration: none;
    background-color: #ffffff;
    color: #2980b9;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: bold;
}

.tech-stk p {
    font-size: 20px;

    text-align: center;
}

@media (max-width: 768px) {
    .travel-section {
        flex-direction: column;
    }

    .travel-text,
    .travel-image {
        padding: 30px 20px;
    }
}



/* services */


/* Services Section */
.services-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
    color: #333;
}

.services-section h2 {

    margin-bottom: 40px;

    color: #111;

    text-transform: uppercase;
    letter-spacing: 2px;

}

/* Service Slider */
.service-slider {
    display: flex;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 30px 20px;
    margin: 0 15px;
    position: relative;
    height: 380px;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease;
    overflow: hidden;
}

/* Service Card Image */
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* Hover Effect: Blue Gradient Background Slide */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, #02050A, #002246);
    /* Gradient color */
    transform: translateY(-100%);
    /* Hide initially */
    transition: transform 0.5s ease-in-out;
    border-radius: 15px;
    z-index: 0;
}

/* Card Content (Heading & Button Always Visible) */
.service-card .card-content {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1;
    /* Ensure content stays above blue background */
    color: #fff;
}

.service-card h3 {
    font-size: 24px;
    margin-top: 20px;
    color: #111;
    font-weight: 600;
}

.service-card h3:hover {
    font-size: 24px;
    margin-top: 20px;
    color: #fff;
    font-weight: 600;
}

.service-card a {
    text-decoration: none;
    background-color: #fff;
    color: #111;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.service-card a:hover {
    background-color: #3498db;
    transform: scale(1.1);
}

/* Description Hidden Initially, Slides Down on Hover */
.service-card .description {
    position: absolute;
    font-size: 18px;
    top: -100%;
    /* Initially off-screen */
    left: 0;
    right: 0;
    padding: 20px;
    /* background-color: rgba(0, 0, 0, 0.6); */
    color: #fff;
    transition: all 0.5s ease-in-out;
    z-index: 1;
    border-radius: 15px;
    visibility: hidden;
    /* Hide description initially */
}

/* Hover Effect: Blue Gradient Background & Content Visibility */
.service-card:hover::before {
    transform: translateY(0);
    /* Slide up blue background */
}

.service-card:hover .description {
    top: 0;
    /* Description slides down from top */
    visibility: visible;
    /* Show description on hover */
}

/* Slick Carousel Controls */
/* .slick-prev,
.slick-next {
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 12px;
    border-radius: 50%;
}

.slick-prev {
    left: auto ;

}

.slick-next {
    right: auto ;
    
} */

.slick-track {
    padding-bottom: 50px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .service-card {
        margin: 0 5px;
        width: 100%;
    }

    .services-section h2 {
        font-size: 28px;
    }
}



/* gallery */

.gallery_body {
    background-color: #171414;
}

.gallery_body h2 {

    color: #fff;


    text-align: center;
    padding-top: 30px;
    padding-bottom: 20px;
}

.image-grid {
    padding: 12px;
}

.image-row {
    display: flex;
}

.image-row .image {
    margin: 12px;
    height: 240px;
}

.image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3),
        0 6px 20px rgba(0, 0, 0, 0.15),
        0 6px 20px rgba(0, 0, 0, 0.7);
}

.image-01 {
    background-image: url('https://images.unsplash.com/photo-1618356387617-8d2f8cfbc79c?ixid=MnwxMjA3fDB8MHx0b3BpYy1mZWVkfDJ8NnNNVmpUTFNrZVF8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
    flex: 1;
}

.image-02 {
    background-image: url('https://images.unsplash.com/photo-1618614293875-cfe98355681d?ixid=MnwxMjA3fDB8MHx0b3BpYy1mZWVkfDN8NnNNVmpUTFNrZVF8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
    flex: 1;
}

.image-03 {
    background-image: url('https://images.unsplash.com/photo-1618627575331-b5f0d4cd72ce?ixid=MnwxMjA3fDB8MHx0b3BpYy1mZWVkfDR8NnNNVmpUTFNrZVF8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=700&q=60');
    flex: 2;
}

.image-04 {
    background-image: url('https://images.unsplash.com/photo-1568602048381-2285db7095c6?ixid=MnwxMjA3fDB8MHx0b3BpYy1mZWVkfDI1fDZzTVZqVExTa2VRfHxlbnwwfHx8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=60');
    flex: 1;
}

.image-05 {
    background-image: url('https://images.unsplash.com/photo-1580319204908-eff9d6f0bd68?ixid=MnwxMjA3fDB8MHx0b3BpYy1mZWVkfDMxfDZzTVZqVExTa2VRfHxlbnwwfHx8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=60');
    flex: 2;
}

.image-06 {
    background-image: url('https://images.unsplash.com/photo-1604927737867-9f413dac3d08?ixid=MnwxMjA3fDB8MHx0b3BpYy1mZWVkfDYwfDZzTVZqVExTa2VRfHxlbnwwfHx8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
    flex: 2;
}

.image-07 {
    background-image: url('https://images.unsplash.com/photo-1614191663579-8780442c043b?ixid=MnwxMjA3fDB8MHx0b3BpYy1mZWVkfDk3fDZzTVZqVExTa2VRfHxlbnwwfHx8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
    flex: 1;
}

.image-08 {
    background-image: url('https://images.unsplash.com/photo-1605812466869-dab071e96c35?ixid=MnwxMjA3fDB8MHx0b3BpYy1mZWVkfDExNnw2c01WalRMU2tlUXx8ZW58MHx8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=60');
    flex: 3;
}

.image-09 {
    background-image: url(' https://images.unsplash.com/photo-1617292801457-b108c1672a3d?ixid=MnwxMjA3fDB8MHx0b3BpYy1mZWVkfDExMnw2c01WalRMU2tlUXx8ZW58MHx8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
    flex: 1;
}

.image-10 {
    background-image: url('https://images.unsplash.com/photo-1616724319135-2370dbb4424c?ixid=MnwxMjA3fDB8MHx0b3BpYy1mZWVkfDE2Nnw2c01WalRMU2tlUXx8ZW58MHx8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60');
    flex: 1;
}

.image-11 {
    background-image: url('https://images.unsplash.com/photo-1616418672515-1c2b39e219d3?ixid=MnwxMjA3fDB8MHx0b3BpYy1mZWVkfDE5N3w2c01WalRMU2tlUXx8ZW58MHx8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60');
    flex: 1;
}

.image-12 {
    background-image: url('https://images.unsplash.com/photo-1548164806-9709e698bfc8?ixid=MnwxMjA3fDB8MHx0b3BpYy1mZWVkfDIzOHw2c01WalRMU2tlUXx8ZW58MHx8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60');
    flex: 1;
}

@media screen and (max-width: 400px) {
    .image-row {
        flex-direction: column;
    }

    .image-row .image {
        flex-basis: auto;
    }
}


/* tab view */

.tab_bg_adj {
    position: relative;
    padding: 60px 20px;

    color: #fff;
    z-index: 1;
}

/* Dark overlay */
.tab_bg_adj::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.7); */
    z-index: -1;
}

.tab-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.tabs {
    flex: 1 1 250px;
    background: transparent;
    border: 2px solid #f3904f;
    border-radius: 10px;
    padding: 20px;
}

.tabs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tabs li {
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-left: 4px solid transparent;
    cursor: pointer;
    margin-bottom: 10px;
    transition: 0.3s;
    border-radius: 6px;
}

.tabs li.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-left: 4px solid #f3904f;
    font-weight: bold;
}

.tabs li:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.tab-content-area {
    flex: 3 1 700px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.tab-text {
    flex: 1 1 300px;
}

.tab-text h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
}

.tab-text p {
    font-size: 16px;
    line-height: 1.5;
}

.tab-image {
    flex: 1 1 300px;
}

.tab-image img {
    width: 100%;
    border-radius: 10px;
    height: 400px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .tab-container {
        flex-direction: column;
    }

    .tab-content.active {
        flex-direction: column;
        text-align: center;
    }
}

.rating-bar {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

progress {
    width: 100%;
    height: 20px;
    border-radius: 10px;
    -webkit-appearance: none;
    appearance: none;
}

progress::-webkit-progress-bar {
    background-color: #f3f3f3;
    border-radius: 10px;
}

progress::-webkit-progress-value {
    background-color: #f6bf41;
    border-radius: 10px;
}

progress::-moz-progress-bar {
    background-color: #f6bf41;
    border-radius: 10px;
}

.rating-percentage {
    font-size: 16px;
    color: #f6bf41;
    font-weight: bold;
    margin-left: 10px;
}




.place-section {
    background: linear-gradient(90deg, #02050A, #00224E);
    border-radius: 15px;
    padding: 40px 20px;
    color: white;
}

.place-left-column {
    color: white;
    padding: 30px;
}

.place-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    max-width: 500px;
    margin: auto;
}

.place-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.card-text {
    color: #02050A;
}

.place-stars {
    color: #f1c40f;
}

.place-carousel-item {
    text-align: center;
}

.place-card-body {
    padding: 20px;
}

.place-carousel-inner {
    width: 100%;
}


.text-shadow {
    font-size: 24px;
    color: #02050A;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
    text-align: center;
}


.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-button img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-button img:hover {
    transform: scale(1.1);
}


.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    min-width: max-content;
}

.contact-button {
    display: flex;
    align-items: center;
    background-color: #25D366;
    /* WhatsApp green, you can change this */
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.contact-button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.contact-button:hover {
    background-color: #128C7E;
    /* Darker shade of green for hover */
}

.phone-button {
    background-color: #4CAF50;
    /* Green for the phone button */
}

.phone-button:hover {
    background-color: #388E3C;
    /* Darker green for hover */
}

.email-button {
    background-color: #2196F3;
    /* Blue for the email button */
}

.email-button:hover {
    background-color: #1976D2;
    /* Darker blue for hover */
}

.card {
    border: none;
    border-radius: 16px;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    color: #fff;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.card-body {
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-1 {
    background: linear-gradient(135deg, #4376ab, #02050a);
}

.card-2 {
    background: linear-gradient(135deg, #00224e, #4376ab);
}

.card-3 {
    background: linear-gradient(135deg, #4376ab, #02050a);
}

.card-4 {
    background: linear-gradient(135deg, #00224e, #4376ab);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.card-text {
    font-size: 16px;
    color: #e0e0e0;
}

@media (max-width: 767px) {
    .icon {
        font-size: 2rem;
    }

    .card-title {
        font-size: 24px;
    }
}

.card-title-price {
    font-size: 24px;
    font-weight: 700;
    color: #000;

}

.card-body-price {
    padding: 1rem;
    border-radius: 16px;
    text-align: left;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-price {
    background-color: #fff;
    color: #000;
    position: relative;
}

.price-tag {
    font-size: 14px;
    font-weight: bold;
    color: #000;
}

.review-stars {
    color: #f6bf41;
}

.prefix-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f6bf41;
    color: #02050a;
    padding: 4px 8px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 5px;
}

.suffix-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: red;
    color: white;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 5px;
}

del {
    color: #ccc;
}


.tech-stk-tour a {
    text-decoration: none;
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: bold;


}

.tech-stk-tour {
    text-align: center;
}

.custom-image-card {
    position: relative;
    overflow: hidden;
}

.custom-image-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.custom-overlay-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: background 0.3s ease;
}

.custom-image-card:hover .custom-overlay-effect {
    background: rgba(0, 0, 0, 0.5);
}

.custom-image-overlay {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: left;
    padding: 20px;
    z-index: 2;
}

.custom-image-overlay a {
    color: white;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    transition: color 0.3s ease;
}

.custom-image-overlay a:hover {
    color: #f6bf41;
}

.custom-image-overlay p {
    color: #fff;
}


.custom-card-unique {
    background-color: #f8f9fa;
    border: none;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.custom-icon-unique {
    font-size: 2.5rem;
    color: #4376ab;
    margin-bottom: 15px;
}

.custom-heading-unique {
    font-weight: 600;
    margin-bottom: 15px;
}

.custom-paragraph-unique {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.custom-btn-unique {
    background-color: #4376ab;
    color: white;
    border: none;
}

.custom-btn-unique:hover {
    background-color: #355d8c;
}



/* about us page */




.about-hero {
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center center/cover no-repeat;
    height: 65vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-hero-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    inset: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-title {
    color: #00224e;
    font-weight: 700;
}

.about-box {

    background: linear-gradient(to right, #00224e, #4376ab);
    color: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: 0.3s;
}

.about-box:hover {
    transform: translateY(-6px);
}

.about-team img {
    border-radius: 50%;
    object-fit: cover;
    height: 150px;
    width: 150px;
}

.about-testimonial {
    background: #f8f9fa;
    padding: 20px;
    border-left: 5px solid #4376ab;
    border-radius: 10px;
    font-style: italic;
}

.about-cta {
    background: linear-gradient(to right, #00224e, #4376ab);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.about-btn-cta {
    background-color: #f6bf41;
    color: #02050a;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s;
}

.about-btn-cta:hover {
    background-color: #ffd700;
    transform: scale(1.05);
}

.about-counter {
    font-size: 2rem;
}



/* conatct us */


.travelc-header {
    background: linear-gradient(to right, #00224e, #4376ab);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.travelc-header h2 {
    font-size: 40px;
    font-weight: bold;
}

.travelc-form-box {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.travelc-info-box {
    background-color: #4376ab;
    color: white;
    border-radius: 15px;
    padding: 30px;
}

.travelc-info-box h5 {
    margin-top: 20px;
    font-weight: bold;
}

.travelc-info-box i {
    font-size: 22px;
    margin-right: 10px;
}

.travelc-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
}

.form-control:focus {
    border-color: #4376ab;
    box-shadow: 0 0 0 0.2rem rgba(67, 118, 171, 0.25);
}



/* gallery section */




.gallery-header {
    background: linear-gradient(to right, #00224e, #4376ab);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.gallery-header h2 {
    font-size: 40px;
    font-weight: bold;
}

.gallery-section {
    padding: 60px 0;
}

.gallery-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-image-box:hover img {
    transform: scale(1.1);
}

