.carousel-caption/********** Template CSS **********/
:root {
    --primary: #000000;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark:#006600;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
body{
    font-family: "Poppins", sans-serif;
}
h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important; font-family: "Poppins", sans-serif;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


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


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

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

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0a0b0a77;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 590px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(15, 66, 41, .6), rgba(15, 66, 41, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}


/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(15, 66, 41, .6);
    background-image: url(../images/banner-1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-item:hover .service-text {
    background: rgba(186, 138, 56, 0.855);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: white;
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: rgb(255, 255, 255);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}


/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, .6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/
#testimonial{
    padding: 40px 0;
}
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Footer ***/
.footer{
    margin-top: -10px;
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #002e00;
}

.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: var(--primary);
}

ul{
    margin: 0;
    padding: 0;
}

.why-us-list li{
    list-style: none;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 0;
    background-image: url(../images/checkmark.png);
    background-repeat: no-repeat;
    background-position-y: center;
    padding-left: 30px
}
.logo{
   margin: 10px 0;
}

 
@media only screen and (min-width: 768px) and (max-width: 1260px){
    .navbar .navbar-nav .nav-link{
        margin-right: 10px;
        font-size: 14px;
    }
    #header-carousel .carousel-item {
        position: relative;
        min-height: 590px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


.portfolio-item{
width: 95% !important;
margin: 0 auto !important;
}
.bg-dark{
    background-color: #006600 !important;
}
.btn-primary{
    background-color: #006600;
    border: none !important;
}
.destination{
    width: 92% !important;
    margin: 0 auto;
    border: 1px solid rgb(204, 204, 204);
}

.call-background{
    background-image: url(../images/banner-1.webp);
    background-attachment: fixed;
    background-position: bottom;
}
.call-enquiry{
    background-color:#0066008f;
    padding: 60px 0;
}
.call-flex{
    justify-content: space-between;
    align-items: center;
}
.call-enquiry button{
    background-color: #ba8a38;
    height: 50px;
    padding: 10px;
    color: white;
    border: none;
}



.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 20px;
	left: 20px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.box{
    border: 1px solid white;
}
.about-banner{
    background-color: #002e00;
    background-image: url(../images/banner-1.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}
.about-banner h1{
    color: white;
    font-size: 58px;
}
.about-ban-bg{
    background-color: #0000004c;
    padding: 180px 0 50px 0;
}
.packages-img{
    width: 100%;
    height: auto;
}
.box-img{
    position: relative !important;
}
.box-text{
    background-color: #002e00;
   width: 200px;
   padding: 20px;
   text-align: center;
   position: absolute;
   bottom: 0;
}
.box-text p{
    color: white;
    font-size: 20px;
    font-weight: 700;
}
.box-text h3{
    color: white;
}
.box-text button{
    background-color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
}



#enquiry {
    padding-top: 30px;
  }
  
  .form-text {
    color: #006600;
    font-weight: 800;
    font-family: "Oswald", sans-serif;
  }
  
  .form-group {
    padding: 4px 0;
  
  }
  
  .form-control {
    border: 1px solid #006600;
    padding: 15px;
    border-radius: 0 !important;
  }
  
  .Submit-box {
    background-color: #006600;
    padding: 10px 15px;
    color: white;
    border: none;
    margin-top: 5px;
  }
  


  .contact-page {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 30px;
    gap: 20px;
  }
  
  .contact-box {
    width: 50%;
  }
  
  .contact-box h2 {
    text-align: center;
    font-size: 23px;
    font-weight: 700;
    background-color: #006600;
    padding: 10px 0;
    margin: 0;
    color: #fff;
  }
  
  .contact-box p {
    padding: 20px;
    text-align: center;
    border: 1px solid #d8d8d8;
    background-color: #0066000d;
    box-shadow: 1px 0 5px rgb(168, 167, 167)y;
    height: 180px;
    padding: 20px;
    color: #101010;
  }
  
  .vision-icon {
    text-align: center;
    background-color: #006600;
    border-radius: 60% 60% 0 0;
  }
  
  .vision-icon i {
    padding: 10px 0;
    font-size: 30px;
    color: #e2a437;
  }
  
  #main-product-page {
    padding: 20px 0 0 0;
  }
  
  .gold-product {
    display: flex;
    gap: 10px;
    padding-bottom: 20px;
  }

  .other-services{
    height: 320px;
  }
  .other-text{
    padding-top: 10px;
  }
