

*{
    padding: 0; 
    margin: 0;
    box-sizing: border-box;
    
}

html, body {
    overflow-x: hidden;
    width: 100%;
    padding-left: 1px;
    padding-right: 1px
}


section{
    padding: 30px ;
}

.logo {
    display: flex;
    justify-content: center;
    height: 5%;
    width: auto;
    padding-bottom: 60px;

}
.logo img{
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    height: 20%;
    width: 20%;
}
header {  /* Changed from .header to header */
    position: relative;
    background-image: url("backgrountop.jpg"); /* Ensure correct path */
    background-size: cover; /* Ensures full coverage */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents repeating */
    height: auto; /* Adjust height as needed */
    width: 100vw;
    margin-bottom: 10px;
    opacity: 88%;
}

.backgroundtop {
    display: none; 
}
.top-nav{
    display: flex;
    align-items:center;
    justify-content: center;
    height: 40px;
    width: 100%; 
    position: absolute;
    background-color: #C6B964;
  
}
.top-ul{
    display: flex;
    gap: 20px;
    flex-direction: row;
}
.top-ul li{
    list-style: none;
    font-size: 1.2rem; 
    
}
.top-ul a{
    text-decoration: none;
    color: black;
    font-weight: bold ;
}
.top-ul a:hover{
    background-color: #fff;
}

.contact-btns{
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content:center; 
    gap: 40px;
    padding: 10px 10px;
    width: 100%;
    height: auto;
    background: linear-gradient(to bottom, #dbd6b5,#C6B964 ); /* Gradient transition */
    opacity: 100; /* Fixed opacity syntax */
    transition: background 0.5s ease-in-out; /* Smooth transition */
}
.contact-btns-phone{
    background-color: rgb(45, 42, 42);
    color: #f9f5f5;
    border-radius: 12px;
    text-decoration: none;
    border: solid black 1px;
    padding: 10px 10px;
    box-shadow: 6px 2px 10px rgba(29, 29, 29, 0.5); 
}
/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 1000;
    background-color: transparent;
    width: 30px;
}

.burger div {
    width: 20px;
    height: 2px;
    background-color: black;
    margin: 3px;
    
}
.hero-flex {
    background-image: url('imagetop1.jpg'); /* Ensure the correct path */
    background-size: cover; /* Ensures the image covers the entire area */
    background-position: center center; /* Ensures the image is fully centered */
    background-repeat: no-repeat; /* Prevents tiling */
    height: 600px;
    width: 100%; 
    max-width: 100%;
    display: flex;
    justify-content: center; 
    padding-top: 100px;
    }
.hero-container{
    border: solid black 1px;
    background-color: #f9f5f5;
    width: 600px;
    height: 60%;
    border-radius: 12px;
    
  
    
}
.hero-flex img{
    display: none;
}
.hero_info{
    text-align: center;
    text-decoration: none;
    padding: 10px;
}
.hero_info h1{
    font-size: 2.6rem;
    text-decoration: none;
    
}
.hero_info p{
   
   font-family: Arial, Helvetica, sans-serif;
   font-size: 2.2rem;
   font-weight: 200;
   font-style: italic;
   line-height: 2.1;
}



.cards {
    width:auto;
    margin: auto;
    margin-bottom: 20px;
   
}

.cards-container {
    display: grid;
    gap: 20px;
    padding-top: 0px;
  
}

.three {
    grid-template-columns: repeat(4, 2fr);
}

.four {
    grid-template-columns: repeat(4, 1fr);
   
}

.card {
    border: 2px solid black;
    height:450px; 
    background-color: rgb(247, 247, 247);
  
}
.cards h2{
    padding: 20px 20px;
    background-color: #C6B964;
    text-align: center;
    border-top: black solid 2px;
    border-left: black solid 2px;
    border-right: black solid 2px;
    font-size: 2.8rem;
}

.card img {
    width: 100%;
    height: 50%;
    object-fit: cover;

}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.card-content h3 {
    padding-bottom: 15px;
}

.card-content p {
    line-height: 25px;
    padding-bottom: 10px;
}

