/* Navbar Styling */
body{
    font-family: Space Grotesk Light;
  
  background-color: rgb(248 250 252);
}
.navbar {
    background: #072142;
    padding: 10px 0;
}

.navbar-brand {
    color: white !important;
    font-weight: bold;
    font-size: 22px;
}
.navbar-nav{
    gap:20px;
}
.navbar-toggler {
    background-color: white;
}

/* Navbar links styling */
.navbar-nav .nav-link {
    color: white !important;
    font-size: 16px;
    padding: 10px 15px;
    transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}

/* Icons spacing */
.navbar-nav .nav-link i {
    margin-right: 8px;
}

/* Hover & Active State */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: #fff !important;
    background: #ff9800;
    border-radius: 10px;
    padding: 5px 15px;
}

/* Phone Number Styling */
.phone-number {
    font-weight: bold;
    font-size: 18px;
    background: #ff9800;
    color: white !important;
    padding: 8px 15px;
    border-radius: 10px;
    transition: background 0.3s ease-in-out;
}

.phone-number:hover {
    background: #e68900;
    color: white !important;
}

/* Flight Search Section */

.flight-form {
    position: relative;
    top: -99px;
    background: white;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.trip-type {
    display: flex;
    gap: 20px;
}

.trip-type input {
    accent-color: #ff9800;
}

.bg-light {
    background-color: #f8f9fa !important;
}

h2 {
    color: #072142;
    font-weight: bold;
}

/* Input & Select Fields */
.form-control,
.form-select {
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
}

/* Search Button */
.btn-warning {
    background-color: #ff9800;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 10px;
    transition: background 0.3s ease-in-out;
}

.btn-warning:hover {
    background-color: #e68900;
}

/* Exclusive deals with great discounts*/

/* Card Styling */
.card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Image Overlay - Initially Visible with Light Opacity */
.card .card-img-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    /* background: rgba(0, 0, 0, 0.6); */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: opacity 0.3s ease-in-out;
}

/* Card Content (Hidden by Default - Slides Up on Hover) */
.card .card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 10%, #fff 80%);
    padding: 30px;
    text-align: center;
    transition: bottom 0.5s ease-in-out;
    box-shadow: 0px -10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0px 0px 10px 10px;
}

/* Image Darkens Initially */
.card img {
    transition: filter 0.3s ease-in-out;
    filter: brightness(0.7);
}

/* Hover Effects */
.card:hover img {
    filter: brightness(1);
}

.card:hover .card-content {
    bottom: 0;
}

.card:hover .card-img-overlay {
    opacity: 1;
}

.para {
    color: #1d1d21;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 600;
}

.discount-destination-bg {
    background-color: #f0f8ffb8;
}

/* top-destination-around-the-world*/

 /* General Styling */
 .top-destination {
           
    border-radius: 10px;
}

/* Destination Image Styling */
.dest-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.dest-img img {
    width: 100%;
    height: auto;
    filter: brightness(0.6);
    transition: filter 0.5s ease-in-out;
}

.dest-img:hover img {
    filter: brightness(1);
}

/* Title on Top of Image */
.top-card-title {
    position: absolute;
    top: 8%;
    left: 5%;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    z-index: 2;
}