.package-bottom{
    padding: 20px;
    border: 1px solid rgb(229, 229, 229);
}

  


header{
    color: rgb(0, 0, 0);
    background-color: rgba(255, 255, 255, 0);
    position: sticky;
    width: 100%;
    top: 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo{
    width: 300px;
    line-height: 1;
}
.logo img{
    width: 100%;
    height: auto;
    border-radius: 6px;
}
.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: black;
}


@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .cta-btn {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu>ul>li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: rgb(255, 255, 255) !important;
        font-size: 14px;
        padding:20px 2px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-transform: uppercase;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
       
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu .dropdown ul {
        margin: 0;
        background: white;
        display: block;
        position: absolute;
        visibility: hidden;
        left: 0;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu .dropdown .drop-main-box{
        margin: 0;
        background: white;
        display: flex;
        align-items: baseline;
        position: absolute;
        visibility: hidden;
        left: -344px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu .dropdown ul li {
        min-width: 300px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: black !important;
        text-transform: uppercase;
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: #ffffff !important;
        background-color: #00a651;
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
        margin-left: 39px;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }

}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: #ffffff;
        background-color: #fff;
        padding: 0 5px;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: rgb(255, 255, 255) !important;
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: #fff;
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: #fff;
        color: white;
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: #252525 !important;
        color: rgb(255, 255, 255);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 0px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #ffffff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgb(255, 255, 255);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}


.group-gallery{
	background-color: #f5fcf6;
	padding: 62px 0;
	text-align: center;
	color: #000;
}
.gallery_control_option{
	cursor: pointer;
	width: 300px;
    margin: 10px 0;
	margin-right: 20px;
	border: 1px solid #ba8a38;
	padding: 17px 0px;
	border-radius: 20px;
	font-size: 24px;
}
.hhh{
	padding: 60px 0 0 0;
}
.spacer{
	height: 20px;
}
.people,.animals,.home{
	display: none;
}
#orientation {
  float:right;
  display: none;
  margin-right:0 !important;
}
#orientation:after{
  content: "";
  display: inline-block;
  margin-left: 8px;
  position: relative;
  top: 3px;
  border: 5px solid transparent;
  border-top-color: #d1d1d1;
  transition: border .1s ease-in-out;
  position: relative;
}
#orientation_option_wrapper{
  position: absolute;
  z-index: 1;
  border-radius: 4px;
  min-width: 135px;
  box-shadow: 0 8px 16px rgb(0 0 0 / 16%);
  right: 0;
  background-color: rgb(255, 255, 255);
  padding: 10px 20px;
  margin-top: 10px;
  margin-right: 20px;
  min-width: 180px;
  display: none;
}
.orientation_option{
  color: #767676;
  margin-bottom: 10px;
  cursor: pointer;
}
.check{
  color: #000;
  margin-right: 10px;
  position: absolute;
}
.orientation_title{
  margin-left: 20px;
}
.nature_wrapper{
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
}
.nature_wrapper img{
 width: 100%;
}
.group-text{
	font-size: 24px;
	padding-bottom: 40px;
	padding-right: 20px;
	font-weight: 800;
}
.gallery-head{
	font-size: 56px;
	color: #000;
	line-height: 67px;
	padding-bottom: 50px;
	font-weight: 500 !important;
}
.people_wrapper{
	display: flex;
	justify-content: center;
	margin-top: -55px;
	padding-bottom: 20px;
}
.people_wrapper img{
	width: 100%;
}

.animals_wrapper{
	display: flex;
	justify-content: center;
	margin-top: -55px;
}
.package-main{
   padding-bottom: 50px;
}
.packages-img{
    margin-bottom: 20px;
}
.packages-img img{
    width: 92%;
    margin: 0 auto;
    border: 1px solid rgb(216, 216, 216);
}
.review-item{
   margin: 0 20px;
   padding: 20px;
   height: 200px;
   border: 1px solid rgb(222, 222, 222);
}
.display-1{
    font-size: 48px;
}


