*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }

  /* Top Header */
  .top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #188af5;
    color: white;
    padding: 10px 20px;
  }

  .mail p{
    color: white;
  } 
  .contact p{
    color: white;
  }

  .top-header div {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .top-header img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }

  .top-header p {
    font-size: 14px;
    margin: 0;
  }

  /* Main Top Section */
  .top {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
    background-color: #f8f9fa;
  }
  
  .top img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
  }

  .info{
    display: flex;
    gap: 200px;
  }

  .socialicons{
    margin-top: 20px;
  }
  
  .socialicons ul {
    display: flex;
    list-style: none;
    padding: 0;
  }
  
  .socialicons li {
    margin: 0 10px;
    border: 1px solid white;
    box-shadow: 10px 10px 10px ;
    border-radius: 50%;
    padding: 10px;
    background-color: #ffffff;
    transition: transform 0.3s ease;
  }
  
  .socialicons li:hover {
    transform: scale(1.1);
  }
  
  .socialicons li img {
    width: 20px;
    height: 20px;
  }
  
  .contacts {
    display: flex;
    align-items: center;
    font-size: 14px;
  }
  
  .contacts svg {
    margin-right: 8px;
    color: #000;
  }
  
  .contacts span {
    font-weight: 600;
  }
  
  /* Responsive Design */
  @media (min-width: 768px) {
    .navbar-nav{
      margin-left: 280px;
      gap: 50px;
    }

    .navbar-nav li{
      font-size: 1.2rem;
    }
  }


  @media (max-width: 768px) {
      .top{
        display: flex;
        flex-direction: column;
      }
    
      .info{
        display: flex;
        gap: 20px;
      }

    .info img{
      height: 80px;
      width: 80px;
    }
  
    .socialicons li svg{
      margin-top: -15px;
      margin-left: -5px;
      width: 15px;
      height: 15px;
    }

    .socialicons li {
      margin-top: 6px;
      width: 30px;
      height: 30px;
    }

    .contacts {
      height: 20px;
      margin-top: 5px;
      margin-bottom: 5px;
      justify-content: center;
    }


    .navbar-toggler{
      margin-left: 150px;
    }

    .navbar-nav{
      margin-left: 20px;
      gap: 10px;
    }
   

  }
  


  /* .navbar-nav li{
    margin-left: 70px;
    font-size: 1.2rem;
  } */
  /* #navbarNav{
   margin: 0 40px;
  }

  .navbar-nav{
    margin-left: 90px;
  }

  .navbar-nav li{
    margin-left: 70px;
    font-size: 1.2rem;
  }  */


  /* Fixed Call Us Button */
.call-us-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #087d1f;
  color: #fff;
  padding: 15px 20px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  z-index: 1000;
  transition: background 0.3s ease, transform 0.2s ease;
}

.call-us-button:hover {
  background-color: #0b7a30;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .call-us-button {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .carousel-item {
    height: 350px;
  }

  .dropdown-menu{
    width: 335px;
  }

  .dropdown-menu li{
    font-size: 13px;
  }
}


  .form-inline{
    margin-right: 20px;
    gap: 10px;
  }

  .navbar{
    background-color: rgb(157, 47, 7);
  }

  .carousel-item img{
    height: 500px;
  }

  .contacts{
    background-color: rgb(246, 18, 18);
    border-radius: 20px;
    box-shadow: 0 0 5px #ff4500, 0 0 10px #ff4500, 0 0 15px #ff6347;
    transition: all 0.3s ease-in-out;
    padding: 15px;
    color: white;
  }

  .contacts span{
    font-weight: 600;
    font-size: 1.3rem;
  }

  
  /* Trending Tours */
  .trending-tours {
    padding: 60px 20px;
    background-image: url(images/spiritual.png);
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .section-title span {
    color: #8b0000; /* Burgundy color for emphasis */
  }
  
  .section-description {
    text-align: justify;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #050505;
  }
  
  
  .tour-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .tour-card {
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .tour-card:hover img {
    transform: scale(1.1);
  }
  
  .tour-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    text-align: left;
  }
  
  .tour-card h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .tour-card p {
    margin: 5px 0 0;
    font-size: 0.9rem;
  }
  
  .tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }
  
  @media (max-width: 768px) {
    .section-title {
      font-size: 1.5rem;
    }
  
    .section-description {
      font-size: 0.9rem;
    }
  
    .tour-card h3 {
      font-size: 1rem;
    }
  
    .tour-card p {
      font-size: 0.8rem;
    }
  }


  .row {
    margin-right: -15px;
    margin-left: -15px;
}

.row:before {
    display: table;
    content: " ";
}

#sgc{
    margin-top: 30px;
}

#sgc h2 {
    font-size: 33px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 10px;
    color: #8b0000;
}

#sgc p{
   font-size: 1.2rem;
   text-align: center;
   margin-bottom: 10px;
}

 h2 {
    font-weight: 600;
    font-family: poppins, sans-serif;
    color: #071c34;
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.1;
}

p {
    text-align: justify;
    color: black;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.img-size img{
    width: auto;
    height: 350px;
}
  

.features-section {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.features-section h2{
  font-size: 2rem;
  font-weight: 600;
  color: #8b0000;
}

.features-section span{
  color: #050505;
}

.features-section p{
  font-size: 1.2rem;
  color: #050505;
  text-align: justify;
}


.features {
  max-width: 1200px;
  margin: 0 auto;
}

.rows {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.col {
  flex: 1 1 calc(33.333% - 20px); /* 3 columns with spacing */
  margin: 10px;
  box-sizing: border-box;
}

.feature {
  padding: 20px;
}

.feature img{
    height: 100px;
    width: 120px;
}

.feature-icon {
  width: 80px; /* Adjust size as needed */
  height: auto;
  margin-bottom: 15px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: #080808;
}

/* Responsive Design */

@media (max-width: 768px) {
  .col {
    flex: 1 1 100%; /* 1 column for small screens */
  }

  .features {
    padding: 15px;
  }

  h3 {
    font-size: 1.25rem;
  }

  p {
    font-size: 0.9rem;
  }

  .feature-icon {
    width: 50px; /* Smaller icon for small screens */
  }
}

.travel-section {
  margin: 40px 30px;
  text-align: center;
  padding: 40px 20px;
}

.travel-section h2 {
  font-size: 34px;
  font-weight: 600;
  color: #8b0000;
  margin-bottom: 10px;
}

.travel-section p {
  color: #100f0f;
  font-size: 1.2rem;
  text-align: justify;
  margin-bottom: 30px;
}

.travel-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.1);
}

.cards {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.cards img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.cards:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .overlay {
  opacity: 2;
}

.cards:hover .overlay {
  opacity: 2;
}

.overlay h3 {
  margin: 0;
  font-size: 18px;
}

.overlay button {
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  background: orange;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

.overlay button:hover {
  background: darkorange;
}

.cards img{
  height: 430px;
}

@media(max-width:786px){
   .cards img{
     height: 200px;
   }
}


.faq-section {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #8b0000; /* Matches your green theme */
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.2rem;
  font-weight: bold;
  color: #2d5a2d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
}

.toggle-icon {
  font-size: 1.5rem;
  color: #2d5a2d;
  transition: transform 0.3s;
}

.faq-answer {
  display: none;
  font-size: 1rem;
  color: #555;
  padding: 10px 0;
  line-height: 1.5;
}

.faq-answer.show {
  display: block;
}

.faq-question.active .toggle-icon {
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 1.8rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}



.ftco-footer{
  color: white;
}

.ftco-footer li a{
  color: white;
  text-decoration: none;
}

.ftco-heading-2{
  color: white;
}