
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color:black;
}


/* #1bac91 */


a {
  color: darkgreen;
  text-decoration: none;
}

a:hover {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}


/* ======= Header Base Styles ======= */
#header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.3s;
  padding: 0;
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 48px;
  width: auto;
  margin-right: 6px;
}

.logo h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1a3d1a;
}

.logo h2 a {
  text-decoration: none;
  color: inherit;
}

.logo .line-1 {
  display: block;
  font-size: 1.1em;
}

.logo .line-2 {
  display: block;
  font-size: 0.95em;
  color: #388e3c;
  letter-spacing: 1px;
}

/* ======= Navbar Styles ======= */
#navbar {
  display: flex;
  align-items: center;
}

#navbar ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#navbar ul li {
  position: relative;
}

#navbar a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

#navbar a:hover,
#navbar .dropdown:hover > a {
  background: #e8f5e9;
  color: #388e3c;
}

/* Dropdown Styles */
#navbar .dropdown {
  cursor: pointer;
}

#navbar .dropdown .submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  border-radius: 6px;
  min-width: 260px;
  z-index: 1000;
  padding: 12px 0;
}

#navbar .dropdown:hover .submenu {
  display: block;
}

#navbar .submenu ul.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  margin: 0;
}

#navbar .submenu ul li {
  padding: 0;
}

#navbar .submenu ul li a {
  display: block;
  padding: 8px 20px;
  color: #222;
  font-size: 0.98em;
  border-radius: 0;
  transition: background 0.2s;
}

#navbar .submenu ul li a:hover {
  background: #f1f8e9;
  color: #388e3c;
}

/* ======= Header Icons ======= */
.header-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.header-icons .icon {
  color: #388e3c;
  font-size: 1.4rem;
  transition: color 0.2s;
}

.header-icons .icon:hover {
  color: #1a3d1a;
}

/* ======= Mobile Styles ======= */
.mobile-nav-toggle {
  display: none;
  font-size: 2rem;
  color: #388e3c;
  cursor: pointer;
  margin-left: 18px;
}

@media (max-width: 991px) {
  #navbar {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .header-icons {
    position: static;
    transform: none;
    margin-left: 12px;
  }
}

@media (max-width: 600px) {
  #header .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 10px;
    min-height: 56px;
  }
  .logo img {
    height: 36px;
  }
  .logo h2 {
    font-size: 1.1rem;
  }
  .header-icons {
    margin-top: 8px;
    gap: 10px;
  }
}

/* ======= Mobile Menu Styles ======= */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  flex-direction: column;
  padding-top: 70px;
  transition: all 0.3s;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 24px 0 24px;
}

.close-menu {
  font-size: 2rem;
  color: #388e3c;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  padding: 0 24px;
  margin: 0;
  width: 100%;
}

.mobile-menu ul li {
  border-bottom: 1px solid #e0e0e0;
}

.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  color: #222;
  font-size: 1.1em;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.mobile-menu ul li a:hover {
  color: #388e3c;
}

.mobile-dropdown-toggle {
  cursor: pointer;
  position: relative;
}

.mobile-submenu {
  display: none;
  background: #f9fbe7;
  padding: 0;
}

.mobile-submenu.active {
  display: block;
}

.mobile-submenu ul.mobile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  margin: 0;
}

.mobile-submenu ul li a {
  padding: 10px 18px;
  font-size: 1em;
}

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

/* Optional: Add smooth transition for mobile menu */
.mobile-menu,
.mobile-submenu {
  transition: all 0.3s ease;
}



/* Loading Logo Screen Styles */
#loading-logo-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#main-content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.blinking-logo img {
  animation: blink 1.5s ease infinite alternate;
}

@keyframes blink {
  0% { opacity: 1; }
  100% { opacity: 0.5; }
}



/* ********* Starting Slides *******************/
.eco-slider {
  position: flex;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.eco-slides-container {
  display: flex;
  transition: transform 1.2s ease-in-out;
  will-change: transform;
}

.eco-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.eco-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2); 
  transition: transform 1.5s ease-in-out; 
}

.eco-slide.active img {
  transform: scale(1); 
}

