body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: #f8f9fb;
  color: #222;
}

a { text-decoration: none; }

.container {
  width: 100%;
  max-width: auto;
  margin: auto;
}

.btn {
  background: #2563eb;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  display: inline-block;
}

/* TOP MENU */
.top-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.top-menu li {
  display: inline-block;
}
.top-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.top-menu li a:hover {
  color: #2563eb;
}

/* Left & Right Menu spacing */
.left-menu {margin-left: 250px;
  justify-content: flex-start;
}
.right-menu {margin-right: 250px;
  justify-content: flex-end;
}

/* ==================== MAIN HEADER / MENU ==================== */
.main-header {
  background:#fff;
  padding:15px 0;
  width: 100%;
}

.main-header .logo img {
  margin-left: 100px;
  max-height:50px;
}

.main-header .header-search {
  flex:1;
  margin:0 20px;
  text-align:center;
}

.main-header .header-search input[type="text"] {
  width:200px;
  max-width:100%;
}

.main-header .header-support {
  margin-right: 100px;
  text-align:right;
  font-size:18px;
}

.main-header .header-support a {
  text-decoration:none;
  color:#2563eb;
  display:block;
  margin-top:3px;
}


/* ==================== HORIZONTAL MENU ==================== */

.main-manu{
    background:#ffffff;
    justify-content:center;
    font-size: 20px;
    font-weight: bold;
}

.center-menu ul{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    justify-content:center;
}

.center-menu ul li{
    position:relative;
}

.center-menu ul li a{
    display:block;
    padding:15px 20px;
    color:#000000;
    text-decoration:none;
}

.center-menu ul li:hover{
    color: #2563eb;
}

/* Dropdown */
.center-menu ul li ul{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#333;
    min-width:200px;
    flex-direction:column;
}

.center-menu ul li:hover > ul{
    display:block;
}

 /*-------------------- header-cart----------------------------- */
.center-menu-wrapper{
    display:flex;
    justify-content:center; /* center everything horizontally */
    align-items:center;
    gap:15px; /* space between menu and cart */
}

/* Menu */
.top_main-menu{
    list-style:none;
    display:flex;
    gap:30px;
    margin:0;
    padding:0;
}

/* Cart */
.header-cart{
    font-size:20px;
}

.cart-contents{
    color:#2563eb;
    text-decoration:none;
    position:relative;
}

.cart-count{
    background:#ff0000;
    color:#fff;
    border-radius:50%;
    padding:2px 6px;
    font-size:12px;
    position:absolute;
    top:-8px;
    right:-10px;
}


/*------------------------Sticky Header-----------------------*/
.main-manu{
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

/*------------------------Responsive Hamburger Menu-----------------------*/
.mobile-menu-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:5px;
}

.mobile-menu-toggle span{
    height:3px;
    width:25px;
    background:#000;
    display:block;
}

@media(max-width:768px){
    .top_main-menu{
        display:none;
        flex-direction:column;
        gap:15px;
        background:#fff;
        width:100%;
        text-align:center;
    }
    .mobile-menu-toggle{
        display:flex;
    }
}



/*------------------------Product Grid – Amazon Style-----------------------*/
.woocommerce ul.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    list-style:none;
    margin:0;
    padding:0;
}

.woocommerce ul.products li.product{
    border:1px solid #eee;
    border-radius:8px;
    padding:15px;
    background:#fff;
    transition:0.3s;
}

.woocommerce ul.products li.product:hover{
    transform:translateY(-5px);
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.woocommerce ul.products li.product img{
    max-width:100%;
    border-radius:6px;
}

.woocommerce ul.products li.product h2{
    font-size:16px;
    margin:10px 0;
}

.woocommerce ul.products li.product .price{
    font-size:16px;
    color:#2563eb;
    font-weight:600;
}



/*------------------------Sticky Header-----------------------*/




/*------------------------Sticky Header-----------------------*/



/*------------------------Sticky Header-----------------------*/



/*------------------------Sticky Header-----------------------*/





/*------------------------Sticky Header-----------------------*/



/*------------------------Sticky Header-----------------------*/



/*------------------------Sticky Header-----------------------*/




/*------------------------Sticky Header-----------------------*/



/*------------------------Sticky Header-----------------------*/



/*------------------------Sticky Header-----------------------*/






















/* HERO */
.hero {
  background: linear-gradient(135deg, #0f172a, #2563eb);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}
.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}
.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* SERVICES */
.services {
  margin: 10px, 0px;
  padding: 80px 0;
  background: #fff;
}
.services h2 {
  text-align: center;
  margin-bottom: 40px;
}

.services h3, p {
    text-align: center;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.service-box {
  background: #f8f9fb;
  padding: 30px;
  border-radius: 10px;
  transition: 0.3s;
}
.service-box:hover {
  transform: translateY(-5px);
}

/* WHY US */
.why-us {
  background: #f1f5f9;
  padding: 70px 0;
}
.why-us h2 {
  text-align: center;
  margin-bottom: 25px;
}
.why-list {
  max-width: 600px;
  margin: auto;
  list-style: none;
  padding: 0;
}
.why-list li {
  padding: 10px 0;
  font-size: 16px;
}

/* ==================== FEATURED PRODUCTS ==================== */
.featured {
    padding: 80px 15px;
    background: #f9f9f9;
}

.featured h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
    color: #111;
}

/* WooCommerce Products Grid */
.featured .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

/* Individual Product Box */
.featured .products .product {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.featured .products .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Product Image */
.featured .products .product img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Product Title */
.featured .products .product h2,
.featured .products .product h3,
.featured .products .product .woocommerce-loop-product__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

/* Product Price */
.featured .products .product .price,
.featured .products .product .woocommerce-Price-amount {
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Add to Cart Button */
.featured .products .product .button,
.featured .products .product .add_to_cart_button {
    background: #2563eb;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}

.featured .products .product .button:hover,
.featured .products .product .add_to_cart_button:hover {
    background: #111;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .featured .products {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .featured h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
}


/* ==================== OUR CLIENTS ==================== */
.our-clients {
    padding: 80px 15px;
    background: #f9f9f9;
}

.our-clients h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111;
}

/* Grid for client logos */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    justify-items: center; /* center logos horizontally */
    align-items: center;
}

/* Individual client box */
.client-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Client Logo */
.client-logo {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.client-box:hover .client-logo {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
}


/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 80px 15px;
    background: #f1f5f9;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111;
}

/* Grid for testimonial boxes */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Individual testimonial box */
.testimonial-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.testimonial-box p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2563eb;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}





/* CTA */
.cta {
  background: #0f172a;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta .btn.white {
  background: #fff;
  color: #0f172a;
}



/* ==================== FOOTER / SITE INFO ==================== */
.site-footer {
    background: #111;
    color: #fff;
    padding: 60px 15px 30px 15px;
    font-family: 'Poppins', sans-serif;
}

.site-footer a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #fff;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
}

.footer-section p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    text-align: left;
}
.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    display: flex;
    justify-content: space-between; /* left-right alignment */
    align-items: center;
    flex-wrap: wrap; /* responsive */
    font-size: 14px;
    color: #ccc;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px; /* space between links */
}

.footer-legal li a {
    color: #2563eb;
    text-decoration: none;
}

.footer-legal li a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
        gap: 15px;
    }
}

