* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
  font-family: 'GillSansMTCondensed';
  src: url('../fonts/gill-sans-mt-condensed.ttf') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
.news-item{
    font-family: 'GillSansMTCondensed', sans-serif;
}
header {
      position: relative;
      z-index: 999;
      width: 100%;
      background-color: #fff;
      transition: all 0.4s ease;
    }

    /* Top Header */
.top-section {
    width: 90%;
    margin: auto;
    height: 80px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.4s ease;
    border-bottom: 1px solid #eee;
}
.top-logo img { 
    width: 190px; 
}
.top-logo2{
    height: 100%;
    display: flex;
    align-items: center;
}
.top-logo a{
    height: 100%;
    display: flex;
    align-items: center;
}
.top-logo2 img { 
    width: 70px; 
}
.social-news {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    text-align: center;
    margin-top: 20px;
}

.news-container {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 24px; /* height of one item */
    position: relative;
    
}

.news-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 0;
    color: #2DB24C;
    font-weight: 500;
}

.news-item.scrolling_active {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

.news-item.exit_up {
    opacity: 0;
    transform: translateY(-100%);
    z-index: 0;
}
.quick_contact_top_section{
    margin-top: 10px;
}

.static-message {
    flex: 1;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}

/* Nav Header */
.nav-section {
    height: 50px;
    background: #2DB24C;
    position: relative;
}
.nav_main_section{
    width: 92%;
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.main_menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.main_menu a {
    position: relative;
    color: #fff;
    text-decoration: none;
    padding: 20px 10px;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Underline Animation */
.main_menu a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 4px;
    background-color: #221F20;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.main_menu a:hover::before {
    transform: scaleX(1);
    transform-origin: left;

}
.main_menu a:hover {
    background: rgba(255,255,255,0.1);
    color: #252122;
}

.nav-right-logo img {
    width: 40px;
    display: none;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
}

/* Sticky behavior */
.sticky .top-section {
    transform: translateY(-100%);
}

.sticky .nav-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.sticky .nav-right-logo img {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-8px);}
    to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 768px) {
    .main_menu {
    flex-direction: column;
    align-items: flex-start;
    background: #2DB24C;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    display: none;
    padding: 10px 20px;
    z-index: 1000;
    }
    .nav-section{
    display: block;
    }
    .main_menu{
    text-align: center;
    }

    .main_menu.show {
    display: flex;
    }

    .menu-toggle {
    display: block;
    }

    .nav-right-logo img {
        display: block !important;
    }
}



/* Hero Section */
.hero {
    width: 95%;
    margin: auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
}
.hero-text{
    width: 30%;
    
}
.hero-text h2 {
    font-size: 25px;
    color: #2DB24C;
    padding: 10px 0px;
    margin-top: -30px;
}

.hero-list {
    margin-bottom: 2rem;
}

.hero-list li {
    font-size: 18px;
    color: #555;
    position: relative;
    padding: 5px 20px 5px 5px;
    /* border-bottom: 1px dotted #2DB24C; */
    list-style: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.hero-list li:hover{
    color: #2DB24C;

}
/* animation Menu ITEM */
.hero-list li::before{
    content: "";
    width: 50%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    transition: 0.5s transform ease;
    transform: scale3d(0,1,1);
    transform-origin: 0 50%;
}
.hero-list li:hover::before{
    transform: scale3d(1,1,1);
}
.hero-list li::before{
    background: #221F20;
    transform-origin: 100% 50%;
}
.hero-list li:hover::before{
    transform-origin: 0 50%;
}

.slideshow-container {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    height: 400px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    width: 70% !important;
    
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 2rem;
}

.slide-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
/* Vertical line */
.hero::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 0;
    left: 30%;
    width: 2px;
    background: #2DB24C;
    transform: translateX(-50%);
    z-index: 1;
}


