
:root {
    --primary-green: #06541a;
    --secondary-green: #4caf50;
    --light-green: #e8f5e9;
    --text-dark: #1a3c34;
    --accent-gold: #ffc107;
    --indigo: #4B0082; /* Indigo for main button outline */
    --light-indigo: #E6E6FA; /* Light indigo for option buttons */
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-green);
}
.custom-btn {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
  }
  .who-we-are {
    position: relative;
    /* Background image with Laravel asset helper */
    background-image: url('{{ asset("assets/img/who.jpg") }}');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #ffffff; /* White text for contrast */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 15px; /* Extra padding for smaller screens */
}

/* Dark overlay for text readability */
.who-we-are::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Slightly darker overlay */
    z-index: 1;
}

/* Ensure content is above overlay */
.who-we-are .container {
    position: relative;
    z-index: 2;
}

/* Heading styles */
.who-we-are-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Paragraph styles */
.who-we-are-content .lead {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Enhanced shadow for readability */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .who-we-are-content h2 {
        font-size: 2rem;
    }
    .who-we-are-content .lead {
        font-size: 1rem;
    }
}
  .custom-btn::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid #1E90FF; /* Blue outline */
    border-radius: 50px; /* Fully rounded effect */
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
  }
  
  .custom-btn:hover::after {
    opacity: 1;
  }
  
  
/* Header Styles */
header {
 
    background-size: cover;
    background-position: center;
    height: auto;
   
    display: flex;
    height: 100vh;
    align-items: center;
    text-align: center;
}

.carousel {
    height: 100%; /* Use 100% to match the header height */
    width: 100%;
}







/* Hero Section */
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    transform: scale(1.05);
}

/* Main Section Grid */
.tour-grid {
    padding: 5rem 0;
}

.tour-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: white;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.tour-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.tour-card:hover img {
    transform: scale(1.1);
}

.tour-card .card-body {
    padding: 1.5rem;
}

.tour-card h5 {
    color: var(--primary-green);
    font-weight: 600;
}

.tour-card .btn {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
}

.tour-card .btn:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

/* Car Packages Section */
.car-packages {
    background-color: var(--light-green);
    padding: 5rem 0;
}

