
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        a {
            text-decoration: none;
          }
        
        
            /* Navbar */
        
            .navbar {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                padding: 1rem;
                background: black;
                backdrop-filter: blur(10px);
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                z-index: 1000;
                transition: 1s;
              }
              
              .nav-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                height: 70px;
              }
              
              .nav-logo {
                font-size: 2rem;
                margin-left: -4.5rem;
                font-weight: bold;
                color: white;
                cursor: pointer;
              }
              
              .nav-menu {
                margin-left: 4.5rem;
                display: flex;
                list-style: none;
                gap: 30px;
              }
              
              .nav-link {
                color: white;
                font-weight: 600;
                font-size: 1.2rem;
                transition: 1s;
                position: relative;
              }
              
              .nav-link:hover {
                color: #b8860b;
              }
              
              .nav-link::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 0;
                width: 0;
                height: 2px;
                background: #b8860b;
                transition: 1s;
              }
              
              .nav-link:hover::after {
                width: 100%;
              }
          
          
              .nav-button {
                background: #b8860b;
                color: white;
                font-size: 1rem;
                margin-right: -5rem;
                padding: 1rem 2rem;
                border-radius: .5rem;
                font-weight: 600;
                transition: 1s;
                border: none;
                cursor: pointer;
              }
              
              .nav-button:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 15px #b8860b;
              }
              
              .hamburger {
                display: none;
                flex-direction: column;
                cursor: pointer;
                padding: 5px;
              }
              
              .hamburger span {
                width: 25px;
                height: 3px;
                background: #b8860b;
                margin: 3px 0;
                transition: 0.3s;
                border-radius: 2px;
              }
              
              .hamburger.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 7px);
              }
              
              .hamburger.active span:nth-child(2) {
                opacity: 0;
              }
              
              .hamburger.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -8px);
              }
              
              .mobile-button-container {
                display: none;
              }
              
        
              /* Mobile Styles */
        
              @media (max-width: 768px) {
                .hamburger {
                  display: flex;
                }
              
                .nav-button:not(.mobile-nav-button) {
                  display: none;
                }
              
                .mobile-button-container {
                  display: none;
                }
              
                .nav-logo {
                  font-size: 1.7rem;
                  margin-left: .5rem;
                }
              
                .nav-button {
                  margin-right: 0;
                }
          
                .nav-menu {
                  display: none; 
                  position: fixed;
                  top: 90px;
                  left: 0;
                  right: 0;
                  flex-direction: column;
                  color: white;
                  background: black;
                  width: 110%;
                  margin-left: -1rem;
                  text-align: center;
                  box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                  padding: 1rem;
                  gap: 0;
                  z-index: 999;
                }
              
                .nav-menu.active {
                  display: flex; 
                }
              
                .nav-menu.active .mobile-button-container {
                  display: block;
                }
              
                .nav-menu li {
                  padding: 15px 0;
                }
              
                .mobile-nav-button {
                  margin: 10px 20px;
                }
              
                .nav-container {
                  padding: 0 15px;
                }
              }
              
        

        /* Header */

        .header {
            position: relative;
            height: 50vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('estate1.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            margin-top: 90px;
        }

 

        @keyframes buildingPattern {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-100px) translateY(-100px); }
        }

        .header-content {
            position: relative;
            z-index: 2;
        }

        .header h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: slideInFromTop 1s ease-out;
        }

        .header .subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-weight: 300;
            animation: slideInFromBottom 1s ease-out 0.2s both;
        }

        .header .tagline {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
            animation: fadeIn 1s ease-out 0.4s both;
        }

        @keyframes slideInFromTop {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInFromBottom {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @media (max-width:768px) {
        .header {
         
        }
          .header-content h1 {
          
            font-size: 2rem;
          }

          .header-content .subtitle {
            margin-bottom: 1rem;
          }
        }

        /* Key Services Banner */

        .key-services-banner {
            background: black; 
            color: white;
            padding: 40px 0;
            margin-top: -20px;
            position: relative;
            z-index: 3;
        }

        .services-list {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            list-style: none;
        }

        .services-list li {
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 500;
            transition: transform 0.3s ease;
        }

        .services-list li:hover {
            transform: scale(1.05);
        }

        .services-list li::before {
            content: '🏠';
            margin-right: 10px;
            font-size: 1.2rem;
        }


        /* Main Content */

        .main-content {
            padding: 80px 0;
        }

        .intro-section {
            text-align: center;
            margin-bottom: 80px;
            background: white;
            padding: 60px 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .intro-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: #c59d5f; 
        }

        .intro-section h2 {
            font-size: 2.8rem;
            color: black; 
            margin-bottom: 30px;
            font-weight: bold;
            position: relative;
        }

        .intro-section h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #c59d5f; 
            border-radius: 2px;
        }

        .intro-section p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            color: #555;
            line-height: 1.8;
        }


        /* Services Grid */

        .services-section {
            margin-bottom: 80px;
        }

        .services-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: black;
            margin-bottom: 50px;
            font-weight: bold;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border-top: 5px solid #c59d5f;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, rgba(42, 82, 152, 0.05), rgba(30, 60, 114, 0.05));
            transition: width 0.4s ease;
        }

        .service-card:hover::before {
            width: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            border-top-color: #c59d5f; 
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: #c59d5f; 
            border-radius: 50%;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            position: relative;
            z-index: 2;
        }

        .service-card h3 {
            font-size: 1.6rem;
            color: black;
            margin-bottom: 20px;
            font-weight: bold;
            position: relative;
            z-index: 2;
        }

        .service-card p {
            color: #333;
            margin-bottom: 25px;
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }

        .service-details {
            list-style: none;
            position: relative;
            z-index: 2;
        }

        .service-details li {
            padding: 8px 0;
            color: #555;
            position: relative;
            padding-left: 25px;
            transition: 1s;
        }

        .service-details li::before {
            content: '📋';
            position: absolute;
            left: 0;
            font-size: 1rem;
        }

        .service-card:hover .service-details li {
            color: black;
        }


        /* Process Section */

        .process-section {
            background: white;
            padding: 80px 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(42, 82, 152, 0.1), rgba(30, 60, 114, 0.1));
            border-radius: 50%;
            transform: translate(50%, -50%);
        }

        .process-content {
            position: relative;
            z-index: 2;
        }

        .process-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: black;
            margin-bottom: 50px;
            font-weight: bold;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .process-step {
            text-align: center;
            padding: 30px 20px;
            border-radius: 15px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            transition: 1s;
            position: relative;
            overflow: hidden;
        }

        .process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #c59d5f; 
            transform: scaleX(0);
            transition: 1s;
        }

        .process-step:hover::before {
            transform: scaleX(1);
        }

        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: #c59d5f; 
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
            position: relative;
        }

        .step-number::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px solid #c59d5f; 
            border-radius: 50%;
            opacity: 0;
            transition: 1s;
        }

        .process-step:hover .step-number::after {
            opacity: 1;
        }

        .process-step h4 {
            font-size: 1.3rem;
            color: black;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .process-step p {
            color: #333;
            line-height: 1.6;
        }

        /* Expertise Section */

        .expertise-section {
            background: black;
            color: white;
            padding: 80px 0;
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
        }

        .expertise-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 20px,
                rgba(255,255,255,0.02) 20px,
                rgba(255,255,255,0.02) 40px
            );
            animation: slideExpertise 20s linear infinite;
        }

        @keyframes slideExpertise {
            0% { transform: translateX(-40px) translateY(-40px); }
            100% { transform: translateX(40px) translateY(40px); }
        }

        .expertise-content {
            position: relative;
            z-index: 2;
        }

        .expertise-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            font-weight: bold;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .expertise-item {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .expertise-item:hover {
            transform: scale(1.05);
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.2);
        }

        .expertise-icon {
            width: 80px;
            height: 80px;
            background: #c59d5f; 
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        .expertise-item h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .expertise-item p {
            line-height: 1.6;
            opacity: 0.9;
        }

        /* CTA Section */

        .cta-section {
            background: #c59d5f; 
            color: white;
            padding: 80px 40px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: floatLight 6s ease-in-out infinite;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            animation: floatLight 8s ease-in-out infinite reverse;
        }

        @keyframes floatLight {
            0%, 100% { transform: translateY(0px) translateX(0px); }
            50% { transform: translateY(-20px) translateX(20px); }
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .btn-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 18px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background: #c59d5f; 
            color: white;
            box-shadow: 0 10px 20px rgba(39, 174, 96, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(39, 174, 96, 0.4);
            background: #c59d5f; 
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: #1e3c72;
            transform: translateY(-3px);
        }

        /* Footer Styles */

.footer {
    background-color: black;
    margin-bottom: -5rem;
    color: #f5f5f5;
    padding: 60px 0 30px; 
    width: 100vw; 
    margin-left: calc(-50vw + 50%);
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    padding: 0 5%; 
  }
  
  
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #b8860b;
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-links li a:hover {
    color: #b8860b;
    padding-left: 5px;
  }
  
  .footer-title-quicklinks {
    margin-left: 5rem;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-title-quicklinks:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #b8860b;
  }
  
  .footer-links-quicklinks {
     margin-left: 3rem;
     list-style: none;
  }
  
  .footer-links-quicklinks li a {
    color: #ccc;
    text-decoration: none;
    transition: 1s;
    margin-left: 2rem;
  }
  
  .footer-links-quicklinks li a:hover {
    color: #c6961c;
    padding-left: 5px;
  }
  
  
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 1s;
  }
  
  .social-links a:hover {
    background-color: #b8860b;
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #1c1c1c;
    color: #f0f0f0;
    margin-top: 1rem;
    font-size: 1rem;
    outline: none;
    transition: 1s;
  }
  
  .form-input::placeholder {
    color: #aaa;
  }
  
  .form-input:focus {
    border-color:  #b8860b;
  }
  
  .submit-btn {
    width: 100%;
    padding: 12px 16px;
    background-color:  #b8860b;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 1s
  }
  
  .submit-btn:hover {
    background-color: #009cb3;
  }
  
  @media (max-width:768px) {
    .footer-title-quicklinks {
     margin-left: -1px;
    }
    
    .footer-title-quicklinks:after {
      margin-left: -1px;
    }
    
    .footer-links-quicklinks {
      margin-left: -1px;
    }
    
    .footer-links-quicklinks li a {
      margin-left: -1px;
    }
  }
  
        

        /* Responsive Design */
        @media (max-width: 768px) {
      

            .services-list {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-card {
                padding: 30px 20px;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .expertise-grid {
                grid-template-columns: 1fr;
            }

            .btn-group {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 280px;
            }

            .intro-section, .process-section, .cta-section {
                padding: 40px 20px;
            }
        }
  