@media only screen and (min-width: 320px) and (max-width: 767px){
    .header{
        padding: 0 20px !important;
    }
.header .logo{
    width: 230px;
}
.call-flex{
    flex-wrap: wrap;
}
.display-1{
    font-size: 27px;
}
.about-banner h1{
    font-size: 35px;
}
.box-text{
    position: static;
    width: 100%;
}
.contact-page{
    flex-wrap: wrap;
}
.contact-box{
    width: 100%;
}
.review-item{
    height: 100%;
}
}
@media only screen and (min-width: 768px) and (max-width: 1199px){
    .logo{
        width: 350px;
    }
    .call-flex{
        flex-wrap: wrap;
    }
    .other-services{
        height: 390px;
    }
    .contact-page{
        flex-wrap: wrap;
    }
    .contact-box{
        width: 70%;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px){
    .other-services{
        height: 360px;
    }
    .contact-page{
        flex-wrap: wrap;
    }
}


.flight-button{
    position: fixed;
    bottom: 50%;
    right: -110px;
    transform: rotate(271deg);
    z-index: 9999;
}
.flight-text{
    background-color: #e52626;
    color: white;
    padding: 7px 20px;
    font-weight: 600;
    border-radius: 10px;  
    animation: 1s vision infinite;  
    box-shadow: 800ms 0 11px rgb(206, 251, 206);
}
.flight-text:hover{
    color: white
}
@keyframes vision{
    0%{}
    50%{
        background-color: #006600;
    }
    100%{
    }
}
.swiper-slide{
    padding-bottom: 30px;
}
.review-star i{
    color: #006600;
}

#tick li, #tick2 li { list-style-type:none; float:left; padding-right:70px; position:absolute; left:0px; font-weight: 700;}
#tick, #tick2 { position:relative; display:block; width:100%; margin:0; content:""; display:table; height:0px; }
#outer{width:100%;height:25px; overflow:hidden; background:#ffffff;}
#outer a {text-decoration:none; color:#d00000; font-family:Calibri; font-size:18px;}
#outer a:hover {border-bottom:2px solid #777;}
#gallery{
    padding: 50px 0;
}
#gallery img{
    margin-bottom: 20px;
}


#flights{
    padding: 50px 0;
}

.table-main{
    overflow-x: scroll;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: white;
  }

  thead {
    background-color: #006600;
    color: white;
  }

  th, td {
    padding: 12px 16px;
    text-align: center;
  }

  tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }

  tbody tr:hover {
    background-color: #e6f2ff;
    transition: background-color 0.3s;
  }

  th {
    font-size: 16px;
    text-transform: uppercase;
  }

  td {
    font-size: 15px;
  }

  .fare {
    font-weight: bold;
    color: #006600;
  }





  .nav-2{
    display: none;
}
header {
    color: rgb(0, 0, 0);
    background-color: rgba(255, 255, 255, 0) !important;
    padding: 7px 0;
    position: fixed;
    width:100%;
    transition: all 0.5s;
    z-index: 997;
    flex-wrap: wrap !important;
}

