
.logo{

  height: 50px;
}
   

/* top header */
.top-header {
    background-color:white; /* Royal Blue */
    color: #ffffff;
    padding: 10px 0;
  }
  .top-header a {
    color: black;
    text-decoration: none;
  }

   /* Navbar styling */
   .navbar {
    background-color: #264653; /* Royal Blue */
    font-family: 'Playfair Display', serif; /* Royal, elegant font */
    padding: 10px 20px;
  }
  .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E9C46A; /* Sandy Beige */
  }
  .navbar-nav .nav-link {
    color: #ffffff;
    font-size: 1.1rem;
    margin-right: 15px;
    transition: color 0.3s ease;
  }
  .navbar-nav .nav-link:hover {
    color: #F4A261; /* Deep Orange on hover */
  }
  .sticky-top {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Adds subtle shadow for stickiness */
  }

    /* hero section */
     /* Hero section styling */
     .hero {
      background-color: #FAF3E0; /* Light sea-like color */
      padding: 60px 0;
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
      color: #0a2740;
      font-family: 'Poppins', sans-serif;
    }
    .hero p {
      font-size: 1.2rem;
      color: #555;
      margin-top: 20px;
    }
    .features-list {
      list-style: none; /* Remove default bullets */
      padding: 0; /* Remove default padding */
  }
  
  .features-list li {
      margin: 10px 0; /* Space between items */
      font-size: 1.1rem; /* Adjust font size */
  }
  
  .features-list i {
      color: #d4a35a; /* Change icon color */
      margin-right: 10px; /* Space between icon and text */
  }
  
    .hero .btn-custom {
      background-color:#d4a35a;
      color: #0a2740;
      font-weight: 600;
      border-radius: 25px;
      padding: 10px 30px;
      margin-top: 20px;
    }
    .hero .btn-custom:hover {
      background-color: #ecb562;
      color: white;
    }
    .hero-img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    /* Responsive styling */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }
      .hero p {
        font-size: 1rem;
      }
    }
    .hero .row {
      display: flex;
      flex-wrap: wrap;
    }
    
    @media (max-width: 768px) {
      .hero .row {
        flex-direction: column-reverse; /* Ensure image comes first */
      }
      
      .hero .col-lg-6 {
        margin-bottom: 20px; /* Add spacing between elements for better layout */
      }
    }
    
  
    .tour-section {
      padding: 50px 0;
      background-color: #f8f9fa;
    }
    .tour-details {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    .tour-details h2 {
      font-size: 2rem;
      font-weight: bold;
      color: #0a2740;
      font-family: 'Poppins', sans-serif;
    }
    .tour-details p {
      font-size: 1.1rem;
      color: #555;
      margin-top: 15px;
    }
    .btn-enquiry {
      background-color: #0a2740;
      color: #d4a35a;
      font-weight: 600;
      border-radius: 25px;
      padding: 10px 30px;
      margin-top: 20px;
    }
    .btn-enquiry:hover {
      background-color: #f3b861;
      color: #0a2740;
    }
    /* Image slider styling */
    .carousel-inner img {
      border-radius: 10px;
      width: 100%;
      height: auto;
    }
    @media (max-width: 768px) {
      .tour-details h2 {
        font-size: 1.5rem;
      }
      .tour-details p {
        font-size: 1rem;
      }
    }
  
    .accordion-item {
      border: none;
    }
    .accordion-button {
      background-color: #0a2740;
      color: #d4a35a;
      font-weight: bold;
      font-family: 'Poppins', sans-serif;
    }
    .accordion-button:not(.collapsed) {
      background-color: #d4a35a;
      color: #0a2740;
    }
    .accordion-body {
      font-size: 1rem;
      color: #555;
    }
    .accordion-body img {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 20px;
    }
    .accordion-body p {
      font-size: 1rem;
      color: #333;
      margin-top: 10px;
    }
  
  
    .inclusions-section {
      background-color: #f8f9fa;
      padding: 40px 0;
  }
  .inclusions-section h2 {
      font-weight: bold;
      margin-bottom: 30px;
      text-align: center;
  }
  .table td, .table th {
      vertical-align: middle;
  }
  .table i {
      color: #d4a35a; /* Bootstrap danger color */
      margin-right: 10px;
  }
  
  
  
    .testimonial-section {
      background-color: #e9ecef;
      padding: 60px 0;
  }
  .testimonial-card {
      border: none;
      border-radius: 10px;
      text-align: center;
      padding: 30px;
      transition: transform 0.3s;
      background-color: #fff; /* Card background */
      box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Shadow effect */
  }
  .testimonial-card:hover {
      transform: scale(1.05);
  }
  .testimonial-card img {
      border-radius: 50%;
      width: 50px !important;
      height: 50px !important;
      margin-bottom: 15px;
  }
  .testimonial-card h5 {
      font-weight: bold;
      color: #0a2740;
  }
  .testimonial-card p {
      color: #555;
      font-style: italic;
  }
  
  
  .package-section {
      padding: 60px 0;
      background-color: #f8f9fa;
  }
  .package-card {
      border: none;
      border-radius: 10px;
      transition: transform 0.3s, box-shadow 0.3s;
      text-align: center;
      background-color: #ffffff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  .package-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }
  .package-card img {
      border-radius: 10px;
      max-height: 200px; /* Limit the height */
      width: 100%; /* Responsive image */
      object-fit: cover; /* Cover the area without distortion */
  }
  .package-card h5 {
      color: #0a2740;
      font-weight: bold;
  }
  .package-card p {
      color: #555;
  }
  .rating {
      color: #ffcc00; /* Gold color for stars */
  }
  .price {
      font-size: 1.25rem; /* Bigger font size for price */
      color: #d9534f; /* Red color for price */
      font-weight: bold;
  }
  .inquire-btn {
      background-color: #0a2740;
      color: white;
      border-radius: 20px;
      transition: background-color 0.3s;
  }
  .inquire-btn:hover {
      background-color: #0056b3;
  }
 
  
  
  .inclusions-section {
    background-color: #f8f9fa;
    padding: 40px 0;
  }
  .inclusions-section h2 {
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
  }
  .table td, .table th {
    vertical-align: middle !important;
  }
  .table i {
    color: #d4a35a; /* Bootstrap danger color */
    margin-right: 10px;
  }
  .enquiry-btn {
    text-align: center;
    margin-top: 20px;
  }
  .enquiry-btn button {
    background-color: #d4a35a;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-size: 18px;
    cursor: pointer;
  }
  .enquiry-btn button:hover {
    background-color: #0056b3;
  }
  p {
    font-family: 'Lora', serif; /* or 'Open Sans', sans-serif; */
    font-size: 1.2rem; /* Adjust the size for better readability */
    line-height: 1.6; /* Increased line height for better text flow */
  
    margin: 15px 0; /* Margin for spacing between paragraphs */
  
  }
  li,a,td{
    font-family: 'Lora', serif; /* or 'Open Sans', sans-serif; */
  
  }
  
  
  
  
  
  
  
  
  
  html {
    overflow-x: hidden; /* Prevent horizontal overflow on html */
  }
  
  
  .color1 {
    color: #264653; /* Change this color as needed */
    font-weight: bold; /* Make it bold if needed */
  }
  
  .color2 {
    color: #00c6ff; /* Change this color as needed */
    font-weight: bold; /* Make it bold if needed */
  }
  
  .color3 {
    color: #7f00ff; /* Change this color as needed */
    font-weight: bold; /* Make it bold if needed */
  }
  
  h1 {
  
    font-size: 2.5rem; /* Adjust size as needed */
    margin-bottom: 20px; /* Spacing below the heading */
  
  }
  .whatsapp-button, .call-button {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    width: 50px; /* Width of the button */
    height: 50px; /* Height of the button */
    border-radius: 50%; /* Make it circular */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px; /* Icon size */
    color: white; /* Icon color */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Shadow effect */
    z-index: 1000; /* Ensure it appears above other elements */
  }
  
  .whatsapp-button {
    left: 20px; /* Position from the left */
    background-color: #25D366; /* WhatsApp color */
  }
  
  .call-button {
    right: 20px; /* Position from the right */
    background-color: #007bff; /* Call button color */
  }
  
  /* Optional: Add hover effect */
  .whatsapp-button:hover, .call-button:hover {
    opacity: 0.8; /* Slightly reduce opacity on hover */
  }
  a{
    text-decoration: none;
  }
  
  body {
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  
  
  .logo-section {
    padding: 50px 0;
    text-align: center;
    background-color: #000; /* Black background */
  }
  
  .logo-section h2 {
    color: #00ffcc;
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #ff007f, #00bfff, #00ffcc);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientAnimation 5s ease infinite;
  }
  
  .logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo-item {
    margin: 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
  .logo-item img {
    max-width: 200px;
    transition: transform 0.3s;
  }
  
  .logo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.5);
  }
  
  @keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
  }
  
  #top-attractions {
    background-color: #f4f4f4;
  }
  
  #top-attractions h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  #top-attractions img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  #top-attractions h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }
  
  @media (max-width: 768px) {
    #top-attractions .col-md-6 {
        width: 100%;
    }
  
    #top-attractions .col-md-4 {
        margin-top: 30px;
    }
  }
  
  
  #goa-slider {
    background-color: #f8f9fa;
  }
  
  #goa-slider h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
  }
  
  #goa-slider .carousel-item img {
    border-radius: 10px;
    max-height: 500px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  #goa-slider .carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
  }
  
  #goa-slider .carousel-caption h5 {
    color: #fff;
    font-size: 20px;
  }
  
  .carousel-control-prev-icon, .carousel-control-next-icon {
    filter: invert(100%);
  }
  
  @media (max-width: 768px) {
    #goa-slider .carousel-item img {
        max-height: 300px;
    }
  
    #goa-slider h2 {
        font-size: 28px;
    }
  }
  


  /* foooter */

/* Footer Section Styling */
.footer-section {
    background-color: #2c3e50;
    color: #f1f1f1;
    padding: 2rem 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    text-align: left;

}

.footer-about, .footer-links, .footer-contact, .footer-social {
    flex: 1;
    min-width: 220px;
}

.footer-about h3, .footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

/* Footer Links Styling */
.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #f1f1f1 !important;
    text-decoration: none;
    font-size: 1rem;
}

.footer-links ul li a:hover {
    color: #f39c12;
}

/* Contact Info Icons */
.footer-contact p {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white !important;
}

.footer-contact i {
    color: #f39c12;
}

/* Social Media Icons */
.footer-social .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social .social-icons a {
    color: #f1f1f1;
    font-size: 1.5rem;
}

.footer-social .social-icons a:hover {
    color: #f39c12;
}

/* Footer Bottom Styling */
.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #444;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;

    }

    .footer-about, .footer-links, .footer-contact, .footer-social {
        margin-bottom: 1.5rem;
    }
}

