/* Import Bootstrap */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* Custom Styling */
body {
    font-family: Arial, sans-serif;
}

/* Header */
header {
    background: #343a40;
    color: white;
    padding: 15px 0;
    text-align: center;
}

header h1, header h3 {
    margin: 0;
}

/* navbar */
/* Black background */
.navbar-container {
    background-color: #000;
    padding: 4px 0;
}

/* Centered H1 */
.site-title {
    color: yellow;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

/* Navbar styles */
.navbar {
    background-color:green;
    padding: 0;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color:darkorange !important; /* Blue hover effect */
}
/* Hero Section */
.hero {
    background: url('./assets/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 50px 20px;
}
/* attractive main body part */
.product-img {
    max-width: 100%;
    height: 300px;
    border-radius: 5px;
}
.btn-contact {
    width: 150px;
    margin: 5px;
}
h5{
    color: blueviolet;
}

/* Footer */
footer {
    background: #343a40;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}
footer h3{
    color: yellow;
}


/* about us page */
/* About Us Section */
.about {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.about h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.about p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.about h3 {
    font-size: 22px;
    color: #444;
    margin-top: 20px;
}

.about ul {
    list-style: none;
    padding: 0;
}

.about ul li {
    font-size: 18px;
    margin: 10px 0;
    color: #666;
}

/* Make it responsive */
@media (max-width: 768px) {
    .about {
        padding: 15px;
    }
}

/* products page */
/* Products Section */
.products {
    text-align: center;
    padding: 20px;
}

.products h2 {
    font-size: 28px;
    color: #333;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

.product {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.product h3 {
    margin-top: 10px;
    font-size: 20px;
    color: #444;
}

.product p {
    font-size: 14px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
/* contuct us page */
/* Call Now & WhatsApp Buttons */
.call-now, .whatsapp {
    display: block;
    text-align: center;
    padding: 10px;
    margin: 10px 0;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
}

.call-now {
    background: #28a745;
    color: white;
}

.call-now:hover {
    background: #218838;
}

.whatsapp {
    background: #25D366;
    color: white;
}

.whatsapp:hover {
    background: #1EBEA5;
}
/* location page */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

h1 {
    background: #333;
    color: white;
    padding: 20px;
}

h2, h3 {
    color: #333;
}

.location-container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
}

p {
    font-size: 16px;
    margin: 10px 0;
}

.map-btn {
    display: inline-block;
    padding: 10px 15px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.map-btn:hover {
    background: #218838;
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    cursor: pointer;
  }
  
  .whatsapp-float img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .whatsapp-float:hover img {
    transform: scale(1.1);
  }
  
  .our-works {
    padding: 40px 20px;
    text-align: center;
    background-color: #f4f8fb;
  }
  
  .our-works h2 {
    font-size: 2.2rem;
    color: #005b96;
    margin-bottom: 30px;
  }
  
  .works-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .work-item {
    width: 300px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
  }
  
  .work-item img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .work-item img:hover {
    transform: scale(1.05);
  }
  
  .work-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 15px;
  }
  
  .work-item p {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
  }
  
  /* testimonials */
  body {
    font-family: Arial, sans-serif;
  }

  .testimonials-section {
    background-color: #eaf2f8;
    padding: 40px 20px;
    border-radius: 10px;
    margin-top: 40px;
  }

  .testimonials-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
  }

  .testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .testimonial-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
  }

  .testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
  }

  .testimonial-name {
    font-weight: bold;
    color: #34495e;
  }

  .testimonial-feedback {
    font-size: 14px;
    color: #555;
    margin: 10px 0;
  }

  .stars {
    color: gold;
    margin-bottom: 10px;
  }