:root {
    --font-size: 48px;
    --font-family: Arial, sans-serif;
    --font-weight: bold;
    --gradient-start: #0d0d5e;
    --gradient-middle: #741122;
    --gradient-end: #9e3a00;
}

.infinix-primary {
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
    -webkit-background-clip: text;
    color: transparent;
}

.infinix-secondary {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: var(--font-weight);
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
    -webkit-background-clip: text;
    color: transparent;
}

.infinix-footer {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: var(--font-weight);
    background: #D8E7FF;
    -webkit-background-clip: text;
    color: transparent;
}

.infinix-footer:hover{
	color:#81221b;
}
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
	
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}

/* For screens 1200px and below */
@media (max-width: 1200px) {
    .topbar {
        padding: 2px 8px 2px 16px; /* Reduce padding */
        font-size: 15px; /* Adjust font size for smaller screens */
    }

}

/* For screens 768px and below */
@media (max-width: 768px) {
    .topbar {
        padding: 2px 5px 2px 10px; /* Further reduce padding */
        font-size: 14px; /* Reduce font size */
    }
    .topbar a,
    .topbar a i {
        font-size: 14px; /* Adjust link icon size */
    }
}

/* For screens 576px and below */
@media (max-width: 576px) {
    .topbar {
        display: none; /* Hide the topbar on very small screens */
    }
}
/*** Topbar End ***/

/*** Navbar ***/

.navbar-nav{
    padding-right: 10px;
    }
	
.navbar-light .navbar-nav .nav-link {
    font-family: "Roboto", sans-serif;
    position: relative;
    padding: 8px 32px;
    color: var(--bs-white) !important;
    font-size: 18px;
    font-weight: 500;
    outline: none;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 7px 20px;
    color: var(--bs-dark) !important;
	margin:11px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: #c6c7c7;
    font-size: 18px;
}
.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 100px;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6); /* Dark shadow around the image */
    border-radius: 8px; /* Optional rounding */
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 100px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown-menu .dropdown-item {
        font-size: 15px; /* Adjust as needed */
    }

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 20px;
        transition: 0.5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
    border-radius: 20px;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: 0.5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #dddddd;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
	

}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }
	
	   .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: 0.5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 0px);
        left: 1px;
        border-radius: 30px; /* Makes the item round on hover */
        /* transform: scale(1.1); */
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
	.dropdown-menu .dropdown-item {
        font-size: 15px; /* Adjust as needed */
    }
}
/* Responsive styling */

/* Smartphones (Portrait) */
@media (max-width: 576px) {
    .navbar-nav {
        padding-right: 10px;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 8px 15px;
        font-size: 16px;
    }

    .navbar-light .navbar-brand h1 {
        font-size: 14px;
    }
	 .dropdown-menu .dropdown-item {
        font-size: 12px; /* Adjust as needed */
    }
    /* Navbar adjustments for mobile */
    .navbar-brand img {
        max-height: 30px;
    }
}
/* Tablets (Portrait and Landscape) */
@media (max-width: 768px) {
    .navbar-nav {
        padding-right: 20px;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 8px 20px;
        font-size: 14px;
    }
	 .dropdown-menu .dropdown-item {
        font-size: 12px; /* Adjust as needed */
    }
}

/* Small Phones (smaller than 360px wide) */
@media (max-width: 360px) {
    .navbar-nav {
        padding-right: 5px;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 6px 10px;
        font-size: 14px;
    }

    .navbar-light .navbar-brand h1 {
        font-size: 14px;
    }
	 .dropdown-menu .dropdown-item {
        font-size: 11px; /* Adjust as needed */
    }

}
/*** Navbar END ***/

/*** Carousel Hero Header Start ***/

.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;
}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}



.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh;
}

.carousel-header .carousel-inner .carousel-item img {
    position:absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption h1 {
	max-width: 900px;
}

/* 1200px and below */
@media (max-width: 1200px) {
    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        padding: 20px 25px; /* Reduce padding */
        background-size: 55% 55%; /* Slightly reduce icon size */
    }

    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        padding-top: 40px; /* Reduce padding for caption */
        font-size: 1rem; /* Adjust font size if needed */
    }
}