.eco-slide img:hover {
  transform: scale(1.1);
}

.eco-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.7);
  font-size: 2.8rem;
  font-weight: bold;
  z-index: 2;
  opacity: 0;
  animation: eco-fadeIn 1s ease-in-out forwards;
}

.eco-slide.active .eco-overlay {
  opacity: 1;
  animation: eco-fadeIn 1.2s ease-in-out forwards;
}

@keyframes eco-fadeIn {
  0% { opacity: 0; transform: translate(-50%, -60%); }
  100% { opacity: 1; transform: translate(-50%, -50%); }
}

/* Navigation Buttons */
.eco-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 15px 20px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.eco-nav-btn:hover {
  background: rgba(255, 255, 255, 0.7);
  color: #000;
}

.eco-prev-btn {
  left: 20px;
}

.eco-next-btn {
  right: 20px;
}

/* Dots Navigation */
.eco-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.eco-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.eco-dot.active {
  background: #fff;
}

.eco-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .eco-slider {
    position: relative;
    width: 100vw;
    margin-top: 16%;
    height: 40vh;
    overflow: hidden;
  }
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 5px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
  text-align: center;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #000000;
}

.section-title p {
  margin-bottom: 0;
}



 /* -------------------------Wrapper to contain the moving text -----------------------*/
.moving-text-wrapper {
  width: 100%;
  overflow: hidden;
  border: 2px solid #000000; 
  padding: 10px 0;
  box-sizing: border-box;
  position: relative;
}

.moving-text-container {
  display: flex;
  width: max-content; 
  animation: scrollText 15s linear infinite; 
}

.moving-text {
  font-size: 18px;
  font-weight: 600;
  color: #ff0000; 
  white-space: nowrap;
  padding-right: 100px;
}

@keyframes scrollText {
  0% {
    transform: translateX(0); 
  }
  100% {
    transform: translateX(-50%); 
  }
}

@media (max-width: 768px) {
  .moving-text {
    font-size: 15px; 
    padding-right: 50px; 
  }
  .moving-text-container {
    animation: scrollTextMobile 20s linear infinite; 
  }
}

@keyframes scrollTextMobile {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Jalgaon 11 best places */

.tour {
  background-image: url('../zip/55.JPG');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
  }

.tour-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 15px;
}
.tour .section-title h1{
    color: #ffffff;
    padding-top: 20px;
}

.tour-item {
  background-color:  rgba(250, 235, 215, 0.81);
  border: 2px solid #ddd;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  display: flex;
  flex-direction: column; 
}

.tour-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.tour-item img {
  width: 100%; 
  height: 200px; 
  border-bottom: 2px solid #0000008d;
  object-fit: cover;
}

.tour-content {
  padding: 15px;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.tour-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #212121;
}

.tour-meta {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.tour-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.6;
}

.view-more {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  background-color: rgb(23, 62, 134);
  font-size: 14px;
  transition: color 0.2s ease-in-out;
  min-height: 40px;
  border: 20px;
  border-radius: 15px;
  align-content: center;
  align-items:center;
  padding: 10px 120px 10px 120px;
}

.view-more:hover {
  color: #ffffff;
  text-decoration: underline;
}

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

  .tour-item img {
    height: 150px; 
  }

  .tour-title {
    font-size: 18px;
  }

  .tour-meta,
  .tour-description,
  .view-more {
    font-size: 13px;
  }
}

.hidden {
  display: none;
}

.button-container {
  text-align: center;
  padding-top: 4%;
  padding-bottom: 4%;
  align-items: center;
}

.toggle-button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: rgb(23, 62, 134);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.toggle-button:hover {
  background-color: #6494e0;
  transform: scale(1.05);
}


