
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .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;
    background-color: #C50026;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .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;
}
/* navbar */

/* =========================
   MULTI LEVEL DROPDOWN FIX
========================= */

/* Prevent bootstrap animation from affecting submenus */
.product-dropdown .dropdown-menu {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Main dropdown hidden by default */
.product-dropdown .main-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    z-index: 999;
}

/* Show ONLY main dropdown */
.product-dropdown:hover > .main-menu {
    display: block;
}

/* Submenu parent */
.dropdown-submenu {
    position: relative;
}

/* Submenu hidden */
.dropdown-submenu > .sub-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 260px;
    background: #fff;
    border-radius: 8px;
    padding: 8px 0;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Show ONLY hovered submenu */
.dropdown-submenu:hover > .sub-menu {
    display: block;
}

/* Hide others automatically */
.dropdown-submenu:not(:hover) > .sub-menu {
    display: none;
}

/* Right arrow icon */
.submenu-toggle::after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    float: right;
    font-size: 13px;
}

/* Hover styling */
.product-dropdown .dropdown-item:hover {
    background: #d52d0b;
    color: #fff;
}


/* =========================
   ORIGINAL NAVBAR STYLING
========================= */


.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 35px 15px;
    color: black;
    font-weight: 700;
    font-size: 15.5px;
    font-weight: 400;
    transition: .4s;
}


.brand-logo{
    width: 90px;
    height: 90px;
}

.brand-text{
    margin-left: 10px;
}

.brand-text h5{
    color: #D52D0B;
    font-size: 23px;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}








.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

/* Disable animation for product dropdown only */
@media (min-width: 1200px) {

    .navbar .nav-item:not(.product-dropdown) .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:not(.product-dropdown):hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        background: var(--bs-light);
        opacity: 1;
    }
}

.dropdown .dropdown-menu a:hover {
    background: #d52d0b;
    color: var(--bs-white);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991.98px) {

    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar{
        padding: 0px 20px;
    }

    .navbar-light .navbar-brand img {
        max-height: 90px;
    }

    .product-dropdown .main-menu,
    .dropdown-submenu .sub-menu {
        position: relative;
        left: 0;
        box-shadow: none;
    }

    .dropdown-submenu .sub-menu {
        padding-left: 15px;
    }
    .brand-text h5{
        display: none;
    }
}

@media (min-width: 992px) {

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .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: .5s;
        z-index: -1;
    } */

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}




/*  */

/*** 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%;
    background-color: #C50026 !important;

}

.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%;
    background-color: #C50026 !important;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-item{
    height: 700px;
}

.carousel-item img{
    height: 100%;
    object-fit: cover;
}

.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.068), rgba(0, 0, 0, 0.5)); */
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 199px;
        margin-top: 5px;
    }


    .carousel-item{
        height: 218px;
    }

    

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }
    
    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/breadcrumb-bg.jpg);
    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 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,
.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,
.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, .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(1.3);
}

.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;
}

.packages .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}
/*** 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, .2);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
    background: rgba(19, 53, 123, .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, .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, .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, .8), rgba(19, 53, 123, .8)), url(../img/tour-booking-bg.jpg);
    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 .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, .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,
.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, .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, .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, .6), rgba(19, 53, 123, .6)), url(../img/subscribe-img.jpg);
    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 */

.footer-main{
background:#fff;
color:#000;
padding-top:80px;
font-family:Inter,sans-serif;
}

/* LOGO */
.footer-logo{
height:100px;
/* margin-bottom:15px; */
margin-top: -18px;
}

.footer-company{
font-size:20px;
font-weight:700;
margin-bottom:15px;
}

.info{
    padding-left: 50px;
}

.footer-desc{
color:#555;
line-height:1.7;
font-size:15px;
}

/* TITLES */
.footer-title{
font-size:20px;
margin-bottom:25px;
font-weight:600;
}

/* LINKS */
.footer-links{
list-style:none;
padding:0;
margin:0;
}

.footer-links li{
margin-bottom:10px;
}

.footer-links a{
text-decoration:none;
color:#000;
font-size:15px;
position:relative;
padding-left:18px;
transition:.3s;
}

.footer-links a::before{
content:"›";
position:absolute;
left:0;
color:#D52D0B;
font-weight:bold;
}

