* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* TOP BAR */
.top-bar {
    background: #0f8a8a;
    color: #fff;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.top-bar span {
    margin-right: 15px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
}

/* HEADER */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* LOGO */
.logo h2 {
    color: #0f8a8a;
    font-weight: bold;
}

/* NAVBAR */
.menu {
    list-style: none;
    display: flex;
    align-items: center;
}

.menu li {
    position: relative;
}

.menu li a {
    text-decoration: none;
    padding: 10px 18px;
    color: #333;
    font-weight: 500;
}

.menu li a:hover {
    color: #0f8a8a;
}

/* DROPDOWN */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    z-index: 999;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 18px;
    color: #333;
}

.dropdown-menu li a:hover {
    background: #f2f7f7;
    color: #0f8a8a;
}

.logo {
    margin-left: 30px; /* jitna move karna ho utna px adjust karo */
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* SHOW DROPDOWN ON HOVER */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* BUTTON */
.header-btn .btn {
    background: #0f3c5c;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
}

.header-btn .btn:hover {
    background: #0f8a8a;
}


.hero {
    background: linear-gradient(
        rgba(14,138,146,0.85),
        rgba(14,138,146,0.85)
    ), url('contact.jpg') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}





.service-section {
  padding: 80px 0;
  background: #ffffff;
}

.service-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}

.service-content {
  flex: 1;
}

.service-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
}
@media (max-width: 900px) {
  .service-container {
    flex-direction: column;
  }

  .service-image img {
    height: 300px;
  }
}

.billing-section {
  background: #148a8f;
  padding: 80px 0;
}

.billing-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.billing-content h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 25px;
}

.billing-content ul {
  list-style: none;
  padding: 0;
}

.billing-content ul li {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.billing-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 22px;
}

/* RIGHT IMAGE */
.billing-image-box {
  position: relative;
}

.billing-image-box img {
  width: 420px;
  border-radius: 18px;
  position: relative;
  z-index: 2;
}

/* outline box */
.image-outline {
  position: absolute;
  width: 420px;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 18px;
  bottom: -18px;
  left: -18px;
  z-index: 1;
}

/* dots decoration */
.dots {
  position: absolute;
  top: -20px;
  right: -20px;
  display: grid;
  grid-template-columns: repeat(4, 8px);
  gap: 8px;
}

.dots span {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}
@media (max-width: 900px) {
  .billing-container {
    flex-direction: column;
    text-align: center;
  }

  .billing-image-box {
    margin-top: 40px;
  }

  .billing-image-box img,
  .image-outline {
    width: 300px;
  }
}

.services-section {
  background: #f7f9fb;
  padding: 80px 0;
}

.services-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.services-container h2 {
  font-size: 36px;
  color: #0b1c2d;
  margin-bottom: 15px;
}

.services-desc {
  max-width: 850px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
}

.service-card img {
  width: 55px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  color: #0b1c2d;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: linear-gradient(135deg, #1e8a8f, #1aa6a1);
  color: #fff;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-logo img {
  max-width: 140px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-item a {
  color: #fff;
  text-decoration: none;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  padding: 25px 10px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #1e8a8f;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-item {
    justify-content: center;
  }
}


.footer-logo img {
  max-width: 140px;
  margin-bottom: 15px;
}

