@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins/Poppins-Regular.ttf);
}
html,
body {
    overflow-x: hidden;
}
body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 400;
    text-align: left;
}
p {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    transition: 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #0a1428;
    font-style: normal;
    margin-bottom: 0;
    margin-top: 20px;
    line-height: 1.2;
    font-weight: 600;
    -webkit-transition: .5s;
    transition: .5s;
}
h1 {
    font-size: 28px;
}

h2 {
    font-size: 25px;

}

h3 {
    font-size: 21px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

a {
    color: #012549;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:focus,
.btn:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
    text-decoration: none;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
    -webkit-transition: .5s;
    transition: .5s;
}


ul, ol {
    margin: 0px;
    padding: 0px;
}

a,
i,
ol,
li,
ul {
    font-style: normal;
    font-weight: 400;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

*::-moz-selection {
    background: #024d2e;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #024d2e;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #024d2e;
    color: #fff;
    text-shadow: none;
}



/*==============================================
 Header section
==============================================*/
.navbar {
    background: #00332e;
    padding: 0;
}

.logo {
    height: 50px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    margin-right: 10px;
    font-size: 15px;
    padding: 20px 0;
}

.navbar-nav .dropdown-menu {
    background: #00332e;
    border: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item.active {
    background: #6D5D01;
    color: #fff;
}

.navbar-nav .dropdown-menu .dropdown-item {
    color: white;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar .icon-buttons {
    display: flex;
    align-items: center;
}

.search-icon, .sidebar-icon {
    color: white;
    font-size: 20px;
    margin-right: 20px;
    cursor: pointer;
}

.search-box {
    display: none;
    position: absolute;
    top: 65px;
    right: 80px;
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.search-box input {
    padding-right: 40px;
}
.search-box button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: black;
    font-size: 16px;
    cursor: pointer;
}
.search-box button:focus {
    outline: none;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 300px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 2;
}

.sidebar.active {
    right: 0;
}

.close-sidebar {
    font-size: 24px;
    cursor: pointer;
    float: right;
}
.sidebar .logo {
    margin-top: 15px;
}
.sidebar .logo img {
	max-height: 34px;
}

.sidebar .info {
    margin-top: 20px;
    border-top: 1px solid #00332E;
}
.sidebar .info h5 {
    margin-top: 20px;
    font-size: 18px;
    font-size: 650;
}
.sidebar .social-icons {
    margin-top: 30px;
}
.sidebar .social-icons a {
	color: #00332E;
    background: #fff;
    display: inline-block;
    margin-right: 5px;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-bottom: 10px;
    border: 1px solid #00332E;
    border-radius: 50%;
    transition: all 0.4s ease;
}
.sidebar .social-icons a:hover {
	background: #00332E;
	color: #fff;
}


.menu-icon {
    color: white;
    font-size: 24px;
    cursor: pointer;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    padding: 20px;
    z-index: 1000;
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu .close-menu {
    font-size: 26px;
    font-weight: 650;
    cursor: pointer;
    float: right;
}
.mobile-menu .nav-logo {
	position: relative;
	padding: 20px 20px;
	text-align: left;
	margin-top: 25px;
}
.mobile-menu .nav-logo img {
	max-width: 150px;
}
.mobile-menu .mobile-search {
	padding: 0 0 15px 0;
}
.mobile-menu .mobile-search form {
  position: relative;
}
.mobile-menu .mobile-search input::placeholder {
  font-size: 15px;
}
.mobile-menu .mobile-search input {
	display: block;
	width: 100%;
	border: none;
	padding: 10px 45px 10px 20px;
	font-size: 15px;
	height: 45px;
	background: #f3f3f4;
	color: #020615;
	border-radius: 0;
}
.mobile-menu .mobile-search button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	padding: 0;
	right: 20px;
	line-height: 1;
	background: transparent;
	color: #020615;
}
.mobile-menu ul {
    padding-left: 0;
}
.mobile-menu .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}
.mobile-menu .menu-item a,
.mobile-menu .submenu li a{
    text-decoration: none;
    color: #212529;
}
.mobile-menu .menu-item a:hover,
.mobile-menu .submenu li a:hover {
    color: #00332E;
}
.mobile-menu .submenu {
    display: none;
    padding-left: 10px;
}
.mobile-menu .submenu li {
	position: relative;
	display: block;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu .submenu li:first-child {
	border-top: none;
}
.mobile-menu .submenu li a {
    font-weight: 600;
}
.mobile-menu .social-icons {
	display: flex;
	position: relative;
	text-align: center;
	padding: 30px 10px 20px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.mobile-menu .social-icons li {
	position: relative;
	display: inline-block;
	margin: 0px 6px 6px;
}
.mobile-menu .social-icons li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	position: relative;
	line-height: 23px;
	font-size: 14px;
	color: #00332E;
	transition: all 500ms ease;
	border: 1px solid #efefef;
	border-radius: 0;
	text-decoration: none;
}
.mobile-menu .social-icons li a:hover {
    background: #00332E;
    color: #fff;
}

@media (max-width: 991px) {
    .navbar .icon-buttons {
        display: none;
    }
}

@media (min-width: 992px) {
    .menu-icon {
        display: none;
    }
}

@media (max-width: 991px) {
    .menu-icon {
        position: absolute;
        right: 20px;
        top: 25px;
    }
}



/*********************************
 * Hero slides
 * ******************************/
 .carousel-slide-inner {
  min-height: 450px;
  height: auto;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 0;
}
.carousel-slide-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 46, 0.7);
}

.carousel-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 30px;
  z-index: 2;
}

.carousel-text {
  max-width: 50%;
}

.carousel-text h1 {
  font-size: 2.1rem;
  margin-bottom: 1.3rem;
  font-weight: 700;
  color: #d3b613;
}

.carousel-text p {
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.btn-shop {
  background-color: #6D5D01;
  color: #fff;
  padding: 10px 25px;
  font-weight: 600;
  border: none;
}

.btn-shop:hover {
  background-color: #00332E;
  color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  background: transparent;
  border: none;
  z-index: 2;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-icon {
  background-color: white;
  border-radius: 50%;
  padding: 12px 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #000;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


@media (max-width: 768px) {
  .carousel-content {
    flex-direction: column;
    text-align: center;
}

.carousel-text {
  max-width: 95% !important;
}

.carousel-text h1 {
    font-size: 2rem;
}

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



/*==============================================
 Home About
==============================================*/
.about-section {
  padding: 50px 0;
  background-color: #daddce;
}

.about-title {
  font-weight: 800;
  font-size: 2.5rem;
}

.about-text {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-about {
  background-color: #00332E;
  color: #fff;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 6px;
  border: none;
}

.btn-about i {
  margin-left: 8px;
}
.btn-about:hover {
    background-color: ;
}

.about-images img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.about-images .row > div {
  padding: 7px;
}

@media (min-width: 992px) {
  .img-grid {
    display: grid;
    grid-template-areas:
    "img1 img2"
    "img3 img4";
    grid-template-columns: 1fr 1fr;
    grid-gap: 14px;
}

.img1 { grid-area: img1; }
.img2 { grid-area: img2; }
.img3 { grid-area: img3; }
.img4 { grid-area: img4; }
}
@media (max-width: 767px) {
    .img2, .img3, .img4 {
        display: none;
    }
}

.home-destinations-area{
  position: relative;
  padding: 40px 0;
}
.home-destinations-area .destination-card {
  margin-bottom: 20px;
}


.why-home-area {
  background-color: #f9f9f9;
  padding: 70px 0;
  font-family: 'Poppins', sans-serif;
}
.why-home-area .section-title {
  color: #00332E;
  font-family: 'Pacifico', cursive;
  font-size: 1.25rem;
}
.why-home-area .main-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111;
}
.why-home-area .feature-card {
  background-color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  width: 100%;
}
.why-home-area .feature-icon {
  background-color: rgba(0, 51, 46, 0.5);
  padding: 0.6rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-home-area .feature-icon i {
  color: #002b27;
  font-size: 1.25rem;
}
.why-home-area .right-image {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  object-fit: cover;
}




.video-area {
  background-color: #00332E;
  padding: 70px 0;
  color: white;
  font-family: 'Poppins', sans-serif;
}
.video-area .headline {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}
.video-area .video-wrapper {
  border-radius: 0.75rem;
  overflow: hidden;
  padding: 0;
}
.video-area video {
  width: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
}





/*==============================================
 Home Blog
==============================================*/
.home-blog-area {
  position: relative;
  padding: 40px 0;
}
.home-blog-area .blog-card {
    margin: 10px;
}



/*==============================================
 About Us Page
==============================================*/
.about-hero-section {
    background: url('../images/hero-image.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}
.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 46, 0.8);
}
.about-hero-content {
    position: relative;
    z-index: 1;
}
.about-hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}
.about-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}
.about-section-title {
    color: #00332E;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    font-size: 2rem;
    position: relative;
}
.about-section-title::after {
    content: '';
    width: 80px;
    height: 3px;
    background-color: #6D5D01;
    display: block;
    margin: 8px auto 0;
}
.about-content-section {
    padding: 50px 20px;
}
.about-content-section p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 10px;
}


.services-section {
    padding: 60px 20px;
    background: linear-gradient(rgba(0, 51, 46, 0.8), rgba(0, 51, 46, 0.8)), url('../images/services-bg.jpg') no-repeat center center/cover;
    color: white;
}
.services-title {
    text-align: center;
    font-size: 2.0rem;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    color: #fff;
}
.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}
.service-item:hover {
    transform: scale(1.05);
}
.service-icon {
    font-size: 40px;
    color: #FFD700;
    flex-shrink: 0;
}
.service-content h4 {
    color: #bfa303;
    font-weight: bold;
}
@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        text-align: center;
    }
}


