* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  font-family: sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #d9ecfa;
  padding: 20px 30px;
  position: relative;
}

.main-header{
  width: 100%;
  /* padding:2rem 9%; */
  background: #d9ecfa;
  z-index: 100;
  transition: .5s;
}

.main-header.sticky {
  background: whitesmoke;
  position: fixed;
  top: 0;
  left: 0;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}


/* body.scrolled .site-header {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
} */

.logo-img {
  max-width: 100%;
  width: 150px;
  height: auto;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

ul li {
  list-style: none;
}

ul li a {
  text-decoration: none;
  color: #333333;
}

ul li a:hover {
  color: #0066cc;

}

ul li a:active {
  color: #e60023;
  font-weight: bold;
}


.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.menu-icon i {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.Main-content {
  width: 100%;
  min-height: 70vh;
  background: linear-gradient(to bottom, #d9ecfa, #1d5b99);
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.Main-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2F3136;
  margin-bottom: 15px;
}

.Main-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2f3136e2;
  margin-bottom: 15px;
}

.Main-content p {
  font-size: 1.1rem;
  font-weight: 400;
  color: white;
  max-width: 700px;
  line-height: 1.6;
}

.comp-name {
  text-decoration: none;
  color: whitesmoke;
}

.main-content-services h2 {
  margin-top: 25px;
  color: #23374d;
  /* font-weight: bold; */
  text-align: center;
}

.service-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.service-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.service {
  /* background: transparent; No background box */
  text-align: center;
  padding: 20px;
  max-width: 260px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.service:hover {
  transform: translateY(-10px);
  /* border: grey solid 2px; */
}

.service h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: white;
}

.service p {
  font-size: 16px;
  color: #dcdcdc;
  line-height: 1.5;
}

.about-us {
  padding: 80px 20px;
  background-color: #f3f4f6;

}

.about-us .about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #111827;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 15px;
}

.main-services {
  padding: 80px 20px;
  background-color: #f3f4f6;
  text-align: center;
}

.service-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #111827;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  background: #f9fafb;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 400px;
  max-width: 400px;
  transition: transform 0.3s ease;

}

.service-card:hover {
  transform: translateY(-5px);
  cursor: pointer;
  border: #1d5b99 solid 2px;
}


.service-card img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
  object-fit: cover;
}

.serv-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1f2937;
}

.serv-para {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
}

#why-us {
  position: relative;
  color: blue;
  /* padding: 80px 20px; */
  text-align: center;
}

.back-img {
  background-image: url('../Images/why-us.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  /* Desktop only effect */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 50px 20px;
}

/* .back-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
} */

.why-us-container {
  width: 100%;
  max-width: 1200px;
  color: #fff;
  text-align: center;
}

.why-us-container h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #fff;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.feature-item {
  background-color: rgba(255, 255, 255, 0.189);
  border-radius: 12px;
  padding: 30px 20px;
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.331);
}

.feature-item i {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #4A90E2;
  /* Icon color */
}

.feature-item h3 {
  font-size: 1.2rem;
  color: white;
}

.how-we-work {
  padding: 60px 20px;
  background-color: #f3f4f6;
  text-align: center;
}

.how-we-work h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1020px;
  margin: 0 auto;
}

.work-item {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ffffff;
}

.work-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.work-item i {
  font-size: 32px;
  color: #0d6efd;
  margin-bottom: 15px;
}

.work-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.work-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.contact-us {
  padding: 60px 20px;
  background: #f3f4f6;
}

.contact-us-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-us-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.contact-us-flex {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-ul li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-info-ul i {
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-ul li>div {
  display: flex;
  flex-direction: column;
}

.contact-info-ul strong {
  font-weight: 600;
  margin-bottom: 2px;
  display: block;
}

.contact-info-ul span {
  color: #000;
  display: block;
}

.contact-form {
  flex: 1;
  /* max-width: 300px; */
  max-width: 490px;
  background: #f9f9f9;
  padding: 50px 40px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 1.8rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
  resize: vertical;
}

.contact-form button {
  background: #0a0f29;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #1c274a;
}

.form-success-message {
  background-color: #d4f8dc;
  color: #106e36;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 10px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.form-success-message i {
  color: #1ec66e;
  font-size: 18px;
}

.map-section {
  padding: 40px 20px;
  background-color: #f3f4f6;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
}

.map-embed-wrapper {
  position: relative;
  padding-bottom: 30%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  background: linear-gradient(135deg, #090909, #5b232c);
  color: #fff;
  /* font-family: 'Segoe UI', sans-serif; */
  padding: 40px 20px 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* ======= Left Section ======= */
.footer-left {
  flex: 1 1 300px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: skyblue;
}

.back-to-top {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  border: 1px solid #fff;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s;
}

.back-to-top:hover {
  background-color: skyblue;
  color: #000;
}

/* ======= Middle & Right Columns ======= */
.footer-links {
  flex: 1 1 500px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-column li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column li a:hover {
  color: skyblue;
}

.footer-column i {
  min-width: 18px;
  font-size: 14px;
  color: #ffffffe4;
}

/* ======= Bottom Bar ======= */
.footer-bottom {
  background-color: #141414;
    color: #d1d1d1;           
    font-size: 14px;
    text-align: center;
    padding: 12px 0;
    border-top: 1px solid #2a2a2a;
    width: 100%;

  /* background-color: #f5f5f5;
  color: #333333;
  font-size: 14px;
  text-align: center;
  padding: 12px 0;
  border-top: 1px solid #ddd;
  width: 100%;
  position: relative;
  left: 0;
  right: 0; */
}