/* 768px and below (Tablets and Smaller Devices) */
@media (max-width: 768px) {
    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        padding: 18px 22px; /* Further reduce padding */
        background-size: 50% 50%; /* Adjust icon size */
    }

    .carousel-header .carousel-inner .carousel-item {
        min-height: 75vh; /* Adjust minimum height for smaller screens */
    }

    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        padding-top: 30px;
        font-size: 0.9rem;
    }
}

/* 576px and below (Mobile Devices) */
@media (max-width: 576px) {
    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        padding: 15px 20px; /* Smaller padding for mobile */
        background-size: 45% 45%; /* Scale down icon size */
    }

    .carousel-header .carousel-inner .carousel-item {
        min-height: 60vh; /* Reduce height for mobile */
    }

    .carousel-header .carousel-inner .carousel-item img {
        object-fit: cover;
        height: 60vh; /* Ensure full cover without overflow */
    }

    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        padding-top: 20px;
        font-size: 0.8rem;
        background: rgba(0, 0, 0, 0.7); /* Darker overlay for readability */
    }
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb-testing {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/breadcrumb-bg-testing.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb-contact {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/breadcrumb-bg-contact.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}
.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.about .about-img{
	border: 3px solid; 
	border-color: #07044e #81221b #07044e #81221b;
	border-radius:10px;
	height:100%;
} 

.about .about-4 p{
	font-weight: bold;
	font-size: 1.2rem;
}
/*** About End ***/

/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}
.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5{
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #ffffff; /* White color for the text */
    background: linear-gradient(to right, #000352, #811f16);
    -webkit-background-clip: text;
    color: transparent; /* Shows the gradient only within the text */
    
}

.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5{
	font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #ffffff; /* White color for the text */
    background: linear-gradient(to right, #000352, #811f16);
    -webkit-background-clip: text;
    color: transparent; /* Shows the gradient only within the text */
	text-shadow: 
        -3px 1px 1px #ffffff;   /* White shadow */
}

.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}
/*** Service End ***/

/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}
/*** Destination End ***/

/*** Packages Start ***/
.packages .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, 0.3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.packages .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
    visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;
}

.packages .packages-item .packages-img img {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
    transform: scale(0.9);
}

.packages .packages-item .packages-img .packages-price {
    position: absolute;
    width: 100px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background: var(--bs-primary);
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 5;
}

.packages .packages-carousel {
    position: relative;
}

/* Base styling for prev/next buttons in packages-carousel */
.packages-carousel .owl-nav .owl-prev,
.packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 52, 0.7); /* Semi-transparent dark blue background */
    color: #ffffff; /* White arrow */
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease; /* Smooth transition effect */
    cursor: pointer;
}

/* Positioning */
.packages-carousel .owl-nav .owl-prev {
    left: 15px;
}
.packages-carousel .owl-nav .owl-next {
    right: 15px;
}

