/* header------------------------------------------------------------------------------------------------------- */




* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* .container-header {
           
            color: #333;
            line-height: 1.6;
            padding-top: 80px;
            border: 3px solid red;
        } */

        /* Header Styles -------------------------------------------------------------------------------------------------------*/
        .header {
            background: linear-gradient(135deg, #ffffff, #ffffff);
            color: #02030b;
            padding: 0 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: transform 0.4s ease;
           
        }

        .header.hidden {
            transform: translateY(-100%);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 0;
            
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            font-size: 2.2rem;
            font-weight: 700;
            color: #9d5905;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 0.5rem;
            color: #f8b500;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-main {
            font-size: 1.8rem;
            line-height: 1;
        }

        .logo-sub {
            font-size: 0.9rem;
            font-weight: 400;
            opacity: 0.9;
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: flex;
            align-items: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            color: #000000;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            position: relative;
            font-weight: bold;
        }

        .nav-links a:hover {
            color: #135a6b;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #f8b500;
            transition: all 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffffff;
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content a {
            color: #333;
            padding: 12px 16px;
            display: block;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .dropdown-content a:hover {
            background-color: rgba(0, 0, 0, 0.03);
            color: #2c5aa0;
        }

        .dropdown-content a::after {
            display: none;
        }

        /* Mobile Navigation */
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #090a22;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .mobile-nav-toggle:hover {
            color: #f8b500;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 320px;
            height: 100vh;
            background: linear-gradient(135deg, #1a3a5f, #2c5aa0);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            z-index: 1001;
            overflow-y: auto;
            padding: 2rem;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
        }

        .mobile-close {
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-close:hover {
            color: #f8b500;
            transform: rotate(90deg);
        }

        .mobile-nav-links {
            list-style: none;
        }

        .mobile-nav-links li {
            margin-bottom: 1rem;
        }

        .mobile-nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .mobile-nav-links a:hover {
            color: #f8b500;
            padding-left: 0.5rem;
        }

        .mobile-dropdown-content {
            margin-top: 0.5rem;
            margin-left: 1rem;
            border-left: 2px solid rgba(255, 255, 255, 0.2);
            padding-left: 1rem;
            display: none;
        }

        .mobile-dropdown-content.active {
            display: block;
        }

        .mobile-dropdown-content a {
            font-size: 1rem;
            padding: 0.6rem 0;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav-links {
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 0.8rem 0;
            }

            .desktop-nav {
                display: none;
            }

            .mobile-nav-toggle {
                display: block;
            }

            .logo {
                font-size: 1.8rem;
            }

            .logo-main {
                font-size: 1.5rem;
            }

            .logo-sub {
                font-size: 0.8rem;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 0 1rem;
            }

            .logo-container {
                gap: 0.5rem;
            }

            .logo {
                font-size: 1.5rem;
            }

            .logo-main {
                font-size: 1.3rem;
            }

            .logo-sub {
                font-size: 0.7rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .content {
                padding: 3rem 1rem;
            }

            .features {
                grid-template-columns: 1fr;
            }
        }


/* home section ----------------------------------------------------------------------------------------------*/



* { margin: 0; padding: 0; box-sizing: border-box; }

    /* body, html {
        height: 100%;
        overflow: hidden;
        font-family: sans-serif;
    } */

    /* Fullscreen hero section */
    .hero {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
       margin-top: 100px;
    }

    /* Background video ALWAYS visible on all devices */
    .hero video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }

    /* Overlay */
    .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.45);
        z-index: 1;
    }

    /* Content center */
    .content {
        position: relative;
        z-index: 2;
        text-align: center;
        top: 40%;
        transform: translateY(-50%);
        color: white;
        padding: 20px;
    }

    h1 {
        font-size: 36px;
        font-weight: bold;
    }

    p {
        margin-top: 15px;
        font-size: 18px;
    }

    @media(max-width:500px){
        h1 { font-size: 26px; }
        p  { font-size: 16px; }
    }





    /* image slider ------------------------------------------------------------------------------------------------------------*/



     /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        /* Slider Container */
        .slider-page-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background: linear-gradient(135deg, #ffffff, #ffffff, #d8ae06c9);
            padding: 20px;
        }
        
        .slider-main-container {
            width: 100%;
            max-width: 900px;
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        /* Slider Track */
        .slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 500px;
        }
        
        /* Slide Panel */
        .slide-panel {
            min-width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slide-panel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* Slide Content */
        .slide-content-panel {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 30px;
            text-align: center;
        }
        
        .slide-typing-text {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            min-height: 70px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .slide-book-button {
            background: linear-gradient(to right, #ff8a00, #da1b60);
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .slide-book-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        /* Navigation Arrows */
        .slider-nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            z-index: 10;
            opacity: 0;
        }
        
        .slider-nav-arrow:hover {
            background: rgba(255, 255, 255, 0.4);
        }
        
        .slider-prev-arrow {
            left: 20px;
        }
        
        .slider-next-arrow {
            right: 20px;
        }
        
        /* Navigation Dots */
        .slider-dots-container {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-active-dot {
            background: white;
            transform: scale(1.2);
        }
        
        /* Show navigation on hover */
        .slider-page-container:hover .slider-nav-arrow,
        .slider-page-container:hover .slider-dots-container {
            opacity: 1;
        }
        
        /* Typing Animation */
        @keyframes slider-blink-animation {
            0%, 100% { border-color: white; }
            50% { border-color: transparent; }
        }
        
        .typing-cursor {
            border-right: 3px solid white;
            animation: slider-blink-animation 0.7s infinite;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .slider-track {
                height: 400px;
            }
            
            .slide-typing-text {
                font-size: 1.8rem;
            }
            
            .slide-book-button {
                padding: 10px 25px;
                font-size: 1rem;
            }
            
            .slider-nav-arrow {
                opacity: 1;
                width: 40px;
                height: 40px;
            }
            
            .slider-dots-container {
                opacity: 1;
            }
        }
        
        @media (max-width: 480px) {
            .slider-track {
                height: 300px;
            }
            
            .slide-typing-text {
                font-size: 1.4rem;
                min-height: 60px;
            }
            
            .slide-content-panel {
                padding: 20px;
            }
            
            .slider-nav-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }




        /* about section ---------------------------------------------------------------------------------------------------*/


          /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        } */

        #about-challa {
            background: linear-gradient(135deg, #dcb320 0%, #c3cfe2 100%);
            color: #333;
            line-height: 1.6;
            min-height: 1000px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .about-section {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 40px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            position: relative;
        }

        .section-title {
            text-align: center;
            color: #2c3e50;
            font-size: 2.8rem;
            margin-bottom: 40px;
            position: relative;
            font-weight: 700;
        }

        .section-title:after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -15px;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(to right, #e67e22, #e74c3c);
            border-radius: 3px;
        }

        .content-wrapper {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 30px;
        }

        .image-container {
            flex: 1;
            min-width: 300px;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 1s ease-in-out;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
        }

        .image-container img.active {
            opacity: 1;
        }

        .content-container {
            flex: 1;
            min-width: 300px;
            padding: 0 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .content-container p {
            color: #555;
            font-size: 1.2rem;
            text-align: justify;
            margin-bottom: 30px;
        }

        .highlight {
            background: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }

        .details-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 30px;
            background: linear-gradient(to right, #2c3e50, #3498db);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
            align-self: flex-start;
        }

        .details-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(44, 62, 80, 0.4);
            background: linear-gradient(to right, #3498db, #2c3e50);
        }

        .details-button:active {
            transform: translateY(2px);
        }

        .details-button i {
            margin-left: 10px;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .details-button:hover i {
            transform: translateX(5px);
        }

        .audio-section {
            width: 100%;
            text-align: center;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 2px dashed #e0e0e0;
        }

        .audio-button {
            display: inline-flex;
            align-items: center;
            margin: 0 auto;
            padding: 18px 35px;
            background: linear-gradient(to right, #e67e22, #e74c3c);
            color: white;
            border: none;
            border-radius: 60px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
            position: relative;
            overflow: hidden;
        }

        .audio-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(230, 126, 34, 0.6);
            background: linear-gradient(to right, #e74c3c, #e67e22);
        }

        .audio-button:active {
            transform: translateY(2px);
        }

        .audio-button i {
            margin-right: 12px;
            font-size: 1.4rem;
        }

        .audio-button .pulse {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 60px;
            transform: scale(0);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(0);
                opacity: 1;
            }
            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        .audio-player {
            display: none;
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 25px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .content-wrapper {
                flex-direction: column;
            }
            
            .image-container {
                width: 100%;
                margin-bottom: 25px;
                height: 350px;
            }
            
            .content-container {
                padding: 0 10px;
            }
            
            .content-container p {
                font-size: 1.1rem;
            }
            
            .details-button {
                align-self: center;
            }
            
            .audio-button {
                padding: 15px 30px;
                font-size: 1.1rem;
            }
        }


        /* animation --------------------------------------------------------------------------------------------------------------*/


        

/* contact --------------------------------------------------------------------------------------------------------------*/
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      /* :root {
        --primary: #e74c3c;
        --secondary: #2c3e50;
        --accent: #f39c12;
        --light: #ecf0f1;
        --dark: #2c3e50;
        --text: #333;
        --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease; 
      } */

      /* body {
        font-family: "Open Sans", sans-serif;
        line-height: 1.6;
        color: var(--text);
        background-color: #f9f9f93f;
        overflow-x: hidden;
      } */

      .contact-section-con {
        position: relative;
        padding: 100px 0;
        /* background: linear-gradient(
            rgba(17, 43, 58, 0.85),
            rgba(22, 23, 23, 0.9)
          ); */
           background: url("./img/img-20.png");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        color: rgb(255, 255, 255);
        overflow: hidden;
        font-weight: bold;
        
      }

      .container-con {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
       
        margin-top: 100px;
      }

      .section-title {
        text-align: center;
        margin-bottom: 50px;
        color: rgb(7, 31, 53);
        font-weight: bold;
      }

      .section-title h2 {
        font-size: 2.5rem;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
        color: rgb(255, 255, 255);
        font-family: "Montserrat", sans-serif;
      }

      .section-title h2:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--primary);
      }

      .section-title p {
        font-size: 1.1rem;
        margin-top: 15px;
        opacity: 0.9;
      }

      .contact-container {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        margin-top: 40px;
        /* background: red; */
      }

      .contact-info {
        flex: 1;
        min-width: 300px;
        /* background: rgba(159, 18, 18, 0.1); */
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 40px 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: var(--transition);
        border: 3px solid goldenrod;
       background-color: rgb(72, 36, 54);
      }

      .contact-info:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      }

      .contact-form {
        flex: 1;
        min-width: 300px;
        /* background: rgba(255, 255, 255, 0.1); */
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 40px 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: var(--transition);
        border: 3px solid goldenrod;
       background-color: rgb(72, 36, 54);
      }

      .contact-form:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      }

      .info-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 30px;
        transition: var(--transition);
        padding: 15px;
        border-radius: 10px;
      }

      .info-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(10px);
      }

      .info-icon {
        background: var(--primary);
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        flex-shrink: 0;
        font-size: 1.5rem;
        box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        transition: var(--transition);
      }

      .info-item:hover .info-icon {
        transform: scale(1.1) rotate(5deg);
        background: var(--accent);
      }

      .info-details h4 {
        font-size: 1.3rem;
        margin-bottom: 8px;
        font-family: "Montserrat", sans-serif;
      }

      .info-details p {
        opacity: 0.9;
        font-size: 1rem;
      }

      .social-links {
        display: flex;
        gap: 15px;
        margin-top: 30px;
        justify-content: center;
      }

      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: white;
        transition: var(--transition);
        font-size: 1.2rem;
      }

      .social-links a:hover {
        background: var(--primary);
        transform: translateY(-5px);
      }

      .form-group {
        margin-bottom: 25px;
        position: relative;
      }

      .form-control {
        width: 100%;
        padding: 15px 20px;
        background: rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        font-family: "Open Sans", sans-serif;
        transition: var(--transition);
        color: rgb(194, 223, 220);
        font-size: 1rem;
        font-weight: bold;
      }

      .form-control::placeholder {
        color: rgb(255, 255, 255);
        font-weight: bold;
      }

      .form-control:focus {
        border-color: var(--primary);
        outline: none;
        box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.3);
        background: rgba(255, 255, 255, 0.15);
      }

      textarea.form-control {
        min-height: 150px;
        resize: vertical;
      }

      .btn {
        display: inline-block;
        padding: 15px 35px;
        /* background: var(--primary); */
        background: rgb(47, 38, 5);
        color: rgb(255, 255, 255);
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: var(--transition);
        text-decoration: none;
        font-size: 1rem;
        width: 100%;
        box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
      }

      .btn:hover {
        background: #c0392b;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
      }

      .map-container {
        margin-top: 60px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        height: 400px;
        position: relative;
      }

      .map-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        transition: var(--transition);
      }

      .map-overlay:hover {
        background: rgba(44, 62, 80, 0.1);
      }

      .map-btn {
        /* background: var(--primary); */
        background: rgb(86, 56, 8);
        color: white;
        padding: 12px 25px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      }

      .map-btn:hover {
        background: #0b1232;
        transform: scale(1.05);
      }

      .floating-elements {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
        overflow: hidden;
      }

      .floating-element {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        animation: float 15s infinite linear;
      }

      .floating-element:nth-child(1) {
        width: 80px;
        height: 80px;
        top: 10%;
        left: 5%;
        animation-delay: 0s;
      }

      .floating-element:nth-child(2) {
        width: 120px;
        height: 120px;
        top: 70%;
        left: 80%;
        animation-delay: 2s;
      }

      .floating-element:nth-child(3) {
        width: 60px;
        height: 60px;
        top: 40%;
        left: 90%;
        animation-delay: 4s;
      }

      .floating-element:nth-child(4) {
        width: 100px;
        height: 100px;
        top: 80%;
        left: 10%;
        animation-delay: 6s;
      }

      .floating-element:nth-child(5) {
        width: 70px;
        height: 70px;
        top: 20%;
        left: 80%;
        animation-delay: 8s;
      }

      @keyframes float {
        0% {
          transform: translateY(0) rotate(0deg);
        }
        50% {
          transform: translateY(-20px) rotate(180deg);
        }
        100% {
          transform: translateY(0) rotate(360deg);
        }
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .contact-container {
          flex-direction: column;
        }

        .contact-info,
        .contact-form {
          width: 100%;
        }

        .section-title h2 {
          font-size: 2.2rem;
        }
      }

      @media (max-width: 768px) {
        .contact-section {
          padding: 80px 0;
        }

        .section-title h2 {
          font-size: 2rem;
        }

        .info-item {
          flex-direction: column;
          text-align: center;
        }

        .info-icon {
          margin-right: 0;
          margin-bottom: 15px;
        }

        .floating-element {
          display: none;
        }
      }

      @media (max-width: 576px) {
        .contact-section {
          padding: 60px 0;
        }

        .section-title h2 {
          font-size: 1.8rem;
        }

        .contact-info,
        .contact-form {
          padding: 30px 20px;
        }

        .info-details h4 {
          font-size: 1.2rem;
        }
      }

      /* location section ----------------------------------------------------------------------------------------------------------------------------------*/

      