.card-content a {
    background-color: white;
    padding: 10px 10px;
    border:2px solid rgb(82, 82, 192);
    border-radius: 20px;
    font-size: 16px;
    color: rgb(45, 45, 86);
    justify-content: center;
    text-align: center;
     text-decoration: none;
    
}
.card-content a:hover{
    background-color: #f9f5f5;
    color: black;
    transition: 0.3;
}
.cards-extra-info{
    border: black solid 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;

}
.product-section {
    width: 90%;
    margin: auto;
    
}
.product-section h2{
    text-align: center;
    font-size: 2.8rem;
}

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

.product-card {
    border: 2px solid black;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.product-item {
    text-align: center;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    
}
.product-card h3{ 
    padding-bottom: 10px;
    text-align: center;
    
}
.product-grid button{
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color:#C6B964;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none !important;
}
.product-grid a {
    text-decoration: none;
}

.product-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.product-item button {
    background-color:#C6B964;
    color: white;
    border: none;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
}


/* video section */

.video-container-p{
    width: 100%;
    height: 600px;
    
}
.video-container {
    position: relative;
    width: 1200px;
    max-height: 100%;
    padding-bottom: 25%; 
    margin: auto;
    /* border-top: #C6B964 solid 50px; */
    padding-top: 50px;
}

.video-banner iframe {
    
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
}
.video-banner h2{
 text-align: center;
 text-decoration: none ;
 font-size: 2.1rem;
}
#about_brief {
    width: 100%;
    text-align: center;
    padding: 20px;
}

.aboutus-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    gap: 20px;
}

/* Left & Right Sections */
.aboutus-container > div {
    width: 48%;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.aboutus-container ul {
    list-style-type: none;
    padding: 0;
}

.aboutus-container li {
    margin: 8px 0;
    font-size: 16px;
}

.aboutus-container img {
    width: 100px;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
    
}
.aboutus-container h3{
    padding: 20px 0px;
    font-size: 1.9rem;
}

iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-top: 10px;
}

.aboutus-container a, .address-box button{
    display: block;
    width: 20%;
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #005f73;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.aboutus-container button a {
    color: white;
    text-decoration: none;
}

.aboutus-container button:hover {
    background-color: darkblue;
}
.address-box h1{
    font-size: 1.2rem;
}
#case-study {
    width: 80%;
    margin: auto;
   
    text-align: center;
}


.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

#case-study h1{
    padding: 22px;
    font-size: 2.1rem;
}
/* ICase Study */
.case-study-container {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
}

/* Case Study Image */
.case-study-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Content inside the case study */
.case-study-content {
    padding: 15px 0;
}

.case-study-content h2 {
    color: darkgreen;
    margin-bottom: 10px;
}

.case-study-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}
.case-study{
    text-decoration: none;
}
.case-study-container a{
    background-color: #C6B964;
    text-decoration: none;
    border-radius: 5px;
    color:#333;
    padding: 10px 10px;
    display: flex;
    width: 45%;
}
.case-study-container button{
    border-radius: 5px;
}
.case-study a:hover{
    color: #005f73;
    transform: scale(1.05);
}
#news_form {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 40px 20px;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Container for news form */
#news_form > div {
    max-width: 500px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

/* description */
#news_form p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

/* styling */
#signupForm {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#signupForm label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    text-align: left;
    width: 100%;
}

/* Input fields */
#signupForm input[type="text"],
#signupForm input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease-in-out;
}

#signupForm input[type="text"]:focus,
#signupForm input[type="email"]:focus {
    border-color: blue;
}

/*  Styling */
#signupForm input[type="checkbox"] {
    margin-right: 5px;
}

#signupForm label a {
    color: blue;
    text-decoration: none;
}

#signupForm label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.smt-btn {
    width: 100%;
    padding: 10px;
    background-color: blue;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.smt-btn:hover {
    background-color: darkblue;
}
/* Floating Cart - Initially Collapsed */
#floating-cart {
    position: fixed;
    top: 90%;
    right: 20px;
    transform: translateY(-75%);
    width: 60px; /* Small size when collapsed */
    background: white;
    border: 2px solid black;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
    text-align: center;
    z-index: 1000;
    cursor: pointer;
    transition: width 0.3s ease-in-out;
}

/* Expanded Cart */
#floating-cart.expanded {
    width: 250px;
    cursor: default;
}

/* Cart Header (Always Visible) */
#cart-header {
    font-size: 22px;
    font-weight: bold;
}

/* Hide Content by Default */
#cart-content {
    display: none;
    padding-top: 10px;
}

/* Show Cart Content When Expanded */
#floating-cart.expanded #cart-content {
    display: block;
}

