/*** 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 {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white);
    border: none;
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}

/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-secondary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title-sub {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

/*** 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;
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}
/*** Topbar End ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: "Poppins", sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #555 !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: 0.5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: #555 !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: 0.5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;

        transition: 0.5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white) !important;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-white) !important;
    transition: 0.5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        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;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: var(--bs-light) !important;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(4, 10, 16, 0.705);
}
.btn-close {
    color: var(--bs-white);
    background: var(--bs-primary);
}
/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(#4a6b3ac7, #4a6b3ab6),
        url("/upload/bgbackend.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
/*** Single Page Hero Header End ***/

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 75vh;
}

.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;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}
/*** Carousel Hero Header End ***/

/*** destinations ***/

.destinations-section .card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    cursor: pointer;
}

.destinations-section .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease; /* smooth zoom transition */
}

.destinations-section .card:hover img {
    transform: scale(1.1); /* zoom in */
}

.destinations-section .card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: #4a6b3a;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.destinations-section .card-info h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
}

.destinations-section .owl-carousel.destinations-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.destinations-section .owl-carousel.destinations-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.destinations-section .owl-carousel.destinations-carousel .owl-nav .owl-prev,
.destinations-section .owl-carousel.destinations-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.destinations-section
    .owl-carousel.destinations-carousel
    .owl-nav
    .owl-prev:hover,
.destinations-section
    .owl-carousel.destinations-carousel
    .owl-nav
    .owl-next:hover {
    color: var(--bs-secondary);
}
/* end destinations */

/* packages */

.package-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover img {
    transform: scale(1.05);
}

.package-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--bs-primary);
    margin-bottom: 8px;
}

.package-desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

.package-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--bs-primary);
    margin-bottom: 15px;
}

.book-btn {
    display: inline-block;
    background: var(--bs-primary);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    transition: background 0.3s ease;
}

.book-btn:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.packages-section .owl-carousel.packages-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.packages-section .owl-carousel.packages-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.packages-section .owl-carousel.packages-carousel .owl-nav .owl-prev,
.packages-section .owl-carousel.packages-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.packages-section .owl-carousel.packages-carousel .owl-nav .owl-prev:hover,
.packages-section .owl-carousel.packages-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}
/* end packages */
/* single pageckage  */

