/* General Styles */
*{
    box-sizing: border-box;
    overflow: none;
}
body {
    overflow: none;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, rgba(0, 0, 255, 0.774), rgba(0, 128, 0, 0.712), rgba(0, 0, 0, 0.788));
    color: black;
}

a {
    text-decoration: none;
    color: #007bff;
}
.contain {
    width: 100%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
  }
  
  /* =========================
   Header Styles
   ========================= */
  header {
    background-color: #000033;
    color: #fff;
    padding: 1rem 0;
    border-bottom: 3px solid #e8491d;
  }
  
  header .contain {
    display: flex; /* Use Flexbox for alignment */
    align-items: center; /* Vertically center content */
    justify-content: space-between; /* Space logo and nav evenly */
  }
  
   .logo {
    float: left; /* Still use float for older browser support */
    font-weight: bold;
    font-size: 1.5rem; /* Larger logo text */
    color: #fff;
    text-decoration: none;
  
  }
  header .logo img {
    max-width: 150px;
    height: auto;
    vertical-align: middle; /* Align image with text */
  }
/* Header and Navigation */
/* header {
    width: 100%;
    overflow: none;
    background-color: #000033;
    color: #fff;
    padding: 1em 0;
    position: sticky; /* Stick the header to the top *
    top: 0;
    z-index: 100; /* Ensure it stays above other content *
}*/

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1em;
}

/*.logo {
     font-size: 1.5em; 
    /* font-weight: bold; *
    animation: fadeIn 1s ease-in-out; /* Initial Fade-In Animation *
}
.logo img{
    object-fit: cover;
    width: 180px;
    height: 40px;
} */

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 1em;
}

nav ul li a {
    color: #fff;
    padding: 0.5em 0.75em;
    border-radius: 5px;
  position: relative;
    transition: background-color 0.3s ease; /* Smooth transition */
}
nav ul li a::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 5px;
    left: 0;
    bottom: -6px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .5s;
}
nav ul li a:hover::after{
    transform: scaleX(1);
    transform-origin: left;
}

nav ul lo000ui a:hover {
    background-color: #555;
}

.login{
    position: relative;
    width: 400px;
    height: 440px;
    background: rgba(255, 255, 255, 0.452);
    border: 2px solid white;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-left: 450px;
    margin-top: 30px;
    display: flex;
    box-shadow: 0 0 30px black;
   
}




/* Contact Hero Section */
#contact-hero {
    background-color: #f0f8ff;
    padding: 60px 0;
    text-align: center;
    overflow: hidden; /* Clip animations */
}

#contact-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#contact-hero .contact-hero-content {
    width: 50%;
    text-align: left;
}

#contact-hero .contact-hero-content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #008000;
}

#contact-hero .contact-hero-image {
    width: 40%;
}

#contact-hero .contact-hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    
}
.contact-hero-content{
    margin-left: 30px;
}
.contact-hero-image {
    margin-right: 60px;
}

/* Contact Form Section */
#contact-form-section {
    padding: 60px 0;

}
 .containe{
    display: flex;

} 

/* #contact-form-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    
} */

.contact-info {
    background-color: darkgreen;
    color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgb(0, 0, 0);
    width: 40%;
    margin-left: 100px;
    margin-top: 30px;
}

.contact-info h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: white;
    margin-top: 200px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 10px;
    color: white;
    
}

.contact-info a {
    color: white;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.5em;
    color: #555;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #008000;
}
@media  screen and(max-width:400px){
    
    .contact-info .contact-hero-content{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5em;
        margin-top: 1.5em;
    }

    
        
}





/* .contact-form {
    background-color:rgba(245, 245, 220, 0.63);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-left: 0px;
    width: 40%;
}

.contact-form h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #008000;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #008000;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #008000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #006400;
}

#form-message {
  margin-top: 15px;
  font-weight: bold;
}

.success {
    color: green;
}

.error {
    color: red;
} */

/* Footer Styles */
@media screen and(max-width:400px) {
    body{
        display:grid;
     grid-template-areas: 'header'
     'nav' 
     'section'
     'footer'
     ;
     
    }
    header{
        grid-area: header;
        width: 50%;
    }
    nav{
        grid-area: nav;
        width: 50%;
    }
    section{
        grid-area: section;
        width: 50%;
        display: flex;
        flex-direction: row;
    }
}

