/* Basic Reset and Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden; /* Hide horizontal scrollbars if any */
  }
  a {
    text-decoration: none;
  }
  
  /* Navbar */
  .header {
    position: absolute;
    width: 100%;
    z-index: 1000;
  }
  .navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 20px;
  }
  .logo-container {
    display: flex;
    flex-direction: column;
  }
  .logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
  }
  .tagline {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 400;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
  }
  .nav-links li a {
    color: #fff;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  .nav-links li a:hover {
    color: #ff3b3f;
  }
  .contact-info p {
    margin: 0;
    color: #fff;
    font-size: 0.9rem;
  }
  .contact-info a {
    color: #fff;
    font-weight: 600;
  }
  .contact-info a:hover {
    color: #ff3b3f;
  }
  
  /* Hero */
  .hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  .hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }
  .hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
  }
  .hero-btn {
    background: #ff3b3f;
    padding: 12px 24px;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  .hero-btn:hover {
    background: #cc3133;
  }
  
  /* Container */
  .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
  }
  
  /* Sections */
  .about-section,
  .why-choose-us,
  .services-section,
  .process-section,
  .prices-section,
  .calculator-section,
  .gallery-section,
  .testimonials-section,
  .contact-section {
    background-color: #fff;
    color: #333;
  }
  h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  p {
    margin-bottom: 1rem;
  }
  ul,
  ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
  }
  ol.process-list li {
    margin-bottom: 10px;
  }
  
  /* Services Grid */
  .services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
  }
  .service-card {
    flex: 1 1 250px;
    border: 1px solid #eee;
    border-radius: 6px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
    background-color: #fafafa;
  }
  .service-card:hover {
    transform: translateY(-5px);
  }
  .service-card img {
    width: 60px;
    margin-bottom: 15px;
  }
  .service-card h3 {
    margin-bottom: 10px;
  }
  
  /* Gallery Grid */
  .gallery-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .gallery-item {
    flex: 1 1 calc(50% - 20px);
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  
  /* Calculator Form */
  .calculator-form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    gap: 10px;
    margin: 20px 0;
  }
  .calculator-form label {
    font-weight: 600;
  }
  .calculator-form input,
  .calculator-form select {
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  .calculator-form button {
    background: #ff3b3f;
    color: #fff;
    padding: 10px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  .calculator-form button:hover {
    background: #cc3133;
  }
  #calc-result {
    margin-top: 10px;
    font-weight: 700;
  }
  
  /* Fade-in Animation Setup */
  .section-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  .section-fade.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Footer */
  .footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
  }
  