/* Arrow in the center */
.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 30%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #2DB24C;
    border-right: 2px solid #2DB24C;
    transform: translate(-50%, -50%) rotate(45deg);
    background: white;
    z-index: 2;
}
.index_register_btn button {
    padding: 14px 28px;
    background: #2DB24C;
    color: #fff;
    font-weight: 500;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin: 10px 0px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.index_register_btn button:hover {
    background: #2db24cd2;
    color: #252122;
}
/* Cards Section */
.cards-section {
    max-width: 90%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.section-title {
    text-align: center;
    font-size: 25px;
    color: #2DB24C;
    padding: 10px;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 15px 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 5px solid #4a8c3a;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.card_top_elements{
    display: flex;
    /* align-items: center; */
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a8c3a, #2DB24C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 1.5rem;
}


.card h3 {
    font-size: 24px;
    color: #2DB24C;
    padding: 15px 70px;
}

.card p {
    color: #666;
    line-height: 1.6;
}
/* about_life2nature_main_conteinar */
.about_life2nature_main_conteinar{
    width: 100%;
    height: auto;

}
.about_life2nature_conteinar_area{
    width: 90%;
    height: auto;
    margin: auto;
    display: flex;
}
.why_life2nature_section{
    width: 29%;
    height: auto;
}
.why_life2nature_section h2{
    font-size: 25px;
    color: #2DB24C;
     padding: 20px 0px 0px 0px;

}
.why_life2nature_section p{
    text-align: justify;
    color: #666;

}
.about_life2nature_section{
    width: 71%;
    height: auto;
    padding-left: 48px;
}
.about_life2nature_section h2{
    font-size: 25px;
    color: #2DB24C;
     padding: 20px 0px 0px 0px;

}
.about_life2nature_section p{
    text-align: justify;
    color: #666;

}
.about_life2nature_conteinar_area a{
    text-decoration: none;
    color: #2DB24C;
    transition: all 0.3s ease-in-out;
}
.about_life2nature_conteinar_area a:hover{
    color: #ff0000;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 4rem 0;
    /* margin-top: 4rem; */
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
}

/* Wellness Tour Section */
.wellness_tor_conteinar{
    width: 100%;
    height: auto;
}
.wellness_tour_conteinar_area {
    width: 90%;
    height: auto;
    margin: auto;
}

.wellness_tour_index_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.wellness_tour_index_card {
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); */
  transition: transform 0.3s ease;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
}
.wellness_tour_index_card_bottom a{
    text-decoration: none;
    color: #2DB24C;
    transition: all 0.3s ease-in-out;
}
.wellness_tour_index_card_bottom a:hover{
    color: #ff0000;

}
/* .wellness_tour_index_card:hover {
  transform: translateY(-5px);
} */

.wellness_tour_index_card_top {
    text-align: left;
}

.wellness_tour_index_card_top h3 {
    font-size: 24px;
    color: #2DB24C;
    padding: 10px 0px;
}

.wellness_tour_index_card_bottom {
  /* padding: 0px 10px; */
  text-align: center;
}

.wellness_tour_index_card_bottom img {
  width: 100%;
  height: auto;
  max-height: 180px;
  margin-bottom: 15px;
  object-fit: cover;
}

.wellness_tour_index_card_bottom p {
  font-size: 0.95em;
  color: #555;
  text-align: justify;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  

}


/* Responsive styles */
.mobile-nav-toggle {
    display: none;
    font-size: 28px;
    color: #2DB24C;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block !important;
    }
    .top-logo{
        display: none;
    }
    .top-logo2{
        display: none;
    }

    .header_logo_right img{
        width: 50px;
    }
    .nav-section {
        display: block;
        width: 100%;
    }

    .nav-section.active {
        display: block;
    }

    .nav-container {
        flex-direction: column;
        padding: 0;
    }

    .nav-main ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }

    .nav-main a {
        width: 100%;
        padding: 12px 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-content {
        position: relative;
        background: #2DB24C;
        box-shadow: none;
        padding-left: 20px;
    }
    .wellness_tour_index_cards {
        flex-direction: column;
    }

    .wellness_tour_index_card {
        width: 100%;
    }
    .hero-text h2 {
        margin-top: 10px;
    }
    .hero {
        flex-direction: column;
        padding-top: 0px;
        gap: 1rem;
    }
    .hero-text,
    .slideshow-container {
        width: 100% !important;
    }
    .hero::before,
    .hero::after {
        display: none;
    }

    .about-content,
    .footer-content {
        flex-direction: column;
        text-align: center;
        width: 100%;
        
    }
    .footer-content{
        padding: 0px 10px !important;

    }

    .footer-section {
       width: 100% !important;
        margin-bottom: 0 !important;
        
    }
    .footer_elements {
        min-height: 0 !important;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        padding: 10px 15px;
    }


    .header_logo_right {
        margin-bottom: 10px;
         display: flex !important;
        align-items: center;
        
    }
    .desktop_tg{
        display: none !important;

    }
    .mobile_tg{
        display: block !important;
        padding: 10px;
    }
    .mobile_tg3{
        width: 150px !important;
    }
    .social-news {
        border-radius: 0px !important;
        max-width: 100% !important;
        margin:0px auto;
        
    }
    .news-container {
        margin-top: 15px;
        min-width: 350px !important;
        height: 30px;
        overflow: hidden;
        color: #2DB24C;
        position: relative;
        
    }
    .about_life2nature_conteinar_area{
        width: 100%;
        height: auto;
        margin: auto;
        display: block;
        padding: 0px 30px;
    }
    .why_life2nature_section{
        width: 100%;
        height: auto;
    }
    .why_life2nature_section h2{
        font-size: 25px;
        color: #2DB24C;
        padding: 20px 0px;

    }
    .why_life2nature_section p{
        text-align: justify;
        color: #444;

    }
    .about_life2nature_section{
        width: 100%;
        height: auto;
        padding-left: 0px;
    }
}


.mobile_tg{
    display: none;
    position: absolute;
    left: 10px;
}


/* Footer */
.footer {
    background: #252122;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    scroll-snap-align: start;
}

.footer-content {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.footer-section{
     width: 30%;
}
.footer_elements{
    min-height: 120px;
}

.footer-section h3 {
    color: #2DB24C;
}

.footer-section p, .footer-section li {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4a8c3a;
}

.footer-bottom {
    padding: 10px 0px;
    text-align: center;
    border-top: 1px solid #333;
    color: #999;
}