.why-choose-us {
    background-color: #fff;
    padding: 80px 20px;
}
.why-choose-us h2 {
    text-align: center;
    font-size: 2.0rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #00332E;
}
.why-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.why-item:hover {
    transform: translateY(-5px);
}
.why-icon {
    font-size: 2.5rem;
    color: #6D5D01;
    margin-bottom: 25px;
}
.why-item h4 {
    font-weight: bold;
    color: #00332E;
    margin-bottom: 5px;
}



/*==============================================
 CTA section
==============================================*/
.cta-section {
    background: linear-gradient(to right, #00332E, #05613A);
    padding: 60px 0;
}
.cta-section h2 {
    font-size: 2.5rem;
    color: #fff;
}
.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}
.cta-section .btn-lg {
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 50px;
}



/*==============================================
 Destinations Page
==============================================*/
.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: white;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 2;
}

.destination-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}

.destination-name:hover {
  color: #00332E;
}

.tour-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #6D5D01;
  color: white;
  padding: 3px 10px;
  font-size: 0.8rem;
  border-radius: 5px;
  z-index: 2;
}

a.destination-link {
  text-decoration: none;
  display: block;
  height: 100%;
}



/*==============================================
 Destination Page
==============================================*/
.destination-area {
    position: relative;
    background-color: #f8f9fa;
    padding: 30px 0;
}
.destination-container {
    max-width: 1200px;
}
.destination-content {
    padding: 0;
}
.destination-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 0;
}
.destination-title {
    font-weight: bold;
    margin-top: 10px;
}
.destination-content ul, .destination-content ol {
    padding-left: 20px;
}
.destination-content ul li {
    list-style: disc;
}
.destination-content a:hover {
    color: #024d2e;
}
.destination-sidebar {
    padding-left: 20px;
}
.latest-destination {
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.latest-destination h5 {
    margin-top: 0;
    font-size: 20px;
}
.latest-destination .destination {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.latest-destination .destination img {
    width: 70px;
    height: 50px;
    margin-right: 10px;
}
.latest-destination .destination-title {
    font-size: 15px;
    line-height: 19px;
    font-weight: bold;
}
.latest-destination .destination-title a:hover {
    color: #024D2E;
    font-weight: 600;
}


/*==============================================
 Tours Page
==============================================*/
.tour-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.tour-card .card-title {
  transition: color 0.3s ease;
}
.tour-card:hover .card-title {
  color: #00332E;
}
.tour-card .price {
  color: #00332E;
  font-weight: bold;
  font-size: 1.25rem;
}
.tour-card .explore-btn {
  background-color: #00332E;
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.tour-card .explore-btn:hover {
  background-color: #6D5D01;
  color: #fff;
  transform: translateY(-2px);
}


/*==============================================
 Tour Page
==============================================*/
.tour-area {
    position: relative;
    background-color: #f8f9fa;
    padding: 30px 0;
}
.tour-container {
    max-width: 1200px;
}
.tour-content {
    padding: 0;
}
.carousel-item img {
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}
.tour-title {
    font-weight: bold;
    margin-top: 10px;
}
.tour-content .badge {
  font-size: 0.9rem;
  line-height: 1.2;
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  padding: 10px 15px 5px;
}

.tour-content .fa-clock,
.tour-content .fa-users,
.tour-content .fa-child {
  font-size: 1.2rem;
  color: #00332E;
}

.tour-content .badge strong {
  font-size: 0.8rem;
  font-weight: bold;
}

.tour-content .content .card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}
.tour-content ul, .tour-content ol {
    padding-left: 20px;
}
.tour-content ul li {
    list-style: disc;
}
.tour-content a:hover {
    color: #024d2e;
}

.day-item {
  position: relative;
  padding-left: 40px;
}

.dot-circle {
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #00332E;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dot-circle:first-child {
  font-size: 1rem;
  color: white;
}

.day-item::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 0;
  left: 10px;
  width: 2px;
  background-image: linear-gradient(to bottom, #e0e0e0 50%, transparent 50%);
  background-size: 10px 10px;
  z-index: -1;
}

.day-item h4 {
    margin-top: 8px;
}

.day-item .card {
  border: none !important;
  box-shadow: none !important;
}

.collapse.show + .card.card-body {
  background-color: #f8f9fa;
}

#expandAllBtn {
  cursor: pointer;
}

.day-item .btn-outline-secondary {
  border: none;
  color: #6c757d;
  background: none;
  padding: 0;
}

.day-item .btn-outline-secondary:hover {
  color: #000;
}

.day-item .fa-plus,
.day-item .fa-minus {
  font-size: 1.2rem;
}

.tour-sidebar {
    padding-left: 20px;
}
.latest-tour {
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.latest-tour h5 {
    margin-top: 0;
    font-size: 20px;
}
.latest-tour .tour {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.latest-tour .tour img {
    width: 70px;
    height: 50px;
    margin-right: 10px;
}
.latest-tour .tour-title {
    font-size: 15px;
    line-height: 19px;
    font-weight: bold;
}
.latest-tour .tour-title a:hover {
    color: #024D2E;
    font-weight: 600;
}



/*==============================================
 Flight Booking Page
==============================================*/
.booking-section {
    padding: 50px 0;
}
.booking-title {
    font-size: 22px;
    font-weight: bold;
    color: #00332E;
    margin-bottom: 10px;
}
.booking-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}
.booking-form input, .booking-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
}
.booking-form .btn-custom {
    background-color: #6D5D01;
    color: white;
    border-radius: 10px;
    padding: 14px 22px;
    font-size: 16px;
    border: none;
}
.booking-form .btn-custom:hover {
    background-color: #00332E;
}



/*==============================================
 Contact Us Page
==============================================*/
.contact-section {
    padding: 60px 0;
}
.contact-info {
    color: #00332E;
}

.contact-title {
    font-size: 16px;
    color: #00332E;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-title::before {
    content: "";
    width: 50px;
    height: 2px;
    background-color: #00332E;
    display: inline-block;
}
.contact-info h2 {
    font-weight: bold;
}
.contact-info .icon {
    width: 50px;
    height: 50px;
    background-color: #6D5D01;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}
.contact-form input, .contact-form textarea {
    background-color: #f8f9fa;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}
.contact-form textarea {
    height: 150px;
    resize: none;
}
.contact-form button {
    background-color: #6D5D01;
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}
.contact-form button:hover {
    background-color: #00332E;
}
.contact-section .social-icons {
    border-top: 1px dashed #333;
    padding: 20px 0;
}
.contact-section .social-icons a {
    color: #00332E;
    font-size: 18px;
    margin-right: 10px;
    text-decoration: none;
}




/*=======================================
   Blog List
========================================*/
.blog-area {
  position: relative;
  padding: 40px 0;
}
.blog-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card .card-body {
  padding: 20px;
}
.blog-meta {
  font-size: 14px;
  color: #6c757d;
}
.blog-meta i {
  color: #024d2e;
  margin-right: 5px;
}
.blog-title {
  font-size: 17px;
  font-weight: 400 !important;
  margin-top: 10px;
  color: #000;
}
.blog-card .readmore {
  border: 1px solid #333;
  color: #333;
  padding: 8px 20px;
  border-radius: 5px;
  margin-top: 20px;
  transition: 0.3s;
}
.blog-card .readmore:hover {
    color: #05613a;
    border-color: #05613a;
}
.pagination .page-item {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  background: #f8f9fa;
  color: #333;
  transition: all 0.3s ease;
}
.pagination .page-item.active {
  background: #024d2e;
  color: white;
}
.pagination .page-item:hover {
  background: #024d2e;
  color: white;
}



/*==============================================
 Blog Post Page
==============================================*/
.post-area {
    position: relative;
    background-color: #f8f9fa;
    padding: 30px 0;
}
.post-container {
    max-width: 1200px;
}
.post-content {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0;
}
.post-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 0;
}
.post-meta-info i {
    color: #024d2e;
    font-size: 14px;
}
.post-title {
/*    font-size: 24px;*/
font-weight: bold;
margin-top: 10px;
}
.post-content .content {
    padding: 20px;
}
.post-content ul, .post-content ol {
    padding-left: 20px;
}
.post-content ul li {
    list-style: disc;
}
.post-content a:hover {
    color: #024d2e;
}
.blog-sidebar {
    padding-left: 20px;
}
.blog-sidebar .searchbox {
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.blog-sidebar .searchbox form {
  display: flex;
  align-items: center;
  position: relative;
}
.blog-sidebar .searchbox input {
  width: 100%;
  padding: 10px 40px 10px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
}
.blog-sidebar .searchbox button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #024d2e;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 5px;
}
.latest-blog {
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.latest-blog h5 {
    margin-top: 0;
    font-size: 20px;
}
.latest-blog .post {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.latest-blog .post img {
    width: 70px;
    height: 50px;
    margin-right: 10px;
}
.latest-blog .post-title {
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
}
.latest-blog .post-title a:hover {
    color: #024D2E;
    font-weight: 600;
}
.latest-blog .post-date {
    font-size: 12px;
    color: #666;
    margin-left: 5px;
}





.privacy-content {
    background: white;
    padding: 20px 0;
    border-radius: 8px;
/*    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
margin-top: -30px;
}
.privacy-content ul {
    padding-left: 20px;
}
.privacy-content ul li {
    list-style: disc;
}



/*==============================================
 Footer section
==============================================*/
.footer {
    background-color: #00332e;
    padding: 50px 0;
}
.footer img {
    max-height: 40px;
    margin-bottom: 20px;
}
.footer h4 {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 18px;
    color: #fff;
}
.footer a {
    color: #bbb;
    text-decoration: none;
}
.footer a:hover {
    color: #fff;
}
.footer .social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #6d5d01;
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    font-size: 16px;
    margin-right: 10px;
    transition: 0.3s;
}
.footer .social-icons a:hover {
    background: #937d00;
}
.subscribe form {
    display: flex;
}
.subscribe input {
    background: #fff;
    border: none;
    padding: 10px;
    width: 70%;
    border-radius: 5px 0 0 5px;
}
.subscribe button {
    background: #6d5d01;
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    color: #fff;
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer ul li a {
    display: flex;
    align-items: center;
}
.footer ul li i {
    margin-right: 8px;
}
.footer p {
    color: #eee;
}
.footer-contact p {
    font-size: 15px;
}
.footer-contact p i {
    margin-right: 5px;
}
.copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #075454;
    margin-top: 30px;
    font-size: 14px;
    color: #eee;
}


.scroll-to-top,
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #070026;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.scroll-to-top:hover,
.whatsapp-button:hover {
    background-color: #ffffff;
}
.whatsapp-button {
    bottom: 90px;
    background-color: #25d366;
    color: white;
}
.whatsapp-button:hover {
    background-color: #1da851;
}



/*=======================================
   Loader
========================================*/
.loader{
  display: none;
}
.spinner {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 40px;
}
.spinner div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 7px;
  background: #024d2e;
  color: #024d2e;
  -webkanimation: spinner 1.2s infinite ease-in-out;
  animation: spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.spinner div:nth-child(1) {
  left: 6px;
  animation-delay: -0.16s;
}
.spinner div:nth-child(2) {
  left: 26px;
  animation-delay: -0.12s;
}
.spinner div:nth-child(3) {
  left: 45px;
  animation-delay: -0.8s;
}
.spinner div:nth-child(4) {
  left: 65px;
  animation-delay: -0.4s;
}
.spinner div:nth-child(5) {
  left: 85px;
  animation-delay: 0;
}
@keyframes spinner {
  0% {
    top: 6px;
    height: 51px;
}
50%, 100% {
    top: 19px;
    height: 26px;
}
}

@-webkkeyframes sk-stretchdelay {
  0%, 40%, 100% { -webktransform: scaleY(0.4) }
  20% { -webktransform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webktransform: scaleY(0.4);
}20% {
   transform: scaleY(1.0);
   -webktransform: scaleY(1.0);
}
}