
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: #0a0a0a;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            backdrop-filter: blur(20px);
            background: rgba(0, 0, 0, 0.9);
            border-bottom: 1px solid rgba(255, 193, 7, 0.2);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #ffc107, #ff8f00);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .logo-text {
            font-size: 29px;
            font-weight: 100px;
            color: #63FFE7;            
        
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1rem;
        }
        .header-container {
  display: flex;
}

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            margin-left: 10px;
        }

        .nav-links a:hover {
            color: #ffc107;
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ffc107, #ff8f00);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text h1 {
            font-size: 4rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff, #ffc107);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            animation: slideInLeft 1s ease-out;
            font-family:  Georgia, 'Times New Roman', Times, serif;
           
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero-text p {
            font-size: 1rem;
            color: #ccc;
            margin-top: -100px;
            margin-top: 100px;
            line-height: 1.6;
            animation: slideInLeft 1s ease-out 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 50px;
            animation: slideInLeft 1s ease-out 0.4s both;
        }
               .main-title {
            font-size: 20px;
            font-weight: bold;
            line-height: 1.1;
            margin-top: 70px;
            color: white;
            font-size: 60px;
           
        }
        
        .highlight {
            color: #ffa500;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ffc107, #ff8f00);
            color: #000;
            box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid #ffc107;
        }

        .btn-secondary:hover {
            background: #ffc107;
            color: #000;
            transform: translateY(-3px);
        }

        .hero-visual {
            position: relative;
            animation: slideInRight 1s ease-out 0.6s both;
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .car-container {
            padding: 2rem;
        
        }

        .car-image {
            width: 90%;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(255, 193, 7, 0.3));
            animation: carFloat 3s ease-in-out infinite;
            margin-left: 800px;
            position: absolute;
            margin-top: -420px;
             
        }

        @keyframes carFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 800px;
            height: 100px;
            pointer-events: none;
            margin-left: 700px;
            margin-top: -255px;
        }

        .floating-element {
            position: absolute;
            background: linear-gradient(135deg, #ffc107, #ff8f00);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 20px;
            height: 20px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 15px;
            height: 15px;
            top: 70%;
            right: 20%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 25px;
            height: 25px;
            top: 30%;
            right: 10%;
            animation-delay: 4s;
        }

        /* Services Section */
        .services {
            padding: 8rem 5% 4rem;
            background: #111;
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ffc107, transparent);
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ffc107, #ff8f00);
            border-radius: 2px;
        }
        

        .section-header p {
            font-size: 1.2rem;
            color: #ccc;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 193, 7, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #ffc107;
            box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ffc107, #ff8f00);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #ccc;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #a59d9d 0%, #000000 50%, #ff8f00 100%);
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
          
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ff8f00;
            margin-bottom: 2rem;
            text-shadow: 0 5px 4px rgba(0, 0, 0, 0.8);
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.9);
            padding: 1.5rem;
            border-radius: 15px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(33, 150, 243, 0.3);
        }

        .contact-method:hover {
            background: rgba(255, 255, 255, 0.95);
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #2196f3, #1976d2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
        }

        .contact-details h3 {
            font-size: 2.2rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .contact-details p {
            color: #000000;
            font-weight: bold;
            font-size: 30px;
        }

        .about-section {
            background: rgba(255, 255, 255, 0.9);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(33, 150, 243, 0.3);
        }
  
        

        .about-section h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1.5rem;
        }

        .about-section p {
            color: #666;
            line-height: 1.8;
            font-size: 1.1rem;
        }

    /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-content {
                max-width: 1000px;
                gap: 3rem;
            }
            body {
                align-items: center;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
     
            
            .services-container {
                max-width: 1000px;
            }
            
            .contact-container {
                max-width: 1000px;
            }
            .onecontact-method{
                margin-left: -10px;
                width: 60px;
                
            }
               .onecontact-details p {
            font-size: -10px;
            font-weight: 600;
            color: #333;
            margin-bottom: 0.1rem;
            margin-top: -50px;
         }
         .main-title {
            font-size: 40px;
         }
         .onecontact-icon {
            margin-top: 3px;
            margin-left: -1px;
        
         }
            
        }

        @media (max-width: 992px) {
            .nav {
                padding: 1rem 3%;
            }
            
            .hero-content {
                gap: 2rem;
            }
                
            

            

        .numbers {
            color: #000000;
            font-weight: bold;
            font-size: 15px;
              margin-top: -5px;
              margin-left: 40px;
        }
      
     
            
            .hero-text p {
                font-size: 1.2rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .section-header h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav {
                padding: 1rem 5%;
            }

            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding-top: 80px;
                min-height: auto;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
                padding: 2rem 5%;
            }

            .hero-text h1 {
                font-size: 2.5rem;
                line-height: 1.2;
            }

            .hero-text p {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .btn {
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }

            .services {
                padding: 4rem 5% 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card {
                padding: 2rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .contact {
                padding: 4rem 5%;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-info h2 {
                font-size: 2rem;
                text-align: center;
            }
            .main-title {
                font-size: 50px;
            }
            .hb3 {
                font-size: 10px;
            }

            .contact-method {
                padding: 1.25rem;
            }

            .contact-method:hover {
                transform: translateY(-5px);
            }

            .about-section h2 {
                font-size: 1.75rem;
            }

            .about-section p {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .nav {
                padding: 1rem 4%;
            }

            .logo-text {
                font-size: 20px;
               
            }

            .logo-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .hero-content {
                padding: 1.5rem 4%;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-text p {
                font-size: 1rem;
                line-height: 1.5;
            }

            .btn {
                padding: 0.875rem 1.5rem;
                font-size: 1rem;
            }

            .services {
                padding: 3rem 4% 2rem;
            }

            .service-card {
                padding: 1.5rem;
            }

            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .service-card h3 {
                font-size: 1.25rem;
            }

            .contact {
                padding: 3rem 4%;
            }

            .contact-method {
                padding: 1rem;
                gap: 0.75rem;
            }

            .contact-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .contact-details h3 {
                font-size: 1.1rem;
            }

            .contact-details p {
                font-size: 0.9rem;
            }

            .about-section {
                padding: 1.5rem;
            }

            .about-section h2 {
                font-size: 1.5rem;
            }

            .about-section p {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .section-header h2 {
                font-size: 1.75rem;
            }

            .section-header p {
                font-size: 0.95rem;
                padding: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.75rem;
            }

            .services-grid {
                gap: 1rem;
            }

            .service-card {
                padding: 1.25rem;
            }

            .contact-method {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .contact-method:hover {
                transform: translateY(-3px);
            }
        }

        
        .num {
            color: white;
            margin-left: 1px;
            font-size: 20px;
            margin-top: 1px;
        }
        .iconW {
            width: 10px;
            margin-left: 300px;
            margin-top: 0px;
        }
        .num {
  color: #ffffff; /* WhatsApp green */
  text-decoration: none;
    color: white;
  text-decoration: none; /* optional: remove underline */
}

.num:hover {
  color: #1e6b0e; /* darker green on hover */
}
a[href*="wa.me"] {
  color: inherit;
  text-decoration: none;
}
.face {
    margin-left: -75px;
    margin-top: -90px;
}
.facebook-link {
  color: #3b5998; /* Facebook blue */
  text-decoration: none;

}
.facebook-link:hover {
  text-decoration: underline;
}
.p1 {
      margin-top: -10px;
      
}
.onecontact-details p {
            color: #000000;
            font-weight: bold;
            font-size: 12px;
              margin-top: -1px;
        }
         .onecontact-details h3 {
            font-size: 1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1.5rem;
            margin-top: -50px;
            
            
        }
        .onecontact-method {
          display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255, 178, 35, 0.9);
            padding: 0.5rem;
            border-radius: 50px;
            transition: all 2.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(33, 150, 243, 0.3);
            width: 230px;
            height: 50px;
            margin-top: 10px;
              background-color: #f8d433;
            color: #000000;
            box-shadow: 0 10px 30px rgba(255, 249, 249, 0.3);
            padding-left: 30px;
            border-color: rgb(85, 83, 83);
            border-width: 5px;
            margin-left: -10px;
             animation:  slideInLeft 1s ease-out 0.2s both;
             filter: drop-shadow(0 20px 40px rgba(228, 198, 108, 0.3));
            
        }
         @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .onecontact-details:hover {
                    transform: translateY(-1px);
            box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
        }
        .onecontact-details p {
            font-size: 17px;
            margin-left: -10px;
        }
        .onecontact-icon {
            margin-left: -11px;
        }
    
        .one {
            width:30px ;
            margin-left: -10px;
        }
        .two {
             animation: pulse 1s infinite;
        }
        .gmail {
            width: 60px;
             animation: pulse 1s infinite;
        }
        .three {
            width: 60px;
            animation: pulse 1s infinite;
        }
        .four {
            animation: pulse 1s infinite;
        }
        .five {
             width: 100px;
            animation: pulse 1s infinite;
            margin-left: 30px;
            margin-top: -5px;
        }
        .highlight1 {
            color: yellow;
            font-weight: bold;
        }
        .hb3 {
           color:#ffa500 ;
           font-size:50px;
      
        }
   



