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

    body, html {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      scroll-behavior: smooth;
      color: #fff;
      background: #000;
    }

    /* Navigation */
    nav {
      position: fixed;
      width: 100%;
      background: rgba(0,0,0,0.8);
      padding:1rem 2rem;
      z-index: 10000;
      text-align: right;
      font-weight: 600;
    }
    nav a {
      color: white;
      margin: 2rem;
      text-decoration: none;
      transition: 0.5s ease;
    }
    nav a:hover {
      color: #ff9800;
    }

    /* Section base */
    section {
      width: 100%;
      /* padding: 80px 20px 100px; */
      box-sizing: border-box;
      position: relative;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 70vh;

    }

    /* Overlay for readability */
    section::before {
      content: "";
      /* position: absolute; */
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 0;
    }

    .container {
      max-width: 100%;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      text-align: center;
    }

    /* Hero */
    #hero {
      background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1400&q=80');
      height: 100vh;
      padding-top: 0;
      padding-bottom: 0;
      display: table;
      width: 100%;
    }
    #hero .container {
      display: table-cell;
      vertical-align: middle;

      padding: 0 20px;
    }
    #hero h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    #hero p {
      font-size: 1.4rem;
      max-width: 600px;
      margin: 0 auto 2rem;
      line-height: 1.5;
    }
    /* #hero .btn {
      background: #ff9800;
      color: white;
      padding: 15px 40px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.2rem;
      transition: background-color 0.3s ease;
      display: inline-block;
    }
    #hero .btn:hover {
      background: #e67e22;
    } */

    /* Services */
    #services {
      background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1400&q=80');
    }

    #services h2 {
      font-size: 2.8rem;
      margin-bottom: 3rem;
      color: #ffd580;
      text-shadow: 1px 1px 5px #000;
    }

    /* .services-container {
      zoom: 1;
    }
    .services-container:after {
      content: "";
      display: table;
      clear: both;
    } */

    .service-card {
      display: inline-block;
      width: 45%;
      margin: 1.5%;
      background: rgba(255,255,255,0.85);
      color: #222;
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: default;
      vertical-align: top;
       /* it aligns cards  */
      height: 250px;
    
      
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 30px rgba(0,0,0,0.4);
    }

    .service-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: #ff9800;
    }

    .service-card h3 {
      margin-bottom: 1rem;
      font-weight: 700;
      font-size: 1.5rem;
    }

    .service-card p {
      font-size: 1rem;
      line-height: 1.4;
    }

    /* Features */
    #features {
      background-image: url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=1400&q=80');
    }

    #features h2 {
      font-size: 2.8rem;
      margin-bottom: 3rem;
      color: #a0d8ef;
      text-shadow: 1px 1px 5px #000;
    }

    .feature-item {
      width: 30%;
      display: inline-block;
      margin: 1.5%;
      background: rgba(255,255,255,0.85);
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.2);
      font-weight: 600;
      color: #222;
      vertical-align: top;
    }

    .feature-item h3 {
      margin-bottom: 1rem;
      font-size: 1.3rem;
    }

    .feature-item p {
      font-weight: 400;
      font-size: 1rem;
      line-height: 1.3;
    }

    /* Testimonials */
    #testimonials {
      background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1400&q=80');
    }

    #testimonials h2 {
      font-size: 2.8rem;
      margin-bottom: 3rem;
      font-weight: 700;
      color: #fff;
      text-shadow: 2px 2px 6px #000;
    }

    .testimonial {
      width: 45%;
      display: inline-block;
      margin: 1.5%;
      background: rgba(0,0,0,0.5);
      padding: 2rem;
      border-radius: 15px;
      font-style: italic;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
      /* vertical-align: top; */
    }

    .testimonial p {
      margin-bottom: 1rem;
      font-size: 1.1rem;
      line-height: 1.4;
      color: #ddd;
    }

    .testimonial cite {
      display: block;
      font-size: 0.9rem;
      font-style: normal;
      color: #ffb347;
      font-weight: 700;
    }

    /* Contact */
    #contact {
      background-image: url('https://images.unsplash.com/photo-1486308510493-cb66cab6a69c?auto=format&fit=crop&w=1400&q=80');
    }

    #contact h2 {
      margin-bottom: 2rem;
      font-size: 2.8rem;
      font-weight: 700;
      color: #ffd580;
      text-shadow: 1px 1px 5px #000;
    }

    form {
      max-width: 500px;
      margin: 0 auto;
      /* position: relative; */
      z-index: 1;
    }

    input, textarea {
      width: 100%;
      padding: 15px 20px;
      border-radius: 10px;
      border: none;
      font-size: 1rem;
      resize: none;
      font-family: inherit;
      margin-bottom: 1.5rem;
      box-sizing: border-box;
      background: rgba(255,255,255,0.85);
      color: #222;
    }

    input::placeholder,
    textarea::placeholder {
      color: #555;
    }

    textarea {
      min-height: 120px;
    }

    button[type="submit"] {
      background: #ff9800;
      border: none;
      padding: 15px;
      color: white;
      font-weight: 700;
      font-size: 1.2rem;
      border-radius: 40px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      width: 100%;
    }

    button[type="submit"]:hover {
      background: #e67e22;
    }

    /* Footer */
    .footer {
        width: 100%;
      background: #111;
      color: #ffffff;
      text-align: center;
      padding: 2rem 1rem;
      font-size: 0.9rem;
    }