/* Info section */
 .infor-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #f7faf7; 
    padding: 40px 0;
  }
  .infor-left h2 {
    margin-bottom: 20px;
  }
  .infor-left, .infor-right {
    flex: 1 1 400px;
    min-width: 280px;
    color: #000;
  }
  .infor-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .infor-right iframe {
    max-width: 450px;
    min-height: 180px;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  .infor-right .caption {
    font-size: 1.1em;
    color: #2d4d2a;
    margin-bottom: 10px;
    font-weight: 500;
  }
  @media (max-width: 900px) {
    .infor-flex { flex-direction: column; gap: 24px; }
    .infor-left, .infor-right { min-width: 0; }
  }
  @media (max-width: 700px) {
  .infor-flex {
    flex-direction: column;
    gap: 20px;
    padding: 25px 0;
  }
  .infor-left, .infor-right {
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
  }
  .infor-right iframe {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .infor-right .caption {
    font-size: 1em;
  }
}


/**************** Contact us ***************/

.contact-details-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 30px 30px 60px 90px;
}
.contact-details-flex h2{
  margin: 150px 10px;
}

.contact-map {
  flex: 1 1 350px;
  min-width: 320px;
  max-width: 600px;
  width: 100%;
  height: 350px;
  border: 0;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
  min-height: 250px;
  margin-bottom: 15px;
}
.contact-info {
  flex: 1 1 300px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.contact-info h4 {
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 600;
}
.contact-info .info-item {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.contact-info .info-item i {
  color: #e91e63;
  font-size: 1.2em;
  min-width: 22px;
  text-align: center;
}
.contact-info .info-item a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-all;
}
.contact-info .info-item a:hover {
  color: #e91e63;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .contact-details-flex {
    margin: 20px 20px 20px 20px;
  }
  .contact-details-flex h2{
  margin: 10px 10px;
}
  .contact-map {
    max-width: 100%;
    height: 280px;
    min-width: 0;
  }
  .contact-map iframe {
    min-height: 180px;
  }
}
@media (max-width: 768px) {

  .contact-details-flex {
    flex-direction: column;
    gap: 18px;
    margin: 20px 20px 20px 20px;
  }
  .contact-details-flex h2{
  margin: 10px 10px;
}
  .contact-map {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 220px;
  }
  .contact-map iframe {
    min-height: 120px;
    border-radius: 6px;
  }
  .contact-info {
    padding: 18px 12px;
  }
}
@media (max-width: 480px) {
  .contact-map {
    height: 160px;
  }
  .contact-map iframe {
    min-height: 80px;
    border-radius: 4px;
  }
}



/* About of wonders */

.modern-approach-container {
  font-family: 'Times New Roman', serif;
  background-color: #fef6edb6;
  color: #000;
  line-height: 1.6;
  padding: 25px;
}

.modern-approach-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.modern-approach-image-left, 
.modern-approach-image-right {
  flex: 1;
  text-align: center; 
}

.modern-approach-image-left img,
.modern-approach-image-right img {
  width: auto;
  height: 200px;
  max-height: 300px;

}

.modern-approach-text {
  flex: 2;
  text-align: left;
}

.modern-approach-text h1 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}

.modern-approach-text h1 span {
  font-style: italic;
  font-weight: 400;
}

.modern-approach-text p {
  font-size: 16px;
  margin-bottom: 10px;
}

.logos-a {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.logos-a span {
  font-size: 1rem;
  font-weight: bold;
  color: #555;
  letter-spacing: 1px;
}
.modern-approach-image-left img{
  margin-top: 5%;
}
.modern-approach-image-right img{
  margin-top: 55%;
}


/* read more read less */

.text-section {
  margin-bottom: 10px;
}

.hidden-text {
  display: none;
}

.toggle-text-btn {
  background-color: #3373d3;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.toggle-text-btn:hover {
  background-color: #1e377c;
}


@media (max-width: 768px) {
  .modern-approach-content {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      align-items: flex-start;
  }

  .modern-approach-image-left,
  .modern-approach-image-right {
      flex: none;
      width: 45%;
      text-align: center;
  }

  .modern-approach-image-left img,
  .modern-approach-image-right img {
      width: 100%;
      max-width: 200px;
  }

  .modern-approach-image-left img{
    margin-top: 3%;
  }
  .modern-approach-image-right img{
    margin-top: 55%;
  }

  .modern-approach-text {
      width: 100%;
      order: 2; 
      text-align: center;
      padding: 0 15px;
  }

  .modern-approach-text h1 {
      font-size: 32px;
      line-height: 1.4;
      margin-bottom: 15px;
  }

  .modern-approach-text p {
      font-size: 14px;
      line-height: 1.5;
      margin-bottom: 10px;
  }

  .logos-a span {
      font-size: 0.85rem;
  }
}


/* 4 images in a row */

.portfolio-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 5px; 
}

