 *{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
 }
 /* General Styles */
 body {
    background-color: #f4f4f4;
    font-family: 'Montserrat';
    box-sizing: border-box;
}

 /* Eda-Logo Styling */
.social-icons {
    display: flex;
    gap: 15px;
    font-size: 35px;
  }
  .social-icons a {
    color: #2a2ab9     ;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .social-icons a:hover {
    color: #0077b5; 
}

.wats-app-icon {
    font-size: 2.8em;
    position: fixed;
    top: 70%;
    right: 50px;
    z-index: 1200;
    background-color: white;
    border-radius: 50%;
    padding: 11px 20px;
    box-shadow: 2px 2px 3px rgb(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
    .wats-app-icon {
        font-size: 2em;
        right: 20px;
        padding: 8px 14px;
    }
}

.wats-app-icon a:hover {
    color: #0077b5; 
}

/* Navbar section */
.ctanav-button {
    text-transform: uppercase;
    margin: 8px 0;
    background: white;
    color: #2a2ab9;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 540;
    
}
.navbar {
    width: 100%;
    background: #2a2ab9;
    position: fixed;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3); 
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 10px;
    margin: 0 70px;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    color: white;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    font-size: 15px;
    font-weight: 500;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: orange;
    transition: width 0.3s ease-in-out;
}
.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styling */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    color: #fff;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow: hidden;
}
.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #444;
}

.dropdown-visible {
    max-height: 200px; /* Show only 5 items initially */
    overflow: hidden;
}

.dropdown-scroll {
    max-height: 150px;
    overflow-y: auto; /* Enable scrolling for the rest of the items */
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Navigation icons */
.nav-icons {
    display: none;
}
.nav-toggle, .nav-close {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.eda-container img{
    width: 300px;
    height: auto;

}
.eda-container{
    padding-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 70px;
}

/* Hero section */
.hero{
    width: 100%;
    height: 50vh;
    background-image: linear-gradient(rgba(53, 53, 54, 0.2) , rgba(53, 53, 54, 0.2) ), url(images/zebra-hero.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}
.hero .content h1{
    font-size: 100px;
    margin:0;
    padding: 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6 );
    margin-bottom: 15px;
}

.hero .content  p{
    font-size: 2rem;
    font-weight: 400;
    text-shadow: 3px 5px 6px rgba(0, 0, 0, 0.4 );
}

.container {
    max-width: 1500px;
    margin: 0 auto;             /* Picture and paragraph container - sets the content at the center of the page */
    padding: 0px;
    margin-bottom: 80px;
}
.paragraph-with-image {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6em;
    color: #242424;
    text-align: left;
    margin: 0 160px;
}
.paragraph-with-image img {
    width: 350px;
    height: auto;
    border-radius: 5px;
}
@media(max-width: 1151px) {
    .paragraph-with-image{
        margin: 0 30px;
    }
}

.reverse{
    flex-direction: row-reverse;
    margin-top: 20px;
    
}

/*Destination Section*/
.destination {
    min-height: 100vh;
    height: auto;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    padding: 2rem;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.destination.active {
    display: flex;
}
.destination-title{
    font-size: 5.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.destination-description{
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    padding: 15px;
}

.destination-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.destination-details {
    display: none;
    background-color: white;
    color: black;
    padding: 2rem;
    text-align: center;
    box-sizing: border-box;
}
.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    max-width: 1000px ;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-items: center;
    align-items: center;
    z-index: 2;
}
@media (max-width: 480px) {
    .details-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);  /* Single column for small screens */
    }
}
.detail-item img {
    width: 250px;
    display: flex;
    margin: 0 auto 0.5rem auto;
    border-radius: px;
}
.detail-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 1rem;
}

.detail-item h3 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
    color: #333;
}
.detail-item p {
    font-size: 1.2em;
    color: #272727;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 400;
    line-height: 1.3;
}
.detail-item-indipendent-p{
    font-size: 1.2em;
    padding: 2rem;   
    max-width: 1000px; 
    color: #272727;

}

/* Read More / Read Less */
.read-more, .read-less {
    background-color: #f90;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: medium;
    border-radius: 5px;
    font-size: 18px;
}

/* Destination page - styling */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 1000;
}

.screen-prev-arrow {
    left: 10px;
    margin-left: 0px;
}

.screen-next-arrow {
    right: 10px;
}

.nav-arrow i {
    font-size: 24px;
}

.nav-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.destination.active .nav-arrow {
    display: block;
}

.destination:not(.active) .nav-arrow {
    display: none;
}