/* Hover effect for prev/next buttons */
.packages-carousel .owl-nav .owl-prev:hover,
.packages-carousel .owl-nav .owl-next:hover {
    background-color: rgba(0, 0, 52, 0.9); /* Slightly darker on hover */
    transform: translateY(-50%) scale(1.1); /* Slight zoom effect */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .packages-carousel .owl-nav .owl-prev,
    .packages-carousel .owl-nav .owl-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .packages-carousel .owl-nav .owl-prev,
    .packages-carousel .owl-nav .owl-next {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/*** Packages End ***/

/*** Explore Tour Start ***/
.ExploreTour .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.ExploreTour .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.ExploreTour .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/* National Tour Start */
.ExploreTour #NationalTab-1 .national-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #NationalTab-1 .national-item .national-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
    background: rgba(19, 53, 123, 0.6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
    opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 40px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* International Tour Start */
.ExploreTour #InternationalTab-2 .international-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-content {
    background: rgba(19, 53, 123, 0.6);
}

.ExploreTour #InternationalTab-2 .international-item .international-content .international-info a {
    font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-plus-icon {
    opacity: 1;
}

/* carousel Start */
.ExploreTour #InternationalTab-2 .InternationalTour-carousel .international-item {
    position: relative;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}
/*** Explore Tour End ***/

/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
    opacity: 1;
    margin: 0;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
    background: rgba(19, 53, 123, 0.8);
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/*** Gallery End ***/

/*** Tour Booking Start ***/
.booking {
    background: linear-gradient(rgba(19, 53, 123, 0.8), rgba(19, 53, 123, 0.8)), url(../img/get-a-quote-bg.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.booking .container .section-booking-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.booking .container .section-booking-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.booking .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

/*** Tour Booking end ***/

/*** Travel Guide Start ***/
.guide-item {
    width: 300px; /* Adjust width for medium size */
    margin: 20px auto; /* Center alignment for standalone display */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for elegance */
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

.guide-item:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.guide .guide-item .guide-img {
    position: relative;
	
}

.guide .guide-item .guide-img .guide-icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
    z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgba(19, 53, 123, 0.5);
}

.guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
}

.guide .guide-item .guide-title {
    position: relative;
    background: var(--bs-light);
    transition: 0.5s;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner h4{
	
font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #ffffff; /* White color for the text */
    background: linear-gradient(to right, #000352, #811f16,#000352, #811f16);
    -webkit-background-clip: text;
    color: transparent; /* Shows the gradient only within the text */	

}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    color: var(--bs-white);
}
/*** Travel Guide End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, 0.2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, 0.6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px;
    height: 100px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--bs-primary);
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white);
    border-style: dotted;
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(19, 53, 123, 0.6), rgba(19, 53, 123, 0.6)), url(../img/subscribe-img.webp);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
	
}
.footer .footer-item h4 {
    font-weight: bold;
    color: #ffffff;
}

.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}

/* Centering text on all devices */
.copyright .container {
    text-align: center;
}

@media (max-width: 768px) {
    /* Adjust font size and padding for smaller screens */
    .copyright .text-body {
        font-size: 14px;
    }
}
/*** copyright end ***/

/*** Feature Start ***/

.progress1 {
    height: 5px;
    background-color: #07044e; /* Color of the filled part */
    width: 85%; /* Percentage (e.g., 85% service quality) */
    text-align: center;
    line-height: 30px; /* Align text vertically */
    color: white;
    border-radius: 10px 0 0 10px; /* Rounded left side */
}
.progress2 {
    height: 5px;
    background-color: #81221b; /* Color of the filled part */
    width: 90%; /* Percentage (e.g., 85% service quality) */
    text-align: center;
    line-height: 30px; /* Align text vertically */
    color: white;
    border-radius: 10px 0 0 10px; /* Rounded left side */
}
.progress3 {
    height: 5px;
    background-color: #000000; /* Color of the filled part */
    width: 95%; /* Percentage (e.g., 85% service quality) */
    text-align: center;
    line-height: 30px; /* Align text vertically */
    color: white;
    border-radius: 10px 0 0 10px; /* Rounded left side */
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}

.img-border img{
	border-radius:10px;
}

/*** Feature End ***/

/* Sidebar */
.sidebar-container {
    display: flex;
    flex-wrap: wrap;
}

.sidebar {
    width: 100%;
    max-width: 250px;
    background-color: #f8f8f8;
	overflow-y: auto; /* Scroll bar for sidebar */
	height: 50vh; /* Full viewport height */

}

 .sidebar h2 {
     margin-bottom: 20px;
     text-align: center;
     font-size: 1.5rem;
        }

.sidebar .menu {
    list-style: none;
    padding: 0;
}

.sidebar .menu li {
    padding: 15px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}

.sidebar .menu li.active, .menu li:hover {
    background-color: #691F27;
    color: #fff;
}

.sidebar-container .content {
    flex: 1;
    padding: 20px;
	overflow-y: auto; /* Scroll bar for content */
	height: 50vh; /* Full viewport height */
}

.sidebar-container .content .content-item {
    display: none;
    transition: opacity 0.3s;
}

.sidebar-container .content .content-item img {
    float: left;
    margin-right: 15px;
    width: 500px;
    height: auto;
}

.sidebar-container .content .content-item h2 {
    font-size: 24px;
    color: #333;
}

.sidebar-container .content .content-item p {
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        max-width: 100%;
        height: auto; /* Adjust height for smaller screens */
    }

    .sidebar .menu li {
        text-align: left;
    }

    .sidebar-container {
        flex-direction: column;
        height: auto;
    }

    .sidebar-container .content {
        height: auto; /* Adjust height for smaller screens */
    }
}
		
/* According for Testing Pages */

.accordion-container {
  width: 100%;
  max-width: 700px;
  line-height: 1.6;
  box-sizing: border-box;
 
}

.accordion {
  border: 1px solid #c5c7c6;
  border-radius: 8px;
  overflow: hidden;
  
 
}

.accordion-item {
  border-bottom: 1px solid #c5c7c6;
}

.accordion-header {
  background-color: #000352;
  color: #ffffff;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  margin: 0;
  color:#c5c7c6
}

.accordion-content {
  display: none;
  padding: 15px;
  background-color: #c5c7c6;
  transition: all 0.3s ease;
}

.accordion-content img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin-bottom: 10px;
}

.icon {
  font-size: 20px;
  color: #811f16;
}

.accordion-item:last-child {
  border-bottom: none;
}

@media (max-width: 600px) {
  .accordion-header {
    font-size: 14px;
  }

  .accordion-content p {
    font-size: 14px;
  }
}

/* Ensure container scrolls when content exceeds height */
.custom-scroll-container {
  max-height: 500px; /* Adjust as needed */
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px; /* Prevents clipping of scroll bar */
}

/* Custom scroll bar styles */
.custom-scroll-container::-webkit-scrollbar {
  width: 10px;
}

.custom-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

.custom-scroll-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

.custom-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .custom-scroll-container {
    max-height: 550px; /* Adjust height for smaller screens */
  }
}