.portfolio-item {
  width: 100%; 
}

.portfolio-wrap img {
  width: 100%;
  border-radius: 15px;
  display: block;
}
@media (max-width: 992px) {
  .portfolio-container {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 576px) {
  .portfolio-container {
    grid-template-columns: 1fr; 
    gap: 1%;
  }
}





/*------------------- Trasport facilities ---------------*/

.transport-page-wrapper {
  box-sizing: border-box;
}

.transport-facilities {
  background-color: #deebf6;
  padding: 20px;
}

.transport-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.transport-row .section-title {
  max-width: 300px;
  text-align: left;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0;
}

.transport-icons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.transport-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  width: 300px;
  transition: transform 0.3s;
}

.transport-box:hover {
  transform: scale(1.1);
}

.transport-logo {
  width: 90px;
  height: auto;
  animation: bounce 2s infinite;
}

.transport-text {
  text-align: left;
}

.transport-text .distance {
  font-size: 1.1rem;
  color: #007bff;
  font-weight: bold;
}

.transport-text .location {
  font-size: 0.9rem;
  color: rgba(56, 55, 55, 0.6);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .transport-row {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    text-align: center;
  }

  .transport-icons {
    justify-content: center;
  }

  .transport-box {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .transport-logo {
    width: 50px;
  }
}


/* --------------------- Video Gallery Section -----------------*/
.video-gallery {
  padding: 40px 20px;
  text-align: center;
}

.video-gallery .section-title h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.video-gallery .section-title p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-item {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .video-item {
    margin-bottom: 0;
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.text-section h3 {
  font-size: 1.8rem;
  font-weight: bold;
}

.text-section p {
  font-size: 1rem;
  line-height: 1.6;
}

.read-more-btn {
  background-color: #304830;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.read-more-btn:hover {
  background-color: #ccffcc;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .video-container {
    margin-bottom: 20px;
  }

  .read-more-btn {
    width: 100%;
    text-align: center;
  }
}



/* Social icons of footer */
.custom-social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.custom-social-icons a {
  text-decoration: none;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #444;
  font-size: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-social-icons a:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.custom-social-icons a.youtube {
  background-color: #ff0000;
  color: white;
}

.custom-social-icons a.youtube:hover {
  background-color: #e60000;
}

.custom-social-icons a.facebook {
  background-color: #4267B2;
  color: white;
}

.custom-social-icons a.facebook:hover {
  background-color: #365899;
}

.custom-social-icons a.instagram {
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
}

.custom-social-icons a.instagram:hover {
  background: linear-gradient(45deg, #833ab4, #d62976, #fa7e1e);
}

.custom-social-icons a.map {
  background-color: #247382;
  color: white;
}

.custom-social-icons a.map:hover {
  background-color: #38a6aa;
}

.custom-social-icons a.mail {
  background-color: #0072C6;
  color: white;
}

.custom-social-icons a.mail:hover {
  background-color: #0056a3;
}


/* Layout container for logos and partners */

.partners {
  background-color: rgba(253, 255, 236, 0.427); 
  padding: 20px 0;
}
.partners span {
  color: black; 
  padding: 0px 0px 0px 0px; 
  margin-bottom:0%;
}
.rotating-logos-partners {
  display: flex;
  margin-left: 10%;
  margin-right: 10%;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap; 
  padding: 0px 0px;
}

.rotating-logo-container {
  position: relative;
  width: 200px; 
  height: 180px;
  margin: 10px;
}

.rotating-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotate-circle 10s linear infinite;
}

@keyframes rotate-circle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.partners-carousel {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  overflow-x: auto; 
  padding: 10px;
  max-width: 600px; 
}

.partners-carousel .partner-logo {
  flex: 0 0 auto; 
  width: 100px; 
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.8); 
  border-radius: 8px; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
  transition: transform 0.3s ease-in-out;
}

.partners-carousel .partner-logo img {
  width: 80%;
  height: auto;
}

.partners-carousel .partner-logo:hover {
  transform: scale(1.1); 
}

.logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; 
  height: 80px;
}

.logo-center img {
  width: 100%;
  height: 100%;
  border-radius: 50%; 
}

@media (max-width: 768px) {
  .rotating-logos-partners {
    flex-direction: column;
    align-items: center;
  }

  .partners-carousel {
    max-width: 90%;
  }
}

.partners-carousel {
  display: flex;
  justify-content: space-between; 
  align-items: center;           
  flex-wrap: nowrap;            
  gap: 10px;                   
  max-width: 90%;           
  margin: 0 auto;                
}

.partner-logo {
  position: relative;
  overflow: hidden;        
  width: 150px;             
  height: 150px;    
  text-align: center;
  transition: transform 0.3s ease;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;         
  transition: filter 0.3s ease; 
}

/* Overlay styling */
.partner-logo .overlay {
  position: absolute;
  top: -100%;            
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;                
  display: flex;
  align-items: center;    
  justify-content: center;     
  font-size: 1rem;
  font-weight: bold;
  transition: top 0.3s ease; 
}

/* Hover effect */
.partner-logo:hover img {
  filter: grayscale(100%);       
}

.partner-logo:hover .overlay {
  top: 0;                        
}

.moving-text-wrapper {
  width: 100%;
  overflow: hidden;
  background-color: #cef0ff;
  border: 2px solid #000000;
  padding: 10px 0;
  box-sizing: border-box;
  position: relative;
}

.moving-text-container {
  display: flex;
  width: max-content; 
  animation: scrollText 15s linear infinite; 
}

.moving-text {
  font-size: 18px;
  font-weight: 600;
  color: #ff0000; 
  white-space: nowrap;
  padding-right: 100px; 
}

/* Scrolling animation */
@keyframes scrollText {
  0% {
    transform: translateX(0); /* Start position */
  }
  100% {
    transform: translateX(-50%); /* End position (half of the width due to duplication) */
  }
}

@media (max-width: 768px) {
  .moving-text {
    font-size: 14px; 
    padding-right: 50px; 
  }
  .moving-text-container {
    animation: scrollTextMobile 20s linear infinite; 
  }
}

@keyframes scrollTextMobile {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: green;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: green;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}






/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 300px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: goldenrod;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 50px 20px;
  background: rgba(128, 128, 128, 0.403);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 15px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1bac91;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1bac91;
}

