/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  padding-top: 80px; /* ✅ Prevent navbar overlap */
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 21px;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.navbar .logo a {
  text-decoration: none; /* remove underline */
  color: white !important; /* force it to stay white */
  font-weight: bold;
  font-size: 1.5rem;
}



.navbar .nav-links {
  list-style: none;
  display: flex;
}

.navbar .nav-links li {
  margin-left: 20px;
}

.navbar .nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar .nav-links a:hover {
  color: #ff9900;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-content {
  position: relative;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  animation: fadeIn 2s ease-in-out;
}

.hero-content h1 {
  font-size: 3em;
}

.hero-content p {
  font-size: 1.3em;
  margin: 20px 0;
}

.btn {
  padding: 12px 25px;
  background: #ff9900;
  color: white;
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #cc7a00;
}

/* About Company Section */
.about-company {
  padding: 60px 20px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.about-company h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ff9900;
}

.about-company p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #555;
  line-height: 1.7;
}

/* Services Overview Section */
.services-overview {
  padding: 60px 20px;
  background: #f4f4f4;
  text-align: center;
}

.services-overview h2 {
  font-size: 2.3em;
  margin-bottom: 20px;
  color: #ff9900;
}

.services-overview p {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.services-overview ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0;
  list-style: none;
  margin-top: 30px;
  margin-bottom: 30px;
}

.services-overview ul li {
  background: #fff;
  border-left: 5px solid #ff9900;
  padding: 20px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1em;
  position: relative;
}

.services-overview ul li::before {
  content: '✔';
  color: #ff9900;
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
}

.services-overview ul li:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  background: #fff7e6;
}

/* Services Cards Section */
.services-cards {
  padding: 60px 20px;
  text-align: center;
}

.services-cards h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #ff9900;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h3 {
  margin-bottom: 10px;
  color: #ff9900;
}

/* Footer */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-60%); }
  to { opacity: 1; transform: translateY(-50%); }
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(0,0,0,0.9);
    width: 200px;
    display: none; /* JS will toggle */
  }

  .nav-links li {
    margin: 15px 0;
    text-align: center;
  }
}

.btn:hover {
  background: #cc7a00;
  transform: scale(1.05);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;       /* size of the button */
  height: 60px;
  z-index: 1000;     /* on top of other elements */
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.whatsapp-float:hover {
  transform: scale(1.1); /* small hover effect */
}



.partners {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.partners h2 {
  font-size: 2rem;
  color: #ff9900;
  margin-bottom: 40px;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.partners-grid img {
  max-width: 150px;
  height: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}

.partners-grid img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* Footer */
.main-footer {
  background: #222;
  color: #ddd;
  padding: 40px 20px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-container div {
  flex: 1 1 250px;
}

.footer-container h3,
.footer-container h4,               
.footer-social h4 {
  margin-bottom: 15px;
}

.footer-contact a {
  color: #1abc9c;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #fff;
}


.footer-container p,
.footer-container ul,
.footer-container a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a:hover,
.footer-social a:hover {
  color: #1abc9c; /* highlight color on hover */
}

.footer-social a {
  display: inline-block;
  margin-right: 15px;
  font-size: 28px; /* bigger icons */
  color: #ddd;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #1abc9c;
}

.footer-social i {
  font-size: 24px; /* increase size */
  color: #ddd;
  margin-right: 15px;
  transition: color 0.3s;
}

.footer-social i:hover {
  color: #1abc9c;
}


.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid #444;
  padding-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-contact p, .footer-about, .footer-social {
    text-align: center;
    justify-content: center;
  }

  .footer-social a {
    font-size: 26px;
    margin: 0 10px;
  }
}