
:root {
    --font-family: "Jost", serif;
    --font-family2: "Gilda Display", serif;
    --color-1: #000000;
    --color-2: #e0f1f2;
    --color-2-hover: #c5e0e1;
    --color-3: #fbf5f0;
    --color-3-hover: #faf8ee;
    --color-4: #a5d0d2;
    --text-color : #666;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 28px;
    text-transform: none;
    color: var(--text-color);
}

.logo img{
    max-width: 160px;
    padding: 10px;
}

.main-nav{
    border-top: 1px solid rgb(0 0 0 / 10%);
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.main-nav.navbar-expand-lg .navbar-nav{
    flex-wrap: wrap;
    gap: 20px;
}

.main-nav .navbar-nav .nav-item a {
    font-size: 13px;
    font-weight: 370;
    letter-spacing: 0.1em;
    line-height: 19px;
    text-transform: uppercase;
    color: var(--color-1);
    position: relative;
    transition: color 0.4s ease, transform 0.4s ease;
}

.main-nav .navbar-nav .nav-item a:hover {
    color: var(--color-4);
    transform: translateY(-3px);
}

.main-nav .navbar-nav .nav-item a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-4);
    transition: width 0.4s ease, left 0.4s ease;
}

.main-nav .navbar-nav .nav-item a:hover::before {
    width: 100%;
    left: 0;
}

.navbar-toggler img{
    width: 30px;
}

.social-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-nav li {
    display: inline-block;
}