.testimonials .maps {
  text-align: right;
}

.testimonials .maps button {
  background-color:rgba(128, 128, 128, 0.129); 
  color: rgb(255, 5, 5); 
  padding: 10px 5px; 
  margin: 0px -5px 0px 0px;
  border: none; 
  border-radius: 5px; 
  cursor: pointer; 
  font-size: 14px;
}
.maps .google img{
  height: 41px; 
  width: 40px; 
  border: none; 
  border-radius: 5px; 
  cursor: pointer; 
  background-color:rgba(128, 128, 128, 0.129); 
}


/* J-Layout Forest Themes Section - Wide Landscape Images & Descriptions */
.forest-themes-section.j-layout {
  background: linear-gradient(120deg, #e8f5e9 0%, #e3f0ff 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.j-themes-container {
  width: 100%;
  max-width: 1300px;
  min-height: 80vh;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.j-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 22px;
  gap: 50px;
}
.j-row-top, .j-row-bottom {
  gap: 80px;
}
.j-row-middle {
  width: 100%;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 0;
}
.j-theme-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 24px rgba(34,139,34,0.10);
  width: 340px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 2px solid  #228b22;
  padding-bottom: 18px;
}
.j-theme-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(34,139,34,0.18);
  border-color: black;
}
.j-theme-img-wrap {
  width: 100%;
  height: 110px;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  margin-bottom: 10px;
  margin-top: 0;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.j-theme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}