/* Price Badge with Gradient Background */
.price-badge {
    background: linear-gradient(135deg, #ff9f00, #ff5f6d);
    padding: 5px 10px;
    font-size: 14px;
    color: #fff;
    border-radius: 5px;
}

/* Call Now Badge */
.call-badge {
    background: linear-gradient(135deg, #00c6ff, #007bff);
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border-radius: 10px;
}

/* Tours Info - Hidden by Default */
.tours {
    position: absolute;
    right: 5%;
    bottom: 5%;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    padding: 6px 15px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    border-radius: 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

/* Show Tours Info on Hover */
.dest-img:hover .tours {
    opacity: 1;
    transform: translateY(0);
}

/* Newsletter Section Start Here */
 /* Newsletter Section Styling */
 .newsletter-section {
    background: linear-gradient(135deg, #f3f6fd, #dce7f9); /* Light Blue Gradient */
    padding: 60px 0;
    border-radius: 10px;
}

/* Input Field Styling */
.form-control {
    max-width: 420px;
    height: 50px;
    border-radius: 12px !important;
    border: 2px solid #03045e;
    padding: 10px 15px;
    font-size: 16px;
}

/* Subscribe Button Styling */
.btn-submit {
    display: inline-block;
    background: linear-gradient(135deg, #072e64, #6590cb);
    color: white;
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 12px;
    border: none;
    transition: 0.4s ease-in-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Button Hover Effect */
.btn-submit:hover {
    background: linear-gradient(135deg, #6590cb, #072e64);
    transform: scale(1.05);
}

/* Icon Styling */
.newsletter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-text h5 {
    color: #072e64;
    font-weight: bold;
}

.newsletter-text h2 {
    color: #03045e;
    font-size: 28px;
    font-weight: 700;
}
/* About us page*/
.about-us-title{
    background-color: #072e64;
}

/* Contact Us*/

.contact-info {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.contact-info-icon {
    margin-bottom: 15px;
}

.contact-info-item {
    background: #071c34;
    padding: 30px 0px;
}

.contact-page-sec .contact-page-form h2 {
    color: #071c34;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 700;
}

.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
    padding-left: 0;
}

.contact-page-form.contact-form input {
    margin-bottom: 5px;
}

.contact-page-form.contact-form textarea {
    height: 110px;
}

.contact-page-form.contact-form input[type="submit"] {
    background: #144383;
    width: 150px;
    border-color: #144383;
}

.contact-info-icon i {
    font-size: 48px;
    color: #fda40b;
}

.contact-info-text p {
    margin-bottom: 0px;
}

.contact-info-text h2 {
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-text span {
    color: #999999;
    font-size: 16px;
    /* font-weight: ; */
    display: inline-block;
    width: 100%;
}

.contact-page-form input {

    border: 1px solid #fff;
    margin-bottom: 20px;
    padding: 12px 16px;
    width: 100%;
    border-radius: 4px;
    border-bottom: 3px solid #cbcbcb;
}

.contact-page-form .message-input {
    display: inline-block;
    width: 100%;
    padding-left: 0;
}

.single-input-field textarea {

    border: 1px solid #fff;
    margin-bottom: 20px;
    padding: 12px 16px;
    width: 100%;
    border-radius: 4px;
    border-bottom: 3px solid #cbcbcb;
    height: 120px;
}

.single-input-fieldsbtn input[type="submit"] {
    background-color: #144084;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    /* padding: 10px 0; */
    text-transform: capitalize;
    width: 150px;
    margin-top: 20px;
    font-size: 16px;
    padding: 20px 10px;
}

.single-input-fieldsbtn input[type="submit"]:hover {
    background: #071c34;
    transition: all 0.4s ease-in-out 0s;
    border-color: #071c34
}

.single-input-field h4 {
    color: #464646;
    text-transform: capitalize;
    font-size: 14px;
}

.contact-page-form {
    display: inline-block;
    width: 100%;
    /*margin-top: 30px;*/
    margin-top: 71px;
}

.contact-page-map {
    margin-top: 36px;
}

.contact-page-form form {
    padding: 20px 15px 0;
}

.map-section {
    position: relative;
    /* top: -50px; */
}


.iframe {
    border-radius: 10px;
}

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

@media(max-width:768px) {
    .iframe {
        width: 370px;
    }
}

.social-location {
    position: relative;
    background-color: #fff;
    /*top: -70px;*/
    top: -18px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
}

.contact-form {
    position: relative;
    top: -70px;
}
/* Newsletter */
.newsletter-form input {
    background-color: #ffffff15;
    color: white;
    border: 1px solid #ffffff33;
    padding-right: 50px;
}
.newsletter-form input::placeholder {
    color: #cccccc;
}
.newsletter-form input:focus {
    background-color: #ffffff22;
    border-color: #00bfff;
    color: white;
    outline: none;
    box-shadow: none;
}

.btn-send {
    background-color: #00bfff;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-send:hover {
    background-color: #008cba;
    transform: scale(1.1);
}

/*footer*/
.web-footer{
   background: #072142;
}
.footer-link {
    color: #ffffffcc;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-link:hover {
    color: #00bfff;
    text-decoration: underline;
}


