* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.7;
}

/* HEADER */

header {
    background: #080808;
    border-bottom: 1px solid #d4af37;
    padding: 18px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h2 {
    color: #d4af37;
    font-size: 26px;
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

nav a:hover {
    color: #d4af37;
}

/* HERO */

#home {
    min-height: 88vh;
    padding: 100px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #050505, #191408);
}

#home h1 {
    max-width: 900px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.08;
    margin-bottom: 25px;
    color: #d4af37;
}

#home p {
    max-width: 750px;
    font-size: 19px;
    color: #dddddd;
    margin-bottom: 15px;
}

#home strong {
    color: #d4af37;
}

#home a {
    display: inline-block;
    margin: 20px 12px 0 0;
    padding: 14px 30px;
    border: 1px solid #d4af37;
    border-radius: 5px;
    background: #d4af37;
    color: #111111;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

#home a:hover {
    background: transparent;
    color: #d4af37;
}

/* SECTIONS */

section {
    max-width: 1200px;
    margin: auto;
    padding: 90px 8%;
}

section h2 {
    color: #d4af37;
    font-size: 38px;
    margin-bottom: 25px;
}

section p {
    color: #cccccc;
    margin-bottom: 15px;
}

/* ABOUT */

#about {
    background: #101010;
}

#about ul {
    list-style: none;
    margin-top: 25px;
}

#about li {
    padding: 14px 0;
    border-bottom: 1px solid #292929;
    color: #eeeeee;
}

#about li::before {
    content: "✓";
    color: #d4af37;
    font-weight: bold;
    margin-right: 12px;
}

/* SERVICES */

#services {
    background: #0a0a0a;
}

#services h3 {
    color: #ffffff;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 8px;
    border-left: 3px solid #d4af37;
    padding-left: 15px;
}

/* PRICING */

#pricing {
    text-align: center;
    background: #111111;
    border-top: 1px solid #222222;
    border-bottom: 1px solid #222222;
}

#pricing p {
    font-size: 21px;
}

#pricing strong {
    color: #d4af37;
}

/* GALLERY */

#gallery {
    text-align: center;
    background: #0a0a0a;
    min-height: 350px;
}

/* REVIEWS */

#reviews {
    text-align: center;
    background: #111111;
}

#reviews p:first-of-type {
    color: #d4af37;
    font-size: 30px;
    letter-spacing: 5px;
}

/* FAQ */

#faq {
    background: #0a0a0a;
}

#faq h3 {
    color: #d4af37;
    margin-top: 30px;
    margin-bottom: 8px;
}

/* CONTACT */

#contact {
    text-align: center;
    background: #111111;
    border-top: 1px solid #222222;
}

#contact a {
    display: inline-block;
    margin: 12px 5px;
    padding: 14px 28px;
    background: #d4af37;
    color: #111111;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

#contact a:hover {
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
}

/* FOOTER */

footer {
    background: #050505;
    border-top: 1px solid #222222;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    color: #888888;
    font-size: 14px;
}

/* MOBILE */

@media (max-width: 768px) {

    header {
        flex-direction: column;
        gap: 15px;
        padding: 16px 5%;
    }

    header h2 {
        font-size: 22px;
    }

    nav {
        justify-content: center;
        gap: 12px;
    }

    nav a {
        font-size: 13px;
    }

    #home {
        min-height: 80vh;
        padding: 80px 6%;
    }

    #home h1 {
        font-size: 42px;
    }

    #home p {
        font-size: 17px;
    }

    section {
        padding: 65px 6%;
    }

    section h2 {
        font-size: 31px;
    }

    #home a,
    #contact a {
        width: 100%;
        text-align: center;
    }
    #home {
    text-align: center;
    padding: 40px 20px;
}

#home img {
    width: 100%;
    max-width: 1100px;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    margin-top: 25px;
}
@media (max-width: 768px) {
  #gallery img,
  #gallery video {
    width: 90%;
    max-width: 400px;
    height: auto;
    margin: 10px auto;
    display: block;
  }
}
.site-footer {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: #ffffff;
  text-align: center;
  padding: 50px 20px;
  margin-top: 50px;
  border-top: 3px solid #d4af37;
  box-shadow: 0 -5px 25px rgba(212, 175, 55, 0.25);
}

.site-footer h3 {
  color: #d4af37;
  font-size: 28px;
  margin: 0 0 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.site-footer .footer-tagline {
  color: #ffffff;
  font-size: 16px;
  margin: 8px 0;
}

.site-footer .footer-features {
  color: #d4af37;
  font-size: 16px;
  font-weight: 600;
  margin: 12px 0;
}

.site-footer .footer-contact {
  color: #ffffff;
  font-size: 16px;
  margin-top: 20px;
}

.site-footer .footer-contact a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 700;
}

