/* =========================================
   GLOBAL WEBSITE STYLE
========================================= */

    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      scroll-behavior:smooth;
      font-family:'Poppins',sans-serif;
    }

    body{
      background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size:40px 40px;
      background:#070b16;
      color:white;
      overflow-x:hidden;
    }

    body::before{
      content:'';
      position:fixed;
      width:500px;
      height:500px;
      background:#00d9ff20;
      border-radius:50%;
      top:-200px;
      left:-100px;
      filter:blur(120px);
      z-index:-1;
    }

    body::after{
      content:'';
      position:fixed;
      width:500px;
      height:500px;
      background:#005eff20;
      border-radius:50%;
      bottom:-200px;
      right:-100px;
      filter:blur(120px);
      z-index:-1;
    }

    .container{
      width:90%;
      max-width:1300px;
      margin:auto;
    }

    /* =========================================
   TOP CONTACT BAR CSS
========================================= */

    .topbar{
      width:100%;
      padding:12px 0;
      background:rgba(255,255,255,0.05);
      backdrop-filter:blur(10px);
      border-bottom:1px solid rgba(255,255,255,0.08);
      position:sticky;
      top:0;
      z-index:999;
    }

    .topbar-content{
      display:flex;
      justify-content:space-between;
      align-items:center;
      font-size:14px;
      color:#cbd5e1;
    }

    .topbar-left,
    .topbar-right{
      display:flex;
      gap:20px;
      align-items:center;
    }

    .topbar-right a{
      color:#cbd5e1;
      text-decoration:none;
      transition:0.3s;
    }

    .topbar-right a:hover{
      color:#00d9ff;
    }

    /* =========================================
   NAVBAR SECTION CSS
========================================= */

    nav{
      padding:22px 0;
    }

    .navbar{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:18px 30px;
      background:rgba(255,255,255,0.05);
      border:1px solid rgba(255,255,255,0.08);
      backdrop-filter:blur(15px);
      border-radius:20px;
    }

    .logo-wrapper{
      display:flex;
      align-items:center;
      gap:14px;
    }

    .logo-img{
      width:60px;
      height:60px;
      object-fit:contain;
      border-radius:14px;
      box-shadow:0 0 25px #00d9ff40;
    }

    .logo-text{
      font-size:28px;
      font-weight:700;
      color:#00d9ff;
      letter-spacing:1px;
    }

    .logo{
      font-size:28px;
      font-weight:700;
      color:#00d9ff;
    }

    .nav-links{
      display:flex;
      gap:28px;
      align-items:center;
    }

    .nav-links a{
      text-decoration:none;
      color:#ffffff;
      transition:0.3s;
      font-size:15px;
    }

    .nav-links a:hover{
      color:#00d9ff;
    }

    .btn{
      padding:14px 28px;
      border:none;
      border-radius:12px;
      background:linear-gradient(135deg,#00d9ff,#005eff);
      color:white;
      cursor:pointer;
      font-weight:600;
      transition:0.4s;
      text-decoration:none;
      display:inline-block;
      box-shadow:0 0 25px #00d9ff55;
    }

    .btn:hover{
      transform:translateY(-5px);
      box-shadow:0 0 35px #00d9ff;
    }

    /* =========================================
   HERO SECTION CSS
========================================= */

    .hero{
      min-height:90vh;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:50px;
      padding:80px 0;
    }

    .hero-content{
      flex:1;
    }

    .hero-content h1{
      background:linear-gradient(to right,#ffffff,#00d9ff);
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
      font-size:64px;
      line-height:1.2;
      margin-bottom:20px;
    }

    .hero-content h1 span{
      color:#00d9ff;
    }

    .hero-content p{
      color:#cbd5e1;
      font-size:18px;
      line-height:1.8;
      margin-bottom:35px;
      max-width:650px;
    }

    /* =========================================
   HERO BUTTONS & BADGES CSS
========================================= */

    .hero-buttons{
      display:flex;
      gap:20px;
      flex-wrap:wrap;
    }

    .secondary-btn{
      background:transparent;
      border:1px solid #00d9ff;
    }

        .hero-badges{
      display:flex;
      gap:15px;
      flex-wrap:wrap;
      margin-top:35px;
    }

    .badge{
      padding:12px 18px;
      background:rgba(255,255,255,0.06);
      border:1px solid rgba(255,255,255,0.08);
      border-radius:12px;
      color:#ffffff;
      font-size:14px;
      backdrop-filter:blur(10px);
      box-shadow:0 0 20px #00d9ff20;
    }

/* =========================================
   HERO IMAGE SECTION CSS
========================================= */

    .hero-image{
      flex:1;
      display:flex;
      justify-content:center;
      align-items:center;
      position:relative;
      overflow:visible;
      padding-top:40px;
    }

        .doorstep-floating{
      position:absolute;
      top:0;
      right:20px;
      padding:15px 20px;
      background:linear-gradient(135deg,#00d9ff,#005eff);
      border-radius:15px;
      font-size:14px;
      font-weight:600;
      box-shadow:0 0 25px #00d9ff70;
      animation:floatDoor 3s ease-in-out infinite;
    }

    @keyframes floatDoor{
      0%{transform:translateY(0px)}
      50%{transform:translateY(-10px)}
      100%{transform:translateY(0px)}
    }

    .laptop-box{
      width:340px;
      height:340px;
      border-radius:30px;
      background:rgba(255,255,255,0.05);
      border:1px solid rgba(255,255,255,0.1);
      backdrop-filter:blur(20px);
      display:flex;
      justify-content:center;
      align-items:center;
      animation:float 4s ease-in-out infinite;
      box-shadow:0 0 40px #00d9ff30;
      overflow:hidden;
    }

    .laptop-box img{
      width:80%;
      height:auto;
      object-fit:contain;
      max-width:100%;
    }

    @keyframes float{
      0%{transform:translateY(0px)}
      50%{transform:translateY(-20px)}
      100%{transform:translateY(0px)}
    }

    section{
      padding:100px 0;
    }

    .section-title{
      text-align:center;
      margin-bottom:60px;
    }

    .section-title h2{
      font-size:42px;
      margin-bottom:15px;
    }

    .section-title p{
      color:#94a3b8;
    }

    .brands{
      display:grid;
      grid-template-columns:repeat(6,1fr);
      gap:20px;
    }

    .brand-card{
      background:rgba(255,255,255,0.04);
      padding:30px;
      text-align:center;
      border-radius:18px;
      border:1px solid rgba(255,255,255,0.08);
      font-weight:600;
      transition:0.4s;
    }

    .brand-card:hover{
      transform:translateY(-10px);
      box-shadow:0 0 25px #00d9ff40;
      color:#00d9ff;
    }

    /* =========================================
   SERVICES / PRODUCTS / REVIEWS GRID CSS
========================================= */

    .services-grid,
    .products-grid,
    .reviews-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
      gap:30px;
    }

    /* =========================================
   COMMON CARD DESIGN CSS
========================================= */

    .card{
      background:rgba(255,255,255,0.05);
      border:1px solid rgba(255,255,255,0.08);
      border-radius:25px;
      padding:35px;
      backdrop-filter:blur(18px);
      transition:0.4s;
      position:relative;
      overflow:hidden;
    }

    .card::before{
      content:'';
      position:absolute;
      width:150px;
      height:150px;
      background:#00d9ff20;
      border-radius:50%;
      top:-50px;
      right:-50px;
      filter:blur(40px);
    }

        .card:hover{
      transform:translateY(-12px) rotateX(5deg);
      box-shadow:0 0 30px #00d9ff30;
    }

    .service-icon{
      font-size:45px;
      margin-bottom:20px;
    }

    .card h3{
      margin-bottom:15px;
      font-size:24px;
    }

    .card p{
      color:#cbd5e1;
      line-height:1.7;
    }

    /* =========================================
   PRODUCT CARD CSS
========================================= */

    .product-image{
      width:100%;
      height:220px;
      background:#0f172a;
      border-radius:20px;
      margin-bottom:25px;
      display:flex;
      justify-content:center;
      align-items:center;
      overflow:hidden;
    }

    .product-image img{
      width:80%;
      transition:0.4s;
    }

    .card:hover .product-image img{
      transform:scale(1.1);
    }

    .price{
      color:#00d9ff;
      font-size:24px;
      margin:20px 0;
      font-weight:700;
    }

    /* =========================================
   COUPON BANNER CSS
========================================= */

    .coupon-banner{
      background:linear-gradient(135deg,#00d9ff,#005eff);
      border-radius:30px;
      padding:60px;
      text-align:center;
      box-shadow:0 0 40px #00d9ff50;
    }

    /* =========================================
   DOORSTEP SERVICE SECTION CSS
========================================= */

    .doorstep-section{
      padding:110px 0;
    }

    .doorstep-wrapper{
      display:grid;
      grid-template-columns:0.9fr 1.1fr;
      align-items:center;
      gap:70px;
      background:rgba(255,255,255,0.04);
      border:1px solid rgba(255,255,255,0.08);
      border-radius:35px;
      padding:60px;
      backdrop-filter:blur(18px);
      overflow:hidden;
      position:relative;
    }

    .doorstep-wrapper::before{
      content:'';
      position:absolute;
      width:300px;
      height:300px;
      background:#00d9ff15;
      border-radius:50%;
      top:-120px;
      left:-120px;
      filter:blur(80px);
    }

    .doorstep-image{
      display:flex;
      justify-content:center;
      align-items:center;
    }

    .doorstep-image img{
      width:100%;
      max-width:320px;
      object-fit:contain;
      animation:float 4s ease-in-out infinite;
      filter:drop-shadow(0 0 30px #00d9ff40);
    }

    .doorstep-content{
      position:relative;
      z-index:2;
    }

    .doorstep-content h2{
      font-size:42px;
      line-height:1.3;
      margin-bottom:20px;
    }

    .doorstep-content p{
      color:#cbd5e1;
      line-height:1.9;
      font-size:17px;
      margin-bottom:30px;
      max-width:650px;
    }

    .doorstep-list{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
      margin-bottom:35px;
    }

    .doorstep-list div{
      background:rgba(255,255,255,0.05);
      border:1px solid rgba(255,255,255,0.08);
      border-radius:14px;
      padding:16px 18px;
      font-size:15px;
      font-weight:500;
      transition:0.3s;
    }

    .doorstep-list div:hover{
      transform:translateY(-5px);
      box-shadow:0 0 20px #00d9ff25;
    }

    .doorstep-btn{
      margin-top:10px;
    }

    .coupon-banner h2{
      font-size:52px;
      margin-bottom:20px;
    }

    .coupon-banner p{
      font-size:20px;
      margin-bottom:30px;
    }

    /* =========================================
   REPAIR PROCESS TIMELINE CSS
========================================= */

    .timeline{
      display:flex;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
    }

    .timeline-step{
      flex:1;
      min-width:220px;
      text-align:center;
      padding:30px;
      border-radius:20px;
      background:rgba(255,255,255,0.04);
      border:1px solid rgba(255,255,255,0.08);
    }

    .timeline-step h3{
      color:#00d9ff;
      margin-bottom:15px;
    }

    /* =========================================
   WARRANTY CHECK SECTION CSS
========================================= */

    .warranty-box{
      max-width:700px;
      margin:auto;
      background:rgba(255,255,255,0.05);
      padding:50px;
      border-radius:25px;
      border:1px solid rgba(255,255,255,0.08);
      text-align:center;
    }

    .warranty-box input,
    .contact-form input,
    .contact-form textarea{
      width:100%;
      padding:18px;
      border:none;
      outline:none;
      border-radius:12px;
      margin-bottom:20px;
      background:#111827;
      color:white;
    }

    /* =========================================
   REVIEW SECTION CSS
========================================= */

    .reviews-grid .card h4{
      color:#00d9ff;
      margin-top:20px;
    }

    /* =========================================
   CONTACT SECTION CSS
========================================= */

    .contact-wrapper{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:40px;
    }

    .contact-form,
    .contact-info{
      background:rgba(255,255,255,0.05);
      padding:40px;
      border-radius:25px;
      border:1px solid rgba(255,255,255,0.08);
    }

    .contact-info h3{
      margin-bottom:25px;
      font-size:28px;
    }

    .contact-info p{
      margin-bottom:20px;
      color:#cbd5e1;
      line-height:1.8;
    }

    /* =========================================
   FOOTER SECTION CSS
========================================= */

    footer{
      padding:60px 0 30px;
      border-top:1px solid rgba(255,255,255,0.08);
    }

    .footer-content{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
      gap:40px;
      margin-bottom:40px;
    }

    .footer-content h3{
      margin-bottom:20px;
      color:#00d9ff;
    }

    .footer-content p,
    .footer-content a{
      color:#cbd5e1;
      line-height:2;
      text-decoration:none;
      display:block;
    }

    .footer-bottom{
      text-align:center;
      color:#94a3b8;
      border-top:1px solid rgba(255,255,255,0.08);
      padding-top:25px;
    }

    /* =========================================
   FLOATING WHATSAPP BUTTON CSS
========================================= */

    .floating-whatsapp{
      position:fixed;
      right:25px;
      bottom:25px;
      width:65px;
      height:65px;
      border-radius:50%;
      background:linear-gradient(135deg,#00d9ff,#005eff);
      display:flex;
      justify-content:center;
      align-items:center;
      font-size:28px;
      color:white;
      text-decoration:none;
      z-index:999;
      box-shadow:0 0 35px #00d9ff80;
      animation:floatWhatsapp 2s ease-in-out infinite;
    }

    @keyframes floatWhatsapp{
      0%{transform:translateY(0px)}
      50%{transform:translateY(-10px)}
      100%{transform:translateY(0px)}
    }

    /* =========================================
   MOBILE RESPONSIVE CSS
========================================= */

    @media(max-width:992px){

      .topbar-content{
        flex-direction:column;
        gap:10px;
        text-align:center;
      }

      .topbar-left,
      .topbar-right{
        flex-wrap:wrap;
        justify-content:center;
      }

      .hero-image{
        padding-top:70px;
      }

      .doorstep-floating{
        top:0;
        right:50%;
        transform:translateX(50%);
        font-size:12px;
        padding:12px 16px;
        white-space:nowrap;
      }

      .laptop-box{
        width:260px;
        height:260px;
      }

      .laptop-box img{
        width:75%;
        height:auto;
        object-fit:contain;
        max-width:100%;
      }

      

      .doorstep-content h2{
        font-size:30px;
        line-height:1.4;
        text-align:center;
      }

      .doorstep-content p{
        font-size:15px;
        line-height:1.8;
        text-align:center;
      }

      .doorstep-list{
        grid-template-columns:1fr;
        gap:12px;
      }

      .doorstep-list div{
        padding:14px;
        font-size:14px;
        text-align:left;
      }

      .hero-content h1{
        font-size:38px;
        line-height:1.3;
      }

      .doorstep-wrapper{
        grid-template-columns:1fr;
        text-align:center;
        padding:35px 25px;
        gap:35px;
      }

      .doorstep-image img{
        max-width:220px;
      }

      .hero-badges{
        justify-content:center;
      }

      .doorstep-content h2{
        font-size:36px;
      }

      .hero{
        flex-direction:column;
        text-align:center;
      }

      .hero-content h1{
        font-size:44px;
      }

      .hero-buttons{
        justify-content:center;
      }

      .brands{
        grid-template-columns:repeat(2,1fr);
      }

      .contact-wrapper{
        grid-template-columns:1fr;
      }

      .navbar{
        flex-direction:column;
        gap:20px;
      }

      .nav-links{
        flex-wrap:wrap;
        justify-content:center;
      }

      .coupon-banner h2{
        font-size:36px;
      }
    }