.header .logo{
    line-height: 1;
    padding-top: 10px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: black;
}
.navmenu{
    padding: 0 30px;
}
.header {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
    padding:0px 40px;
  }
  
  /* Style when scrolled */
  .header.scrolled {
    background-color: #ffffff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .page-two .header {
    background-color: transparent;
  }
  
  .page-two .header a {
    color: white !important;
  }
  
  .page-two .header.scrolled {
    background-color: white;
  }
  
  .page-two .header .logo .scrolled{
    display: flex !important;
  }
  .page-two .header.scrolled a {
    color: black !important;
  }



  @media (max-width: 768px){
    .page-two .header a{
        color: black !important;
    }
  }


  .header.scrolled {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  /* Logos default */
  .logo {
    display: none;
    transition: opacity 0.3s ease;
  }
  
  .logo1 {
    display: block;
    transition: opacity 0.3s ease;
  }
  .black {
    display: none;
    transition: opacity 0.3s ease;
  }
  
  .white {
    display: block;
    transition: opacity 0.3s ease;
  }
  /* When scrolled: hide white logo */
  .header.scrolled .logo1 {
    display: none;
  }
  
  .header.scrolled .logo {
    display: block;
  }
  .header.scrolled .white {
    display: none;
  }
  
  .header.scrolled .black {
    display: block;
  }
  .mobile-nav-toggle{
    display: none;
  }
@media (max-width: 999px) {
    .page-two .header a{
        color: black !important;
    }
    .header .logo {
        order: 1;
    }
   
    .header .cta-btn {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

/* Desktop Navigation */
@media (min-width: 999px) {
    .navmenu {
        padding: 0;
        margin-right: 30px;
    }

      
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu>ul>li {
        white-space: nowrap;
        padding: 4px 6px;
    }

    .navmenu>ul>li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: #ffffff !important;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 100%;
        bottom: -3px;
        left: 0;
        background-image: url(../imgs/highlight.webp) !important;
	background-repeat: no-repeat !important;
	background-position: bottom !important;
        visibility: hidden;
        width: 100px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: color-mix(in srgb, var(--nav-color) 90%, white 15%);
    }

    .navmenu .dropdown ul {
        margin: 0;
        background: white;
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        margin-top: -12px;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }



    .navmenu .dropdown ul a {
        padding: 5px 20px;
        font-size: 15px;
        text-transform: none;
        color: black !important;
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
 .btn-primary{
    display: none !important;
 }
    .mobile-nav-toggle {
        color: #6d6964;
        font-size: 28px;
        line-height: 0;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: rgb(255, 255, 255) !important;
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: #006600;
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: #006600;
        color: rgb(0, 0, 0);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: #006600 !important;
        color: rgb(255, 255, 255);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #adabab;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgb(255, 255, 255);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
    .mobile-nav-toggle{
        display: block;
    }
    .logo {
        display: block ;
        transition: opacity 0.3s ease;
      }
      .logo1 {
        display: none ;
        transition: opacity 0.3s ease;
      }
}



table {
    border-collapse: collapse;
    width: 100%;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  thead {
    background-color: #006600;
    color: white;
  }
  th, td {
    padding: 12px 15px;
    text-align: left;
    vertical-align: top;
    border: 1px solid #ddd;  /* <-- Adds border */
  }
  tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  tbody tr:hover {
    background-color: #e6f0ff;
  }
  td em {
    color: #555;
    font-style: italic;
    font-size: 0.9em;
  }




  /**
 * Tabs
 */
.tabs {
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
}
.tabs label {
	order: 1; 
	display: block;
	padding: 1rem 2rem;
	margin-right: 0.2rem;
	cursor: pointer;
  background: #006600;
  color: white;
  font-weight: bold;
  transition: background ease 0.2s;
}
.tabs .tab {
  order: 99; 
  flex-grow: 1;
	width: 100%;
	display: none;
  padding: 1rem;
  background: #fff;
}
.tabs input[type="radio"] {
	display: none;
}
.tabs input[type="radio"]:checked + label {
	background: #000000;
}
.tabs input[type="radio"]:checked + label + .tab {
	display: block;
}

@media (max-width: 45em) {
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
  .tab img{
    width: 100%;
}
}

.accordion-item{
    margin: 16px 0;
}
.accordion-button{
    font-weight: 600;
    border: 1px solid rgb(228, 226, 226);
}
#hajj-intro{
    scroll-margin: 100px;
}
#hajj-story{
    scroll-margin: 100px;
}
#haj-journey{
    scroll-margin: 100px;
}
#soul-of-haj{
    scroll-margin: 100px;
}
#hajj-perform{
    scroll-margin: 100px;
}
#hajj-perform{
    scroll-margin: 100px;
}
#itinerary{
    scroll-margin: 100px;
}
#things-to-do{
    scroll-margin: 100px;
}
.fixed-box{
    position: sticky;
    top: 200px;
    background-color: #006600;
    color: white;
    border-radius: 20px;
    padding: 20px;
    margin: 50px 0;
}
.fixed-box a{
    color: rgb(0, 0, 0);
}
.fixed-box li{
    padding: 10px 0;
    margin: 10px 0;
    background-color: #ffffff;
}
li{
    list-style: none;
}


.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input[type="text"],
input[type="email"],
textarea {
    width: calc(100% - 20px); /* Adjust for padding */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

button {
    background-color: #006600;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.container-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
}