body {
  font-family: Arial, sans-serif;
  line-height: 1.8;
  padding: 100px 20px 20px; /* Top padding added */
  background-color: #f9f9f9;
  color: #333;
  
}


header {
  background-color: #151818;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}


header img {
  height: 50px;
  margin-left: 40px;
}

header p {
  margin: 5px 0 0;
  font-size: 14px;
  color: white;
  font-family: "Bookman Old Style";
  font-weight: bold;
}

section {
    background: #C0A9C9;
    
}

.section {
    background: #C0A9C9;
     padding: 100px 20px 20px; /* Top padding added */
}


/* NAVIGATION start */
/* NAVIGATION start */
.navbar {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  background: orange;
  border-radius: 10px;
  padding: 8px;
  display: inline-block;
}

.nav-links li a:hover {
  color: blue;
  background: #C4ADAD;
  transition: 0.5s;
}

/* Submenu styles - colorful like main menu */
.nav-links li .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: transparent;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 999;
}

.nav-links li .submenu li a {
  background: orange;
  border-radius: 10px;
  padding: 8px 12px;
  margin: 5px;
  color: black;
  text-decoration: none;
  font-weight: 500;
  display: block;
  white-space: nowrap;
}

.nav-links li .submenu li a:hover {
  background: #C4ADAD;
  color: blue;
  transition: 0.5s;
}

/* Show submenu on hover (desktop) */
.nav-links li:hover > .submenu {
  display: block;
}

/* Hamburger Icon */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #003366;
    position: absolute;
    top: 50px;
    right: 0;
    width: 200px;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    z-index: 99;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin-bottom: 15px;
  }

  .nav-links li a {
    background: orange;
    border-radius: 10px;
    padding: 8px;
    color: black;
    display: block;
  }

  .nav-links li .submenu {
    position: static;
    display: none;
    padding-left: 10px;
  }

  .nav-links li.active .submenu {
    display: block;
  }

  .nav-links li .submenu li a {
    background: orange;
    border-radius: 10px;
    padding: 8px 12px;
    margin: 5px 0;
    color: black;
    font-weight: 500;
  }

  .nav-links li .submenu li a:hover {
    background: #C4ADAD;
    color: blue;
  }
}
/* NAVIGATION end */






.hero {
  padding: 60px 20px;
  background: linear-gradient(to right, #0a2540, #2a4370);
  color: white;
  text-align: center;
}
.hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
.btn {
  background-color: #00b894;
  padding: 12px 24px;
  color: white;
  border: none;
  border-radius: 6px;
  text-decoration: none;
}
section {
  padding: 40px 20px;
  text-align: center;
}
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
}
.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}
input, textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  border: 1px solid #ccc;
}
button {
  background-color: #00b894;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
button:hover {
  background-color: #019c7b;
}


.card {
  background:#86ECF0;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  background-color: #1DA1F2;
}
.card h3 {
  margin-top: 0;
  color: #0a2540;
}

a:hover {
    background-color: #019c7b; /* Darker green */
    color: #fff;
    transform: scale(1.05);
}



/* Slider Start */

.slider {
  position: relative;
  width: 100%;
  max-width: 1200px;     /* Optional: limits max width */
  margin: 0 auto;
  overflow: hidden;
  height: auto;
}

.slides {
  display: flex;
  animation: slide 12s infinite;
}

.slides img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  display: block;
}
.slider {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  aspect-ratio: 3 / 1;
}

@media (max-width: 768px) {
  .slider {
    aspect-ratio: 2 / 1;
  }
}


@keyframes slide {
  0%   { transform: translateX(0); }
  33%  { transform: translateX(-100%); }
  66%  { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}


/* Slider end */

/* Footer start */

footer {
  background: #0a2540;
  color: white;
  padding: 20px;
  text-align: center;
  width: 100%;
}

.footer p {
    
    text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 10px;
}

.footer-column {
  flex: 1 1 300px;
  min-width: 250px;
  text-align: left;
}

.footer-heading {
  color: orange;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-link-button {
  background-color: #00b894;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}

.footer-link-button:hover {
  background-color: #019874;
}

.footer-email {
  color: #00cec9;
  text-decoration: none;
}

.footer-email:hover {
  text-decoration: underline;
}



.social-icons a {
  margin: 0 8px;
  color: white;
  text-decoration: none;
  font-size: 30px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: orange;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 20px;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }
}

/* Footer end */

/* whats up plugin */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25d366;
  padding: 10px;
  border-radius: 100%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float img {
  width: 40px;
  height: 40px;
}