.site-footer .footer-contact a:hover {
  color: #ffffff;
}
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <title>Invisible Grill in Dwarka | iGrills Invisible</title>

  <meta name="description"
    content="Looking for invisible grill installation in Dwarka? iGrills Invisible provides SS316 invisible grills for balconies, windows and high-rise homes with professional installation and a 10-year warranty.">

  <link rel="stylesheet" href="style.css">
</head>

<body>

  <header>
    <h2>iGrills Invisible</h2>

    <nav>
      <a href="index.html">Home</a>
      <a href="index.html#about">About</a>
      <a href="index.html#services">Services</a>
      <a href="index.html#pricing">Pricing</a>
      <a href="index.html#gallery">Gallery</a>
      <a href="index.html#faq">FAQ</a>
      <a href="index.html#contact">Contact</a>
    </nav>
  </header>

  <main>

    <section class="hero-section">
      <div class="hero-content">

        <p class="hero-badge">INVISIBLE GRILLS IN DWARKA</p>

        <h1>Premium Invisible Grills in Dwarka</h1>

        <p class="hero-subtitle">
          Professional invisible grill solutions for balconies, windows
          and high-rise homes across Dwarka.
        </p>

        <div class="hero-features">
          <span>SS316 Grade Wire</span>
          <span>10-Year Warranty</span>
          <span>Professional Installation</span>
        </div>

        <div class="hero-buttons">
          <a href="tel:7718093407" class="hero-call">
            Call Now
          </a>

          <a href="https://wa.me/917718093407" class="hero-whatsapp">
            WhatsApp Us
          </a>
        </div>

      </div>
    </section>

    <section class="premium-gallery">

      <div class="gallery-heading">

        <p class="gallery-label">INVISIBLE GRILL SERVICES</p>

        <h2>Invisible Grill Installation in Dwarka</h2>

        <p>
          iGrills Invisible provides modern and reliable invisible grill
          installation for balconies, windows, apartments and high-rise
          homes in Dwarka.
        </p>

      </div>

      <div class="gallery-grid">

        <div class="gallery-card">
          <div class="gallery-info">
            <h3>Balcony Invisible Grills</h3>
            <p>
              Improve balcony safety while maintaining an open and
              unobstructed view.
            </p>
          </div>
        </div>

        <div class="gallery-card">
          <div class="gallery-info">
            <h3>Window Invisible Grills</h3>
            <p>
              A clean and minimal safety solution for residential windows.
            </p>
          </div>
        </div>

        <div class="gallery-card">
          <div class="gallery-info">
            <h3>High-Rise Safety Grills</h3>
            <p>
              Professional invisible grill installation for high-rise
              apartments and buildings.
            </p>
          </div>
        </div>

      </div>
    </section>

    <section class="premium-gallery">

      <div class="gallery-heading">

        <p class="gallery-label">WHY iGRILLS INVISIBLE</p>

        <h2>Why Choose Our Invisible Grills?</h2>

        <p>
          We focus on strong materials, neat installation and a clean
          appearance that complements modern homes.
        </p>

      </div>

      <div class="gallery-grid">

        <div class="gallery-card">
          <div class="gallery-info">
            <h3>SS316 Grade Wire</h3>
            <p>
              Premium SS316 grade wire designed for a strong and durable
              invisible grill solution.
            </p>
          </div>
        </div>

        <div class="gallery-card">
          <div class="gallery-info">
            <h3>10-Year Warranty</h3>
            <p>
              We provide a 10-year warranty for greater customer confidence.
            </p>
          </div>
        </div>

        <div class="gallery-card">
          <div class="gallery-info">
            <h3>Professional Installation</h3>
            <p>
              Careful installation with attention to finishing and overall
              appearance.
            </p>
          </div>
        </div>

      </div>

    </section>

    <section class="premium-gallery">

      <div class="gallery-heading">

        <p class="gallery-label">DWARKA SERVICE</p>

        <h2>Invisible Grill Service in Dwarka</h2>

        <p>
          If you are located anywhere in Dwarka and need invisible grills
          for your balcony, windows or high-rise home, contact us to check
          service availability and get a free quotation.
        </p>

      </div>

      <div class="gallery-bottom">

        <h3>Need an Invisible Grill?</h3>

        <p>
          Call or WhatsApp iGrills Invisible for a free consultation
          and quotation.
        </p>

        <a href="https://wa.me/917718093407">
          Get a Free Quote
        </a>

      </div>

    </section>

  </main>

  <footer class="site-footer">

    <h3>iGrills Invisible</h3>

    <p>Premium Invisible Grills in Delhi-NCR</p>

    <p>iGrills Invisible Since 2015</p>

    <p>© iGrills Invisible. All rights reserved.</p>

  </footer>