.footer-links a:hover{
color:#D52D0B;
padding-left:22px;
}

/* CONTACT */
.footer-contact{
list-style:none;
padding:0;
}

.footer-contact li{
margin-bottom:18px;
display:flex;
gap:10px;
font-size:15px;
color:#333;
}

.footer-contact i{
color:#D52D0B;
margin-top:4px;
}

/* BOTTOM BAR */
.footer-bottom{
margin-top:60px;
border-top:1px solid #eee;
padding:25px 0;
}

.footer-bottom-wrap{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.right-copy a{
color:#D52D0B;
text-decoration:none;
font-weight:600;
}

.right-copy a:hover{
text-decoration:underline;
}

/* MOBILE */
@media(max-width:768px){

.footer-bottom-wrap{
flex-direction:column;
gap:10px;
text-align:center;
}

.info{
    padding-left: 9px;
}

}



/*  */
/* about us page css */


/* ===============================
   Sri Mahavir Packaging Section
=================================*/

.smp-about-section {
  padding: 70px 8%;
  background: linear-gradient(135deg, #ffffff 50%, #fdf5e6 50%);
  overflow: hidden;
}

.smp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* IMAGE AREA */

.smp-image-area {
  position: relative;
  flex: 1 1 500px;
  animation: smpFadeLeft 1.2s ease forwards;
}

.smp-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  width: fit-content;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  /* transform: perspective(1000px) rotateY(-5deg); */
  transition: 0.5s ease;
}

.smp-image-wrapper img {
  width: 500px;
  height: 550px;
  display: block;
  object-fit: cover;
}



.smp-floating-badge {
  position: absolute;
  bottom: 10px;
  right: 20px;
  background: #d52d0b;
  color: #fff;
  padding: 20px 30px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(213,45,11,0.4);
  /* animation: smpFloat 3s infinite ease-in-out; */
}

/* CONTENT AREA */

.smp-content-area {
  flex: 1 1 550px;
  animation: smpFadeRight 1.2s ease forwards;
}

.smp-subtitle {
  color: #EAC35E;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 26px;
}

.smp-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: #222;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.smp-title span {
  color: #d52d0b;
}

.smp-description {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 17px;
}

/* FEATURES */

.smp-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.smp-feature-box {
  background: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  border-left: 4px solid #d52d0b;
  font-weight: 500;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.smp-feature-box:hover {
  background: #EAC35E;
  color: #000;
  transform: translateY(-3px);
}

/* BUTTON */

.smp-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #d52d0b;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(213,45,11,0.3);
}

.smp-btn:hover {
  background: #EAC35E;
  color: #000;
  transform: translateY(-3px);
}

/* ANIMATIONS */

@keyframes smpFadeLeft {
  from {opacity: 0; transform: translateX(-80px);}
  to {opacity: 1; transform: translateX(0);}
}

@keyframes smpFadeRight {
  from {opacity: 0; transform: translateX(80px);}
  to {opacity: 1; transform: translateX(0);}
}

@keyframes smpFloat {
  0% {transform: translateY(0);}
  50% {transform: translateY(-10px);}
  100% {transform: translateY(0);}
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .smp-container {
    flex-direction: column;
  }

  .smp-title {
    font-size: 32px;
  }

  .smp-features {
    grid-template-columns: 1fr;
  }

  .smp-about-section {
    padding: 70px 5%;
  }
  .smp-image-wrapper img{
    width: 325px;
    height: 400px;
  }
}

@media (max-width: 576px) {
  .smp-title {
    font-size: 26px;
  }

  .smp-description {
    font-size: 14px;
  }

  .smp-btn {
    padding: 12px 25px;
  }
}




/*  */


/* otehr content  */

/*  */
.brand-lux-section {
  padding: 50px 3%;
  background: linear-gradient(135deg, #DC3545 0%, #C82D0E 100%);
}

.brand-lux-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.brand-lux-card {
  flex: 1;
  min-width: 250px;
  background: #ffffff;
  padding: 32px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  transition: 0.4s ease;
  border-top: 4px solid #EAC35E;
}

.brand-lux-icon {
  width: 60px;
  height: 60px;
  background: #EAC35E;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.brand-lux-icon i {
  color: #C50026;
  font-size: 30px;
}

.brand-lux-content span {
  font-size: 17px;
  color: #777;
  display: block;
  margin-bottom: 5px;
  letter-spacing: 0.4px;
}

.brand-lux-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #111;
}

