   :root {
            --primary: #e67e22;
            --secondary: #2c3e50;
            --accent: #16a085;
            --light: #ecf0f1;
            --dark: #34495e;
            --text: #333;
            --white: #fff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--text);
            line-height: 1.6;
            background-color: #f9f9f9;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 60px 0;
        }
        
        h1, h2, h3, h4 {
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
        }
        
        h2 {
            font-size: 2.2rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--primary);
        }
        
        h3 {
            font-size: 1.8rem;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .text-center {
            text-align: center;
        }
        
        .text-primary {
            color: var(--primary);
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            padding-bottom: -10px;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(44, 62, 80, 0.9);
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            background-color: var(--secondary);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            justify-content: center;
            padding: 20px 0;
        }
        
.logo-text {
    position: absolute;
    padding-top: 0px;
    left: 30px;
    display: flex;
    gap: 0px;
    flex-direction: column;
}
.logo {
    height: 60px;
    width: 100px;
    margin-left: 10px;
    margin-top: 0px;
}

.social-icons{
position: absolute;
justify-content: center;
text-align: center;
display: flex;
right: 60px;
gap: 10px;
}
.fa {
    display: inline-block;
    background-color: white;
    color: #000;
  font-size: 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
    margin: 5px 2px;
    padding : 10px;
    padding-left: 11px;
    padding-right: 10px;
    padding-top: 9px
}
.fa:hover {
  opacity: 0.9;
  color: white;
}
.fa-facebook:hover{
  background: #0e4392;
  color: white;
}
.fa-instagram:hover{
  background: #E1306C;
  color: white;
}
.fa-linkedin:hover {
  background: #0077B5;
  color: white;
}
.fa-twitter:hover {
  background: #55ACEE;
  color: white
}
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .menu-toggle {
            display: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    padding: 10px 0;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    background-color: rgba(44, 62, 80, 0.9);
}
.dropdown-menu a {
    color: var(--white) !important;
    padding: 12px 20px !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border-left: 3px solid transparent;
    transition: var(--transition);
}
.dropdown-menu a:hover {
    background: rgba(245, 193, 71, 0.05);
    border-left: 3px solid var(--accent-gold);
    padding-left: 17px !important;
    color:white;
}
.dropdown-menu i {
    width: 20px;
    text-align: center;
    color: var(--accent-gold);
    color:white;
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding: 0;
        background: transparent;
    }
    .dropdown-menu a {
        color: var(--white) !important;
        padding: 8px 0 8px 20px !important;
    }
}
        
        /* Hero Slideshow Section */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            background-color: var(--dark);
        }
        
        .hero-slideshow {
            height: 100%;
            width: 100%;
            position: relative;
        }
        
        .hero-slide {
            height: 100vh;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            transform: translateY(-100%);
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
            transition: transform 0.8s ease-in-out;
            z-index: 1;
        }
        
        .hero-slide.active {
            transform: translateY(0);
            z-index: 3;
        }
        
        .hero-slide:not(.active) {
            z-index: 2;
        }
        
        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 2;
        }
        
        .hero-slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--white);
            max-width: 800px;
            z-index: 4;
        }
        
        .hero-slide-content h3 {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }
        
        .hero-slide-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-slide-content .btn {
            animation: fadeIn 1.5s ease;
        }
        
        .slideshow-controls {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 4;
        }
        
        .slideshow-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slideshow-dot.active {
            background-color: var(--primary);
            transform: scale(1.2);
        }
        
        /* Highlights Section */
        .highlights {
            background-color: var(--white);
        }
        
        .highlights-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .highlight-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            background-color: var(--light);
        }
        
        .highlight-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .highlight-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* Introduction Section */
        .intro {
            background-color: var(--light);
        }
        
        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .intro-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .intro-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .intro-image:hover img {
            transform: scale(1.05);
        }
        
        /* Safari Packages Section */
        .packages {
            background-color: var(--white);
        }
        
        .packages-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .packages-tab-btn {
            padding: 12px 25px;
            background-color: var(--light);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .packages-tab-btn.active {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .packages-tab-content {
            display: none;
        }
        
        .packages-tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            
        }
        
        .package-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            background-color: var(--white);
            display: flex;

            flex-direction: column;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .package-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .package-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .package-card:hover .package-image img {
            transform: scale(1.1);
        }
        
        .package-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .package-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .package-content h3 {
            margin-bottom: 10px;
            color: var(--secondary);
        }
        
        .package-location {
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .package-location i {
            margin-right: 8px;
        }
        
        .package-features {
            margin: 15px 0;
            flex-grow: 1;
        }
        
        .feature-item {
            display: flex;
            margin-bottom: 10px;
        }
        
        .feature-icon {
            color: var(--primary);
            margin-right: 10px;
            min-width: 20px;
        }
        
        .package-pricing {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin:auto;
        }
        
        .price-option {
            background-color: var(--light);
            padding: 15px;
            border-radius: 5px;
            text-align: center;
        }
        
        .price-option h4 {
            margin-bottom: 5px;
            font-size: 0.9rem;
            color: var(--secondary);
        }
        
        .price-amount {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .package-actions {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .btn-small {
            padding: 10px 20px;
            margin: 10px;
            font-size: 0.9rem;
        }
        
        /* Wildlife Section */
        .wildlife {
            background-color: var(--light);
        }
        
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .gallery-item {
            height: 200px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: var(--white);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--light);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            background-color: var(--white);
        }
        
        .faq-question {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            background-color: var(--secondary);
            color: var(--white);
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        /* Testimonials Section */
        .testimonials {
            background-color: var(--white);
        }
        
        .testimonial-slider {
            margin-top: 40px;
            position: relative;
        }
        
        .testimonial-slide {
            background-color: var(--light);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: none;
        }
        
        .testimonial-slide.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }
        
        .testimonial-text::before,
        .testimonial-text::after {
            content: '"';
            font-size: 2rem;
            color: var(--primary);
            opacity: 0.5;
        }
        
        .testimonial-author {
            font-weight: 700;
            color: var(--primary);
        }
        
        .testimonial-rating {
            color: #f1c40f;
            margin-top: 10px;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--primary);
            transform: scale(1.2);
        }

        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            left: 25px;
            z-index: 999;
            background-color: #25D366;
            padding: 8px;
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
        .whatsapp-float img {
            width: 30px;
            height: 30px;
    }
    /* Maps section*/
    .map-container {
            margin-top: 20px;
        }

        .map-container iframe {
            display: block;
            width: 100%;
            max-width: 100%;
        }

        @media (max-width: 768px) {
            #map {
                padding: 40px 0;
            }

            #map h2 {
                font-size: 1.8rem;
            }

            .map-container iframe {
                height: 250px;
            }
        }

        @media (max-width: 576px) {
            #map h2 {
                font-size: 1.6rem;
            }

            .map-container iframe {
                height: 200px;
            }
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col {
            padding: 0 15px;
        }
       .footer-logo {
    height: 50px;
    width: 90px;
    margin-left: 0px;
    margin-top: 3px;
     }
    .footerlogo-text{
            display: flex;
            gap: 3px;
            flex-direction: column;
    }
        
        .footer-about {
            color: #ddd;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        
        .footer-col h4 {
            color: var(--white);
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        
        .footer-col ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-col ul li a:hover {
            color: var(--primary);
        }
        
        .footer-col ul li i {
            margin-right: 10px;
            color: var(--primary);
        }
        
        .footer-contact ul li {
            display: flex;
            align-items: flex-start;
        }
        
        .footer-contact ul li i {
            font-size: 1.2rem;
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .footer-contact ul li div {
            display: flex;
            flex-direction: column;
        }
        
        .footer-contact ul li strong {
            color: #ddd;
            font-weight: 600;
        }
        
        .footer-contact ul li span,
        .footer-contact ul li a {
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .footer-contact ul li a:hover {
            color: var(--primary);
        }
        
        .footer-newsletter {
            display: flex;
            margin-bottom: 20px;
        }
        
        .footer-newsletter input {
            flex-grow: 1;
            padding: 10px;
            border: none;
            border-radius: 5px 0 0 5px;
            font-size: 0.9rem;
        }
        
        .footer-newsletter .newsletter-btn {
            padding: 10px 15px;
            background-color: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .footer-newsletter .newsletter-btn:hover {
            background-color: var(--accent);
        }
        
        .payment-methods {
            color: #ddd;
            font-size: 0.9rem;
        }
        
        .payment-methods span {
            display: block;
            margin-bottom: 10px;
        }
        
        .payment-icons {
            display: flex;
            gap: 10px;
        }
        
        .payment-icons i {
            font-size: 1.5rem;
            color: #ddd;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom-links {
            margin-bottom: 10px;
        }
        
        .footer-bottom-links a {
            color: #aaa;
            text-decoration: none;
            margin: 0 15px;
            font-size: 0.9rem;
        }
        
        .footer-bottom-links a:hover {
            color: var(--primary);
        }
        
        .footer-copyright {
            color: #aaa;
            font-size: 0.9rem;
            line-height: 1.8;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--primary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--accent);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .intro-content {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .hero-slide-content h3 {
                font-size: 2.5rem;
            }
            
            .footer-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--secondary);
                flex-direction: column;
                align-items: center;
                padding-top: 40px;
                transition: all 0.3s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .hero-slide-content h3 {
                font-size: 2rem;
            }
            
            .hero-slide-content p {
                font-size: 1.1rem;
            }
            
            section {
                padding: 40px 0;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
    
    .footerlogo-text{
            display: flex;
            gap: 3px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
    .footer-logo{
        height: 30px;
        width: 30px;
        justify-content: center;
        margin-top: 2px;
    }
            
            .footer-col ul li {
                justify-content: center;
            }
            
            .footer-contact ul li {
                justify-content: center;
                text-align: center;
            }
            
            .footer-contact ul li i {
                margin-right: 10px;
                margin-top: 0;
            }
            
              .footerlogo-text{
            display: flex;
            gap: 3px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
    .footer-logo{
        height: 50px;
        width: 90px;
        justify-content: center;
        margin-top: 2px;
    }
            .social-icons {
                 right: 10px;
                  margin-bottom: 60px;
            }
            
            .footer-newsletter {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero-slide-content h3 {
                font-size: 1.8rem;
            }
            
            .hero-slide-content p {
                font-size: 1rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
        }