/* Accordion for TEsting End Pages */

/* Carousel for Testing Start Pages */


.testingcarousel-container {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.testingcarousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testingcarousel-item {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
	box-sizing: border-box;
}

.testingcarousel-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.image-container {
    flex: 1;
    max-width: 50%;
}

.image-container img {
    width: 100%;
    border-radius: 8px;
}

.text-container {
    flex: 1;
    max-width: 50%;
    padding: 20px;
    color: #fff;
    background-color: #c5c7c6;
    border-radius: 8px;
}

.text-container h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.text-container p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

.testingcarousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.testingcarousel-controls button  {
    background-color: transparent;
    border: none;
    font-size: 3rem;
    cursor: pointer;
    color: #fff;
	transition: color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}
/* Hover effect */
.testingcarousel-controls button:hover {
    color: #811f16; /* Light cyan for hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .testingcarousel-controls button {
        font-size: 2rem; /* Adjust size for tablets and small screens */
    }
}

@media (max-width: 480px) {
    .testingcarousel-controls button {
        font-size: 1.5rem; /* Further adjust for mobile devices */
    }
}


@media (max-width: 768px) {
    .text-container h1 {
        font-size: 2rem;
    }
    
    .text-container p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .text-container h1 {
        font-size: 1.5rem;
    }
    
    .text-container p {
        font-size: 0.8rem;
    }
    
    .icons {
        font-size: 1.2rem;
    }
}

/* Carousel for Testing End Pages */

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 3, 82, 0.7); /* Navy Blue overlay with transparency */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffff; /* White background */
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 700px;
    position: relative;
    color: #000352; /* Navy Blue text */
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #811f16; /* Red close button */
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #000352; /* Navy Blue heading */
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