/* Cart Items */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    border-bottom: 1px solid gray;
}

.cart-item p {
    margin: 0;
    font-size: 14px;
}

/* Remove Button */
.cart-item button {
    background-color: rgb(58, 24, 228);
    color: rgb(9, 9, 9);
    border: none;
    padding: 5px;
    cursor: pointer;
}

/* Checkout Button */
#checkout {
    width: 100%;
    padding: 10px;
    background-color: green;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

#checkout:hover {
    background-color: darkgreen;
}
footer {
    background-color: #222;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

/* Footer Container */
.footer-container {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer Menu */
.footer-ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-ul li {
    display: inline;
}

.footer-ul a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

.footer-ul a:hover {
    color: #f8b400; /* Change color on hover */
}

.footer-nav p {
    margin-top: 10px;
    font-size: 14px;
    color: #ccc;
}

/* Social Media Icons */
.icons_footer {
    margin-top: 10px;
    display: flex;
    gap: 15px;
}

.icons_footer a {
    color: white;
    font-size: 24px;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.icons_footer a:hover {
    color: #f8b400;
    transform: scale(1.2);
}
/* about us page  */
.aboutus-introbreif {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}.aboutus-container{
    padding-top: 30px;
}

.aboutus-container2 {
    width: 80%;
    margin: auto;
    max-width: 900px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}


.aboutus-container2 h1 {
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.aboutus-container2 h2 {
    font-size: 24px;
    color: #005f73;
    margin-top: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}


.aboutus-container2 p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}


.aboutus-container2 ul {
    list-style-type: none;
    padding: 0;
}

.aboutus-container2 ul li {
    font-size: 16px;
    background: #eaf5f7;
    padding: 12px;
    margin-bottom: 10px;
    border-left: 5px solid #005f73;
    border-radius: 5px;
}/* Consent Form Section */
.consent-form {
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
}

.consent-container {
    width: 80%;
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Headings */
.consent-container h2, .consent-container h3 {
    color: #005f73;
    margin-bottom: 15px;
}

/* Form Text */
.consent-container p {
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
}

/* Input Fields */
.consent-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* Checkbox Label */
.consent-container label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
}

/* Submit Button */
.consent-container button {
    width: 100%;
    padding: 10px;
    background-color: #005f73;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease-in-out;
}

.consent-container button:hover {
    background-color: #00404d;
}

/* trail page  */
/* Trail Page Styling */
.trail-container {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 40px 0;
}

.trail-container h1 {
    font-size: 28px;
    color: #005f73;
}

.trail-container p {
    font-size: 16px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 15px;
}


/* Photo Gallery Section */
#photo-gallery {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 40px 0;
}

#photo-gallery h2 {
    font-size: 28px;
    color: #005f73;
    margin-bottom: 20px;
}

/* Grid Layout */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 15px; /* Space between images */
    margin: auto;
}

/* Photo Items */
.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.photo-item img:hover {
    transform: scale(1.05);
}

/* Booking Section */
#booking {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 100px 100 px;
    background-color: #f1ebeb;
    border-radius: 10px;
}

/* Booking Container */
.booking-container {
    max-width: 600px;
    margin: auto;
 
}

/* Heading & Description */
.booking-container h2 {
    font-size: 2.8rem;
    color: #005f73;
    margin-bottom: 10px;
}

.booking-container p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

/* Booking Button */
.booking-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #005f73;
    color: white;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

/* Hover Effect */
.booking-btn:hover {
    background-color: #00404d;
    transform: scale(1.05);
}
.trail-container h1{

    font-size: 2.1rem;
}
.trail-container p{
font-size: 1.8rem;
}
.terms-continer{
    width: 100%;
    text-align: center;
    padding-top: 10%;
}
/* @media (min-width: 345px) and (max-width: 435px) {
    .photo-grid {
        grid-template-columns: 1fr; 
    }
    
    .contact-btns {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero-container {
        width: 90%;
        height: auto;
    }
} */

