*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: "Helvetica Neue" Arial, Helvetica, sans-serif;
    font-weight: 200;
    }
    
    body{
    background:#f5f5f7;
    color:#111;
    }
    
    /* NAVBAR */
    
    .navbar{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:20px 60px;
        background:white;
        position:relative;
        }
        
        
        /* LEFT */
        
        .nav-left{
        flex:1;
        }
        
        .menu-icon{
        font-size:20px;
        cursor:pointer;
        }
        
        /* CENTER */
        
        .nav-center{
        flex:1;
        text-align:center;
        }
        
        .logo{
            height:100px;
            object-fit:contain;
            }
        
        /* RIGHT */
        
        .nav-right{
        flex:1;
        display:flex;
        justify-content:flex-end;
        gap:25px;
        font-size:20px;
        cursor:pointer;
        }
        
        .nav-right i:hover{
        color:#666;
        }
    
    /* SIDE MENU */
    
    .side-menu{
    position:fixed;
    top:0;
    left:-250px;
    width:250px;
    height:100%;
    background:#5f5e5e;
    padding-top:70px;
    transition:0.3s;
    z-index:1000;
    }
    
    .side-menu a{
    display:block;
    padding:15px 25px;
    color:white;
    text-decoration:none;
    font-size:18px;
    }
    
    .side-menu a:hover{
    background:#464545;
    }

    /* MENU; REPAIR */
    .repair-menu{
        display:none;
        padding-left:15px;
        }
        
        .repair-menu a{
        display:block;
        font-size:14px;
        padding:8px 0;
        color:#b3b3b3;
        }
        
     /* PROFILE STYLE */

     .account-page {
        max-width: 1000px;
        margin: 60px auto;
        padding: 0 20px;
    }
    
    .account-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .account-header h1 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .account-header p {
        color: #555;
        font-size: 1rem;
    }
    
    /* Boxes Layout */
    .account-boxes {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
    
    /* Individual Box */
    .account-box {
        flex: 1 1 400px;
        background-color: #fff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }
    
    .account-box h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        color: #222;
    }
    
    .account-box h2 i {
        margin-right: 10px;
    }
    
    /* Form Inputs */
    .account-box form input {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        border-radius: 6px;
        border: 1px solid #ccc;
        font-size: 0.95rem;
    }
    
    /* Buttons */
    .account-box form button {
        width: 100%;
        padding: 12px;
        background-color: #222;
        border: none;
        color: #fff;
        font-size: 1rem;
        border-radius: 6px;
        cursor: pointer;
    }
    
    .account-box form button:hover {
        background-color: #444;
    }
    
    .forgot-password {
        margin-top: 10px;
        text-align: right;
    }
    
    .forgot-password a {
        color: #25D366;
        text-decoration: none;
    }
    
    .forgot-password a:hover {
        text-decoration: underline;
    }
    
    /* Responsive */
    @media (max-width: 900px) {
        .account-boxes {
            flex-direction: column;
            gap: 20px;
        }
    }
    
    /* HERO */
    
    .hero{
        height:80vh;
        background-image:url("images/repair.jpg");
        background-size:cover;
        background-position:center;
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        color:#ffFFFF;
        text-align:center;
        }
    
    .btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 25px;
    background:white;
    color:black;
    text-decoration:none;
    border-radius:25px;
    }
    
    /* PRODUCTS */
    
    .products{
    padding:60px;
    text-align:center;
    }

    .product-card h3 i.fab {
        color: rgb(78, 77, 77);        /* Apple logo color */
        margin-right: 5px;   /* Space between logo and name */
        font-size: 18px;     
        vertical-align: middle;
      }

    .product-card h3 i.fab {
        color: black;        /* Apple logo color */
        margin-right: 5px;   /* Space between logo and name */
        font-size: 18px;     
        vertical-align: middle;
      }
    
    .product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
    margin-top:40px;
    }
    
    .product{
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    }
    
    .product img{
    width:100%;
    }
    
    button{
    padding:10px 20px;
    border:none;
    background:black;
    color:white;
    margin-top:10px;
    cursor:pointer;
    }
    
    /* SERVICES */
    
    .services{
        padding:60px 20px;
        text-align:center;
        }
        
        .service-grid{
        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
        gap:20px;
        margin-top:30px;
        }
        
        .service{
        background:#5f5e5e;
        color:white;
        padding:20px;
        border-radius:8px;
        text-decoration:none;
        font-weight:bold;
        transition:0.3s;
        }
        
        .service:hover{
        background:#333;
        transform:scale(1.05);
        }
    
    /* CONTACT */
    
    .contact{
    padding:60px;
    text-align:center;
    }
    
    .floating-whatsapp{
        position:fixed;
        bottom:25px;
        right:25px;
        background:#25D366;
        color:white;
        font-size:28px;
        width:60px;
        height:60px;
        display:flex;
        align-items:center;
        justify-content:center;
        border-radius:50%;
        text-decoration:none;
        box-shadow:0 4px 10px rgba(0,0,0,0.2);
        z-index:1000;
        }

    /* FOOTER */
    
    footer{
    text-align:center;
    padding:20px;
    background:rgb(253, 252, 252);
    color:rgb(54, 54, 54);
    }

    img{
        max-width:100%;
        height:auto;
        }

        /* MOBILE DEVICES */