.j-theme-title {
  color: #228b22;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  margin: 8px 0 4px 0;
  text-shadow: 0 1px 6px #e0e8f7;
}
.j-theme-desc {
  color: #388e3c;
  font-size: 1.01rem;
  text-align: center;
  padding: 0 14px;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 400;
  line-height: 1.4;
}
.j-center-content {
  background: linear-gradient(120deg, #4a81d4 60%, #228b22 100%);
  color: #fff;
  border-radius: 24px;
  padding: 32px 38px;
  min-width: 340px;
  max-width: 440px;
  text-align: center;
  font-size: 1.18rem;
  box-shadow: 0 4px 24px rgba(34,139,34,0.10);
  margin: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.j-center-content h2 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
  text-shadow: 0 2px 8px #228b22;
}
.j-center-content p {
  font-size: 1.08rem;
  margin: 0;
  color: #e0e8f7;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .j-themes-container { max-width: 98vw; }
  .j-row-top, .j-row-bottom { gap: 40px; }
  .j-row-middle .j-center-content { min-width: 180px; max-width: 320px; padding: 14px 6px; }
  .j-theme-card { width: 220px; min-height: 140px; }
  .j-theme-img-wrap { height: 60px; }
  .j-theme-title { font-size: 1.05rem; }
  .j-theme-desc { font-size: 0.93rem; }
}

@media (max-width: 900px) {
  .j-themes-container {
    max-width: 100vw;
  }
  .j-row {
    gap: 8px;
    margin: 0 20px 10px 20px;
    flex-wrap: wrap;
  }
  .j-row-top, .j-row-bottom {
    gap: 8px;
  }
  .j-row-middle {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .j-theme-card {
    width: 90vw;
    min-width: 0;
    max-width: 99vw;
    min-height: 90px;
    border-radius: 10px;
    margin: 0 auto;
    padding-bottom: 10px;
  }
  .j-theme-img-wrap {
    height: 220px; 
    border-radius: 10px 10px 0 0;
  }
  .j-theme-card img {
    border-radius: 10px 10px 0 0;
    height: 220px;
    object-fit: cover;
  }
  .j-theme-title {
    font-size: 1rem;
    margin: 6px 0 2px 0;
  }
  .j-theme-desc {
    font-size: 0.85rem;
    padding: 0 6px;
  }
  .j-center-content {
    min-width: 0;
    max-width: 99vw;
    padding: 10px 2vw;
    border-radius: 10px;
    margin: 8px 0;
    font-size: 1rem;
  }
  .j-center-content h2 {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .forest-themes-section.j-layout {
    min-height: unset;
    padding: 10px 0;
  }
  .j-themes-container {
    min-height: unset;
    padding: 0 10px;
  }
  .j-mobile-heading {
    display: block;
    background: linear-gradient(120deg, #4a81d4 60%, #228b22 100%);
    color: #fff;
    border-radius: 10px;
    padding: 14px 10px 10px 10px;
    margin: 0 0 18px 0;
    text-align: center;
    font-size: 1rem;
    box-sizing: border-box;
  }
  .j-mobile-heading h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    text-shadow: 0 2px 8px #228b22;
  }
  .j-mobile-heading p {
    font-size: 0.95rem;
    margin: 0;
    color: #e0e8f7;
  }
  .j-center-content {
    display: none;
  }
}
.j-mobile-heading {
  display: none;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 25px;
  padding: 25px;
  /*edited */
}

@media (max-width: 992px) {
  .galleryimg {
    padding-top: 120px;
  }
}




/* visitors count */
.visitor-counter {
  text-align: center; 
  margin-top: 20px; 
  background-color: rgba(211, 211, 211, 0.707);
}

.visitor-counter h3 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #ff0000;
}

.visitor-counter .odometer {
  display: flex;
  justify-content: center;
  gap: 5px; 
}

.visitor-counter .digit {
  font-size: 28px;
  font-weight: bold;
  color: #004d00; 
  background: #c2eafe; 
  border-radius: 5px; /* Rounded corners for digits */
  padding: 5px 10px;
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: rgb(3, 45, 51);
  padding: 0 0 11px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #0c181759;
  border-bottom: 1px solid goldenrod;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1c3733;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: goldenrod;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: goldenrod;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: goldenrod;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .copyright span {
  color: goldenrod;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: goldenrod;
}
#footer .credits a:hover {
  color: rgb(255, 183, 0);
}