/*East-afrika-message-section with make inquiries cta*/
.East-afrika-message {
    margin: 50px 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    margin-bottom: 50px;
    margin-top: 80px;
}
.East-afrika-message-content p{
    font-size: 1.3rem;
    font-weight: 420;
    line-height: 1.6em;
    color: #242424;
}
@media(max-width: 1307px){
    .East-afrika-message {
     margin: 50px 100px;
}}

  /* Book now button */
.make-inquiries-btn-container{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}
.make-inquiries-btn {
    font-size: 18px;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    color: white;
    animation: colorCycle 2s linear infinite;
    transition: transform 0.2s ease;
    text-decoration: none;
  }

  @keyframes colorCycle {
    0%   { background-color: #ff6b6b; }
    25%  { background-color: #feca57; }
    50%  { background-color: #48dbfb; }
    75%  { background-color: #1dd1a1; }
    100% { background-color: #ff6b6b; }
  }


/*About us Section*/
.about-section {
    height: 100vh;
    overflow: hidden;
    background-image: radial-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(images/abt.jpg);
    background-size: cover;
    background-position: center;
}
.about-content{
    max-width: 900px;
    text-align: left;
    color: white;
    margin: 13% 50px;
}
.about-content h2 {
    font-size: 4rem;
    margin-bottom: 20px;
}
.about-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 400;
} 


/*packages Section*/
.package-section{
    box-sizing: border-box;
    background-color: #dadada;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}
.package-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(800px, 1fr)); /* Adjusted for better responsiveness */
    gap: 0px;
    padding: 50px 20px 50px 20px;
}

.package-contents {
    margin: 15px 10px; /* Reduced margin for smaller screens */
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

.package-contents h2 {
    font-size: 1.9rem; /* Adjusted font size for better scaling */
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.more-info-btn {
    font-size: 14px;
    font-weight: 500;
    background-color: rgb(255, 136, 0);
    border-radius: 10px;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 20px;
    color: #ffffff;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.more-info-btn:hover {
    background-color: #ff8c00;
    transform: scale(1.05); /* Slight zoom effect */
}

@media (max-width: 1629px) {
    .package-wrapper {
        grid-template-columns: repeat(2, 1fr); 
    }
    .package-contents h2 {
        font-size: 1.5rem;
    }
    }

@media (max-width: 768px){
    .more-info-btn {
        font-size: 14px;
    }
    .package-section{
        margin: 40px 0;
        padding: 0;
    } 
    .package-wrapper {
        margin: 0;
        padding: 35px 0;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Adjusted for medium screens */
    }
}


/* About us - Grid Section - this section gives
 more info_interms of services, about the company */

/* Grid container */
.about-grid-display {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: auto;
    margin: 40px 15px;
    box-sizing: border-box;
}

/* Responsive: 1 column on tablets and phones */
@media (max-width: 885px) {
    .about-grid-display {
        grid-template-columns: 1fr;
        height: auto;
        margin: 35px 15px;
        padding: 0;
    }
}

@media (max-width: 609px) {
    .about-grid-display {
        grid-template-columns: 1fr;
        height: auto;
        margin: 30px 10px;
        padding: 0;
    }
}

/* Grid Item (Card Style) */
.about-grid-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-grid-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Section Heading */
.about-grid-content h3 {
    color: #1a3d3d;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin-bottom: 1rem;
}

/* List Styling */
.about-grid-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-grid-content ul li {
    margin-bottom: 8px;
    color: #8c5c00;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.7;
}

/* Paragraph Styling */
.about-grid-content p {
    color: #333;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    margin-top: 10px;
}
   /* About us - Grid Section - END */

       

/* souvenir-section - responsive 
and visually balanced styling */

.souvenir-section {
    background-image: url(images/Souveneir-01-01-01-01.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax feel on large screens */
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: left;
    padding: 30px 7%;
    box-sizing: border-box;
    height: auto;
}

.souvenir-content {
    padding: 10% 5%;
    max-width: 1000px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* subtle background for contrast */
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.souvenir-content h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: rgb(22, 21, 21);
    margin-bottom: 1.5rem;
    text-align: left;
}

.souvenir-content dd {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

.souvenir-content dd li {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: 0.4rem;
    list-style: disc;
}

.souvenir-content p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    padding-right: 0;
    margin-top: 1.5rem;
    text-align: left;
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .souvenir-content {
        padding: 12% 6%;
    }

    .souvenir-content h1 {
        font-size: clamp(1.8rem, 5vw, 2.3rem);
    }

    .souvenir-content dd li,
    .souvenir-content p {
        font-size: clamp(1rem, 3vw, 1.3rem);
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .souvenir-section {
        background-attachment: scroll;
        padding: 0 4%;
    }

    .souvenir-content {
        padding: 15% 6%;
    }

    .souvenir-content h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1.2rem;
    }

    .souvenir-content dd li,
    .souvenir-content p {
        font-size: clamp(0.95rem, 4vw, 1.2rem);
        line-height: 1.6;
    }

    .souvenir-content dd {
        padding-left: 1rem;
    }
}

            /* souvenir-section - END */



/* Partner Logos Section Base */
.partners-wrapper {
    min-height: 40vh;
    height: auto;
    padding: 20px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.partners-wrapper h2{
    padding: 3.2rem 5px;
    font-size: clamp(2rem, 3vw, 1.5rem);
    color: darkslategrey;
}

/* 2-column Grid Layout */
.partners-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    align-items: center;
    justify-items: center;
}

/* Logo Styling */
.partner-logo img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(25%);
}

.partner-logo img:hover {
    transform: scale(1.05);
    filter: grayscale(10%);
}

/* Smaller screen adjustments */
@media (max-width: 768px) {
    .partners-wrapper {
        min-height: 30vh;
        height: auto;
    }
    .partner-logo img {
        max-width: 200px;
    }
    .partners-items {
        grid-template-columns:  1fr 1fr ;
    }
}

@media (max-width: 480px) {
    .partner-logo img {
        max-width: 200px;
    }

    .partners-wrapper {
        height: 30vh; /* allow more vertical space on very small screens */
        height: auto;
        padding: 30px 10px;
    }

    .partners-items {
        gap: 20px;
    }
}



/* Contact Section - styling */
.contact-section {
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0, 0.4), rgba(0,0,0, 0.4)), url(images/zebra-hero.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px;
    color: white;
}
.contact-content {
    padding: 20px;
    border-radius: 10px;
    background-color: rgb(0, 0, 228, 0.6);
}
.contact-content input, .contact-content textarea {
    width: 100%;
    margin: 20px 0;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-family: Arial;
}
.contact-content button {
    background: #ff5722;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.hidden {
    display: none;
  }
.ctaform-button {
    margin-top: 15px;
    background: #ff5722;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.contact-item i {
    color: #f4a261;
}

            /* Contact Section - END */


/* Footer */
footer{
    background-color: rgb(51, 51, 51);
    padding: 40px 10px;
    margin-top: 40px;
}
.footer-container{ 
    margin-bottom: 20px;
    margin: 0;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
    
}
.footer-contents{
    font-size: 15px;
    display: flex;
}
.footer-contents p{
    color: white;
    padding-right: 20px;
}
.footer-contents .icon{
    color: rgba(255, 190, 70, 0.822);
    padding-right: 5px;
    padding-top: 15px;  
    font-size: 17px;
}
.footer-bottom{
    color: white;
    text-align: center;
    font-size: 13px;
}

@media (max-width: 851px) {

body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family:'montserrat';
}


/* EDA-Logo responsive styling */
.eda-container{
    margin: 20px 35px;
    padding-top: 80px;

}
.eda-container img{
    width: 180px;

}
.social-icons{
    font-size: 25px;
}


.nav-container {
   display: flex;
   align-items: center;
   justify-content: space-between;
   z-index: 1000;
   box-shadow: 2 2 9 rgba(0, 0, 0, 0.5);
   margin: 8px 20px;
   
    }
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        width: auto;
        background: rgba(45, 45, 193, 0.9);
        padding: 20px;
        text-align: left;
        justify-content: center;
        overflow-x: none;
        margin-left: 150px;
    }
    .nav-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: orange;
        transition: width 0.3s ease-in-out;
    }
    .nav-icons {
        display: block;
        font-size: small;
        padding-right: 0px;
    }
    .nav-toggle {
        display: block;
        position: relative;
    }
    .nav-close {
        display: none;
    }
    .ctanav-button {
        background: rgb(255, 255, 255);
        color: navy;
        padding: 10px 15px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 10px;
        font-weight: 400;
    }
    /* Navigation scroll functionality - Article links */
    .dropdown-menu {
        position: absolute;
        box-shadow: none;
        width: auto;
    }

    .dropdown-menu a {
        padding: 10px;
        text-align: left;
    }


/* Hero section */
.hero{
    height: 55vh;  
    border-top: none;
}
.content{
    margin-right: 0px;
    padding-top: 10px;
    padding-bottom: 0px;
}
.hero .content h1{
    font-size: 70px ;
    line-height: 68px
}
.hero .content p{
    font-weight: 400;
    font-size: 1.3em;
    line-height: 1em;
    margin: 0 15px;
    text-shadow: 1px 1px 3px rgb(0, 0, 0, 0.6);
}
.paragraph-with-image {
    gap: 25px;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 15px 0;
}

.paragraph-with-image img {
    width: 260px;
    height: auto;
    border-radius: 7px;

}
.paragraph-with-image p {
    text-align: left;
    line-height: 1.4em;
    font-size: 1.2em;
    font-weight: 400;
    color: black;
    margin: 0px 10px;

}

/*The welcoming/invite message section*/
.slider {
    display: flex;
    align-items: center;
    height: 100%;
    width: 1500%;
    animation: continuousScroll 26s linear infinite;
  }
  .make-inquiries-btn-container{
    margin:0px 0px 0px 4px;
  }
  .make-inquiries-btn{
    font-size: 1rem;
 }
 

/* Destination - section */
.destination {
   min-height: 100vh;
   position: relative;
   color: white;
   text-align: center;
}
.destination-title{
    line-height: 20px;
    font-size: 55PX;
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
}
.destination-description{
    font-size: 23px;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
}
.destination-content {
    position: inherit;
    z-index: 2;
    text-align: center;
}
.read-more{
    font-size: 12px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
}
.read-less{
    font-size: 12px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.destination-details{
    height: auto;
}
.details-grid {
    grid-template-columns: minmax(330px, 1fr);
    max-width: 1500px ;
    z-index: 2;
    position: relative;
}
.detail-item{
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
.detail-item p{
    text-align: left;
    font-size: .9em;
    padding: 0 10px;
}
.nav-arrow {
    position: absolute;
    top: 69%;
    transform: translateY(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 900;
}
.screen-prev-arrow{
    z-index: 900;
}
.screen-next-arrow{
    z-index: 900;
}
.East-afrika-message{
    margin: 50px 10px;
}
.East-afrika-message-content p{
    font-size: 1.2em;
    text-align: left;
    padding-bottom: 25px;
}
.make-inquiries-btn-container{
    margin: 0;
    padding: 0;
}

                                        /* about section - grid styling */

.about-section {
    background-position: center;
    background-size: cover;
    width: 100%;
    min-height: 80vh;
    height: auto;

} 
.about-content{
    max-width: 370px;
    margin:  120px 20px;
}
.about-content h2 {
    font-size: 1.8rem;
    margin-bottom: 7px;
}
.about-content p {
    font-size: 1em;
    line-height: 1.5em;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    padding-bottom: 25px;
}


.contact-section{
    width: 100%;
    height: 80vh;
    background-image: linear-gradient(rgba(0,0,0, 0.5), rgba(0,0,0, 0.5)), url(images/zebra-hero.jpg);
    background-size: cover;
    background-position: center;
    margin-top: 60px;
    padding: 0;
}
.contact-content{
    margin: 0;
    padding: 20px;
    width: 350px;
    background-color:rgba(0,0,128, 0.6);
}
footer{
    background-color: rgb(51, 51, 51);
    padding: 40px 10px;
    margin-top: 40px;
}
.footer-container{
    max-width: 800px; 
    margin: 0 150px;
}
.footer-contents{
    font-size: 15px;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: left;
    justify-content: left;
}
.footer-contents p{
    color: white;
}
.footer-contents .icon{
    color: rgba(255, 190, 70, 0.822);
    padding-right: 5px;
    padding-top: 15px;  
    font-size: 17px;
}
.footer-bottom{
    color: white;
    text-align: center;
}
}


@media (max-width: 600px) {

    .package-wrapper {
        grid-template-columns: 1fr; /* Single column for small screens */
        gap: 10px;
    }
    .package-contents h2 {
        font-size: 1.3rem; /* Smaller font size for small screens */
    }
    .package-contents {
        margin: 20px 10px; /* Reduced margin for smaller screens */
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
    }

    .more-info-btn {
        padding: 6px 12px; /* Adjusted padding for small screens */
        font-size: 14px; /* Smaller font size for small screens */
    }
    .more-info-btn:hover {
        background-color: #ff8c00; /* Slightly darker shade of orange */
        transform: scale(1.1); /* Slight zoom effect */
        transition: all 0.3s ease; /* Smooth transition */
    }
    
.social-icons{
    display: flex;
    flex-direction: column;
   
}

footer{
    background-color: rgb(51, 51, 51);
    padding: 40px 10px;
    margin-top: 40px;
}
.footer-container{
    max-width: 600px; 
    margin-bottom: 20px;
    margin: 0;
    
}
.footer-contents{
    font-size: 15px;
}
.footer-contents p{
    color: white;
}
.footer-contents .icon{
    color: rgba(255, 190, 70, 0.822);
    padding-right: 5px;
    padding-top: 15px;  
    font-size: 17px;
}
.footer-bottom{
    color: white;
    text-align: center;
    font-size: 13px;
}

}