body {
    margin: 0;
    font-family: Arial, sans-serif;
}


.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#fff;
    padding:3px;
}

.logo-text h2{
    margin:0;
    color:#fff;
    font-size:24px;
    font-weight:bold;
}

.logo-text span{
    display:block;
    color:#d8ffd8;
    font-size:13px;
    letter-spacing:1px;
}

/* NAV */
header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: green;
    color: white;
}

nav a {
    margin: 10px;
    color: white;
    text-decoration: none;
}

/* HERO */
  .hero{
height:60vh;
background:url(images/zanzibar1.jpg) center/cover;
animation:slider 20s infinite;
}


 @keyframes slider{

0%{
background-image:url(images/zanzibar1.jpeg);
}

15%{
background-image:url(images/zanzibar2.jpeg);
}

30%{
background-image:url(images/zanzibar3.jpeg);
}

45%{
background-image:url(images/zanzibar4.jpeg);
}
60%{
background-image:url(images/zanzibar5.jpeg);
}
75%{
background-image:url(images/zanzibar6.jpeg);
}

90%{
background-image:url(images/zanzibar1.jpeg);
}
100%{
background-image:url(images/zanzibar1.jpeg);
}

}
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero button {
    padding: 10px 20px;
    background: orange;
    border: none;
    cursor: pointer;
}

/* SECTIONS */
section {
    padding: 2px;
    text-align: center;
}

/* TOURS */
.tour-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tour {
    border: 1px solid #ddd;
    margin: 10px;
    padding: 5px;
    width: 200px;
}

/* FORMS */
form input, form select, form textarea {
    display: block;
    margin: 10px auto;
    padding: 10px;
    width: 80%;
}

button {
    background: green;
    color: white;
    padding: 10px;
    border: none;
}

/* FOOTER */
footer {
    background: #222;
    color: white;
    padding: 10px;
}


/* WhatsApp Floating Button */
.whatsapp-float{
    position:fixed;
    width:65px;
    height:65px;
    bottom:25px;
    right:25px;
    border-radius:50%;
    z-index:9999;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    transition:.3s;
}

.whatsapp-float img{
    width:100%;
    height:100%;
    border-radius:50%;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    background: #D4AF37;
    border-radius: 50%;
}

.service-list li::before {
    content: "➜";
    position: absolute;
    left: 0;
    color: #2E8B57;
    font-weight: bold;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 15px;
}

.service-list i {
    color: #2E8B57;
    margin-right: 10px;
}


/* new list with underline */
.services {
    max-width: 910px;
    margin: 20px auto;
    padding: 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.services h2 {
    color: #0d6b3c;
    margin-bottom: 20px;
    border-bottom: 3px solid #0d6b3c;
    padding-bottom: 5px;
    font-size: 20px;
}


.index h2 {
    color: #0d6b3c;
    margin-bottom: 20px;
    border-bottom: 3px solid #0d6b3c;
    padding-bottom: 5px;
    font-size: 20px;
}



.professional-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.professional-list li {
    padding: 5px 5px 5px 10px;
    margin-bottom: 10px;
    position: relative;
    font-size: 17px;
    color: #333;
    border-bottom: 1px solid #e6e6e6;
    transition: all 0.3s ease;
}

.professional-list li:last-child {
    border-bottom: none;
}

.professional-list li::before {
    content: "✔";
    position: absolute;
    left: 10px;
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
}

.professional-list li:hover {
    background: #f5fff8;
    padding-left: 45px;
}




/* partners logo */

.partner-slider{
    overflow:hidden;
    background:#fff;
    padding:10px 0;
}

.slide-track{
    display:flex;
    width:max-content;
    animation:scroll 25s linear infinite;
}

.slide-track img{
    width:70px;
    margin:0 2px;
    object-fit:contain;
    filter:grayscale(1%);
    transition:.3s;
}

.slide-track img:hover{
    filter:none;
}

@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}