/* Package Content */
.single-package .package-details {
    margin-top: -100px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.single-package .package-details h2 {
    color: var(--bs-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.single-package .package-details h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.single-package .package-details p {
    color: var(--light-text);
    line-height: 1.8;
}

/* Tabs */
.single-package .nav-tabs {
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}

.single-package .nav-tabs .nav-link {
    border: none;
    color: var(--light-text);
    font-weight: 600;
    padding: 12px 25px;
    margin-right: 5px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.single-package .nav-tabs .nav-link.active {
    color: var(--bs-primary);
    background-color: transparent;
    border-bottom: 3px solid var(--bs-primary);
}

.single-package .nav-tabs .nav-link:hover {
    color: var(--bs-primary);
    border-color: transparent;
}

/* Itinerary Accordion */
.single-package .accordion {
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
}

.single-package .accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.single-package .accordion-button {
    background-color: transparent;
    padding: 20px 0;
    font-weight: 500;
}

.single-package .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: var(--bs-primary);
}

.single-package .accordion-button:focus {
    box-shadow: none;
}

.single-package .itinerary-day-range {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--bs-primary);
    margin-bottom: 5px;
}

.single-package .itinerary-location {
    color: var(--secondary-color);
    margin-bottom: 0;
    font-size: 1rem;
}

.single-package .itinerary-location i {
    margin-right: 8px;
    color: var(--accent-color);
}

.single-package .itinerary-description {
    color: var(--light-text);
    padding-left: 15px;
    border-left: 3px solid var(--accent-color);
    line-height: 1.8;
}

/* Book Now Tab */
.single-package .book-now-tab {
    padding: 20px 0;
}

.single-package .price-tag {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--bs-primary);
    margin-bottom: 20px;
}

.single-package .price-tag small {
    font-size: 1rem;
    color: var(--light-text);
}

.single-package .included-list {
    list-style-type: none;
    padding-left: 0;
}

.single-package .included-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.single-package .included-list li:last-child {
    border-bottom: none;
}

.single-package .included-list i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Gallery */
.single-package .gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.single-package .gallery-item img {
    transition: transform 0.5s ease;
}

.single-package .gallery-item:hover img {
    transform: scale(1.05);
}

.single-package .gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.single-package .gallery-item:hover .overlay {
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .single-package .package-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .single-package .package-hero {
        height: 50vh;
        min-height: 400px;
    }

    .single-package .package-hero h1 {
        font-size: 2.2rem;
    }

    .single-package .package-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .single-package .package-details {
        margin-top: -50px;
        padding: 25px;
    }

    .single-package .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .single-package .package-hero h1 {
        font-size: 2rem;
    }

    .single-package .package-details {
        padding: 20px 15px;
    }
}
/* send single package  */
/* call to action */
.cta-section {
    position: relative;

    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Gradient overlay */
.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #000000d1, #000000d1);
    z-index: 1;
}

.cta-overlay {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease;
}

.cta-overlay h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.cta-overlay p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-btn {
    background: var(--bs-primary);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
    transform: translateY(-2px);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .cta-overlay h2 {
        font-size: 1.8rem;
    }
    .cta-overlay p {
        font-size: 1rem;
    }
}

/* end call to action */
.why-choose-us {
    background: var(--bs-primary);
    padding: 60px 20px;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.why-choose-us .subtitle {
    font-size: 1rem;
    color: #777;
    margin-bottom: 40px;
}

.why-choose-us .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.why-choose-us .feature-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-choose-us .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.why-choose-us .icon {
    margin-bottom: 15px;
}

.why-choose-us .feature-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
}

.why-choose-us .feature-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* blogs */

.blog-section {
    background: #f9f9f9;

    text-align: center;
}

.blog-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.subtitle {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
    text-align: left;
    flex: 1;
}

.blog-date {
    font-size: 0.85rem;
    color: #999;
    display: block;
    margin-bottom: 8px;
}

.blog-content h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
}

.blog-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.blog-content .read-more {
    text-decoration: none;
    font-weight: bold;
    color: var(--bs-primary);
    transition: color 0.3s ease;
}

.blog-content .read-more:hover {
    color: var(--bs-secondary);
}

.blog-section .owl-carousel.blogs-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.blog-section .owl-carousel.blogs-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.blog-section .owl-carousel.blogs-carousel .owl-nav .owl-prev,
.blog-section .owl-carousel.blogs-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.blog-section .owl-carousel.blogs-carousel .owl-nav .owl-prev:hover,
.blog-section .owl-carousel.blogs-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}

/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial
    .owl-carousel.testimonial-carousel
    .testimonial-item
    .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial
    .owl-carousel.testimonial-carousel
    .testimonial-item
    .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}
/*** testimonial end ***/
/* team */
.team-container {
    display: flex;
    flex-wrap: wrap;

    gap: 30px;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.member-img {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-img img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
    text-align: left;
}

.member-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.member-info span {
    color: var(--bs-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.member-info p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f4f6f7;
    color: var(--bs-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--bs-primary);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .team-member {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .team-container {
        gap: 20px;
    }

    .team-member {
        max-width: 100%;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 30px 15px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .member-info {
        padding: 20px;
    }
}
/*** Contact Start ***/
.contact .office .office-item {
    text-align: left;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}
/*** Contact End ***/
/* single blog */

/* Related Posts */
.single-blog .related-posts .post {
    display: flex;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.single-blog .related-posts .post:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #fff;
}
.single-blog .related-posts .post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

/* Sidebar */
.single-blog .blog-sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.single-blog .blog-sidebar ul {
    list-style: none;
    padding: 0;
}
.single-blog .blog-sidebar ul li a {
    display: block;
    padding: 8px 0;
    color: #333;
    transition: 0.3s;
}
.single-blog .blog-sidebar ul li a:hover {
    color: #0d6efd;
}

/*** Footer Start ***/
.footer {
    background: var(--bs-primary);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-secondary) !important;
}
/*** copyright end ***/
