/* style.css */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background-color: #002244;
  color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
}

.logo-img {
  width: 60px;
  height: auto;
}

.company-name {
  font-size: 22px;
  font-weight: bold;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Nav Bar */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

/* Responsive: Stack logo on small screens */
@media (max-width: 600px) {
  .logo-container {
    flex-direction: column;
    text-align: center;
  }

  .company-name {
    font-size: 18px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }
}

/* Hero Section */
.hero {
  background: url('../images/hero.jpg') no-repeat center center/cover;
  padding: 120px 0;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 25px;
}

.hero .btn {
  background: #00c6ff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero .btn:hover {
  background: #007a99;
}

/* Section Styling */
section {
  padding: 60px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-item {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item h3 {
  margin-bottom: 10px;
  color: #002244;
}

.testimonials {
  background-color: rgba(0, 0, 0, 0.6); /* Optional: darken background behind text */
  color: white;
  padding: 60px 20px;
}

.testimonials blockquote {
  border-left: 5px solid #fff;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #eee;
}

.testimonials h2 {
  text-align: center;
  font-size: 32px;
  color: white;
  margin-bottom: 40px;
}

.testimonial {
  max-width: 600px;
  margin: 0 auto 30px;
  font-style: italic;
  color: #333;
}

/* Footer */
footer {
  background: #002244;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

/* Scroll to Top */
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  padding: 10px 15px;
  font-size: 18px;
  background: #002244;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }
  .hero p {
    font-size: 16px;
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
/* Global website background with overlay effect */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('../images/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  position: relative;
}

/* Optional: dark overlay to improve readability */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
  z-index: -1;
}

/* Make header background semi-transparent */
header {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1em 0;
}

/* Make footer readable */
footer {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1em 0;
  text-align: center;
}

/* Button styling */
.btn {
  background-color: #ff6f61;
  color: white;
  padding: 0.7em 1.5em;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #e6594d;
}

/* Responsive container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
.testimonials {
  position: relative;
  padding: 60px 20px;
  color: white;
  z-index: 1;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: -1;
}

.testimonials h2 {
  text-align: center;
  font-size: 32px;
  color: #fff;
  margin-bottom: 40px;
}

.testimonials blockquote {
  border-left: 5px solid #fff;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #fff; /* Make feedback white */
}

.testimonials footer {
  color: #ccc;
  font-style: normal;
  margin-top: 10px;
}
body {
  background: url('../images/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

.testimonials {
  position: relative;
  padding: 60px 20px;
  z-index: 1;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
  z-index: -1;
}

.testimonials h2 {
  text-align: center;
  font-size: 32px;
  color: #fff;
  margin-bottom: 40px;
}

.testimonials blockquote {
  color: #fff;
  font-style: italic;
  font-size: 18px;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 4px solid #fff;
}

.testimonials footer {
  color: #ddd;
  font-style: normal;
  margin-top: 5px;
  font-size: 16px;
}

/* Chat Button (Text + Icon) */
.chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 10px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
}
.chat-button img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.chat-button:hover {
  background-color: #1ebe5d;
}