@media (max-width: 786px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        margin-top: 0.5em;
        flex-direction: column;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 0.5em;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
    }
} 
.grow{
    margin-top: 50px;
    color: white;
    padding: px;
    text-align: center;
  }
  
  .grow-container {
             /* Use flexbox for layout */
    flex-direction: row;     /* Items in a row (side by side) */
    justify-content: space-around; /* Distribute items evenly */
    align-items: center;       /* Vertically center items */
    max-width: 1200px;        /* Optional: Limit the width */
    margin: 0 auto;         /* Center the container horizontally */
  }
  
  .grow-map {
    width: 50%;              /* Adjust width as needed */
  }
  
  .grow-content {
    width: 100%;              /* Adjust width as needed */
    text-align: center;
  }
  
  /* Responsive adjustments (optional) */
  @media (max-width: 768px) {
    .grow-container {
      flex-direction: column; /* Stack items vertically on smaller screens */
      text-align: center;
    }
  
    .grow-map {
      width: 100%;
      margin-bottom: 20px;
    }
  
    .grow-content {
      width: 100%;
      text-align: center;
    }
  }
  .container {
    width: 80%;
    margin: auto;
   
    padding: 0 20px;
}
@media (max-width: 786px){
.containe{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5em;
        margin-top: 1.5em;
    }
    .contact-info {
        width: 80%;
       
    } 
    .login{
        width: 80%;
        height: 800px;
    }
}
@media (max-width: 400px){
.containe{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5em;
        margin-top: 1.5em;
    }
    .contact-info {
        width: 80%;
       
    } 
    .login{
        width: 80%;
        height: 800px;
    }
}

footer {
    background-color: #000033; /* Dark background */
    color: #fff;
    padding: 40px 0;
    font-size: 0.9em; /* Slightly smaller font for the footer */
}

footer .container {
    width: 80%; /* Match container width from other sections */
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo h3{
    margin-top: 70px;
    width: 170px; /* Adjust logo size */
}


.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #fff;
   
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc; /* Lighter color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: green;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact i {
    margin-right: px;
    color: #fff;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact a:hover{
    color: #008000;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.5em;
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: green;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555; /* Subtle separator line */
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
}










/* Booking Page Layout */
.booking-page-main {
    padding: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    background: #fffefb;
}

.booking-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

/* Form Section */
.booking-form-section {
    flex: 1;
    min-width: 300px;
}

.booking-form-section h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #7f8c8d;
}

form fieldset {
    border: 2px solid #f6b93b;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: #fffaf3;
}