@media (max-width:768px){

    .navbar{
    padding:5px 20px;
    }
    
    /* smaller logo */
    
    .logo{
    height:100px;
    }
    
    /* icons spacing */
    
    .nav-right{
    gap:15px;
    font-size:18px;
    }
    
    /* hero text smaller */
    
    .hero h2{
    font-size:26px;
    }
    
    .hero p{
    font-size:16px;
    }
    
    /* products stack nicely */
    
    .products{
    padding:40px 20px;
    }
    
    .services{
    padding:40px 20px;
    }
    
    }

    /* Cart Page Styles */
/* Cart items style */
.cart-icon{
    position: relative;
    display: inline-block;
}

#cart-count{
    position: absolute;
    top: -6px;
    right: -8px;
    background: #6a0dad;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50px;
}
 
.cart-page {
    padding: 30px;
    background: #fff;
    max-width: 1000px;
    margin: auto;
  }
  
  .cart-page h1 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .cart-card {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    gap: 15px;
  }
  
  .cart-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .cart-details {
    flex: 1;
  }
  
  .cart-details h3 {
    margin: 0;
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  
  .cart-details p {
    margin: 4px 0;
  }
  
  .qty-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
  }
  
  .qty-box button {
    background: #444;
    color: #fff;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 4px;
  }
  
  .remove-btn {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 1.4rem;
    cursor: pointer;
  }
  
  .cart-summary {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .checkout-btn {
    background: #25D366;
    color: #fff;
    padding: 14px;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
  }

  /* Shop page grid like Primefix */
.shop-page {
    padding: 30px;
    max-width: 1200px;
    margin: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  }
  
  .shop-page h1 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  /* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 10px;
  }
  
  /* Product Card */
  .product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.2s;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-card img {
    width: 100%;
    max-width: 150px;
    margin-bottom: 10px;
  }
  
  .product-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .product-card p {
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .product-card button {
    background: #545454; /* brand color */
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .product-card button:hover {
    background: #cc0000;
  }
  
  /* Responsive tweak: 2 columns on small phones */
  @media (max-width: 600px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Water damage page */
  .repair-page{
max-width:900px;
margin:auto;
padding:40px 20px;
line-height:1.6;
}

.repair-page h1{
font-size:32px;
margin-bottom:15px;
}

.repair-page h2{
margin-top:30px;
}

.repair-page ul,
.repair-page ol{
margin-left:20px;
}

.repair-contact{
margin-top:40px;
text-align:center;
}

.btn{
display:inline-block;
background:black;
color:white;
padding:12px 25px;
margin:10px;
text-decoration:none;
border-radius:5px;
}

/* Contact page */
.contact-section{
    padding:60px 20px;
    background:#f7f7f7;
    text-align:center;
    }
    
    .contact-container{
        display:grid;
        grid-template-columns:1fr;
        gap:30px;
        max-width:800px;
        margin:40px auto;
        text-align:center;
    }
    
    /* Make each contact item centered */
.contact-info{
    display: flex;
    flex-wrap: wrap;       /* Allows items to wrap on smaller screens */
    justify-content: center;
    gap: 40px;             /* Space between items */
}

.contact-item{
    display: flex;
    flex-direction: column; /* Icon on top, text below */
    align-items: center;    /* Center horizontally */
    max-width: 200px;
    text-align: center;
}

.contact-item i{
    font-size: 25px;        /* Big icon */
    margin-bottom: 10px;    /* Space between icon and text */
    color: #413f3f;         /* Change color to match your brand */
}
    
    .contact-info h3{
    margin-top:20px;
    }
    
    .whatsapp-btn{
    display:inline-block;
    background:#25D366;
    color:white;
    padding:12px 20px;
    border-radius:6px;
    text-decoration:none;
    margin-top:10px;
    }
    
    .contact-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
    }
    
    .contact-form input,
    .contact-form textarea{
    padding:12px;
    border:1px solid #ddd;
    border-radius:5px;
    width:100%;
    }
    
    .contact-form button{
    background:black;
    color:white;
    padding:12px;
    border:none;
    border-radius:5px;
    cursor:pointer;
    }
    
    .contact-form button:hover{
    background:#333;
    }

    a[href^="tel"] {
        color: red;
        text-decoration: none;
        font-weight: 500;
      }