/* stylek.css */
/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: #2c3e50;
  background: #f8f9fa;
  overflow-x: hidden;
}

/* Modern Navbar Styles */
.navbar {
  background: linear-gradient(to left, #0cea26, #144dd1); /* Dark blue tone */
  position: sticky;
  top: 0;
  width: 100%;
  padding: 10px 0px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.navbar .logo img {
  height: 80px;
  margin-left: 10%;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-right: 4%;
  padding: 0;
  transition: all 0.5s ease;
}

.nav-links li {
  position: relative;
  font-size: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.nav-links a:hover {
  color: #f8f9fa;
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-btn {
  padding: 12px 28px;
  background-color: #0408f4;
  color: black;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

/* Dropdown Styles */
.services-dropdown .dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  width: 220px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.services-dropdown:hover .dropdown-list {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.services-dropdown .dropdown-list li a {
  color: #333;
  padding: 10px 20px;
  display: block;
  transition: all 0.2s ease;
}

.services-dropdown .dropdown-list li a:hover {
  background-color: #f8f9fa;
  color: #3498db;
  padding-left: 25px;
}

/* Hamburger Menu */
.menu-toggle {
  display: inline-block;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1000;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
 
  transition: all 0.3s ease;
}

/* Mobile View */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
    margin-right: 5%;
    
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #2c3e50;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 20px;
    gap: 20px;
    box-shadow: -5px 0 15px rgba(244, 241, 241, 0.1);
  }
  
  .nav-links.active {
    right: 0;
    margin: Auto;
  }
  
  .services-dropdown .dropdown-list {
    position: static;
    width: 100%;
    box-shadow: none;
    display: none;
    opacity: 1;
    transform: none;
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    border-radius: 4px;
  }
  .services-dropdown .dropdown-list li a {
    color: white;
  }

  .services-dropdown.active .dropdown-list {
    display: block;
  }

  
  /* Animate hamburger to X when active */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* Adjustments for smaller screens */
@media (max-width: 480px) {
  .navbar {
    padding: 15px 0px;
  }
  
  .navbar .logo img {
    height: 80px;
  }
}

/* Add to stylek.css */
/* Mobile dropdown styles */
@media (max-width: 992px) {
  .services-dropdown .dropdown-list {
    display: none;
    position: static;
    width: 100%;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    border-radius: 4px;
  }
  
  .services-dropdown.active .dropdown-list {
    display: block;
    animation: fadeIn 0.3s ease;
  }
  
  .services-dropdown .dropdown-list.show {
    display: block;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.background-slideshow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to left, #0cea26, #144dd1); /* Dark blue tone */
  color: #f2f2f2;
  padding: 40px 40px;
  gap: 40px;
  justify-content: center;
  text-align: center;
  min-height: 150px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ffffff;
    color: #222222;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Header */
.hero {
    background: linear-gradient(to left, #0cea26, #144dd1);;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 34px;
    font-weight: 600;
}

/* Sections */
.section {
    padding: 55px 0;
}

.section h2 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #0b1c2d;
}

.section p {
    margin-bottom: 15px;
}

.section ul {
    padding-left: 20px;
}

.section ul li {
    margin-bottom: 10px;
}

/* Backgrounds */
.bg-light {
    background-color: #f4f6f9;
}

.bg-dark {
    background-color: #1e293b;
    color: #ffffff;
}

.bg-dark h2 {
    color: #ffffff;
}

/* Footer */
.footer {
    background-color: #0b1c2d;
    color: #ffffff;
    text-align: center;
    padding: 18px 0;
    font-size: 14px;
}

/* Client & End Client Layout */
.client-block {
    display: flex;
    align-items: center;
    gap: 40px;
}

.client-logo img {
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

/* Text alignment */
.client-text h2 {
    margin-bottom: 12px;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .client-block {
        flex-direction: column;
        text-align: center;
    }

    .client-logo img {
        max-width: 140px;
    }
}