.brand-lux-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.brand-lux-card:hover .brand-lux-icon {
  background: #C50026;
}

.brand-lux-card:hover .brand-lux-icon i {
  color: #EAC35E;
}

/* Tablet */
@media (max-width: 992px) {
  .brand-lux-card {
    flex: 0 0 45%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .brand-lux-card {
    flex: 0 0 100%;
  }
}

/*  */


/* product section */

.pro-products {
    padding: 60px 0;
    background: #f8f8f8;
    font-family: 'Poppins', sans-serif;
}

.pro-container {
    width: 90%;
    max-width: 1350px;
    margin: auto;
}

/* ===== Heading ===== */

.pro-heading-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 60px;
}

.pro-tag {
    font-size: 18px;
    letter-spacing: 2px;
    color: #C50026;
    font-weight: 600;
}

.pro-heading-left h2 {
    font-size: 50px;
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: 700;
    color: #222;
}

.pro-heading-right p {
    font-size: 22px;
    line-height: 1.4;
    color: #555;
    max-width: 420px;
}

/* ===== Layout ===== */

.pro-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* ===== Feature Card ===== */

.pro-feature-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.pro-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.pro-feature-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.pro-feature-content {
    padding: 40px;
}

.pro-feature-content h3 {
    font-size: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #C50026;
}

.pro-feature-content p {
    font-size: 24px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.3;
}

.pro-feature-content span {
    font-size: 17px;
    font-weight: 600;
    color: #EAC35E;
}

/* ===== Side Cards ===== */

.pro-side-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pro-small-card {
    display: flex;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.pro-small-card:hover {
    transform: translateY(-6px);
}

.pro-small-img img {
    width: 160px;
    height: 100%;
    object-fit: cover;
}

.pro-small-content {
    padding: 25px;
}

.pro-small-content h4 {
    font-size: 20px;
    color: #C50026;
    margin-bottom: 10px;
    text-transform: uppercase;

}

.pro-small-content p {
    font-size: 19px;
    line-height: 1.2;
    color: #555;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
    .pro-layout {
        grid-template-columns: 1fr;
    }

    .pro-heading-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .pro-feature-img img {
        height: 300px;
    }
}



/*  */


/* why choose us */

.wc-magazine-section {
    padding: 60px 0;
    background: #f9f7f3;
    font-family: 'Poppins', sans-serif;
}

.wc-container {
    width: 90%;
    max-width: 1350px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
}

/* ===== Intro Panel ===== */

.wc-intro {
    position: sticky;
    top: 120px;
}

.wc-label {
    font-size: 17px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #C50026;
}

.wc-intro h2 {
    font-size: 50px;
    text-transform: uppercase;
    margin: 20px 0;
    font-weight: 600;
    line-height: 1.1;
    color: #222;
}

.wc-intro p {
    font-size: 20px;
    color: #555;
    line-height: 1.7;
}

/* ===== Grid Structure ===== */

.wc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.wc-card {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.4s ease;
}

.wc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.1);
}

/* Wide Card */
.wc-wide {
    grid-column: span 2;
}

/* Number Styling */

.wc-number {
    font-size: 70px;
    font-weight: 700;
    color: #EAC35E;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 30px;
}

/* Text Styling */

.wc-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #C50026;
}

.wc-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Accent Border Effect */

.wc-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #C50026;
    border-radius: 18px 0 0 18px;
}

/* Intro Image Styling */

.wc-intro-image {
    margin-top: 40px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.wc-intro-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
    transition: 0.5s ease;
}

/* Subtle Hover Effect */

.wc-intro-image:hover img {
    transform: scale(1.05);
}

/* Soft Accent Border */

.wc-intro-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 3px solid #EAC35E;
    border-radius: 18px;
    opacity: 0.4;
    pointer-events: none;
}


/* Responsive */

@media (max-width: 992px) {
    .wc-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .wc-intro {
        position: relative;
        top: 0;
    }

    .wc-grid {
        grid-template-columns: 1fr;
    }

    .wc-wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .wc-intro h2 {
        font-size: 34px;
    }

    .wc-card {
        padding: 30px;
    }
}


/*  */


/* qna sections */

