
        /* General Styles */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            transition: background-color 0.3s, color 0.3s;
        }
        .container {
            width: 80%;
            margin: 0 auto;
        }
        header, footer {
            background-color: #333;
            color: white;
            padding: 1rem 0;
            text-align: center;
        }
        nav {
            display: flex;
            justify-content: space-around;
            background-color:blue;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        nav a {
            color: white;
            padding: 1rem;
            text-decoration: none;
            position: relative;
        }
        nav a:hover {
            background-color: black;
        }
        .tooltip {
            visibility: hidden;
            background-color: #333;
            color: white;
            text-align: center;
            border-radius: 5px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            margin-left: -60px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        nav a:hover .tooltip {
            visibility: visible;
            opacity: 1;
        }
        .hero {
            background: url('https://image.banibatiti.com/images/2025/01/30/image.banibatiti-6.jpeg') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .content {
            padding: 2rem 0;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s, transform 0.5s;
        }
        .content.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .scroll-to-top {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background-color: #080352;
            color: white;
            padding: 10px;
            border-radius: 50%;
            display: none;
            cursor: pointer;
            font-weight: bold;
        }
        .scroll-to-top:hover {
            background-color: #f4f808;
            color: #000000;
        }
        /* Dark Mode */
        body.dark-mode {
            background-color: #121212;
            color: #e0e0e0;
        }
        body.dark-mode .modal-content{
            background-color: #000000;
            color: #ffffff;
        }
        body.dark-mode .close:hover{
            color: white;
        }
        body.dark-mode header, body.dark-mode footer {
            background-color: #1e1e1e;
        }
        body.dark-mode nav {
            background-color: #2e2e2e;
        }
        body.dark-mode nav a:hover {
            background-color: #3e3e3e;
        }
        body.dark-mode .scroll-to-top {
            background-color: #fafafa;
            color: #000000;
        }
        body.dark-mode .scroll-to-top:hover {
            background-color: #e6ff05;
            color: black;
        }
        /* Responsive Navigation */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        .menu-toggle div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 4px;
        }
        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                display: none;
            }
            nav.active {
                display: flex;
            }
            .menu-toggle {
                display: flex;
            }
        }
        /* Image Gallery */
        .gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .gallery img {
            width: 30%;
            margin: 1%;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .gallery img:hover {
            transform: scale(1.1);
        }
        /* Contact Form */
        .contact-form {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .contact-form input, .contact-form textarea {
            width: 80%;
            margin: 10px 0;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        .contact-form button {
            padding: 10px 20px;
            background-color: #333;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .contact-form button:hover {
            background-color: #555;
        }
        /* Modal Popup */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.5);
        }
        .modal-content {
            background-color: white;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 500px;
            border-radius: 8px;
        }
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }
        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
        /* Progress Bar */
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: #e70606;
            z-index: 1000;
        }
        .progress-bar {
            height: 100%;
            width: 0;
            background: #333;
        }
        /* Countdown Timer */
        .countdown {
            text-align: center;
            margin: 2rem 0;
        }
        .countdown h3 {
            margin: 0;
        }
        /* Sticky Footer */
        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        main {
            flex: 1;
        }
        /* Copy to Clipboard */
        .copy-button {
            padding: 10px 20px;
            background-color: #333;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 1rem;
        }
        .copy-button:hover {
            background-color: #555;
        }
        /* Accordion Menu */
        .accordion {
            background-color: #eee;
            color: #444;
            cursor: pointer;
            padding: 18px;
            width: 100%;
            border: none;
            text-align: left;
            outline: none;
            font-size: 15px;
            transition: 0.4s;
        }
        .active, .accordion:hover {
            background-color: #000000;
        }
        .panel {
            padding: 0 18px;
            background-color: white;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.2s ease-out;
        }
        /* Image Carousel */
        .carousel {
            position: relative;
            width: 100%;
            max-width: 600px;
            margin: auto;
        }
        .carousel img {
            width: 100%;
            display: none;
        }
        .carousel img.active {
            display: block;
        }
        .carousel-prev, .carousel-next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -22px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            transition: 0.6s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
        }
        .carousel-prev {
            left: 0;
        }
        .carousel-next {
            right: 0;
        }
        .carousel-prev:hover, .carousel-next:hover {
            background-color: rgba(0,0,0,0.8);
        }
        /* Chatbot */
        .chatbot {
            position: fixed;
            bottom: 50px;
            right: 25px;
            background-color: #020646;
            color: white;
            padding: 10px;
            border-radius: 50%;
            cursor: pointer;
            font-weight: bold;
        }
        .chatbot:hover{
            background-color: yellow;
            color: #000000;
        }
        .chatbot-window {
            display: none;
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 300px;
            background-color: white;
            border: 1px solid #ccc;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .chatbot-window-header {
            background-color: #f1f505;
            color: rgb(0, 0, 0);
            padding: 10px;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
        }
        .chatbot-window-body {
            padding: 10px;
            max-height: 200px;
            overflow-y: auto;
        }
        .chatbot-window-footer {
            padding: 10px;
            border-top: 1px solid #ccc;
        }
        .chatbot-window-footer input {
            width: calc(100% - 22px);
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        .chatbot-window-footer button {
            padding: 10px;
            background-color: #333;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .chatbot-window-footer button:hover {
            background-color: #000000;
        }
        /* Speech Recognition */
        .speech-recognition {
            padding: 10px 20px;
            background-color: #333;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 1rem;
        }
        .speech-recognition:hover {
            background-color: #555;
        }
        /* Geolocation */
        .geolocation {
            padding: 10px 20px;
            background-color: #333;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 1rem;
        }
        .geolocation:hover {
            background-color: #555;
        }
        /* Weather Widget */
        .weather-widget {
            text-align: center;
            margin: 2rem 0;
        }
        .weather-widget h3 {
            margin: 0;
        }
        /* News Ticker */
        .news-ticker {
            background-color: #333;
            color: white;
            padding: 10px;
            overflow: hidden;
            white-space: nowrap;
            box-sizing: border-box;
        }
        .news-ticker span {
            display: inline-block;
            padding-left: 100%;
            animation: ticker 15s linear infinite;
        }
        @keyframes ticker {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        /* Animated Counter */
        .animated-counter {
            text-align: center;
            margin: 2rem 0;
        }
        .animated-counter h3 {
            margin: 0;
        }
        /* About Us Section */
        .about-us {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2rem 0;
        }
        .about-us img {
            width: 45%;
            border-radius: 8px;
        }
        .about-us-content {
            width: 45%;
        }
        .about-us-content h2 {
            margin-top: 0;
        }
        /* Our Services Section */
        .services {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 2rem 0;
        }
        .service {
            width: 30%;
            margin-bottom: 2rem;
            text-align: center;
        }
        .service img {
            width: 100%;
            border-radius: 8px;
        }
        .service h3 {
            margin-top: 1rem;
        }
    