input, select, textarea {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #c5c7c6; /* Grey border */
    outline: none;
    font-size: 14px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background-color: #811f16; /* Red submit button */
    color: #ffffff; /* White text */
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #000352; /* Navy Blue on hover */
}

/* Responsive Styles */
@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
    }
}

/* Filter Buttons */

.filter-buttons {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-buttons button {
    padding: 8px 15px;
    margin: 5px;
    border: none;
    cursor: pointer;
    background-color: #811f16;
    color: #ffffff;
    font-size: 1.2em;
	font-weight:300;
}

.filter-buttons button:hover{
    background-color: #00aa7f;
    color: white;
}

.filter-buttons button.active {
    background-color: #000352;
    color: white;
}

/* Grid Layout */
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.grid-item {
    position: relative;
    width: 400px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
}

.grid-item:hover {
    transform: scale(1.05);
}

/* Overlay */
.grid-item .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.grid-item:hover .overlay {
    opacity: 1;
}
.grid-item .overlay span {
    color: #fff;
    font-size: 1.2em;
    text-align: center;
    font-weight: bold;
}

.grid-item-title {
    margin-top: 8px;
    font-size: 1.2em;
    color: #333;
	font-weight:500;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox-content {
    background-color: #fff;
    max-width: 1200px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.lightbox-body {
    display: flex;
    width: 100%;
    padding: 20px;
    text-align: left;
    flex-wrap: wrap;
}

.lightbox-content img {
    width: 50%;
    object-fit: cover;
}

.lightbox-text {
    padding: 20px;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.lightbox-text h3 {
    color: #333;
    font-size: 24px;
}

.lightbox-text h6 {
    color: #00aa7f;
    margin-bottom: 15px;
}

.lightbox-text p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

.lightbox .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #333;
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.testimonial-text {
    font-style: italic;
    color: #888;
    margin-top: 15px;
}

.testimonial-author {
    font-weight: bold;
}

.btn-details, .btn-close {
    margin-top: 20px;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 100px;
}

.btn-details {
    background-color: #00aa7f;
    color: white;
}

.btn-close {
    background-color: #ddd;
    color: #333;
}

/* Lightbox Button Container */
.button-container {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding-top: 20px;
}

.button-container .btn {
    padding: 10px 20px;
    font-size: 1em;
}

/* Responsive Adjustments for Mobile Devices */
@media (max-width: 768px) {
    /* Stack buttons vertically on smaller screens */
    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .button-container .btn {
        width: 100%; /* Full width on smaller screens */
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Smaller font and padding on very small screens */
    .button-container .btn {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Lightbox content becomes stacked vertically on mobile */
    .lightbox-content {
        flex-direction: column;
        align-items: center;
        width: 90%;
    }

    .lightbox-content img {
        width: 100%;
        max-height: 300px;
    }

    .lightbox-text {
        width: 100%;
        padding: 15px;
    }

    .lightbox-text h3 {
        font-size: 20px;
    }

    .lightbox-text p, .testimonial-text {
        font-size: 14px;
    }

    .btn-details, .btn-close {
        font-size: 14px;
        padding: 8px;
        width: 100%;
        max-width: 150px;
        margin: 10px auto;
    }

    .close-button {
        font-size: 18px;
        padding: 5px;
    }
}

@media (max-width: 576px) {
    .lightbox-content img {
        max-height: 200px;
    }

    .lightbox-text h3 {
        font-size: 18px;
    }

    .lightbox-text p {
        font-size: 13px;
    }
    
    .btn-details, .btn-close {
        font-size: 13px;
        width: 100%;
        max-width: 120px;
    }
}

/* Scrollable Content */
.scrollable-content {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: #00aa7f #ddd;
}

/* Scrollbar Styling for Webkit */
.scrollable-content::-webkit-scrollbar {
    width: 6px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background-color: #00aa7f;
    border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .scrollable-content {
        max-height: 180px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .scrollable-content {
        max-height: 180px;
    }
}


/* Responsive Styles */
@media (max-width: 992px) {
    .grid-item {
        width: calc(50% - 10px); /* Two items per row for tablets */
    }
}

@media (max-width: 768px) {
    .grid-item {
        width: calc(50% - 10px); /* Two items per row for larger mobile screens */
    }
    .filter-buttons button {
        padding: 8px 10px;
        font-size: 0.9em;
    }
    .lightbox-content {
        flex-direction: column;
    }
    .lightbox-content img, .lightbox-text {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .grid-item {
        width: 100%; /* Single item per row for small mobile screens */
    }
    .filter-buttons button {
        padding: 8px 8px;
        font-size: 0.8em;
    }
    .grid-item-title {
        font-size: 1em;
    }
    .lightbox-text h3 {
        font-size: 20px;
    }
    .lightbox-text p, .testimonial-text {
        font-size: 14px;
    }
    .btn-details, .btn-close {
        font-size: 14px;
        padding: 8px;
    }
}

/* End of certification Lightbox */

.bg-about {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(50, 50, 50, 0.3)),url(../img/about-img.webp) no-repeat center center;
  background-size: cover;
}

.bg-cert {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(50, 50, 50, 0.3)),url(../img/bg-cert.webp) no-repeat center center;
  background-size: cover;
}

.bg-service {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(50, 50, 50, 0.3)),url(../img/bg1-service.webp) no-repeat center center;
  background-size: cover;
}

.bg-testing {
  background: linear-gradient(rgba(19, 53, 123, 0.8), rgba(19, 53, 123, 0.8)),url(../img/bg-testing.webp) no-repeat center center;
  background-size: cover;
}
.bg-choose {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(50, 50, 50, 0.3)), url(../img/packages-6.webp);
  background-size: cover;
}

.bg-testimonial {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/bg-testimonial.webp) no-repeat center center;
  background-size: cover;
}


.owl-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 40px;
  top: 50%;
  left: 0;
  margin-top: -20px;
  padding: 0 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #811f16;
  border-radius: 40px;
  font-size: 22px;
  opacity: .1;
  transition: .3s;
}

.owl-carousel:hover .owl-nav .owl-prev,
.owl-carousel:hover .owl-nav .owl-next {
  opacity: 1;
}

/* Icon Box Styling */
.icon-box {
	background-color: transparent;
    width: 80px; /* Width of the box */
    height: 80px; /* Height of the box */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px; /* Rounded corners for a softer look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for elegance */
}

.icon-image {
    width: 40px; /* Small icon size */
    height: auto; /* Maintain aspect ratio */
}

/* General styling */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-link {
    display: inline-block;
    font-size: 1.2rem;
    color: #ffffff;
    text-decoration: none;
    background-color: #07044e; /* Navy blue */
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

/* Hover effect for links */
.service-link:hover {
    color: #ffffff;
    background-color: #811f16; /* Red on hover */
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}
.contact-info .contact-info-item {
    min-height: 200px;
	padding: 20px;
    text-align: center;
  }

@media (min-width: 768px) {
  .contact-info .contact-info-item {
    min-height: 150px;
	padding: 20px;
    text-align: center;
  }
}
@media (min-width: 576) {
  .contact-info .contact-info-item {
    min-height: 100px;
	padding: 20px;
    text-align: center;
  }
}
.bg-infinix {
    background: linear-gradient(135deg, #fefefe, #cbc6c9, #b4a4b1);
	 box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
	 
}

.bg-light-maroon {
    background-color: #fffbbb; /* Light maroon */
}

.testi-carousel .owl-item img {
  width: 75px;
  height: 75px;
  border-radius: 75px;
}

.testi-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 10px;
  background: #dddddd;
}

.testi-carousel .owl-dot.active {
  background: #FFC600;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
background-color: #c5c7c6;
position: relative;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
overflow: hidden;
border-radius: 10px;

}

.faq .faq-container .faq-item:last-child {
margin-bottom: 0;
}

.faq .container img {
    width: 350px; /* Set width */
    height: 470px; /* Set height */
    margin: 0 30px 0 0; /* Maintain the margin */
    transition: 0.3s;
    cursor: pointer;
    display: block; /* Ensure proper block display for image */
    object-fit: cover; /* Scale the image without distortion */
    align-items: flex-start; /* Align to the start of the container */
	box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	border-radius: 10px;
	
}

.faq .faq-container .faq-item .faq-content {
display: grid;
grid-template-rows: 0fr;
transition: 0.3s ease-in-out;
visibility: hidden;
opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
margin-bottom: 0;
overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
position: absolute;
top: 20px;
right: 20px;
font-size: 24px;
line-height: 0;
transition: 0.3s;
cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
color:#811f16;
}

.faq .faq-container .faq-active h3 {
color:#811f16;
}

.faq .faq-container .faq-active .faq-content {
grid-template-rows: 1fr;
visibility: visible;
opacity: 1;
padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
transform: rotate(90deg);
color:#07044e; 
}

/* General Mobile Devices (Portrait) */
@media screen and (max-width: 480px) {
  .faq .faq-container .faq-item {
    padding: 15px; /* Reduce padding for smaller screens */
    margin-bottom: 15px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 16px; /* Adjust font size for better readability */
  }

  .faq .container img {
    width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
    margin: 0; /* Remove margin for smaller screens */
  }

  .faq .faq-container .faq-toggle {
    font-size: 20px; /* Slightly reduce toggle size */
    top: 15px; /* Adjust position */
    right: 15px;
  }
}

/* Tablets (Portrait) */
@media screen and (min-width: 481px) and (max-width: 768px) {
  .faq .faq-container .faq-item {
    padding: 18px;
    margin-bottom: 18px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 18px;
  }

  .faq .container img {
    width: 300px; /* Slightly smaller width for tablets */
    height: auto;
    margin: 0 auto; /* Center align on tablets */
    display: block;
  }

  .faq .faq-container .faq-toggle {
    font-size: 22px;
    top: 18px;
    right: 18px;
  }
}

/* iPad (Landscape and Portrait) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .faq .faq-container .faq-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 20px;
  }

  .faq .container img {
    width: 350px; /* Maintain the size closer to original */
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .faq .faq-container .faq-toggle {
    font-size: 24px;
    top: 20px;
    right: 20px;
  }
}

/* Large Screens and Desktops */
@media screen and (min-width: 1025px) {
  .faq .faq-container .faq-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 24px;
  }

  .faq .container img {
    width: 350px;
    height: 470px;
    margin: 0 30px 0 0;
  }

  .faq .faq-container .faq-toggle {
    font-size: 24px;
    top: 20px;
    right: 20px;
  }
}

/* Quote Button */
.btn-quote {
    background-color: #811f16; /* Red button */
    color: #ffffff; /* White text */
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-quote:hover {
    background-color: #000352; /* Navy Blue on hover */
}
/* Quote Button End*/

/*Laboratory Side bar */

.sidebar-container {
    display: flex;
    flex-wrap: wrap;
}

.sidebar {
    width: 100%;
    max-width: 250px;
    background-color: #000352;
	border-radius:10px;
}

.sidebar .menu {
    list-style: none;
    padding: 0;
}

.sidebar .menu li {
    padding: 15px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
	font-size:18px;
	font-weight:600;
	
}

.sidebar .menu li.active, .menu li:hover {
    background-color: #811f16;
    color: #fff;
	border-radius:10px;
}

.sidebar-container .content {
    flex: 1;
    padding: 20px;
}

.sidebar-container .content .content-item {
    display: none;
    transition: opacity 0.3s;
}

.sidebar-container .content .content-item img {
    float: left;
    margin-right: 15px;
    width: 150px;
    height: auto;
	border-radius:10px;
	/* transform: scale(1.2); */
}
.sidebar-container .content .content-item img:hover {
	transform: scale(0.95);
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        max-width: 100%;
    }

    .sidebar .menu li {
        text-align: left;
    }
}

/* Copyright footer Hover for Airtal Innovations */
.custom-link:hover {
        color: violet !important;
    }