</body>
</html>
/* PREMIUM HERO SECTION */

.hero-section {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #080808;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.68) 45%,
        rgba(0,0,0,0.25) 100%),
        linear-gradient(0deg,
        rgba(0,0,0,0.65),
        transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1100px;
    padding: 90px 20px;
    color: white;
}

.hero-badge {
    display: inline-block;
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: 58px;
    line-height: 1.08;
    margin: 0 0 22px;
    color: #ffffff;
    font-weight: 800;
}

.hero-subtitle {
    max-width: 650px;
    font-size: 19px;
    line-height: 1.7;
    color: #eeeeee;
    margin-bottom: 25px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

.hero-features span {
    border: 1px solid #d4af37;
    padding: 10px 16px;
    border-radius: 30px;
    color: #ffffff;
    background: rgba(212,175,55,0.10);
    font-size: 14px;
    font-weight: 600;
}

.hero-price {
    font-size: 16px;
    color: #eeeeee;
    margin: 20px 0 28px;
}

.hero-price strong {
    color: #d4af37;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons a {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
}

.hero-call {
    background: #d4af37;
    color: #080808;
}

.hero-call:hover {
    background: #ffffff;
}

.hero-whatsapp {
    background: #ffffff;
    color: #080808;
}

.hero-whatsapp:hover {
    background: #d4af37;
}

.hero-service {
    margin-top: 25px;
    color: #cccccc;
    font-size: 14px;
    max-width: 700px;
}


/* MOBILE HERO */
@media (max-width: 768px) {

    .hero-section {
        min-height: auto;
        height: auto;
    }

    .hero-image-wrap {
        width: 100%;
        height: auto;
        overflow: visible;
    }

    .hero-image-wrap img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        display: block;
    }

    .hero-content {
        padding: 40px 18px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons a {
        width: 180px;
        text-align: center;
    }

    .hero-service {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
  .mobile-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.25);
  }

  .mobile-contact-bar a {
    flex: 1;
    text-align: center;
    padding: 15px 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
  }

  .mobile-contact-bar a:first-child {
    background: #d4af37;
    color: #000000;
  }

  .mobile-contact-bar a:last-child {
    background: #000000;
    color: #ffffff;
  }
}
/* PREMIUM GALLERY */

.premium-gallery {
  padding: 70px 20px;
  background: #f7f7f7;
  text-align: center;
}

.gallery-heading {
  max-width: 750px;
  margin: 0 auto 45px;
}

.gallery-label {
  color: #b8962e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.gallery-heading h2 {
  color: #111111;
  font-size: 38px;
  margin: 0 0 15px;
}

.gallery-heading > p:last-child {
  color: #555555;
  font-size: 16px;
  line-height: 1.7;
}

.gallery-grid {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-info {
  padding: 22px;
  border-top: 3px solid #d4af37;
}

.gallery-info h3 {
  margin: 0 0 8px;
  color: #111111;
  font-size: 20px;
}

.gallery-info p {
  margin: 0;
  color: #666666;
  line-height: 1.6;
  font-size: 14px;
}

.gallery-bottom {
  max-width: 750px;
  margin: 50px auto 0;
  padding: 30px 20px;
  background: #111111;
  border-radius: 12px;
}

.gallery-bottom h3 {
  color: #d4af37;
  margin: 0 0 10px;
  font-size: 24px;
}

.gallery-bottom p {
  color: #eeeeee;
  line-height: 1.6;
  margin-bottom: 22px;
}

.gallery-bottom a {
  display: inline-block;
  background: #d4af37;
  color: #111111;
  padding: 13px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.gallery-bottom a:hover {
  background: #ffffff;
}


/* MOBILE GALLERY */

@media (max-width: 768px) {

  .premium-gallery {
    padding: 55px 15px;
  }

  .gallery-heading h2 {
    font-size: 30px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .gallery-card img {
    height: 240px;
  }

  .gallery-bottom {
    margin-top: 35px;
  }
}
.video-section {
    padding: 50px 20px;
}

.video-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.video-grid video {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .video-section {
        padding: 35px 15px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-grid video {
        width: 100%;
        height: auto;
    }
}