    * {
        margin: 0;
        padding: 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        overflow-x: hidden;
    }
    
    #nav-bar {
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .navbar {
        background: linear-gradient(135deg, rgba(179, 8, 185, 0.9), rgba(90, 3, 83, 0.9));
        padding: 0 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .navbar:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    }
    
    .navbar-brand img {
        height: 80px;/*40*/
        padding-left: 20px;
        transition: transform 0.3s ease;
    }

    .navbar-brand img:hover {
        transform: scale(1.05) rotate(5deg);
    }

    .navbar-brand {
        transition: all 0.3s ease;
    }

    .navbar-brand:hover {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
    
    
    .navbar-nav li {
        padding: 0 10px;
    }
    
    .navbar-nav li a {
        color: #fff !important;
        font-weight: 600;
        float: right;
        text-align: left;
        position: relative;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .nav-link:hover {
        color: #fff !important;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        transform: translateY(-2px);
    }
    
    .navbar-nav li::before {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 0%;
        height: 3px;
        background: linear-gradient(90deg, #1e90ff, #00bfff);
        transform: translateX(-50%);
        transition: width 0.4s ease;
        border-radius: 2px;
    }
    
    .navbar-nav li:hover::before {
        width: 100%;
    }
    /* .nav-link::before {
        content: "";
        background: rgb(33, 2, 173);
        width: 50px;
        height: 4px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        transform: translateY(34px);
    } */
    
    .fas-bars {
        color: #fff;
        font-weight: 30px !important;
    }
    
    /* Enhanced Mobile Navigation Drawer */
    .navbar-toggler {
        outline: none !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 8px;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        overflow: hidden;
    }

    .navbar-toggler::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: left 0.5s;
    }

    .navbar-toggler:hover::before {
        left: 100%;
    }

    .navbar-toggler:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5) !important;
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3) !important;
    }

    /* Enhanced hamburger icon */
    .navbar-toggler .fa-bars {
        color: #fff;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .navbar-toggler:hover .fa-bars {
        color: #fff;
        transform: rotate(90deg) scale(1.1);
    }

    /* Mobile Navigation Drawer Styles */
    .navbar-collapse {
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    @media (max-width: 991.98px) {
        .navbar-collapse {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(179, 8, 185, 0.95);
                /* background: #2c092bb5; */
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-top: none;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            margin: 0;
            padding: 20px 0;
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .navbar-collapse.show {
            transform: translateY(0);
            opacity: 0.9;
            visibility: visible;
        }

        .navbar-collapse.collapsing {
            transform: translateY(-5px);
            opacity: 0.5;
        }

        .navbar-nav {
            padding: 0 20px;
        }

        .navbar-nav .nav-item {
            margin: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInNav 0.6s ease forwards;
        }

        .navbar-nav .nav-item:last-child {
            border-bottom: none;
        }

        .navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
        .navbar-nav .nav-item:nth-child(2) { animation-delay: 0.2s; }
        .navbar-nav .nav-item:nth-child(3) { animation-delay: 0.3s; }
        .navbar-nav .nav-item:nth-child(4) { animation-delay: 0.4s; }
        .navbar-nav .nav-item:nth-child(5) { animation-delay: 0.5s; }
        .navbar-nav .nav-item:nth-child(6) { animation-delay: 0.6s; }

        @keyframes slideInNav {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .navbar-nav .nav-link {
            padding: 15px 20px !important;
            font-size: 16px;
            font-weight: 600;
            color: #fff !important;
            text-align: left;
            position: relative;
            transition: all 0.3s ease;
            border-radius: 10px;
            margin: 5px 0;
        }

        .navbar-nav .nav-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(10px);
            color: #fff !important;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }

        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #1e90ff, #00bfff);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::before {
            width: 5px;
        }

        /* Theme selector in mobile */
        .navbar-nav .nav-item:last-child {
            padding: 10px 20px;
        }

        .navbar-nav select {
            background: rgba(255, 255, 255, 0.1) !important;
            border: 2px solid rgba(255, 255, 255, 0.3) !important;
            color: #fff !important;
            border-radius: 10px !important;
            padding: 10px 15px !important;
            font-size: 14px !important;
            transition: all 0.3s ease !important;
        }

        .navbar-nav select:focus {
            background: rgba(255, 255, 255, 0.2) !important;
            border-color: rgba(255, 255, 255, 0.5) !important;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.2) !important;
        }

        .navbar-nav select option {
            background: rgb(179, 8, 185) !important;
            color: #fff !important;
            padding: 10px !important;
        }
    }

    /* Desktop navigation enhancements */
    @media (min-width: 992px) {
        .navbar-nav .nav-item:last-child select {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            border-radius: 8px;
            padding: 8px 12px;
            font-size: 13px;
            transition: all 0.3s ease;
            outline: none;
        }

        .navbar-nav .nav-item:last-child select:focus,
        .navbar-nav .nav-item:last-child select:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
        }

        .navbar-nav .nav-item:last-child select option {
            background: rgb(179, 8, 185);
            color: #fff;
            padding: 8px;
        }
    }
    
    #banner {
        background: linear-gradient(135deg, rgb(179, 8, 185), rgb(90, 3, 83));
        color: #fff;
        padding: 100px 0 50px;
        position: relative;
        overflow: hidden;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    #banner .container {
        position: relative;
        z-index: 2;
    }

    #banner .row {
        align-items: center;
        min-height: 70vh;
    }

    #banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.3;
        animation: float 20s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }
    
    .promo-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 30px;
        background: linear-gradient(45deg, #fff, #e0e0e0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: glow 2s ease-in-out infinite alternate;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
        line-height: 1.2;
    }

    @media (max-width: 768px) {
        .promo-title {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 576px) {
        .promo-title {
            font-size: 2rem;
        }
    }

    @keyframes glow {
        from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
        to { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(30, 144, 255, 0.5); }
    }

    /* Banner Content Styling */
    .banner-content {
        padding-right: 30px;
    }

    .banner-content p:not(.promo-title) {
        font-size: 1.1rem;
        margin: 25px 0;
        line-height: 1.7;
        opacity: 0.9;
        font-weight: 400;
    }

    @media (max-width: 768px) {
        .banner-content {
            padding-right: 0;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .banner-content p:not(.promo-title) {
            font-size: 1rem;
            margin: 20px 0;
        }
    }
    
    .play-btn {
        margin: 0 15px 0 0;
        width: 45px;
        transition: all 0.3s ease;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    }

    .play-btn:hover {
        transform: scale(1.2) rotate(360deg);
        filter: drop-shadow(0 8px 20px rgba(30, 144, 255, 0.5));
    }
    
    #banner a {
        color: #fff;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        padding: 10px 20px;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        margin-top: 20px;
    }

    #banner a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    /* .img-fluid {} */
    
    .bottom-img {
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        pointer-events: none;
        animation: wave-float 6s ease-in-out infinite;
    }

    @keyframes wave-float {
        0%, 100% { transform: translateX(0px) scaleX(1); }
        50% { transform: translateX(-10px) scaleX(1.01); }
    }
    
  

    /* Ensure banner content is above the wave */
    #banner .container {
        position: relative;
        z-index: 2;
    }

    /* Hero Image Section */
    .hero-img {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        position: relative;
        z-index: 2;
    }

    .hero-img img {
        max-width: 100%;
        height: auto;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
        transition: all 0.3s ease;
    }

    .hero-img:hover img {
        transform: scale(1.05);
        filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
    }

        @media (max-width: 1024px) {
            /* Adjustments for tablet if needed */
        } 

    @media (max-width: 768px) {
        .hero-img {
            margin-top: 50px;
            order: 2 !important;
        }
        
        #banner .row > div:first-child {
            order: 1;
            text-align: center;
        }
        
       
    }

    /* Add some bottom padding to banner to accommodate the wave */
    #banner {
        background: linear-gradient(135deg, rgb(179, 8, 185), rgb(90, 3, 83));
        color: #fff;
        padding: 100px 0 0;
        position: relative;
        overflow: hidden;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    /* service section  $$$$$$$$$$$$$$$$$$$$$$$$$$*/
    
    #services {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
        margin-top: -5px;
        z-index: 3;
    }

    #services::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(179, 8, 185, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(30, 144, 255, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    /* Services section styling with responsive grid */
    #services .container {
        max-width: 1200px;
    }

    #services .row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin: 0;
        padding: 20px 0;
        justify-content: center;
        max-width: 100%;
    }

    #services .col-md-4 {
        width: 100%;
        max-width: none;
        padding: 0;
        margin: 0;
        display: flex;
    }

    .services {
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 1;
    }

    .services::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: left 0.5s;
    }

    .services:hover::before {
        left: 100%;
    }

    .services:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 0.95);
    }

    .services div{
        cursor: pointer;
        position: relative;
        z-index: 2;
    }
    
    .services:hover div{
        color: #1e90ff;
    }
 
    
    .img {
        margin-top: 20px;
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, rgb(179, 8, 185), rgb(99, 67, 96));
        padding: 15px;
        border-radius: 50%;
        border: none;
        opacity: 0.9;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px auto;
    }

    .img::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.4s ease;
    }

    .img:hover::before {
        width: 120%;
        height: 120%;
    }

    .img:hover{
        opacity: 1;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        transform: translateY(-10px) rotate(360deg) scale(1.1);
    }

    .imgBg1 {
        background-image: linear-gradient(to right, rgb(179, 8, 185), rgb(99, 67, 96));
    }
    .imgBg2 {
        background-image: linear-gradient(to right, rgb(45 68 185), rgb(2 1 23));
    }
    .imgBg3 {
        background-image:  linear-gradient(to right, #00889e, rgb(1 35 43));
    }

    /* Services heading and text styling */
    
    .services h4 {
        padding: 5px;
        margin-top: 20px;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 1px;
        background: linear-gradient(45deg, #333, #666);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transition: all 0.3s ease;
    }

    .services:hover h4 {
        background: linear-gradient(45deg, #1e90ff, #00bfff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transform: scale(1.05);
    }
    
    .title::before {
        content: "";
        background: linear-gradient(45deg, #1e90ff, #00bfff);
        width: 100px;
        height: 4px;
        display: block;
        margin: 0 auto 20px;
        border-radius: 2px;
        animation: pulse 2s ease-in-out infinite;
    }

    .title {
        position: relative;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 50px;
        background: linear-gradient(45deg, #333, #666);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    @keyframes pulse {
        0%, 100% { transform: scaleX(1); opacity: 1; }
        50% { transform: scaleX(1.2); opacity: 0.8; }
    }
    /* .title::after {
        content: "";
        background: rgb(112, 0, 156);
        width: 50px;
        height: 10px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        transform: translateY(8px);
    } */
    
    #services .container .btn-primary {
        background-image: linear-gradient(to right, rgb(179, 8, 185), rgb(99, 67, 96));
        border-radius: 20px;
        border: none;
        padding: 8px 25px;
        /*for remove  wehen you click  blue bordrer*/
    }
    /* about us***********************************************/
    
    #about-us {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
        overflow: hidden;
    }

    #about-us::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(179, 8, 185, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 15s ease-in-out infinite;
    }
    
    .about-title {
        font-size: 40px;
        font-weight: 700;
        margin-top: 8%;
        background: linear-gradient(45deg, #333, #1e90ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
    }

    .about-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(45deg, #1e90ff, #00bfff);
        border-radius: 2px;
    }
    
    #about-us ul {
        margin-left: 20px;
        list-style: none;
    }

    #about-us ul li {
        margin: 15px 0;
        position: relative;
        padding-left: 30px;
        font-size: 18px;
        color: #555;
        transition: all 0.3s ease;
    }

    #about-us ul li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 0;
        width: 20px;
        height: 20px;
        background: linear-gradient(45deg, #1e90ff, #00bfff);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    #about-us ul li:hover {
        color: #1e90ff;
        transform: translateX(10px);
    }

    #about-us ul li:hover::before {
        transform: scale(1.2) rotate(360deg);
        box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
    }
    
    #testimonials {
        margin: 100px 0;
        padding: 80px 0;
        background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
        position: relative;
    }

    #testimonials::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(179,8,185,0.1)"/><circle cx="90" cy="20" r="0.5" fill="rgba(30,144,255,0.1)"/><circle cx="20" cy="80" r="1.5" fill="rgba(179,8,185,0.1)"/></svg>');
        opacity: 0.5;
    }
    
    .testimonials {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-left: 4px solid rgb(139, 13, 83);
        margin: 30px 0;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        overflow: hidden;
    }

    .testimonials::before {
        content: '"';
        position: absolute;
        top: 10px;
        left: 20px;
        font-size: 60px;
        color: rgba(179, 8, 185, 0.2);
        font-family: serif;
        line-height: 1;
    }

    .testimonials:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 1);
    }
    .testimonials1{
        border-left: 4px solid rgb(139, 13, 83);

    }
    .testimonials2{
        border-left: 4px solid rgb(1, 7, 95);
    }
    .testimonials3{
        border-left: 4px solid #046374;
    }
    
    .testimonials img {
        height: 80px;
        width: 80px;
        border-radius: 50%;
        margin: 15px 10px 0 0;
        border: 4px solid #fff;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        object-fit: cover;
    }

    .testimonials img:hover {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 12px 35px rgba(179, 8, 185, 0.3);
    }
    
    div .add-review{  font-weight: 600; text-align: center;     border-top: none; border-color: #1e90ff;  ; background-image: linear-gradient(to right, rgb(132, 17, 136), rgb(68, 4, 62));
        ; width: 150px;margin-left: 42%;border-radius: 30px;color: wheat;padding: 15px 5px; font-family: cursive;letter-spacing: 1px;}
        div .add-review:hover{ background-image: linear-gradient(to right, rgb(71, 22, 73), rgb(68, 4, 62));
            cursor: pointer;color: rgb(218, 214, 214);
        
        /* border: 4px solid  #1e90ff;
        transition: 2s;
     */
        
        
           
        
        
        
        }


    
        .userdetails {
        display: inline-block;
        font-size: 12px;
    }
    
    
    #contact-us {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    #contact-us::before {
        content: '';
        position: absolute;
        top: -20%;
        left: -10%;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(30, 144, 255, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 12s ease-in-out infinite reverse;
    }
    
    #contact-us p {
        margin-bottom: 40px;
        font-size: 30px;
        font-weight: 700;
        background: linear-gradient(45deg, #333, #1e90ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
    }

    #contact-us p::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(45deg, #1e90ff, #00bfff);
        border-radius: 2px;
    }
    
    .social-media {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .social-media img {
        width: 60px;
        height: 60px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        object-fit: contain;
    }
    
    .social-media a:hover img {
        transform: translateY(-15px) scale(1.2) rotate(360deg);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        background: linear-gradient(45deg, #1e90ff, #00bfff);
    }
    /* footer$$$$$$$$$$$$$$$$$$$$$*/
    
    #footer {
        background-image: linear-gradient(to right, rgb(179, 8, 185), rgb(90, 3, 83));
        color: #fff;
    }
    
    #footer img {
        width: 100%;
    }
    
    .footer-box {
        padding: 20px;
    }
    
    #footer .container .footer-box img {
        margin-bottom: 20px;
        width: 120px;
    }
    
    .footer-box .fas {
        margin-right: 8px;
        font-size: 25px;
        height: 40px;
        width: 40px;
        text-align: center;
        padding-top: 7px;
        background-image: linear-gradient(to right, rgb(132, 17, 136), rgb(68, 4, 62));
        border-radius: 20px;
    }
    
    .footer-box .form-control {
        box-shadow: none !important;
        margin-top: 25px;
        border-radius: 25px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        color: #fff;
        padding: 12px 20px;
        transition: all 0.3s ease;
    }

    .footer-box .form-control:focus {
        border-color: #1e90ff;
        box-shadow: 0 0 20px rgba(30, 144, 255, 0.3) !important;
        background: rgba(255, 255, 255, 0.2);
    }

    .footer-box .form-control::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .footer-box .btn-primary {
        margin-top: 15px;
        border-radius: 25px;  
        padding: 12px 30px;  
        border: none;
        background: linear-gradient(45deg, #1e90ff, #00bfff);
        color: white;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .footer-box .btn-primary::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: left 0.5s;
    }

    .footer-box .btn-primary:hover::before {
        left: 100%;
    }

    .footer-box .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(30, 144, 255, 0.4);
        background: linear-gradient(45deg, #00bfff, #1e90ff);
    }
    
    hr {
        background-color: #fff;
    }
    
    .copyright {
        margin-bottom: 0;
        padding-bottom: 20px;
        text-align: center;
    }
    /*animation of img  */
    
    .hero-img .animated {
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }
    
    @keyframes up-down {
        0% {
            transform: translateY(10px);
        }
        100% {
            transform: translateY(-10px);
        }
    }

   .services a {color: black;text-decoration: none;
    }

       #videoContainer video {
        border-radius: 10px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    #videoContainer {
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    #videoContainer button {
        background: linear-gradient(45deg, #ff4757, #ff3742) !important;
        border: none !important;
        transition: all 0.3s ease !important;
    }

    #videoContainer button:hover {
        transform: scale(1.1) !important;
        box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4) !important;
    }

    /* Enhanced Video Modal Styles */
    .video-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99999 !important;
        display: none;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .video-modal.active {
        display: flex;
        opacity: 1;
    }

    .video-backdrop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        cursor: pointer;
        z-index: 99998 !important;
    }

    .video-modal-content {
        position: relative;
        margin: auto;
        background: transparent;
        border-radius: 25px;
        padding: 0;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(2px);
        border: 2px solid rgba(255, 255, 255, 0.1);
        max-width: 90vw;
        max-height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: scale(0.8);
        transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 99999 !important;
        overflow: hidden;
    }

    .video-modal.active .video-modal-content {
        transform: scale(1);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    }

    .video-player {
        width: 100%;
        max-width: 1000px;
        max-height: 80vh;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        outline: none;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 99999 !important;
        border: 3px solid rgba(255, 255, 255, 0.2);
        object-fit: cover;
    }

    .video-player:hover {
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
        transform: scale(1.02);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .video-close-btn {
        position: absolute;
        top: -15px;
        right: -15px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #ff4757, #ff3742);
        border: 3px solid rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        color: white;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
        z-index: 100000 !important;
        backdrop-filter: blur(10px);
    }

    .video-close-btn::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .video-close-btn:hover::before {
        opacity: 1;
    }

    .video-close-btn:hover {
        transform: scale(1.15) rotate(90deg);
        box-shadow: 0 15px 40px rgba(255, 71, 87, 0.6);
        background: linear-gradient(135deg, #ff3742, #ff6b7a);
        border-color: rgba(255, 255, 255, 1);
    }

    .video-close-btn:active {
        transform: scale(0.95) rotate(90deg);
        box-shadow: 0 5px 15px rgba(255, 71, 87, 0.8);
    }

    /* Improved close button icon */
    .video-close-btn i {
        font-size: 20px;
        transition: transform 0.3s ease;
    }

    .video-close-btn:hover i {
        transform: scale(1.2);
    }

    /* Responsive Video Modal */
    @media (max-width: 768px) {
        .video-modal-content {
            padding: 0;
            margin: 15px;
            max-width: 95vw;
            max-height: 85vh;
            border-radius: 20px;
            border-width: 1px;
        }
        
        .video-player {
            max-height: 65vh;
            border-radius: 15px;
            border-width: 2px;
        }
        
        .video-close-btn {
            width: 50px;
            height: 50px;
            font-size: 20px;
            top: -12px;
            right: -12px;
            border-width: 2px;
        }

        .video-close-btn i {
            font-size: 16px;
        }

        /* Services responsive grid for tablets */
        #services .row {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            padding: 15px 0;
        }

        .services {
            padding: 25px 15px;
        }
    }

    @media (max-width: 576px) {
        .video-modal-content {
            padding: 0;
            margin: 10px;
            border-radius: 15px;
            max-width: 98vw;
            max-height: 80vh;
        }
        
        .video-player {
            max-height: 55vh;
            border-radius: 12px;
        }

        .video-close-btn {
            width: 45px;
            height: 45px;
            font-size: 18px;
            top: -10px;
            right: -10px;
        }

        .video-close-btn i {
            font-size: 14px;
        }

        /* Services responsive grid for mobile */
        #services .row {
            grid-template-columns: 1fr;
            gap: 15px;
            padding: 10px 0;
        }

        .services {
            padding: 20px 15px;
            margin: 0;
        }

        #services .container {
            padding: 0 15px;
        }
    }

    /* Enhanced backdrop for better contrast */
    .video-backdrop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(15px);
        cursor: pointer;
        z-index: 99998 !important;
        transition: all 0.3s ease;
    }

    .video-modal.active .video-backdrop {
        background: rgba(0, 0, 0, 0.95);
    }
    
    /* ------------------- MOdal------------- */
    
    .modal-container {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        width: 50%;
        padding: 40px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        opacity: 0;
        z-index: 10000;
        border-radius: 25px;
        overflow: hidden;
    }

    .modal-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #1e90ff, #00bfff, #1e90ff);
        background-size: 200% 100%;
        animation: shimmer 2s ease-in-out infinite;
    }

    @keyframes shimmer {
        0% { background-position: -200% 0; }
        100% { background-position: 200% 0; }
    }
    
    .modal-container.active {
        display: block;
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    
    .modal-header {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 25px;
        text-align: center;
        background: linear-gradient(45deg, #333, #1e90ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .modal-body input,.modal-body textarea,
    .modal-body select {
        display: block;
        width: 100%;
        margin: 15px 0;
        padding: 15px 20px;
        font-size: 16px;
        border: 2px solid #e0e0e0;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.8);
        transition: all 0.3s ease;
        outline: none;
    }

    .modal-body input:focus,.modal-body textarea:focus,
    .modal-body select:focus {
        border-color: #1e90ff;
        box-shadow: 0 0 20px rgba(30, 144, 255, 0.2);
        background: rgba(255, 255, 255, 1);
        transform: translateY(-2px);
    }
    
    .modal-footer {
        text-align: right;
    }
    
    .close-modal-btn {
        background: linear-gradient(45deg, #1e90ff, #00bfff);
        color: white;
        padding: 12px 25px;
        border: none;
        border-radius: 25px;
        cursor: pointer;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .close-modal-btn::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: left 0.5s;
    }

    .close-modal-btn:hover::before {
        left: 100%;
    }
    
    .close-modal-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(30, 144, 255, 0.4);
    }

    .btn-danger.close-modal-btn {
        background: linear-gradient(45deg, #ff4757, #ff3742);
    }

    .btn-danger.close-modal-btn:hover {
        box-shadow: 0 10px 25px rgba(255, 71, 87, 0.4);
    }
    

    .fade-in-element {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
        transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
        filter: blur(5px);
    }
    
    .fade-in-active {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
    

/* Enhanced Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease;
}

/* Enhanced Loader */
.loader {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

.loader::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: spin 2s linear infinite reverse;
}

.loader::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: spin 3s linear infinite;
}

/* Animation keyframes */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


    @media (min-width: 350px) { /* xs and above */
        #videoContainer video {
            width: 99%;
        }
        .modal-container {width:85%}
    }

    @media (min-width: 576px) { /* sm and above */
        #videoContainer video {
            width: 80%;
        }
    }

    @media (min-width: 768px) { /* md and above */
        #videoContainer video {
            width: 70%;
        }
    }

    @media (min-width: 992px) { /* lg and above */
        #videoContainer video {
            width: 60%;
        }
        .modal-container {width:50%}
    }

    /* Additional responsive breakpoint for better service grid control */
    @media (max-width: 992px) and (min-width: 769px) {
        #services .row {
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 22px;
        }
    }

    /* Enhanced drawer animations and interactions */
    .navbar-toggler.collapsed .fa-bars {
        transform: rotate(0deg);
    }

    .navbar-toggler:not(.collapsed) .fa-bars {
        transform: rotate(90deg);
    }

    /* Backdrop blur effect when drawer is open */
    @media (max-width: 991.98px) {
        body.drawer-open {
            overflow: hidden;
        }
        
        body.drawer-open #banner::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(5px);
            z-index: 999;
            opacity: 0;
            animation: fadeInBackdrop 0.3s ease forwards;
        }
        
        @keyframes fadeInBackdrop {
            to { opacity: 1; }
        }
    }

    /* Smooth height transition for collapsing */
    .navbar-collapse.collapsing {
        height: auto !important;
        overflow: hidden;
        transition: all 0.1s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    }

    /* Enhanced mobile nav item hover effects */
    @media (max-width: 991.98px) {
        .navbar-nav .nav-item {
            position: relative;
        }
        
        .navbar-nav .nav-item::after {
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-bottom: 6px solid rgba(255, 255, 255, 0.6);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-item:hover::after {
            opacity: 1;
            transform: translateY(-50%) rotate(180deg);
        }
    }

    /* Loading states for theme switching */
    .navbar-nav select.loading {
        opacity: 0.7;
        pointer-events: none;
        position: relative;
    }

    .navbar-nav select.loading::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-top: 2px solid #fff;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    /* Additional modern animations */
    @keyframes slideInFromLeft {
        0% { transform: translateX(-100%); opacity: 0; }
        100% { transform: translateX(0); opacity: 1; }
    }

    @keyframes slideInFromRight {
        0% { transform: translateX(100%); opacity: 0; }
        100% { transform: translateX(0); opacity: 1; }
    }

    @keyframes fadeInUp {
        0% { transform: translateY(50px); opacity: 0; }
        100% { transform: translateY(0); opacity: 1; }
    }

    @keyframes bounce {
        0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
        40%, 43% { transform: translateY(-20px); }
        70% { transform: translateY(-10px); }
        90% { transform: translateY(-4px); }
    }

    @keyframes heartbeat {
        0% { transform: scale(1); }
        14% { transform: scale(1.1); }
        28% { transform: scale(1); }
        42% { transform: scale(1.1); }
        70% { transform: scale(1); }
    }

    /* Parallax scrolling effects */
    .parallax-element {
        transform: translateZ(0);
        will-change: transform;
    }

    /* Glassmorphism utility classes */
    .glass {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .glass-dark {
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Hover effects for better interactivity */
    .hover-lift {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .hover-lift:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    /* Enhanced button styles */
    .btn-gradient {
        background: linear-gradient(45deg, #1e90ff, #00bfff);
        border: none;
        color: white;
        padding: 12px 30px;
        border-radius: 25px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .btn-gradient::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: left 0.5s;
    }

    .btn-gradient:hover::before {
        left: 100%;
    }

    .btn-gradient:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(30, 144, 255, 0.4);
    }