legend {
    font-weight: bold;
    font-size: 1.1rem;
    color: #d35400;
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-group-half {
    flex: 1;
    min-width: 200px;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: #444;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #f9f9f9;
}

textarea {
    resize: vertical;
}

/* Quantity Selectors */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.quantity-selector button {
    padding: 0.3rem 0.6rem;
    font-size: 1rem;
    background-color: #f6b93b;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    background: #fff;
}

/* Payment Section */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.payment-option input {
    transform: scale(1.2);
}

.payment-details-area {
    margin-top: 1rem;
    background-color: #f3f3f3;
    padding: 1rem;
    border-radius: 6px;
}

.trust-signals {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #2c3e50;
}



/* Summary Section */
.booking-summary-section {
    flex: 0.8;
    min-width: 300px;
}

.summary-box {
    background-color: #fffef6;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.summary-box h2 {
    margin-bottom: 1rem;
    color: #d35400;
}

.summary-item {
    margin-bottom: 0.8rem;
}

.summary-pricing {
    margin-top: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.total-price strong {
    color: #e67e22;
    font-size: 1.1rem;
}

.summary-image img {
    max-width: 100%;
    border-radius: 6px;
    margin-top: 1rem;
}

/* Button Styles */
.button-base {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.button-primary {
    background-color: #d35400;
    color: white;
}

.button-primary:hover {
    background-color: #e67e22;
}

.terms-agreement {
    margin-bottom: 1rem;
}

.secure-info {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-page-main {
        padding: 1rem;
    }

    .navbar .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-links,
    .footer-contact,
    .footer-social {
        margin-bottom: 30px;
    }

    .footer-social a {
        margin: 0 10px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom p {
        margin-bottom: 5px;
    }

    .footer-bottom a {
        display: block;
        margin: 5px auto;
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header .container {
        flex-direction: column;
        text-align: center;
    }

    header nav {
        margin-top: 10px;
    }

    header nav a {
        margin: 0 10px;
    }

    #contact-hero .container {
        flex-direction: column;
        text-align: center;
    }

    #contact-hero .contact-hero-content,
    #contact-hero .contact-hero-image {
        width: 100%;
    }

    #contact-hero .contact-hero-image {
        margin-top: 20px;
    }

    #contact-form-section .container {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.login{
    position: relative;
    width: 500px;
    height: 600px;
    background: rgba(255, 255, 255, 0.452);
    border: 2px solid white;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-left: 5px;
    margin-top: px;
    display: flex;
    box-shadow: 0 0 30px black;
   
}

.l0gin .form{
    width: 100%;
    padding: 40px;
}
.login h5{
    font-size: 2em;
    color: black;
    text-align: center;
    margin-bottom: 30px;
}
.box{
    position: relative;
    width: 100%;
    height: 50px;
    border-bottom: 2px solid black;
    margin: 30px 0;
   
}

.box label{
    position: absolute;
    top: 50%;
    left: 5px;
    pointer-events: none;
    transform: translateY(-50%);
    color: black;
    font-weight: 400;
    font-size: 1em;
    transition: .3s;
}
.box input{
border: none;
height: 100%;
width: 100%;
background: transparent;
outline: none;
font-size: 1em;
font-weight: 600;
color: black;
padding: 0 40px 0 5px;

}
.box input:focus~label,
.box input:valid~label{
    top: -5px;
}
.box .icon{
    position: absolute;
    right: 8px;
    font-size: 1.2em;
    line-height: 57px;
}
textarea{
    background-color: rgba(245, 245, 220, 0.966);
    border: none;
    width: 360px;
    
}
.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #008000;
    color: #fff;
    margin-top: 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #006400;
}


/* =========================
   Mobile Menu Toggle
   ========================= */
   .nav-toggle {
    display: none; /* Hidden by default */
    background: transparent;
    border: none;
    cursor: pointer;
    float: right;
    padding: 0;
    margin-top: 10px; /* Align vertically with logo on desktop */
}

.nav-toggle:focus {
    outline: none; /* Remove default focus outline */
}

.hamburger {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Style the icon when menu is open */
.nav-toggle.open .hamburger {
    background-color: transparent; /* Hide the middle line */
}

.nav-toggle.open .hamburger::before {
    transform: translateY(8px) rotate(45deg); /* Rotate top line */
}

.nav-toggle.open .hamburger::after {
    transform: translateY(-8px) rotate(-45deg); /* Rotate bottom line */
}

/* =========================
   Mobile Navigation Styles (Hidden by Default)
   ========================= */
.nav.nav--visible { /* The menu is visible with Javascript */
    display: block;
    position: absolute;
    top: 100%; /* Below the header */
    left: 0;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.95); /* Dark with transparency */
    z-index: 10; /* Ensure it's above content */
    padding: 1rem 0; /* Add some padding */
}

.nav.nav--visible ul {
    display: block; /* Stack items vertically */
    text-align: center;
    padding: 0;
}

.nav.nav--visible li {
    padding: 0.75rem 0;
}

.nav.nav--visible a{
    font-size: 1.1rem;
    display: block; /* Make links fill the container for easier tapping */
    padding: 0.5rem; /* Add padding around the links */
}

/* =========================
   Hero Section Styles
   ========================= */
#hero {
    background-color: #eee;
    padding: 3rem 0;
    text-align: center;
}

/* =========================
   Responsive Design (Media Queries)
   ========================= */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    /* Mobile View: Adjust Header Layout */
    header .container {
        flex-direction: column; /* Stack logo and nav */
        align-items: flex-start; /* Align to the left */
    }

    header .logo {
        float: none; /* Remove float */
        text-align: left; /* Align to the left */
    }

    /* Mobile View: Hide Desktop Navigation */
    .nav {
        display: none;
        float: none; /* Remove float */
        width: 100%; /* Take full width */
    }

    /* Mobile View: Show Mobile Menu Toggle */
    .nav-toggle {
        display: block;
    }

    /*Style Nav link item*/
    li {
      border-bottom: 1px solid gray;
    }

    .nav.nav--visible li:last-child {
        border-bottom: none;
    }

    /* Mobile View: Position Header and Navigation */
    header {
      position: relative;
    }

}
