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

    body {
      font-family: 'Poppins', sans-serif;
      background: #fff;
      color: #111;
      line-height: 1.6;
    }

    img {
      width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: 90%;
      max-width: 1300px;
      margin: auto;
    }

    /* NAVBAR */

    nav {
      background: #FFFFFF;
      color: #000000;
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom-left-radius: 25px;
      border-bottom-right-radius: 25px;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
    }

    .logo {
      width: 250px;
      height: 125px;
      margin-top: -20px;
      margin-bottom: -35px;
    }

    .logo span {
      color: white;
    }

    .nav-links {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .nav-links a {
      transition: 0.3s;
      font-weight: 500;
    }

    .nav-links a:hover {
      color: #ff6a00;
    }

    .call-btn {
      background: #ff6a00;
      color: white;
      padding: 12px 20px;
      border-radius: 6px;
      font-weight: 600;
      transition: 0.3s;
    }

    .call-btn:hover {
      background: #e55f00;
    }

    .menu-toggle {
      display: none;
      font-size: 2rem;
      cursor: pointer;
    }

    /* HERO */

    .hero {
      min-height: 90vh;
      background:
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
        url('images/hero.jpg');
      background-size: cover;
      background-position: center;
      color: white;
      display: flex;
      align-items: center;
    }

    .hero-content {
      max-width: 700px;
    }

    .hero h1 {
      font-size: 5rem;
      line-height: 1;
      margin-bottom: 20px;
      font-weight: 800;
    }

    .hero h1 span {
      color: #ff6a00;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: #ddd;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 15px 28px;
      border-radius: 6px;
      font-weight: 600;
      transition: 0.3s;
      display: inline-block;
    }

    .primary-btn {
      background: #ff6a00;
      color: white;
    }

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

    .primary-btn:hover {
      background: #e55f00;
    }

    .secondary-btn:hover {
      background: white;
      color: black;
    }

    /* TRUST */

    .trust-section {
      padding: 60px 0;
      background: #f5f5f5;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .trust-card {
      background: white;
      padding: 30px;
      text-align: center;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }

    .trust-card h3 {
      color: #ff6a00;
      margin-bottom: 10px;
      font-size: 1.4rem;
    }

    /* SECTION TITLE */

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 3rem;
      margin-bottom: 10px;
    }

    .section-title p {
      color: #666;
    }

    /* SERVICES */

    .services {
      padding: 100px 0;
    }

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

    .service-card {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: 0.3s;
      background: white;
    }

    .service-card:hover {
      transform: translateY(-8px);
    }

    .service-content {
      padding: 25px;
    }

    .service-content h3 {
      color: #ff6a00;
      margin-bottom: 10px;
      font-size: 1.6rem;
    }

    /* WHY US */

    .why-us {
      background: #111;
      color: #FFFFFF;
      padding: 100px 0;
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .why-grid img {
      margin-top: -20px;
      margin-bottom: -20px;
      margin-left: 10px;
      border-radius: 15px;
      height: 400px;
      width: 375px
    }

    .why-content h2 {
      color: #ff6a00;
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .why-content ul {
      list-style: none;
      margin-top: 30px;
    }

    .why-content li {
      margin-bottom: 15px;
      font-size: 1.1rem;
    }

    .why-content li::before {
      content: '>';
      color: #ff6a00;
      margin-right: 10px;
    }

    /* PROJECTS */

    .projects {
      padding: 100px 0;
    }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .project-grid img {
      height: 250px;
      object-fit: cover;
      border-radius: 12px;
    }

    /* CTA */

    .cta {
      background: #ff6a00;
      color: white;
      padding: 70px 0;
      text-align: center;
    }

    .cta h2 {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    /* ABOUT */

    .about {
      padding: 100px 0;
      background: #f7f7f7;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-grid img {
      margin-left: 50px;
      height: 425px;
      width: 325px;
      border-radius: 15px;
    }

    .about-content h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    /* CONTACT */

    .contact {
      padding: 100px 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
    }

    .contact-info h3,
    .contact-form h3 {
      color: #ff6a00;
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .contact-info p {
      margin-bottom: 15px;
      font-size: 1.1rem;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    input,
    textarea {
      padding: 15px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-family: inherit;
    }

    textarea {
      min-height: 150px;
      resize: vertical;
    }

    button {
      border: none;
      cursor: pointer;
    }

    /* FOOTER */

    footer {
      background: #000;
      color: white;
      padding: 40px 0;
      text-align: center;
    }

    footer p {
      color: #aaa;
      margin-top: 10px;
    }

    /* RESPONSIVE */

    @media(max-width: 1100px) {
      .services-grid,
      .trust-grid,
      .project-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero h1 {
        font-size: 4rem;
      }
    }

    @media(max-width: 850px) {
      .why-grid,
      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        background: #ffffff;
        width: 100%;
        flex-direction: column;
        padding: 30px 0;
        display: none;
      }

      .nav-links.active {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }

      .hero h1 {
        font-size: 3rem;
      }
    }

    @media(max-width: 650px) {
      .services-grid,
      .trust-grid,
      .project-grid {
        grid-template-columns: 1fr;
      }

      .section-title h2,
      .why-content h2,
      .about-content h2,
      .cta h2 {
        font-size: 2.2rem;
      }
    }