  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f9f5f0;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: #1a1a1a;
            color: #fff;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.4s ease;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #d4af37;
            text-decoration: none;
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: translateY(-3px);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
            opacity: 0;
            transform: translateY(-20px);
            animation: fadeInDown 0.6s forwards;
        }

        .nav-links li:nth-child(1) { animation-delay: 0.1s; }
        .nav-links li:nth-child(2) { animation-delay: 0.2s; }
        .nav-links li:nth-child(3) { animation-delay: 0.3s; }
        .nav-links li:nth-child(4) { animation-delay: 0.4s; }
        .nav-links li:nth-child(5) { animation-delay: 0.5s; }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #d4af37;
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #d4af37;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 0.5s;
        }

        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
         
              background: linear-gradient(to right, #ff0080, #7928ca);
                background-clip: text;    
                -webkit-background-clip: text; 
                -webkit-text-fill-color: transparent;
                  color: transparent;   
        }

            
    

        .hero-content p {
            font-size: 20px;
            max-width: 600px;
            margin: 0 auto 30px;
              /* text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
              background: linear-gradient(to right, #ff0080, #7928ca);
                background-clip: text;    
                -webkit-background-clip: text; 
                -webkit-text-fill-color: transparent;
                  color: transparent;    */
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: #fff;
            font-size: 14px;
            opacity: 0;
            animation: fadeIn 1s ease forwards 1.5s, bounce 2s infinite 2s;
        }

        /* Contact Section */
        .contact-section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            opacity: 0;
            transform: translateY(30px);
            
        }

        .section-title.animate {
            animation: fadeInUp 0.8s ease forwards;
        }

        .section-title h2 {
            font-size: 36px;
                    background: linear-gradient(to right, #ff0080, #7928ca);
                background-clip: text;    
                -webkit-background-clip: text; 
                -webkit-text-fill-color: transparent;
                  color: transparent; 
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
                background: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .contact-form {
         
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(30px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
          .contact-info1{
           
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(30px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
          }

        .contact-info.animate, .contact-form.animate {
            animation: fadeInUp 0.8s ease forwards;
        }

        .contact-info:hover, .contact-form:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .contact-info h3, .contact-form h3 {
            font-size: 24px;
            margin-bottom: 30px;
               background: linear-gradient(to right, #ff0080, #7928ca);
                background-clip: text;    
                -webkit-background-clip: text; 
                -webkit-text-fill-color: transparent;
                  color: transparent;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            opacity: 0;
            transform: translateX(-20px);
        }

        .info-item.animate {
            animation: fadeInRight 0.6s ease forwards;
        }

        .info-item:nth-child(1) { animation-delay: 0.1s; }
        .info-item:nth-child(2) { animation-delay: 0.2s; }
        .info-item:nth-child(3) { animation-delay: 0.3s; }
        .info-item:nth-child(4) { animation-delay: 0.4s; }

        .info-item i {
            font-size: 20px;
            color: #d4af37;
            margin-right: 15px;
            margin-top: 5px;
        }

        .info-content h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: #1a1a1a;
        }

        .info-content p {
            color: #666;
        }

        .hours-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }

        .hours-table tr {
            border-bottom: 1px solid #eee;
        }

        .hours-table tr:last-child {
            border-bottom: none;
        }

        .hours-table td {
            padding: 8px 0;
        }

        .hours-table td:last-child {
            text-align: right;
            font-weight: 500;
        }

        .form-group {
            margin-bottom: 20px;
            opacity: 0;
            transform: translateX(20px);
        }

        .form-group.animate {
            animation: fadeInLeft 0.6s ease forwards;
        }

        .form-group:nth-child(1) { animation-delay: 0.1s; }
        .form-group:nth-child(2) { animation-delay: 0.2s; }
        .form-group:nth-child(3) { animation-delay: 0.3s; }
        .form-group:nth-child(4) { animation-delay: 0.4s; }
        .form-group:nth-child(5) { animation-delay: 0.5s; }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border 0.3s, box-shadow 0.3s;
        }

        .form-control:focus {
            border-color: #d4af37;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
            outline: none;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        .btn {
            display: inline-block;
                     background: linear-gradient(to right, #ff0080, #7928ca);
       color:#fff;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover {
            background-color: #b8941f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn:hover:before {
            left: 100%;
        }

        /* Map Section */
        .map-section {
            padding: 0 0 100px;
        }

        .map-container {
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: scale(0.95);
        }

        .map-container.animate {
            animation: zoomIn 0.8s ease forwards;
        }

        .map-placeholder {
            height: 100%;
            background-color: #e9e9e9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .map-placeholder:hover {
            background-color: #d4af37;
            color: #fff;
            transform: scale(1.02);
        }

        /* Footer */
      