* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

:root {
    --primary-color: rgb(248, 122, 55);
    --dark-bg: #121633;
    --light-gray: #f8f9fa;
}

/* whatsapp button */
.whatsapp-btn {
    position: fixed;
    z-index: 99;
    bottom: 20px;
    right: 25px;
  background: linear-gradient(45deg, #1bb152,#25D366);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(18, 140, 126, 0.3);
}

.whatsapp-btn i {
  font-size: 30px;
}


/* mobile menu */
.menu-content{
    z-index: 20;
    position: fixed;
    top: 0px;
    left: -75%;
    width: 75%;
    background-color: white;
    height: 100vh;
    overflow-y: auto;
    padding: 20px 18px;
    transition: all 0.2s ease;
}
.menu-head{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.menu-logo{
    color: var(--dark-bg) !important;
    font-size: 27px;
    font-weight: bold;
}
.menu-close-btn{
    font-size: 19px;
    background-color: var(--primary-color);
    color: var(--light-gray);
    padding: 1px 6px;
    cursor: pointer
}
.menu-item-list{
    list-style: none;
    font-size: 17px;
    padding: 0px;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.menu-item-list li:hover{
    color: var(--primary-color);
    transition: all 0.2s ease;
    cursor: pointer
}
.menu-logo span{
    color: var(--primary-color)
}
/* Navbar */
.navbar {
    background-color: transparent;
    padding: 15px 0;
    backdrop-filter: blur(4px);
    transition: all 0.2s ease;
}

.navbar.scrolled {
    background-color: var(--dark-bg);
    padding: 7px 0; 
}

.navbar-brand {
    color: white !important;
    font-size: 27px;
    font-weight: bold;
}
.navbar-toggler i{
    font-size: 25px;
}
.navbar-brand span {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: white ;
    margin: 0 15px;
    transition: color 0.3s;
}
.activeTab{
    color: var(--primary-color) !important;
}
.menu-button{
    background-color: transparent;
    outline: none;
    border: none;
    font-size: 26px;
    color: var(--light-gray);
}
.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-contact {
    background: var(--primary-color);
    color: white;
    padding: 8px 25px;
    border-radius: 5px;
    border: none;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: #f88f17;
}

/* Page Header */
.page-header {
    background: var(--dark-bg);
    padding: 120px 0 50px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}



/* Search & Filter */
.product-cats{
    margin-top: 90px;
}
.product-filter {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.product-inner-container{
    flex-direction: column;
}
.search-div{
    width: 93%;
}

.search-box {
    position: relative;
    
}

.search-box input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
}

.cate-btn-div{
    width: 100%;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 20px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}


/* Products Section */
.products-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: bold;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    font-size: 18px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s;
    margin-bottom: 30px;
    position: relative;
    min-height: 500px;
    max-width: 600px;
    /* flex: 1; */
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-badge.new {
    background: #4CAF50;
}

.product-badge.sale {
    background: #ff9800;
}

.product-image {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image i {
    font-size: 60px;
    color: #999;
}

.product-content {
    padding: 15px 25px;
}

.product-category {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-bg);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-description{
    font-size: 14.2px;
    color: gray;
}

.btn-get-item {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-get-item:hover {
    background: #fc7e17;
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, var(--primary-color), #f5770f);
    padding: 80px 0;
    padding-bottom: 60px;
    color: white;
}

.feature-box {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 35px;
}

.feature-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-box p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Services Section */
.services-info-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #f89627);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 35px;
    color: white;
}

.service-box h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.service-box p {
    color: #666;
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: white;
    padding: 50px 0 20px;
}
.foot-first-info-col{
    padding-right:50px ;
}
.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    text-decoration: none;
}
.foot-btn-parent {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background-color: var(--primary-color);
  color: #fff;
  padding: 14px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(18, 140, 126, 0.3);
}