.faq-magazine {
    padding: 60px 0;
    background: #f9f7f3;
    font-family: 'Poppins', sans-serif;
}

.faq-container {
    width: 90%;
    max-width: 1350px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
}

/* Left Panel */

.faq-label {
    font-size: 13px;
    letter-spacing: 2px;
    color: #C50026;
    font-weight: 600;
}

.faq-left h2 {
    font-size: 50px;
    text-transform: uppercase;
    margin: 20px 0;
    line-height: 1.1;
    font-weight: 700;
    color: #222;
}

.faq-left p {
    font-size: 25px;
    color: #555;
    line-height: 1.7;
}

/* Right Side */

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 30px 0;
    transition: 0.3s ease;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 25px;
    cursor: pointer;
    position: relative;
}

.faq-question span {
    font-size: 32px;
    font-weight: 700;
    color: #EAC35E;
    opacity: 0.4;
}

.faq-question h4 {
    font-size: 20px;
    color: #C50026;
    flex: 1;
}

.faq-icon {
    width: 20px;
    height: 20px;
    border-right: 2px solid #C50026;
    border-bottom: 2px solid #C50026;
    transform: rotate(45deg);
    transition: 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.faq-answer p {
    margin-top: 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Active State */

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(-135deg);
}

.faq-item.active {
    background: rgba(197,0,38,0.03);
    padding-left: 20px;
    border-left: 4px solid #C50026;
    padding-right: 20px;
}

/* Responsive */

@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-left h2 {
        font-size: 34px;
    }
}




/*  */


/* testimonail */
.elite-testimonials{
padding:60px 8%;
background:#fff;
font-family:Inter, sans-serif;
}

.elite-wrap{
display:grid;
grid-template-columns:460px 1fr;
gap:120px;
align-items:center;
}

/* LEFT */
.elite-label{
font-size:17px;
letter-spacing:3px;
color:#D52D0B;
font-weight:600;
}

.elite-left h2{
font-size:65px;
line-height:1;
margin:25px 0;
text-transform: uppercase;
font-weight:700;
color:#111;
}

.elite-left p{
font-size:22px;
color:#555;
line-height:1.7;
max-width:420px;
}

.elite-controls{
margin-top:60px;
display:flex;
gap:18px;
}

.elite-controls button{
width:58px;
height:58px;
border-radius:50%;
border:1px solid #ddd;
background:#fff;
font-size:20px;
cursor:pointer;
transition:.35s;
}

.elite-controls button:hover{
border-color:#D52D0B;
color:#D52D0B;
transform:scale(1.08);
}

/* RIGHT */
.elite-right{
position:relative;
height:420px;
overflow:hidden;
}

.elite-slider{
height:100%;
position:relative;
}

/* CARD STACK SYSTEM */
.elite-card{
position:absolute;
width:100%;
height:100%;
padding:70px;
border:2px solid #eee;
background:#fff;
transition:all .8s cubic-bezier(.77,0,.18,1);
opacity:0;
transform:translateX(120px) scale(.92);
}

/* ACTIVE */
.elite-card.active{
opacity:1;
transform:translateX(0) scale(1);
z-index:3;
border-color:#EAC35E;
}

/* PREVIOUS CARD PREVIEW */
.elite-card.prev{
opacity:.25;
transform:translateX(-60px) scale(.9);
z-index:1;
}

/* NEXT CARD PREVIEW */
.elite-card.next{
opacity:.25;
transform:translateX(60px) scale(.9);
z-index:1;
}

/* QUOTE MARK */
.elite-quote-mark{
position:absolute;
top:5px;
left:45px;
font-size:150px;
color:#EAC35E;
opacity:.25;
font-family:serif;
}

/* TEXT */
.elite-text{
font-size:24px;
line-height:1.6;
margin-top:50px;
margin-bottom:60px;
color:#111;
}

/* USER */
.elite-user h4{
margin:0;
font-size:20px;
color:#D52D0B;
}

.elite-user span{
font-size:14px;
color:#777;
}


/* MOBILE */
@media(max-width:900px){

.elite-wrap{
grid-template-columns:1fr;
gap:80px;
}

.elite-left h2{
font-size:40px;
}

.elite-right{
height:480px;
}

.elite-card{
padding:40px 30px;
}

.elite-text{
font-size:19px;
}

}