.package-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card img {
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.package-card .card-body {
    padding: 2rem;
}

.package-card h5 {
    color: var(--primary-green);
    font-size: 1.5rem;
}

.package-card .price {
    color: var(--accent-gold);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Tour Counter */
.tour-counter {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.tour-counter h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.counter-item {
    font-size: 1.5rem;
    font-weight: 500;
}

.counter-item span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* Footer */


footer {
    background: linear-gradient(to right, #ffff);
    color:  -- primary-green;
    padding: 3rem 0;

}

footer a {
    color: var(--primary-green);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__fadeInUp {
    animation: fadeInUp 1s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .tour-card img {
        height: 150px;
    }

    .package-card img {
        height: 200px;
    }

    .tour-counter h2 {
        font-size: 2rem;
    }

    .counter-item span {
        font-size: 2rem;
    }
}



body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-green);
}
.navbar-toggler-icon{
 
    
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    
}
/* Navbar Styles */
.navbar {
    background: linear-gradient(to right, #ffff);
    padding: 0 2rem;
   
    display: flex;
    align-items: center;
}

.navbar-brand {
    margin: 0;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 0px;
    width: auto;
    margin: 0;
    filter: brightness(1.2);
    vertical-align: middle;
}
.fixed-bottom-left {
    position: fixed;
    bottom: 20px; /* Adjust distance from bottom */
    right: 20px; /* Adjust distance from left */
    z-index: 1000; /* Ensure it stays above other content */
}
@media (max-width: 576px) {
    .fixed-bottom-left .btn-lg {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* contact */
/* Fixed Bottom Right Container */
.fixed-bottom-right {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Main Contact Button */
.contact-btn {
    background-color: var(--secondary-green);
    color: #ffffff;
    
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    z-index: 1;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background-color: #1E90FF;
}

/* Indigo Outline Animation for Main Button */
.contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: transparent;
    border: 2px solid var(--indigo);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    opacity: 0;
    z-index: -1;
}

.contact-btn:hover::before,
.contact-btn:focus::before {
    opacity: 1;
}

@keyframes pulse {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    50% {
        width: 120px;
        height: 120px;
        opacity: 0.8;
    }
    100% {
        width: 150px;
        height: 150px;
        opacity: 0;
    }
}

/* Contact Options Container */
.contact-options {
    display: none;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-options.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Icon Buttons (Phone and WhatsApp) */
.icon-btn {
    background-color: var(--primary-green);
    color: #0d491c;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.5rem;
}

.icon-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Light Indigo Outline Animation for Icon Buttons */
.icon-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: transparent;
    border: 2px solid var(--light-indigo);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glow 1.5s infinite;
    opacity: 0;
    z-index: -1;
}

.icon-btn:hover::before,
.icon-btn:focus::before {
    opacity: 1;
}

@keyframes glow {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    50% {
        width: 80px;
        height: 80px;
        opacity: 0.7;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

/* Animation for Option Buttons */
.phone-btn {
    transition-delay: 0.1s;
    background-color: #4214d8;
    color: #0e0e0f;
}

.whatsapp-btn {
    transition-delay: 0.2s;
    background-color: #4214d8;
    color: #0b0e11;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .contact-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .icon-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
}

.nav-link {
  color: #06541a;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: var(--accent-gold) !important;
}

/* Slider Styles */


/* Slider Styles */
.carousel {
    margin-top: 30px;
    width: 100%;
    min-height: 400px; /* Minimum height for smaller screens */
    max-height: calc(100vh - 80px); /* Adjust for navbar height */
    overflow: hidden;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    transition: transform 0.8s ease-in-out; /* Smooth transition */
}

.carousel-item img {
   
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevent distortion */
    object-position: center;
    filter: brightness(0.7);
    transition: transform 0.5s ease; /* Smooth zoom effect */
}

.carousel-item.active img {
    transform: scale(1.05); /* Subtle zoom for active slide */
}



.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.carousel-caption p {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.carousel-caption .btn-primary {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
}

.carousel-caption .btn-primary:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%; /* Wider touch area for mobile */
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.6);
}

.carousel-indicators {
    bottom: 15px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary-green);
    border: 2px solid white;
    margin: 0 8px;
    transition: background-color 0.3s;
}

.carousel-indicators .active {
    background-color: var(--accent-gold);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .carousel {
        max-height: calc(100vh - 100px); /* Adjust for navbar height on tablets */
    }

    .carousel-caption {
        padding: 12px 15px;
        max-width: 95%;
    }

    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-caption p {
        font-size: 1.1rem;
    }

    .carousel-caption .btn-primary {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .carousel {
        min-height: 350px;
        max-height: calc(100vh - 100px); /* Match navbar height */
    }

    .carousel-caption {
        padding: 10px 12px;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-caption .btn-primary {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }

    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        margin: 0 6px;
    }
}

@media (max-width: 576px) {
    .carousel {
        min-height: 300px;
        max-height: calc(100vh - 120px); /* Account for larger navbar on small screens */
    }

    .carousel-caption {
        padding: 8px 10px;
    }

    .carousel-caption h1 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .carousel-caption .btn-primary {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        margin: 0 5px;
    }
}



.tour-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: white;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.tour-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.tour-card:hover img {
    transform: scale(1.1);
}

.tour-card .card-body {
    padding: 1.5rem;
}



.tour-card .btn {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
}

.tour-card .btn:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

/* Car Packages Section */
.car-packages {
    background-color: var(--light-green);
    padding: 3rem 0;
}

.package-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card img {
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.package-card .card-body {
    padding: 2rem;
}



.package-card .price {
    color: var(--accent-gold);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Tour Counter */
.tour-counter {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.tour-counter h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.counter-item {
    font-size: 1.5rem;
    font-weight: 500;
}

.counter-item span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* Ensure captions are readable on small screens */
@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    .carousel-caption p {
        font-size: 0.9rem;
        display: none; /* Optional: hide description on mobile */
    }
    .carousel-caption .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* Ensure images maintain aspect ratio */
.carousel-item img {
    object-fit: cover;
    height: 100vh; /* Adjust based on design */
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 50px;
    }

    .navbar {
        min-height: 80px;
       
    }

    .carousel {
        height: calc(100vh - 100px);
    }

    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .tour-card img {
        height: 150px;
    }

    .package-card img {
        height: 200px;
    }

    .tour-counter h2 {
        font-size: 2rem;
    }

    .counter-item span {
        font-size: 2rem;
    }
}
.text-primaryy{
    color: #06541a;
}

.safety-trust h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.safety-trust .lead {
    font-size: 1.25rem;
    color: #555;
}

.safety-trust ul li {
    font-size: 1.1rem;
    color: #444;
}

.safety-trust .btn-primary {
    font-size: 1rem;
    padding: 10px 20px;
}



/* animation */

  /* Card wrapper: Outer container for the card */
    .service-card {
      position: relative;
      overflow: hidden;
      border-radius: 16px; /* Rounded corners */
      background: rgb(36, 255, 2); /* Gradient background */
      width: 100%;
      max-width: 350px; /* Set a reasonable card width */
      margin: 0 auto; /* Center card in column */
    }

    /* Animated gradient border */
    .service-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: conic-gradient(
        rgba(10, 77, 4, 0.5) 0deg,
        rgba(28, 107, 10, 0.5) 90deg,
        transparent 180deg
      );
      animation: border-spin 7s linear infinite;
      z-index: 1; /* Ensure border is behind content */
    }

    /* Card content: Inner area with content */
    .card-content {
        color: rgb(36, 173, 64);
      position: relative;
      margin: 2px; /* Create space for the border */
      border-radius: 14px; /* Slightly smaller radius to show border */
      background: white; /* Inner gradient */
      z-index: 2; /* Ensure content is above border */
    }

    /* Adjust Bootstrap card image and body */
    .card-img-top {
      border-top-left-radius: 14px;
      border-top-right-radius: 14px;
      width: 100%;
      height: auto;
    }

    .card-body {
      border-bottom-left-radius: 14px;
      border-bottom-right-radius: 14px;
      padding: 1rem;
    }

    /* Animation keyframes */
    @keyframes border-spin {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(-360deg);
      }
    }
    /* services */

    .our-service .service-card {
        border: none;
        border-radius: 10px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .our-service .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .our-service .service-img-wrapper {
        position: relative;
        overflow: hidden;
    }
    
    .our-service .card-img-top {
        height: 200px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .our-service .service-card:hover .card-img-top {
        transform: scale(1.1);
    }
    
    .our-service .service-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .our-service .service-card:hover .service-overlay {
        opacity: 1;
    }
    
    .our-service .service-title {
        color: #fff;
        font-size: 1.5rem;
        font-weight: 600;
        text-transform: uppercase;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }
    
  
    
    .our-service .card-text {
        font-size: 0.95rem;
        color: #555;
        margin-bottom: 15px;
    }
    
    .our-service .btn-primary {
        border-radius: 5px;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }
    
    .our-service .btn-primary:hover {
        background-color: #005f73;
    }