       /* Global Styles */
        :root {
            --primary-black: #121212;
            --secondary-black: #1e1e1e;
            --white: #ffffff;
            --myred: #ff5733;
            --gold: #d4af37;
            --light-gold: #f0e6d2;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            background-color: var(--white);
            color: var(--primary-black);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .nav-bar{
            background: #ffffff;
        }
        
.lang{
    border: 1px solid black;
    display: block;
    border-radius: 5px;
    max-width: 2rem;
    padding: 2px 5px;
}



    .mobile-menu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
    }
    .mobile-menu a:hover{
        color: #ff5733;
    }
.logo{
    max-width: 80px;
}
    .mobile-menu.show {
      max-height: 500px; /* Adjustable as needed */
      transition: max-height 0.5s ease-in;
    }

    .menu-item {
      opacity: 0;
      transform: translateY(-10px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .menu-item-1{
        color: #ff5733;
    }

    .mobile-menu.show .menu-item {
      opacity: 1;
      transform: translateY(0);
    }
    .mb1:hover{
        color: #ff5733;
    }

    .mobile-menu.show .menu-item:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu.show .menu-item:nth-child(2) { transition-delay: 0.2s; }
    .mobile-menu.show .menu-item:nth-child(3) { transition-delay: 0.3s; }
    .mobile-menu.show .menu-item:nth-child(4) { transition-delay: 0.4s; }




          /* Footer */
        footer {
            background-color: var(--primary-black);
            color: var(--white);
            padding: 30px 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .social-links {
            margin-bottom: 20px;
        }
        
        .social-links a {
            color: var(--white);
            font-size: 1.5rem;
            margin: 0 10px;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .social-links a:hover {
            color: var(--gold);
            transform: translateY(-3px);
        }
        
        .copyright {
            font-size: 0.9rem;
            color: #aaa;
        }

             /* Services Section */
        #services {
            background-color: var(---white);
            color: var(--white);
        }
        #services img{
            mix-blend-mode: multiply;
            
        }
        #services img:hover{
            transform: scale(1) rotate(15deg);
            
        }
        
        #services h2 {
            color: var(--primary-black);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            border-bottom: 3px solid var(--gold);
            position: relative;
            overflow: hidden;
            
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .service-card:hover::before {
            opacity: 1;
        }
        
        .service-icon {
            font-size: 4rem;
            color: var(--white);
            margin-bottom: 20px;
            display: inline-block;
            transition: transform 0.3s ease;
        }
         
        .service-icon:hover {
            transform: none;
        }
        
          .google-review {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: relative;
        }
        .google-review::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background-color: #4285F4;
            border-radius: 8px 8px 0 0;
        }
        .google-stars {
            color: #FBBC04;
            font-size: 18px;
        }
        .servicecard{
            background-color: #df5536ce;
        }

        #about-me img{
            max-width: 20rem;
        }

    .whatsapp{
        z-index: 9999;
    }
    .hero-img{
       width: ;
    }