/* footer section-------------------------------------------------------------------------------------------------------------------------------- */



 body{
        margin: 0px;
       }
        .footer-main-container-fot {
            background: linear-gradient(135deg, #0d1318 0%, #1a252f 100%);
            color: #ffffff;
            position: relative;
            overflow: hidden;
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            width: 100%;
            
        }

        .footer-background-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(52, 152, 219, 0.05) 0%, transparent 50%);
            z-index: 1;
        }

        .footer-content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0px 20px 0;
            position: relative;
            z-index: 2;
        }

        .footer-grid-layout {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-column {
            font-family: 'Montserrat', sans-serif;
           
        }

        .footer-column-title {
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            color: #ffffff;
        }

        .footer-column-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #e74c3c;
            border-radius: 2px;
        }

        .footer-company-info {
            font-family: 'Open Sans', sans-serif;
        }

        .footer-company-description {
            color: #bbb;
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .footer-logo-container {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo-text {
            font-size: 2rem;
            color: #ffffff;
            font-family: 'Montserrat', sans-serif;
        }

        .footer-logo-accent {
            color: #e74c3c;
        }

        .footer-badges-container {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 5px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-badge-icon {
            color: #f39c12;
        }

        .footer-links-list {
            list-style: none;
        }

        .footer-link-item {
            margin-bottom: 15px;
        }

        .footer-link {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-link:hover {
            color: #e74c3c;
            transform: translateX(5px);
        }

        .footer-link-icon {
            margin-right: 10px;
            font-size: 0.9rem;
            width: 20px;
            text-align: center;
        }

        .footer-contact-list {
            list-style: none;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            color: #bbb;
        }

        .footer-contact-icon {
            color: #e74c3c;
            margin-right: 15px;
            font-size: 1.1rem;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .footer-newsletter-container p {
            color: #bbb;
            margin-bottom: 20px;
        }

        .footer-newsletter-form {
            display: flex;
            margin-bottom: 20px;
        }

        .footer-email-input {
            flex: 1;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 4px 0 0 4px;
            color: #ffffff;
            font-family: 'Open Sans', sans-serif;
        }

        .footer-email-input::placeholder {
            color: #999;
        }

        .footer-submit-button {
            background: #e74c3c;
            color: #ffffff;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .footer-submit-button:hover {
            background: #c0392b;
        }

        .footer-whatsapp-container {
            background: rgba(37, 211, 102, 0.1);
            border: 1px solid rgba(37, 211, 102, 0.3);
            border-radius: 8px;
            padding: 20px;
            margin-top: 25px;
            text-align: center;
        }

        .footer-whatsapp-main-icon {
            font-size: 2rem;
            color: #25D366;
            margin-bottom: 10px;
        }

        .footer-whatsapp-title {
            color: #ffffff;
            margin-bottom: 10px;
            font-family: 'Montserrat', sans-serif;
        }

        .footer-whatsapp-description {
            color: #bbb;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .footer-whatsapp-action-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #25D366;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .footer-whatsapp-action-button:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

        .footer-social-container {
            display: flex;
            gap: 15px;
        }

        .footer-social-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #ffffff;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .footer-social-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.3s ease;
        }

        .footer-social-button:hover:before {
            left: 100%;
        }

        .footer-social-button:hover {
            transform: translateY(-5px);
            background: #e74c3c;
        }

        .footer-bottom-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 0;
            flex-wrap: wrap;
        }

        .footer-copyright {
            color: #999;
            font-size: 0.9rem;
        }

        .footer-legal-links-container {
            display: flex;
            gap: 25px;
        }

        .footer-legal-link {
            color: #999;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-legal-link:hover {
            color: #e74c3c;
        }

        .footer-payment-methods {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .footer-payment-icon {
            font-size: 1.8rem;
            color: #bbb;
            transition: all 0.3s ease;
        }

        .footer-payment-icon:hover {
            color: #ffffff;
        }

        .footer-top-scroll {
            position: absolute;
            right: 20px;
            top: -25px;
            width: 50px;
            height: 50px;
            background: #e74c3c;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .footer-top-scroll:hover {
            background: #c0392b;
            transform: translateY(-5px);
        }

        /* Social Media & Logo Display Area */
        .footer-social-logo-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            padding: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            margin: 40px auto;
            max-width: 900px;
            position: relative;
            min-height: 200px;
        }

        .footer-social-buttons-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-social-platform-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #ffffff;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            font-size: 1.5rem;
        }

        .footer-social-platform-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: all 0.3s ease;
        }

        .footer-social-platform-button:hover:before {
            left: 100%;
        }

        .footer-social-platform-button:hover {
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
        }

        .footer-social-facebook:hover {
            background: #3b5998;
        }

        .footer-social-twitter:hover {
            background: #1da1f2;
        }

        .footer-social-instagram:hover {
            background: #e4405f;
        }

        .footer-social-linkedin:hover {
            background: #0077b5;
        }

        .footer-social-youtube:hover {
            background: #ff0000;
        }

        .footer-logo-presentation {
            flex: 1;
            min-width: 300px;
            min-height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.07);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .footer-logo-presentation:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .footer-brand-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            position: relative;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .footer-brand-accent {
            color: #e74c3c;
        }

        .footer-brand-name:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #e74c3c, #f39c12);
            border-radius: 2px;
        }

        .footer-logo-animation-background {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            opacity: 0.1;
        }

        .footer-animation-element {
            position: absolute;
            background: #e74c3c;
            border-radius: 50%;
            animation: footerElementFloat 8s infinite ease-in-out;
        }

        .footer-animation-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .footer-animation-element:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 70%;
            left: 80%;
            animation-delay: 1s;
            background: #f39c12;
        }

        .footer-animation-element:nth-child(3) {
            width: 100px;
            height: 100px;
            top: 40%;
            left: 85%;
            animation-delay: 2s;
            background: #2c3e50;
        }

        @keyframes footerElementFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .footer-grid-layout {
                grid-template-columns: 1fr 1fr;
                gap: 40px 30px;
            }
            
            .footer-company-info {
                grid-column: 1 / -1;
            }
            
            .footer-social-logo-section {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-logo-presentation {
                min-height: 150px;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .footer-grid-layout {
                grid-template-columns: 1fr;
            }
            
            .footer-bottom-container {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .footer-legal-links-container {
                order: 2;
            }
            
            .footer-payment-methods {
                order: 3;
            }
            
            .footer-newsletter-form {
                flex-direction: column;
            }
            
            .footer-email-input {
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .footer-submit-button {
                border-radius: 4px;
                padding: 12px;
            }
            
            .footer-social-platform-button {
                width: 60px;
                height: 60px;
                font-size: 1.3rem;
            }
            
            .footer-brand-name {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .footer-content-wrapper {
                padding: 60px 15px 0;
            }
            
            .footer-badges-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .footer-social-buttons-group {
                justify-content: center;
            }
            
            .footer-social-platform-button {
                width: 50px;
                height: 50px;
                font-size: 1.1rem;
            }
            
            .footer-brand-name {
                font-size: 1.8rem;
            }
            
            .footer-animation-element {
                display: none;
            }
        }


        

      /* whatsapp button --------------------------------------------------------------------------------------------------------------------*/




      /* WhatsApp Widget Styles */
        .whatsapp-widget {
            position: fixed;
            bottom: 130px;
            right: 40px;
            z-index: 1000;
        }

        .whatsapp-button {
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            cursor: pointer;
            animation: pulse 2s infinite;
            transition: all 0.3s;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
        }

        .whatsapp-button i {
            color: white;
            font-size: 28px;
        }

        .chat-box {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 300px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .chat-box.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .chat-header {
            background: linear-gradient(135deg, #01050a 0%, #1da851 100%);
            color: white;
            padding: 15px;
            display: flex;
            align-items: center;
        }

        .chat-header i {
            font-size: 20px;
            margin-right: 10px;
        }

        .chat-header h3 {
            font-size: 16px;
            font-weight: 600;
        }

        .chat-body {
            padding: 20px;
            text-align: center;
        }

        .chat-body p {
            margin-bottom: 15px;
            color: #555;
            font-size: 14px;
        }

        .chat-button {
            display: block;
            width: 100%;
            padding: 12px;
            background-color: #140c14;
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            box-shadow: 0 4px 10px rgba(13, 44, 24, 0.3);
        }

        .chat-button:hover {
            background-color: #1da851;
        }

        .chat-footer {
            padding: 10px 20px;
            text-align: center;
            font-size: 12px;
            color: #888;
            border-top: 1px solid #eee;
        }

        /* Animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

       

        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                padding: 1rem;
            }

            .nav-links {
                margin-top: 1rem;
            }

            .nav-links li {
                margin: 0 0.5rem;
            }

            .hero h2 {
                font-size: 2rem;
            }

            .chat-box {
                width: 280px;
                right: -20px;
            }

            .whatsapp-widget {
                bottom: 110px;
                right: 30px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 3rem 1rem;
            }

            .hero h2 {
                font-size: 1.8rem;
            }

            .services {
                grid-template-columns: 1fr;
            }

            .chat-box {
                width: 260px;
            }
        }



        /* chatbot button --------------------------------------------------------------------------------------------------------------------*/

        /* Chatbot Styles */
        .chatbot-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .chatbot-button {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #000000 0%, #000000 100%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            z-index: 1001;
        }

        .chatbot-button:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
        }

        .chatbot-button i {
            color: white;
            font-size: 32px;
        }

        .chatbot-window {
            position: absolute;
            bottom: 90px;
            right: 0;
            width: 380px;
            height: 520px;
            background-color: white;
            border-radius: 18px;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.9);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
        }

        .chatbot-window.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .chatbot-header {
            background: linear-gradient(135deg, #1a5276 0%, #2c3e50 100%);
            color: white;
            padding: 18px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chatbot-header-info {
            display: flex;
            align-items: center;
        }

        .chatbot-avatar {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 12px;
        }

        .chatbot-avatar i {
            font-size: 20px;
            color: white;
        }

        .chatbot-header-text h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 3px;
        }

        .chatbot-header-text p {
            font-size: 12px;
            opacity: 0.8;
        }

        .chatbot-close {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: transform 0.3s;
            width: 30px;
            height: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
        }

        .chatbot-close:hover {
            transform: rotate(90deg);
            background: rgba(255, 255, 255, 0.1);
        }

        .chatbot-body {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background-color: #f8f9fa;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .message {
            max-width: 80%;
            padding: 12px 16px;
            border-radius: 18px;
            font-size: 14px;
            line-height: 1.5;
            position: relative;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .bot-message {
            background-color: white;
            border-top-left-radius: 5px;
            align-self: flex-start;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            color: #333;
        }

        .user-message {
            background: linear-gradient(135deg, #1a5276 0%, #2c3e50 100%);
            color: white;
            border-top-right-radius: 5px;
            align-self: flex-end;
            box-shadow: 0 2px 5px rgba(26, 82, 118, 0.2);
        }

        .quick-replies {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }

        .quick-reply {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 20px;
            padding: 8px 15px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .quick-reply:hover {
            background: #f0f0f0;
            border-color: #1a5276;
        }

        .chatbot-footer {
            padding: 15px 20px;
            border-top: 1px solid #eee;
            background: white;
        }

        .chatbot-input {
            display: flex;
            gap: 10px;
        }

        .chatbot-input input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 25px;
            outline: none;
            font-size: 14px;
            transition: border-color 0.3s;
        }

        .chatbot-input input:focus {
            border-color: #1a5276;
        }

        .chatbot-send {
            background: linear-gradient(135deg, #1a5276 0%, #2c3e50 100%);
            color: white;
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .chatbot-send:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 10px rgba(26, 82, 118, 0.3);
        }

        .appointment-button {
            display: block;
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
            box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
            text-align: center;
            text-decoration: none;
            font-size: 14px;
        }

        .appointment-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                padding: 1rem;
            }

            .nav-links {
                margin-top: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .nav-links li {
                margin: 0.5rem 1rem;
            }

            .hero h2 {
                font-size: 2.2rem;
            }

            .chatbot-window {
                width: 320px;
                height: 480px;
                right: -20px;
            }

            .chatbot-container {
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 4rem 1rem;
            }

            .hero h2 {
                font-size: 1.8rem;
            }

            .services {
                grid-template-columns: 1fr;
            }

            .chatbot-window {
                width: 300px;
                right: -30px;
            }
        }


        /* cursor -----------------------------------------------------------------------------------------------------------------------------*/

         /* Hide default cursor completely */
        html, body, * {
            cursor: none !important;
        }
        
        /* Custom cursor styles */
        .custom-cursor {
            position: fixed;
            top: 0;
            left: 0;
            width: 17px;
            height: 17px;
            background: #c49816;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            /* mix-blend-mode: difference; */
            transition: transform 0.1s ease;
            box-shadow: 0 0 10px rgba(45, 11, 24, 0.5);
            /* color: goldenrod; */
        }
        
        .custom-cursor-follower {
            position: fixed;
            top: 0;
            left: 0;
            width: 10px;
            height: 10px;
            background: rgba(164, 154, 16, 0.81);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.1s ease;
        }
        
        .cursor-particle {
            position: fixed;
            width: 4px;
            height: 4px;
            background: rgba(203, 181, 52, 0.995);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9997;
            transition: all 0.1s ease;
        }
        
        /* Hover effects */
        .custom-cursor.hover {
            transform: scale(1.);
            background: #5eb2ca;
            box-shadow: 0 0 15px rgba(0, 204, 255, 0.6);
        }
        
        .custom-cursor.click {
            transform: scale(0.7);
            background: #ffff00;
            box-shadow: 0 0 15px rgba(255, 255, 0, 0.6);
        }