.social-icon {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.contact-link {
    text-decoration: none;
    color: #6f6f6f; /* Main text color */
    display: flex;
    align-items: center;
    font-weight: 325;
    line-height: 1.2;
}

.contact-link:hover {
    background-color: var(--color-3-hover);
}

.contact-link:hover {
    color: var(--color-1); /* Text color change on hover */
}

@media (max-width: 768px) {
    .contact-button {
        flex-direction: column;
        padding: 10px;
    }

    .divider {
        display: none; /* Remove divider on small screens */
    }

    .contact-link {
        margin-bottom: 5px;
    }
}

/*Home Slider*/
/* Fullscreen Slider */
.carousel-item {
    height: 100%; /* Full screen height */
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 16 / 9;
}

/* Parallax effect */
.slider-bg {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Overlay Style */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black */
    z-index: 1; /* Move overlay behind text */
}

/* Carousel Caption Style */
.carousel-caption {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2; /* Text on top of the overlay */
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s ease, visibility 1s ease;
    max-width: 50%;
    width: 800px;
    min-height: 200px;
}

.carousel-item.active .carousel-caption {
    visibility: visible;
    opacity: 1;
}

.carousel-caption h1 {
    margin-bottom: 20px;
    font-size: 3rem;
    font-family: var(--font-family2);
}

.carousel-caption p {
    font-size: 1.25rem;
}

/* Buttons */
.mainSlider .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Sequential animation delays */
.carousel-item.active .fade-in:nth-child(1) {
    animation-delay: 0.5s;
}

.carousel-item.active .fade-in:nth-child(2) {
    animation-delay: 1s;
}

.carousel-item.active .fade-in:nth-child(3) {
    animation-delay: 1.5s;
}

/* Control buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #fff;
    border-radius: 50%;
}

/* Responsiveness */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .buttons a {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/*Buttons*/
.btn{
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover{
    transform: translateY(-5px);
}

.btn-primary{
    background-color: var(--color-2);
    border-color: var(--color-2);
    color: #3f3e3e;
}

.btn-primary:hover{
    background-color: var(--color-3-hover);
    border-color: var(--color-3-hover);
    color: var(--color-1);
}

.btn-warning{
    background-color: var(--color-3);
    border-color: var(--color-3);
}

.btn-warning:hover{
    background-color: var(--color-2-hover);
    border-color: var(--color-2-hover);
}

/*About us*/
.hero-sub{
    color: var(--color-4);
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
}

.hero-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    font-family: var(--font-family2);
}

.highlight {
    color: var(--color-4);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    font-family: var(--font-family2);
}

.about-box{
    position: relative;
}

.leaf-icon {
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100%;
}

.about-box .top-leaf-icon {
    top: -50px;
    right: 0;
    height: 300px;
    width: 300px;
    opacity: 0.5;
}

.about-box .bottom-leaf-icon {
    bottom: -50px;
    left: 20%;
    height: 200px;
    width: 200px;
    opacity: 0.5;
}

.big-m-tv{
    margin-top: 3rem;
    margin-bottom: 6rem;
}

.big-m-t{
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.big-p-t{
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.background-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background-color: var(--color-3);
    border-radius: 50%;
    z-index: -1;
    transform: translate(-50%, -50%); /* This will center the circle */
}

.top-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%; /* Adjust the size of the larger image */
    height: 500px; /* Fixed height of 400px */
    object-fit: cover; /* Ensures the image covers the area without stretching */
}

.bottom-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%; /* Adjust the size of the larger image */
    height: 440px; /* Fixed height of 400px */
    object-fit: cover; /* Ensures the image covers the area without stretching */
}
/* Fade-in animation for text */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInText 1s forwards;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.light-bg-box{
    background-color: var(--color-3);
}
.rating-link{
    text-decoration: none;
}

.rating-item {
    background-color: #fff;
    padding: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rating-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.rating-logo img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.rating-title {
    font-size: 17px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.rating-stars .star {
    color: var(--color-3);
    font-size: 24px;
    transition: color 0.3s ease;
}

.rating-stars .star:hover {
    color: #f39c12;
}

.rating-number{
    color: var(--color-1);
    font-size: 16px;
    text-decoration: none;
}

.rating-number a:hover {
    text-decoration: underline;
}

.rating-svg{
    width: 50px !important;
}

.m-title img{
    width: 100px;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 30px 0;
}

.service-img img {
    transition: transform 0.3s ease-in-out;
}

.service-img img:hover {
    transform: scale(1.05);
}
.service-info {
    text-align: left;
}

.service-title{
    font-size: 1.6rem;
    font-weight: 800;
    color: #333;
    font-family: var(--font-family2);
}


/* Service items with alternate layout */
.service-item:nth-child(even) .col-md-6:first-child {
    order: 2;
}

.service-item:nth-child(even) .col-md-6:last-child {
    order: 1;
}


.team-section {
    background-color: var(--color-3);
    padding: 50px 0;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23bababa' fill-opacity='0.07'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
}

.team-member {
    margin-bottom: 30px;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-member p {
    color: #777;
}

.member-description {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.footer {
    background-color: #f9f9f9;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer a {
    color: var(--text-color);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer h5 {
    font-weight: bold;
    margin-bottom: 20px;
    font-family: var(--font-family2);
    color: #000;
}

.footer ul {
    padding-left: 0;
    list-style-type: none;
}

.footer i,
.footer svg {
    margin-right: 10px;
}

.footer form .btn-light {
    background-color: #fff;
    color: #111;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.9em;
    color: #5f5f5f;
}

.footer-bottom a{
    color: #5f5f5f;
}

.footer-links li {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}

.footer-links img.social-icon {
    margin-right: 15px;
    width: 26px;
}

.footer-links a {
    color: var(--text-color);
}

.footer-links a:hover {
    text-decoration: underline; /* Add hover effect */
}

.footer-menu-link li{
    margin-bottom: 6px;
}
.footer-column {
    padding: 0 20px; /* Padding for content */
}

.footer-divider {
    border-left: 1px solid #ccc; /* Divider line */
    border-right: 1px solid #ccc; /* Divider line */
    padding-left: 30px; /* Adjust spacing after border */
    padding-right: 30px; /* Adjust spacing after border */
}

.footer-menu-link a {
    color: var(--text-color); /* Link color */
    text-decoration: none;
}

.footer-menu-link a:hover {
    text-decoration: underline; /* Hover effect */
}

/* Style the input field */
#subscribe-email {
    border: none;
    border-bottom: 1px solid #e1e1e1;
    border-radius: 0;
    padding: 8px;
    width: 100%;
    outline: none;
}

/* Change placeholder text style */
#subscribe-email::placeholder {
    color: #999;
    font-style: italic;
}

/* Style the submit button */
#subscribe-form .btn {
    width: 100%;
    border-radius: 0;
    padding: 10px 0;
    font-size: 1rem;
}
.gal-img {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.gal-img img {
    width: 100%;
    height: 100%; /* Ensures the image takes the full height of its container */
    object-fit: cover; /* This will crop the image to maintain aspect ratio and fit the container */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 5px;
    cursor: pointer;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    text-align: left;
    padding: 10px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    font-family: var(--font-family2);
    font-size: 1rem;
    width: 100%;
}

.gal-img:hover img {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


.overlay-text {
    margin: 0;
}

.testimonials{

    background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23bababa' fill-opacity='0.07'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#testimonials-slider .owl-item{
    padding: 10px;
}

#testimonials-slider .owl-item a{
    color: #000;
    text-decoration: none;
}

#testimonials-slider .item{
    background-color: #fff;
    padding: 30px;
}


.approach {
    padding: 50px 0;
}

.approach__box{
    position: relative;
}

.approach__box .approach__step{
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: var(--color-2);
    position: absolute;
    border-radius: 50%;
}

.approach__box .approach__info{
    margin-left: 70px;
    margin-bottom: 50px;
}

.approach__box .approach__step span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 20px;
    color: #333;
}

.packages {
    padding: 50px 0;
    background-color: var(--color-3);
}

.package-compare thead tr th {
    padding: 17px 20px;
    position: relative;
    background-color: #faf6f4;
    color: #393a3a;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    font-weight: 500;
}

.package-compare tbody tr td {
    text-align: left;
    margin: 0;
    padding: 16px 20px;
    line-height: 27px;
    vertical-align: middle;
    background-color: #faf6f4;
}

.package-compare tbody tr th {
    vertical-align: middle;
    padding-left: 20px;
    background-color: #faf6f4;
    font-weight: 500;
}

.h6-style-text {
    font-size: 16px;
    line-height: 1.6em;
    color: #b3b3b3;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}


.award {
    padding: 50px 0 10px;
}

.award .col-md-4{
    margin-bottom: 20px;
}

.award .award__box{
    text-align: center;
    background-color: var(--color-3);
    width: 100%;
    height: 100%;
    padding: 20px;
}

.award .travel-logo{
    background-color: var(--color-2);
}

.travel-logo a{
    color: #000000;
    text-decoration: none;
}

.tabs-style{
    padding: 50px 0 70px
}

.tabs-style .nav-pills .nav-link{
    padding: 10px 20px;
    color: #949494;
}

.tabs-style .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #000;
    background-color: var(--color-2);
}

.tabs-style .service-style__box{
    padding-bottom: 15px;
}

.award_icon_box{
    background-color: var(--color-3);
    padding: 15px;
    display: inline-block;
}

.award_icon_box svg{
    width: 50px;
    fill: #000;
}

.award-p-style{
    width: 70%;
    text-align: center;
    margin: 0 auto;
}

.service-style{
    background-color: var(--color-3);
    padding: 50px 0 80px;
}

.service-style__img{
    background-size: cover;
    width: 100%;
    height: 600px;
}

.service-style__info{
    background-color: #fff;
    padding: 25px;
    position: relative;
    text-align: center;
}

.service-style__info h3{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.service-style__box a{
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about__img-box{
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.contact-info{
    background-color: var(--color-3);
    padding: 50px;
}

.contact-info ul{
    margin: 0;
    width: 100%;
}

.contact-info li{
    padding: 25px 0;
}

.contact-info .contact-style__info .icon{
    background-color: #fff;
}

.contact-form{
    padding: 20px;
}

.award__box a{
    text-decoration: none;
}

.contact-style__info_1 a {
    text-decoration: none;
    display: inline-block;
}


.contact-style__box{
    padding: 50px 50px 20px;
}

.contact-style__info ul{
    text-align: left;
    width: 100%;
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.contact-style__info li{
    flex: 1 1 50%;
    width: 50%;
    box-sizing: border-box;
    display: flex;
}

.contact-style__info li a{
    color: var(--text-color);
    text-decoration: none;
    display: inline-block;
}

.contact-style__info .icon{
    display: inline-block;
    width: 40px;
    height: 40px;
    vertical-align: top;
    margin-right: 10px;
    background-color: var(--color-2);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    border-radius: 50%;
    background-image: url('../images/icons/phone.svg');
}

.contact-style__info .phone .icon{
    background-image: url('../images/icons/phone.svg');
}

.contact-style__info .email .icon{
    background-image: url('../images/icons/email.svg');
}

.contact-style__info .location .icon{
    background-image: url('../images/icons/location.svg');
}

.contact-style__info li p{
    text-align: left;
    display: inline-block;
    font-size: 14px;
}

.contact-style__info .email-box{
    width: 50%;
}

.contact-style__info li span{
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}


ul li{
    line-height: 27px;
    list-style: none;
}

.footer-column a:hover {
    text-decoration: none;
}

.list-style {
    list-style-type: none; /* Remove default bullets */
    padding-left: 0;
}

.list-style li {
    position: relative;
    padding-left: 30px; /* Add space for the icon */
    margin-bottom: 10px;
}

.list-style li::before {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000" stroke-width="2"><circle cx="12" cy="12" r="10"/></svg>');
    position: absolute;
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
}

.parallax-container {
    position: relative;
    height: 500px; /* Adjust the height as needed */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay with opacity */
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-content {
    color: #e9e9e9;
    z-index: 1;
}

.text-content .hero-text{
    color: #e9e9e9 !important;
}

.text-content h5{
    font-weight: 200;
}

#network-slider .owl-item{
    margin: 10px;
}

#network-slider .owl-item .item{
    padding: 15px;
}

.ab-b a{
    color: #000;
    text-decoration: none;
}

.required-label{
    color: #c56060;
    font-style: italic;
    margin-left: 10px;
}

.error{
    color: #c56060;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 15px;
    margin-bottom: 10px;
}

.gallery a {
    position: relative;
    overflow: hidden; /* Ensures the image expansion is contained within the box */
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 0;
    display: block; /* Ensure the link fills the grid cell */
    width: 100%;
    height: 100%;
}

.gallery a img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images maintain their aspect ratio and cover the area */
    display: block;
    transition: transform 0.3s ease; /* Smooth transition for the hover effect */
}

.gallery a:hover img {
    transform: scale(1.1); /* Slightly scale up the image on hover */
}

.gallery a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
    opacity: 0;
    transition: opacity 0.3s ease; /* Smooth fade-in effect */
}

.gallery a:hover:after {
    opacity: 1; /* Make the overlay visible on hover */
}

.gallery a:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Subtle shadow effect on hover */
    transform: none; /* Remove container scaling to focus on image scaling */
}

.about__box a{
    color: #000;
}

.carousel-inner {
    height: 75vh;
}