@media (min-width: 320px) and (max-width: 400px) {
   
    .burger {
        display: flex;
        width: 50px;
    }
    .top-nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: white;
        border-top: 2px solid black;
        z-index: 4000;
        height: 100%;
        opacity: 92%;

    }
    .top-ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    .top-ul li {
        padding: 10px 0;
    }
    .top-nav.active {
        display: flex;
    }
    .header{
        max-width: 100%;
    }
    .logo {
        display: flex;
        justify-content: center;
        height: 2%;
        
        
    }
    .logo img{
        border-radius: 50%;
        overflow: hidden;
        object-fit: cover;
        height: 50%;
        width: 50%;   
    }
    .body{
        width: 100%;
    }
    .hero-flex {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        width: 100%; height: 50dvh;
    }
    .hero-container{
        width: 70%;
        height: 200px;
    }

    .hero_info h1 {
        font-size: 1.1rem;
        padding-bottom: 20px;
    }

    .hero_info p {
        font-size: 0.9rem;
        line-height: 1.1;

    }

    .hero-flex button {
        display: none;
    }

    #home {
        display: block;
    }
    .cards {
      width: 100%;
      justify-content: center;
    }

    .three {
    grid-template-columns: repeat(1, 1fr);
   
    }
    .product-section{
        width: 100%;
        justify-content: center; 
        text-align: center;
    
      }
    
      #case-study {
        width: 100%;
      }
      .case-study-grid {
       
        max-width: 100%; /* Keeps it responsive */
        margin: 0 auto; /* Centers the grid container */
        justify-content: center; /* Aligns items inside the grid */
        grid-template-columns: repeat(1, 1fr); /* One column layout */
    }
    
    .case-study-container {
        max-width: 370px;
        margin: 0 auto; /* Centers the container */
    }
    
    .case-study-content p {
        font-size: 1.1rem;
        line-height: 1.1;
    }
    .case-study a{
        text-decoration: none;
    }
    .video-container{
        width: 100%;
    }
  
    #about_brief {
        max-width: 100%;
        height:auto;
        width: 100%;
        padding-bottom: 100px;
    }
    .aboutus-container{
        display: grid;
        grid-template-columns: repeat(1, 1fr);

    }
   
    .aboutus-container > div {
        width: 100%;
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
        text-align: left;
    }
    
    .aboutus-container ul {
        list-style-type: none;
        padding: 0;
    }
    
    .aboutus-container li {
        margin: 8px 0;
        font-size: 1.1rem;
    }
    
    .aboutus-container img {
        width: 100px;
        height: auto;
        border-radius: 8px;
        margin-top: 10px;
        
    }
    .aboutus-container h3 {
        font-size: 1.3rem;
    }
    

    #news_form {
        
        max-width: 100%;
        width: 90%;
        padding: auto;
        margin-top: -25%;
    }
    .photo-grid {
        grid-template-columns: repeat(2, 1fr); /* 4 columns */  
    }
    
    .booking-container h2, .cards h2, .product-section h2, .hero-flex h1{ 
        font-size: 1.8rem;
    }
    .zoo-continer{
        text-align: center;
    }


}
    @media (min-width: 400px) and (max-width: 720px) {

                .burger {
                    display: flex;
                    width: 50px;
                }
                .top-nav {
                    display: none;
                    width: 100%;
                    position: absolute;
                    top: 60px;
                    left: 0;
                    background-color: white;
                    border-top: 2px solid black;
                    z-index: 4000;
                    height: 100%;
                    opacity: 92%;
            
                }
                .top-ul {
                    flex-direction: column;
                    width: 100%;
                    text-align: center;
                }
                .top-ul li {
                    padding: 10px 0;
                }
                .top-nav.active {
                    display: flex;
                }
                .header{
                    max-width: 100%;
                }
                .logo {
                    display: flex;
                    justify-content: center;
                    height: 2%;
                    
                    
                }
                .logo img{
                    border-radius: 50%;
                    overflow: hidden;
                    object-fit: cover;
                    height: 50%;
                    width: 50%;
                    
                }
                .body{
                    width: 100%;
                }
            
                .hero-flex {
                    flex-direction: column;
                    align-items: center;
                    max-width: 100%;
                    width: 100%; height: 50dvh;
                }
                .hero-container{
                    width: 70%;
                    height: 200px;
                
                    
                }
            
                .hero_info h1 {
                    font-size: 1.1rem;
                    padding-bottom: 20px;
                }
            
                .hero_info p {
                    font-size: 0.9rem;
                    line-height: 1.1;
            
                }
            
                .hero-flex button {
                    display: none;
                }
            
                #home {
                    display: block;
                }
                .cards {
                width: 100%;
                justify-content: center;
                }
            
                .three {
                grid-template-columns: repeat(1, 1fr);
            
                }
                .product-section{
                    width: 100%;
                    justify-content: center; 
                    text-align: center;
                
                }
                
                #case-study {
                    width: 100%;
                }
                .case-study-grid {
                
                    max-width: 100%; /* Keeps it responsive */
                    margin: 0 auto; /* Centers the grid container */
                    justify-content: center; /* Aligns items inside the grid */
                    grid-template-columns: repeat(1, 1fr); /* One column layout */
                }
                
                .case-study-container {
                    max-width: 370px;
                    margin: 0 auto; /* Centers the container */
                }
                
                .case-study-content p {
                    font-size: 1.1rem;
                    line-height: 1.1;
                }
                .case-study a{
                    text-decoration: none;
                }
                .video-container{
                    width: 100%;
                }
            
                #about_brief {
                    max-width: 100%;
                    height:auto;
                    width: 100%;
                    padding-bottom: 100px;
                }
                .aboutus-container{
                    display: grid;
                    grid-template-columns: repeat(1, 1fr);
            
                }
            
                .aboutus-container > div {
                    width: 100%;
                    background: white;
                    padding: 20px;
                    border-radius: 8px;
                    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
                    text-align: left;
                }
                
                .aboutus-container ul {
                    list-style-type: none;
                    padding: 0;
                }
                
                .aboutus-container li {
                    margin: 8px 0;
                    font-size: 1.1rem;
                }
                
                .aboutus-container img {
                    width: 100px;
                    height: auto;
                    border-radius: 8px;
                    margin-top: 10px;
                    
                }
                .aboutus-container h3 {
                    font-size: 1.3rem;
                }
                
            
                #news_form {
                    
                    max-width: 100%;
                    width: 90%;
                    padding: auto;
                    margin-top: -15%;
                }
                .booking-container h2, .cards h2, .product-section h2, .hero-flex h1{ 
                    font-size: 1.8rem;
                }
                .photo-grid {
                    grid-template-columns: repeat(4, 1fr); /* 4 columns */  
                    
                }
                .photo-grid img{
                    height: 150px;
                }
                .zoo-continer{
                    text-align: center;
                }
            
                
                 
        }

        /* sizing to fit most screens such as ipads to laptops */
        @media (min-width: 720px) and (max-width: 900px) {
        
            
            .burger {
                display: none;
            }
            .top-nav{
                display: flex;  
            }
           
            
            .header{
                max-width: 100%;
            }
            .logo {
                display: flex;
                justify-content: center;
                height: 2%;
                
                
            }
            .logo img{
                border-radius: 50%;
                overflow: hidden;
                object-fit: cover;
                height: 50%;
                width: 50%;
                
            }
            .body{
                width: 100%;
            }
           
            .hero-flex {
                flex-direction: column;
                align-items: center;
                max-width: 100%;
                width: 100%; 
                height: 50dvh;
               
            }
            .hero-container{
                width: 70%;
                height: 200px;
                
            }
        
            .hero_info h1 {
                font-size: 2rem;
                padding-bottom: 20px;
            }
        
            .hero_info p {
                font-size: 1.9rem;
                line-height: 1.1;
        
            }
        
            .hero-flex button {
                display: none;
            }
        
            #home {
                display: block;
                padding-top: 30px;
            }
            .cards {
              width: 100%;
              justify-content: center;
            }
        
            .three {
                grid-template-columns: repeat(2, 1fr);
                font-size: 1.0rem;
            }
          
           
            .product-section{
                width: 100%;
                justify-content: center; 
                text-align: center;
            
            }
              .product-container {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin-bottom: 30px;
            }
          
            
              #case-study {
                width: 100%;
              }
              .case-study-grid {
               
                max-width: 100%; /* Keeps it responsive */
                margin: 0 auto; /* Centers the grid container */
                justify-content: center; /* Aligns items inside the grid */
                grid-template-columns: repeat(1, 1fr); 
                
                
            }
            
            .case-study-container {
                margin: 0 auto; 
            }
            
            .case-study-content p {
                font-size: 1.5rem;
                line-height: 1.1;
            }
            .case-study-content {
                text-decoration: none;
                
            }
            .case-study-content h3{
                font-size: 1.9rem;
                padding-bottom: 10px;
            }
            .video-container{
                width: 100%;
            }
          
            #about_brief {
                max-width: 100%;
                height:auto;
                width: 100%;
                padding-bottom: 100px;
            }
            .aboutus-container{
                display: grid;
                grid-template-columns: repeat(1, 1fr);
        
            }
           
            .aboutus-container > div {
                width: 100%;
                background: white;
                padding: 20px;
                border-radius: 8px;
                box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
                text-align: left;
            }
            
            .aboutus-container ul {
                list-style-type: none;
                padding: 0;
            }
            
            .aboutus-container li {
                margin: 8px 0;
                font-size: 1.1rem;
            }
            
            .aboutus-container img {
                width: 100px;
                height: auto;
                border-radius: 8px;
                margin-top: 10px;
                
            }
            .aboutus-container h3 {
                font-size: 1.3rem;
            }
            
        
            #news_form {
                
                max-width: 100%;
                width: 90%;
                padding: auto;
                margin-top: -10%;
            }
            .booking-container h2, .cards h2, .product-section h2, .hero-flex h1{ 
                font-size: 1.8rem;
            }
            .zoo-continer{
                text-align: center;
            }
            #booking {
                margin-top: 50px;
            }
        
        
            
        } 
        @media (min-width: 900px) and (max-width: 1224px) {
        
            
            .burger {
                display: none;
            }
            .top-nav{
                display: flex;  
            }
           
            
            .header{
                max-width: 100%;
            }
            .logo {
                display: flex;
                justify-content: center;
                height: 2%;
                
                
            }
            .logo img{
                border-radius: 50%;
                overflow: hidden;
                object-fit: cover;
                height: 50%;
                width: 50%;
                
            }
            .body{
                width: 100%;
            }
           
            .hero-flex {
                flex-direction: column;
                align-items: center;
                max-width: 100%;
                width: 100%; 
                height: 50dvh;
               
            }
            .hero-container{
                width: 70%;
                height: 200px;
                
            }
        
            .hero_info h1 {
                font-size: 2rem;
                padding-bottom: 20px;
            }
        
            .hero_info p {
                font-size: 1.9rem;
                line-height: 1.1;
                padding-bottom: 40px;
        
            }
        
            .hero-flex button {
             display: none;
            }
        
            #home {
                display: block;
                padding-top: 30px;
            }
            .cards {
              width: 100%;
              justify-content: center;
            }
        
            .three {
                grid-template-columns: repeat(2, 1fr);
                font-size: 1.0rem;
            }
          
           
            .product-section{
                width: 100%;
                justify-content: center; 
                text-align: center;
            
            }
              .product-container {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin-bottom: 30px;
            }
          
            
              #case-study {
                width: 100%;
              }
              .case-study-grid {
               
                max-width: 100%; /* Keeps it responsive */
                margin: 0 auto; /* Centers the grid container */
                justify-content: center; /* Aligns items inside the grid */
                grid-template-columns: repeat(3, 1fr); 
              
                
            }
            
            .case-study-container {
                margin: 0 auto; 
            }
            
            .case-study-content p {
                font-size: 1.1rem;
                line-height: 1.1;
            }
            .case-study-content a {
                text-decoration: none;
                
            }
            .video-container{
                width: 100%;
            }
          
            #about_brief {
                max-width: 100%;
                height:auto;
                width: 100%;
                padding-bottom: 100px;
            }
            .aboutus-container{
                display: grid;
                grid-template-columns: repeat(1, 1fr);
        
            }
           
            .aboutus-container > div {
                width: 100%;
                background: white;
                padding: 20px;
                border-radius: 8px;
                box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
                text-align: left;
            }
            
            .aboutus-container ul {
                list-style-type: none;
                padding: 0;
            }
            
            .aboutus-container li {
                margin: 8px 0;
                font-size: 1.1rem;
            }
            
            .aboutus-container img {
                width: 100px;
                height: auto;
                border-radius: 8px;
                margin-top: 10px;
                
            }
            .aboutus-container h3 {
                font-size: 1.3rem;
            }
            
        
            #news_form {
                
                max-width: 100%;
                width: 90%;
                padding: auto;
                margin-top: -10%;
            }
            .booking-container h2, .cards h2, .product-section h2, .hero-flex h1{ 
                font-size: 2.1rem;
            }
            .zoo-continer{
                text-align: center;
            }
        
            
        } 

        
       