body {
  margin: 0;
  font-family: Arial, sans-serif;
  padding-top: 0px;
}

/* ================= TOP INFO BAR ================= */
.top-bar-wrap {
  margin: 0;
  padding: 0;
}

.top-bar {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 0px;
  background: #0f766e;
  color: #fff;
  border-radius: 999px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left {
  font-size: 15px;
  font-weight: 700;
}

.top-left span {
  margin-left: 18px;
}

.top-right a {
  color: #fff;
  margin-left: 16px;
  font-size: 16px;
  text-decoration: none;
}

/* ================= MAIN HEADER ================= */
.main-header {
  background: #ffffff;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 18px 40px;
}

/* LOGO */
.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-left img {
  height: 55px;
  width: auto;
}

.company-name {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

/* MENU */
.header-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.header-nav a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;          /* 🔥 bold */
  color: #0f766e;            /* 🔥 same green */
}

.header-nav a:hover {
  color: #0a4f4a;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    border-radius: 30px;
  }

  .main-header {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }

  .header-nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}

/* ===== HERO SLIDER ===== */
/* ================= HERO SLIDER ================= */

.hero-slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

/* Container jisme JS slides inject karta hai */
#heroMedia {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Common slide (image + video) */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}

/* Active slide */
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Video fix */
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== ARROWS ===== */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 14px 18px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.arrow.left {
  left: 25px;
}

.arrow.right {
  right: 25px;
}

/* ===== DOTS ===== */
.dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #0f766e;
}
/* SECTIONS */
.section {
  padding: 80px 40px;
  text-align: center;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
}

.service-card img,
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.service-card h3,
.blog-card h3 {
  margin-top: 15px;
}

/* BLOGS */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 30px;
}

.about-content {
  max-width: 1100px;
  margin: auto;
  text-align: left;
}

.about-content h2 {
  margin-top: 40px;
  color: #0f766e;
}

.about-content ul {
  margin-left: 20px;
}

.about-content li {
  margin-bottom: 8px;
}

/* CONTACT */
.contact-section {
  background: #f7f9fc;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
}

.contact-card button {
  background: #0a2540;
  color: #fff;
  padding: 12px;
  border: none;
  width: 100%;
}

/* FOOTER */
footer {
  background: #0a2540;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* MOBILE */
@media(max-width:768px){
  .contact-container {
    grid-template-columns: 1fr;
  }
}
/* ================= FLOATING SIDE ACTIONS ================= */



/* COMMON BUTTON */
.side-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  border-radius: 12px 0 0 12px;
  box-shadow: -4px 6px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* CONTACT BUTTON */
.contact-btn {
  background: linear-gradient(135deg, #0a2540, #0f4c75);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.contact-btn i {
  font-size: 18px;
  margin-top: 6px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  background: #25d366;
  font-size: 26px;
  padding: 16px;
  border-radius: 12px 0 0 12px;
  text-decoration: none;
}

.side-btn:hover {
  transform: translateX(-6px);
}
/* ================= CONTACT SECTION ================= */

.contact-section {
  background: #f7f9fc;
  padding: 80px 40px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.contact-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* INFO CARD */
.contact-card {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* FORM FULL WIDTH */
.contact-form {
  grid-column: 1 / -1;
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.contact-form {
  max-width: 100%;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  font-size: 15px;
  box-sizing: border-box;   /* 🔥 EXTRA safety */
}

.contact-form textarea {
  height: 140px;
  resize: none;
}
.contact-form button,
.contact-form .send-btn {
  width: 100%;
  background: linear-gradient(135deg, #0f766e, #0a5c55);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 0;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 24px rgba(15,118,110,0.35);
}

/* Hover effect */
.contact-form button:hover,
.contact-form .send-btn:hover {
  background: linear-gradient(135deg, #0a5c55, #064e47);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15,118,110,0.45);
}

/* Click effect */
.contact-form button:active {
  transform: scale(0.98);
  box-shadow: 0 6px 16px rgba(15,118,110,0.35);
}
.service-card {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

/* SERVICE DETAILS */
.service-details {
  padding: 80px 40px;
  background: #f9fafb;
}

.service-details.hidden {
  display: none;
}

.service-box {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-box h2 {
  color: #0f766e;
  margin-bottom: 15px;
}

.service-box p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.contact-form button {
  width: 100%;
  background: linear-gradient(135deg, #0f766e, #0a5c55);
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.hero-slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
  z-index: 1;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.logo-link:hover {
  opacity: 0.85;
}
.header-cta {
  display: flex;
  align-items: center;
}

.consult-btn {
  background: transparent;
  border: 2px solid #0f766e;
  color: #0f766e;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.consult-btn span {
  font-size: 18px;
}

.consult-btn:hover {
  background: #0f766e;
  color: #fff;
}
.consultation-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.consultation-modal {
  background: #fff;
  width: 420px;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.close-modal {
  font-size: 24px;
  cursor: pointer;
}

.consultation-modal input,
.consultation-modal textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.consultation-modal textarea {
  min-height: 100px;
}

.consent {
  font-size: 12px;
  color: #555;
  display: block;
  margin-bottom: 15px;
}

.send-btn {
  background: #0f766e;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
}
/* ===== STAY CONNECTED ===== */
.stay-connected {
  background: #f6f9fc;   /* ✅ soft light background */
  padding: 80px 20px;
  text-align: center;
  color: #0a2540;
}

.stay-connected h2 {
  font-size: 36px;
  letter-spacing: 2px;
}

.stay-connected p {
  margin: 15px 0 30px;
  font-size: 16px;
  color: #444;
}
.subscribe-box input {
  width: 320px;
  padding: 14px 20px;
  border-radius: 30px;
  border: 1px solid #d0d7de;
}

.subscribe-box button {
  background: #0f766e;
  border: none;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  cursor: pointer;
}
/* ===== STAY CONNECTED ===== */
.stay-connected {
  background: linear-gradient(rgba(15,118,110,0.9), rgba(15,118,110,0.9)),
              url("https://images.unsplash.com/photo-1521791136064-7986c2920216") center/cover;
  padding: 80px 20px;
  text-align: center;
  color: #white;
}

.stay-connected h2 {
  font-size: 36px;
  letter-spacing: 2px;
}

.stay-connected h2 span {
  font-weight: 300;
}

.stay-connected p {
  margin: 15px 0 30px;
  font-size: 16px;
}

.subscribe-box {
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.subscribe-box input {
  width: 320px;
  padding: 14px 20px;
  border-radius: 30px;
  border: none;
}

.subscribe-box button {
  background: #0f766e;
  border: none;
  color: #white;
  padding: 14px 30px;
  border-radius: 30px;
  cursor: pointer;
}

/* ===== SOCIAL STRIP ===== */
.social-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.social-card {
  background: #f5f9fb;
  padding: 30px;
  text-align: center;
  text-decoration: none;
  color: #0f766e;
  font-weight: 600;
}

.social-card i {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.social-follow {
  background: #0f766e;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
}

/* ===== MAIN FOOTER ===== */
.main-footer {
  background: #ffff;
  padding: 70px 40px 20px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 40px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-grid h4 {
  margin-bottom: 15px;
  color: #0f766e;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.footer-grid p {
  font-size: 14px;
  color: #555;
}

.footer-bottom {
  text-align: center;
  padding-top: 0px;
  font-size: 13px;
  color: #gduhvegi;
}
body {
  margin: 0;
  padding: 0;
  background: #ffffff;
}
.footer-wrapper,
.footer-container,
.site-footer,
.main-footer {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: #ffffff;
}
.stay-connected {
  border: none !important;
  box-shadow: none !important;
}
/* ===== FOOTER RESET ===== */
.site-footer {
  margin: 0;
  padding: 0;
  background: #ffffff;
}

/* ===== STAY CONNECTED ===== */
.stay-connected {
  position: relative;
  background: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a")
              center/cover no-repeat;
  padding: 90px 20px;
  text-align: center;
  color: #fff;
}

.stay-connected .overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,118,110,0.9);
}

.stay-connected * {
  position: relative;
  z-index: 1;
}

.stay-connected h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.stay-connected h2 span {
  font-weight: 700;
}

.stay-connected p {
  max-width: 700px;
  margin: 0 auto 30px;
}

.subscribe-box {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.subscribe-box input {
  padding: 14px 20px;
  width: 320px;
  border-radius: 30px;
  border: none;
  outline: none;
}

.subscribe-box button {
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  background: #0f766e;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* ===== SOCIAL ===== */
.footer-social {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
  padding: 40px;
  background: #f7f9fc;
}

.social-card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  text-decoration: none;
  color: #0f766e;
  font-weight: 600;
}

.social-card i {
  font-size: 26px;
  margin-bottom: 10px;
}

/* ===== MAIN FOOTER ===== */
.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 40px;
  padding: 60px 40px;
}

.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: #333;
}

.footer-col p {
  margin: 6px 0;
}

.logo-col img {
  height: 60px;
  margin-bottom: 15px;
}

.map-link {
  color: #0f766e;
  font-weight: 600;
}

/* ===== BOTTOM ===== */
.footer-bottom {
  background: #0a2540;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}
.mini-footer {
  background: #07243b;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
}
/* ===== ABOUT PAGE STYLES ===== */

.page-hero {
  padding: 120px 20px 40px;
  text-align: center;
  background: #f5f7fa;
}

.page-hero h1 {
  font-size: 42px;
  color: #0b3a6f;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* ABOUT GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  color: #0b3a6f;
  margin-bottom: 15px;
}

.about-text p {
  line-height: 1.7;
  color: #444;
}

.highlight-box {
  margin: 20px 0;
  padding: 15px 20px;
  border-left: 4px solid #f4d300;
  background: #fafafa;
  font-weight: 600;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}

/* OFFERINGS */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.offer-card {
  padding: 25px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  font-weight: 600;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.why-grid div {
  background:transparent;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* PRACTICES */
.practice-list {
  max-width: 600px;
  margin: 30px auto 0;
}

.practice-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  font-size: 34px;
  color: #0b3a6f;
}

/* FOOTER */
.mini-footer {
  background: #0b2d4d;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
.page-hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;

  background-image:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("https://www.dairyvilla.com/img/about-banner.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
}
/* ================= BIG FOOTER ================= */

.big-footer {
  background: #ffffff;
  padding: 70px 60px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #0b3c6d;
}

.footer-col p {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.footer-col a {
  display: block;
  color: #333;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col a:hover {
  color: #0b3c6d;
}

.footer-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  background: #0b3c6d;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}

/* SOCIAL */
.footer-social {
  margin-top: 40px;
  text-align: center;
}

.footer-social a {
  display: inline-block;
  margin: 0 10px;
  font-size: 18px;
  color: #0b3c6d;
}

/* COPYRIGHT */
.footer-bottom {
  margin-top: 40px;
  background: #0b3c6d;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-btn {
    margin: 20px auto 0;
  }
}
/* NAV DROPDOWN */
.header-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  text-decoration: none;
  font-weight: 500;
  color: #0a3a6d;
  padding: 10px 0;
}

/* Dropdown box */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border-radius: 6px;
  display: none;
  flex-direction: column;
  z-index: 999;
}

/* Dropdown links */
.dropdown a {
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: background 0.3s;
}

.dropdown a:hover {
  background: #f2f6fb;
  color: #0a3a6d;
}

/* Show dropdown on hover */
.nav-item:hover .dropdown {
  display: flex;
}
/* ABOUT */
.about-container {
  max-width: 1100px;
  margin: auto;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.why-card {
  background: #f8f9fb;
  padding: 22px;
  border-radius: 10px;
}

.why-card h4 {
  margin-bottom: 8px;
  color: #0b3c6d;
}

/* TECHNOLOGY SLIDER */
.tech-slider {
  overflow: hidden;
  margin-top: 40px;
}

.tech-track {
  display: flex;
  gap: 40px;
  animation: scrollTech 30s linear infinite;
}

.tech-item {
  min-width: 160px;
  text-align: center;
}

.tech-item img {
  height: 40px;
  object-fit: contain;
  margin-bottom: 6px;
}

.tech-item span {
  font-size: 13px;
  color: #333;
}

@keyframes scrollTech {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* ===== FIX ABOUT US BREAK ISSUE ===== */

.about-section,
.about-container {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 60px 20px !important;
  display: block !important;
}

.about-text {
  max-width: 100% !important;
  width: 100% !important;
  white-space: normal !important;
  word-break: normal !important;
  line-height: 1.8;
  text-align: left;
}

/* Prevent global flex breaking text */
.section {
  display: block !important;
}

/* Headings center, text left */
.section-title {
  text-align: center;
}
/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 8%;
  background:transparent;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #0b2c4d;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 900px) {
  .about-wrapper {
    flex-direction: column;
  }
}
/* REMOVE EXTRA SPACE BETWEEN SECTIONS */
.section {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* SPECIFIC FIX: ABOUT -> WHY US GAP */
.about-section {
  margin-bottom: 0 !important;
  padding-bottom: 40px !important;
}

.why-us {
  margin-top: 0 !important;
  padding-top: 40px !important;
}
.why-modern {
  padding: 80px 8%;
  background: #f7f9fc;
  text-align: center;
}

.why-modern h2 {
  font-size: 38px;
  margin-bottom: 50px;
  color: #0a3a6a;
}

.why-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 14px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.why-box i {
  font-size: 36px;
  color: #0a3a6a;
  margin-bottom: 15px;
}

.why-box h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.why-box p {
  font-size: 14px;
  color: #666;
}

.why-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.about-section {
  min-height: 100vh;          /* full screen height */
  display: flex;
  align-items: center;        /* vertical center */
  padding: 80px 0;
}
/* ================= SERVICE DETAIL PAGES ================= */
.service-detail-page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 30px;
  font-size: 15px;
  color: #666;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.breadcrumb a {
  color: #0f766e;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #0a5c55;
  text-decoration: underline;
}

.breadcrumb span {
  color: #333;
  font-weight: 600;
}

/* Service Hero */
.service-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e6f0ff 100%);
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.service-hero h1 {
  font-size: 46px;
  color: #0a2540;
  margin-bottom: 15px;
  line-height: 1.2;
}

.service-tagline {
  font-size: 20px;
  color: #555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.service-hero-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(15, 118, 110, 0.15);
  border: 1px solid #ddd;
}

/* Service Details Container */
.service-details-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Main Content */
.service-main-content h2 {
  color: #0a2540;
  margin: 40px 0 25px;
  font-size: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-main-content h2 i {
  color: #0f766e;
}

.service-main-content > p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
}

.content-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
  border-left: 4px solid #0f766e;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.content-box.important {
  background: linear-gradient(135deg, #fff8f8, #fff);
  border-left-color: #e74c3c;
}

.content-box h3 {
  color: #0a2540;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-box ul {
  padding-left: 20px;
  margin: 15px 0;
}

.content-box li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Features Grid */
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-color: #0f766e;
}

.feature-card i {
  font-size: 36px;
  color: #0f766e;
  margin-bottom: 20px;
  display: block;
}

.feature-card h4 {
  color: #0a2540;
  margin-bottom: 15px;
  font-size: 18px;
}

.feature-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Benefits */
.benefits-section {
  background: #f0f7ff;
  border-radius: 15px;
  padding: 35px;
  margin: 40px 0;
}

.benefits-section h3 {
  color: #0a2540;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 10px;
}

.benefit i {
  color: #0f766e;
  font-size: 18px;
  margin-top: 3px;
}

.benefit span {
  color: #333;
  font-size: 15px;
  line-height: 1.5;
}

/* Process Steps */
.process-section {
  margin: 50px 0;
}

.process-section h3 {
  color: #0a2540;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.process-steps {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
}

.step {
  min-width: 220px;
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid #e2e8f0;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #0f766e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step h4 {
  color: #0a2540;
  margin-bottom: 10px;
  font-size: 18px;
}

.step p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

/* Standards Badges */
.standards-section {
  margin: 40px 0;
}

.standards-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.badge {
  background: #0f766e;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sidebar-box h4 {
  color: #0a2540;
  margin-bottom: 20px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-meta p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

.service-meta strong {
  color: #333;
  min-width: 120px;
  display: inline-block;
}

.ideal-list {
  list-style: none;
  padding: 0;
}

.ideal-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.ideal-list li:last-child {
  border-bottom: none;
}

.ideal-list i {
  color: #0f766e;
  width: 20px;
}

.cta-box {
  background: linear-gradient(135deg, #0f766e, #0a5c55);
  color: white;
  text-align: center;
}

.cta-box h4 {
  color: white;
}

.cta-button {
  background: white;
  color: #0f766e;
  border: none;
  padding: 14px 25px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.small-text {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 10px;
}

.resource-link {
  display: block;
  padding: 12px 15px;
  background: #f8fafc;
  margin-bottom: 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #0f766e;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.resource-link:hover {
  background: #0f766e;
  color: white;
  border-color: #0f766e;
}

/* Contact Form */
.service-contact-form {
  background: linear-gradient(135deg, #f8fafc 0%, #e6f0ff 100%);
  padding: 50px;
  border-radius: 20px;
  margin-top: 50px;
  border: 1px solid #e2e8f0;
}

.service-contact-form h3 {
  text-align: center;
  color: #0a2540;
  margin-bottom: 15px;
  font-size: 32px;
}

.form-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
}

.service-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.service-form input,
.service-form select,
.service-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background: white;
}

.service-form textarea {
  grid-column: 1 / -1;
  min-height: 120px;
  resize: vertical;
}

.service-form button {
  background: #0f766e;
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.service-form button:hover {
  background: #0a5c55;
}

/* Active Navigation */
.header-nav .active {
  color: #0f766e;
  font-weight: 700;
  position: relative;
}

.header-nav .active:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0f766e;
}

/* AP/AR Comparison */
.ap-ar-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.ap-section, .ar-section {
  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
}

/* Special Sections */
.tax-types-grid, .audit-areas-grid, .metrics-grid, 
.components-grid, .methods-grid, .deliverables-grid,
.analytics-grid, .sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.tax-type, .audit-area, .metric, .component, 
.method, .deliverable, .analytic-type, .source {
  background: #f8fafc;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #0f766e;
}

.tax-type h4, .audit-area h4, .metric h4, .component h4,
.method h4, .deliverable h4, .analytic-type h4, .source h4 {
  color: #0a2540;
  margin-bottom: 10px;
  font-size: 16px;
}

.tax-type p, .audit-area p, .metric p, .component p,
.method p, .deliverable p, .analytic-type p, .source p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1100px) {
  .service-details-container {
    grid-template-columns: 1fr;
  }
  
  .service-sidebar {
    position: static;
    margin-top: 40px;
  }
  
  .ap-ar-comparison {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: 30px 20px;
  }
  
  .service-hero h1 {
    font-size: 32px;
  }
  
  .service-tagline {
    font-size: 18px;
  }
  
  .service-features-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .service-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .service-contact-form {
    padding: 30px 20px;
  }
  
  .tax-types-grid, .audit-areas-grid, .metrics-grid, 
  .components-grid, .methods-grid, .deliverables-grid,
  .analytics-grid, .sources-grid {
    grid-template-columns: 1fr;
  }
}

.service-detail-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    overflow: visible; 
}


.service-content {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}


.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
}


input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; 
    font-size: 16px; 
}


.two-column-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.two-column-form .form-group {
    flex: 1 1 calc(50% - 20px);
    min-width: 250px;
}


@media (max-width: 768px) {
    .service-detail-container {
        padding: 15px;
    }
    
    .two-column-form .form-group {
        flex: 1 1 100%; 
    }
    
    input, select, textarea {
        font-size: 16px; 
        max-width: 100%;
    }
    
    .service-content {
        padding: 10px;
    }
}


body, html {
    overflow-x: hidden;
    max-width: 100%;
}


.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.submit-btn:hover {
    background-color: #0056b3;
}
/* मुख्य बॉडी के लिए */
body, html {
    width: 100%;
    overflow-x: hidden; /* होरिजॉन्टल स्क्रॉल हटाएं */
    margin: 0;
    padding: 0;
}

/* सर्विस डिटेल कंटेनर */
.service-detail-page {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 20px;
}

/* कंटेंट सेक्शन */
.service-content {
    width: 100%;
    max-width: 1200px; /* या जितनी चौड़ाई चाहिए */
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* सभी सेक्शन के लिए */
section {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    margin-bottom: 20px;
}

/* हेडिंग्स के लिए */
h1, h2, h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* लिस्ट के लिए */
ul, ol {
    padding-left: 20px;
    box-sizing: border-box;
}

/* सर्विस डायरेक्टरी बॉक्स */
.service-directory {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.directory-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}
/* SERVICE DETAIL PAGE CONTAINER */
.service-details-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* MAIN CONTENT (बायीं ओर) */
.service-main-content {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
    box-sizing: border-box;
    padding: 20px;
}

/* SIDEBAR (दायीं ओर) */
.service-sidebar {
    width: 350px;
    max-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

/* SIDEBAR BOXES */
.sidebar-box {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #007bff;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* यहां हिडन रखें */
}

.sidebar-box h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-box h4 i {
    color: #007bff;
}

/* SERVICE META INFO */
.service-meta p {
    margin: 12px 0;
    padding-bottom: 12px;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
}

.service-meta p:last-child {
    border-bottom: none;
}

.service-meta strong {
    color: #2c3e50;
    min-width: 120px;
}

/* IDEAL FOR LIST */
.ideal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ideal-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.ideal-list li:last-child {
    border-bottom: none;
}

.ideal-list li i {
    color: #007bff;
    width: 20px;
}

/* CTA BOX */
.cta-box {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    text-align: center;
}

.cta-box h4 {
    color: white;
}

.cta-box p {
    margin: 15px 0;
    line-height: 1.6;
}

.cta-button {
    background: white;
    color: #007bff;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* RESOURCE LINKS */
.resource-link {
    display: block;
    padding: 12px 15px;
    background: #f8f9fa;
    margin: 8px 0;
    border-radius: 6px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.resource-link:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .service-details-container {
        flex-direction: column;
    }
    
    .service-sidebar {
        width: 100%;
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .sidebar-box {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .service-details-container {
        padding: 10px;
    }
    
    .service-main-content,
    .service-sidebar {
        padding: 15px;
    }
    
    .service-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sidebar-box {
        padding: 20px;
    }
}

/* विशेष फिक्स: टेक्स्ट कटने से बचाने के लिए */
.sidebar-box * {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.small-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 10px;
}
/* Service Detail Page Styles */
.service-detail-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.service-images {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-images img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-section {
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #007bff;
}

.service-section h2 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.service-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.back-to-services {
    text-align: center;
    margin-top: 40px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.back-link:hover {
    background: #0056b3;
}
/* Header navigation styles */
.header-nav a {
    color:black;
    text-decoration: none;
    font-weight: 600; /* YEH LINE ADD KARO for bold text */
    font-size: 16px;
}

.header-nav a:hover {
    color: #f0f0f0;
}

/* =========================================== */
/* SERVICE PAGES KE LIYE ALAG STYLE            */
/* =========================================== */

/* Service pages pe navigation dark + bold */
body:has(.service-hero) .header-nav a,
body:has(.service-detail-section) .header-nav a {
    color: #2c3e50 !important;
    font-weight: 600 !important; /* Bold rahega */
}

/* Service pages pe hover effect */
body:has(.service-hero) .header-nav a:hover,
body:has(.service-detail-section) .header-nav a:hover {
    color: #007bff !important;
    font-weight: 600 !important;
}

/* Agar :has() support nahi kare toh */
.service-hero ~ .main-header .header-nav a {
    color: #2c3e50 !important;
    font-weight: 600 !important;
}

.service-hero ~ .main-header .header-nav a:hover {
    color: #007bff !important;
    font-weight: 600 !important;
}
section {
  padding: 0px 0;
  margin: 0;
}
.about,
.why-choose,
.technology {
  padding-top: 30px;
  padding-bottom: 30px;
}
.tech-section section {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.why-modern {
  padding-top: 50px;
  padding-bottom: 50px;
}


.hero-slider {
  margin-top: 300px;
}
.tech-item img {
  height: 60px;          /* 🔥 yahan size bada */
  max-width: 140px;     /* 🔥 logo zyada mota na lage */
  object-fit: contain;
  margin-bottom: 8px;
}
/* ================= TECHNOLOGY SLIDER FIX ================= */

.tech-slider {
  width: 100%;
  overflow: hidden;            /* screen ke bahar ka hide */
  margin-top: 40px;
}

.tech-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;          /* 🔥 sab logos ki total width */
  animation: techScroll 60s linear infinite;
}

.tech-item {
  min-width: 180px;
  text-align: center;
}

.tech-item img {
  height: 60px;                /* logo size */
  max-width: 160px;
  object-fit: contain;
}

/* Animation */
@keyframes techScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.footer-btn,
.footer-btn * {
  color: #ffffff !important;
}
.footer-bottom {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: 0;
  padding-right: 0;
}
body {
  background-color: #f3fbe9;
}
.about-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #0b2c4d;
  margin-bottom: 50px;
}
/* SIDE CONTACT BUTTON */
.side-contact-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #0a3a6a;
  color: #fff;
  padding: 14px 18px;
  font-weight: 600;
  border-radius: 12px 0 0 12px;
  cursor: pointer;
  z-index: 9999;
}

/* MODAL OVERLAY */
.contact-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

/* MODAL BOX */
.contact-modal {
  background: #fff;
  width: 420px;
  padding: 25px;
  border-radius: 12px;
  position: relative;
}

.contact-modal h3 {
  margin-bottom: 15px;
}

.contact-modal input,
.contact-modal textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.contact-modal textarea {
  height: 100px;
}

.contact-modal button {
  width: 100%;
  padding: 14px;
  background: #0a3a6a;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

/* CLOSE ICON */
.close-modal {
  position: absolute;
  right: 14px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}
.side-contact-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  background: #0a3a6a;
  color: #fff;

  padding: 14px 10px;
  font-size: 14px;
  font-weight: 600;

  border-radius: 8px 0 0 8px;
  cursor: pointer;
  z-index: 99999;

  writing-mode: vertical-rl;
  text-orientation: mixed;

  display: flex;
  align-items: center;
  gap: 6px;
}
/* Industries Page Styles */
#industries-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* Back Button */
.back-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 30px;
    transition: background 0.3s;
}
.back-btn:hover {
    background: #0056b3;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}
.page-header h1 {
    color: #2c3e50;
    font-size: 2.8rem;
    margin-bottom: 15px;
}
.page-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Industries Container */
.industries-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

/* Industry Item */
.industry-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.industry-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #007bff;
}

/* Industry Icon */
.industry-icon {
    font-size: 50px;
    margin-bottom: 20px;
    height: 80px;
    width: 80px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Industry Title */
.industry-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Industry Description */
.industry-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Industry Tags */
.industry-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}
.industry-tags span {
    background: #eef5ff;
    color: #007bff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* CTA Section */
.industries-cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}
.industries-cta h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}
.industries-cta p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}
.cta-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}
.cta-btn:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .industries-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .industry-item {
        padding: 20px;
    }
}

/* ================= INDUSTRIES SECTION ================= */
.industries-section {
    padding: 80px 20px;
    background:transparent;
}

.industries-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.industry-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.industry-icon {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 20px;
    height: 80px;
    width: 80px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.industry-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.industry-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
    .industries-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-container {
        grid-template-columns: 1fr;
    }
    
    .industry-card {
        padding: 25px;
    }
}
/* Fix space between Data Management section and Industries section */
#Services + #industries {
    margin-top: -40px; /* Adjust this value as needed */
}

/* OR if you have specific classes */
.section + .industries-section {
    padding-top: 40px; /* Reduce top padding */
    margin-top: -30px; /* Bring it closer */
}

/* For the Data Management section specifically */
.service-card:last-child {
    margin-bottom: 20px; /* Reduce bottom margin of last service card */
}

/* For Industries section */
.industries-section {
    padding-top: 40px !important; /* Reduce top padding */
}
/* ================= PROFESSIONAL TOP BAR ================= */
.top-bar-wrap {
    background: #1a365d; /* Dark blue corporate color */
    color: #ffffff;
    padding: 0;
    font-size: 13px;
    width: 100%;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    font-weight: 400;
}

.top-bar {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 45px;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 35px;
}

.top-left span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.top-left span:hover {
    color: #ffffff;
}

/* Clock icon styling */
.top-left span:first-child {
    color: #a0aec0;
}

/* Phone icon styling */
.top-left span:nth-child(2) {
    color: #90cdf4;
}

/* Email icon styling */
.top-left span:nth-child(3) {
    color: #90cdf4;
}

.top-right {
    display: flex;
    gap: 18px;
}

.top-right a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.top-right a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Specific social media colors on hover */
.top-right a:nth-child(1):hover { /* LinkedIn */
    background: #0077b5;
    border-color: #0077b5;
}

.top-right a:nth-child(2):hover { /* Instagram */
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    border-color: transparent;
}

.top-right a:nth-child(3):hover { /* Facebook */
    background: #1877f2;
    border-color: #1877f2;
}

/* Ensure proper spacing for main header */
.main-header {
    position: relative;
    z-index: 1000;
}

/* Add subtle separator */
.top-bar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%
    );
}

/* Responsive Design */
@media (max-width: 992px) {
    .top-bar {
        padding: 0 25px;
    }
    
    .top-left {
        gap: 25px;
    }
    
    .top-left span {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .top-bar-wrap {
        display: none; /* Hide on mobile if needed */
    }
    
    /* OR show simplified version */
    /*
    .top-bar {
        flex-direction: column;
        height: auto;
        padding: 10px 20px;
        gap: 10px;
    }
    
    .top-left {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .top-right {
        margin-top: 10px;
    }
    */
}

/* For tablets and small desktops */
@media (max-width: 1024px) {
    .top-left span {
        font-size: 12px;
    }
    
    .top-right a {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}
/* Fix extra space above hero */
.hero-slider {
    margin: top 120px;
    padding: top 120px;
}

/* If there's a container causing space */
#home {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove any top margin from body or html */
body, html {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure top bar doesn't push content down */
.top-bar-wrap {
    position: relative; /* Change from absolute/fixed if needed */
    z-index: 1001;
}

/* Fix for main header spacing */
.main-header {
    margin-top: 0 !important;
}
/* ===== FINAL SCROLL FIX ===== */
body {
  min-height: 100vh;
  overflow-y: auto;
}

.main-header {
  position: sticky;
  top: 0;
}

/* FINAL & SINGLE SOURCE OF TRUTH */
.top-bar-wrap {
  position: relative;
  width: 100%;
}
/* ===== HEADER FREEZE FINAL ===== */

.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* header */
.main-header {
  background: #ffffff;
}

/* push page content down */

@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .header-nav {
    display: flex !important;
  }
  .company-name {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .header-cta {
    display: none;
  }
}
@media (max-width: 768px) {

  /* Header clean row */
  .main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
  }

  /* Logo size */
  .logo-link img {
    height: 38px;
  }

  /* Hide tagline */
  .company-name {
    display: none;
  }

  /* Hide menu by default */
  .header-nav {
    display: none;
  }

  /* Hamburger RIGHT aligned */
  .mobile-menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
  }

  /* Mobile dropdown menu */
  .header-nav.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    gap: 16px;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  }

  .header-nav.mobile-active a {
    font-size: 16px;
    font-weight: 600;
  }

  .header-nav.mobile-active .dropdown {
    position: static;
    display: block;
  }

}
@media (max-width: 768px) {

  /* Header layout */
  .main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    flex-wrap: wrap;
  }

  /* Logo block */
  .header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-link img {
    height: 38px;
  }

  /* 🔥 SHOW TAGLINE ON MOBILE (clean way) */
  .company-name {
    display: block;
    font-size: 13px;
    margin-top: 4px;
    color: #333;
    font-weight: 500;
  }

  /* Menu hide */
  .header-nav {
    display: none;
  }

  /* Hamburger */
  .mobile-menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
  }

  /* CTA hide on mobile */
  .header-cta {
    display: none;
  }
}
@media (max-width: 768px) {
  .company-name {
    font-weight: 700;   /* 🔥 BOLD */
  }
}
@media (max-width: 768px) {

  /* hide dropdowns completely on mobile */
  .header-nav .dropdown {
    display: none !important;
  }

}
@media (max-width: 768px) {

  /* Mobile menu drawer */
  .header-nav.mobile-active {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background: #0b2e4f;
    padding: 90px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    z-index: 10000;
    pointer-events: auto;   /* 🔥 clicks allowed */
  }

  /* Menu links */
  .header-nav.mobile-active a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
  }

  /* Hide dropdowns on mobile */
  .header-nav .dropdown {
    display: none !important;
  }

}
@media (max-width: 768px) {

  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 9999;
    display: none;
  }

  .header-nav.mobile-active + .mobile-overlay {
    display: block;
  }

}
@media (max-width: 768px) {

  .mobile-close {
    position: fixed;
    top: 18px;
    right: 22px;
    font-size: 28px;
    color: #fff;
    z-index: 10001;
    display: none;
    cursor: pointer;
  }

  .header-nav.mobile-active ~ .mobile-close {
    display: block;
  }

}
@media (max-width: 768px) {

  /* hide desktop nav */
  .header-nav {
    display: none;
  }

  /* hamburger */
  .mobile-menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
  }

  /* overlay */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    z-index: 9998;
  }

  /* side drawer */
  .header-nav.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background: #0b2e4f;
    padding: 90px 24px;
    gap: 22px;
    z-index: 9999;
  }

  .header-nav.mobile-active a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
  }

  /* close button */
  .mobile-close {
    position: fixed;
    top: 18px;
    right: 22px;
    font-size: 28px;
    color: #fff;
    display: none;
    z-index: 10000;
    cursor: pointer;
  }

  /* active states */
  .header-nav.mobile-active ~ .mobile-close {
    display: block;
  }

  .header-nav.mobile-active ~ .mobile-overlay {
    display: block;
  }

}
@media (max-width: 768px) {

  /* desktop nav hide */
  .header-nav {
    display: none !important;
  }

  /* mobile nav */
  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #0b2e4f;
    padding: 100px 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: right 0.3s ease;
    z-index: 10000;
  }

  .mobile-nav a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
  }

  /* overlay */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    z-index: 9999;
  }

  /* active state */
  body.mobile-menu-open .mobile-nav {
    right: 0;
  }

  body.mobile-menu-open .mobile-overlay {
    display: block;
  }
}
/* =========================
   CONTACT PAGE – MOBILE FIX
   ========================= */

@media (max-width: 768px) {

  .contact-grid {
    display: grid !important;
    grid-template-columns: 1fr !important; /* single column */
    gap: 24px;
  }

  .contact-card,
  .contact-map,
  .contact-form {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Map fix */
  

/* ===== FINAL HEADER FREEZE (GUARANTEED) ===== */

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff;
}

.main-header {
   position: fixed;
  width: 100%;
  padding: 18px 40px;
  box-sizing: border-box;
}

/* Push page content below header */
body {
  padding-top: 90px;   /* header + top bar height */
}

/* ===== SIRF HEADER FIX - BAS 5 LINES ===== */
.header-wrapper {
  position: fixed !important;
  top: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
}
body { padding-top: 130px !important; }
/* ===== HEADER KA PAKKA FIX ===== */
header,
.main-header,
.header-wrapper {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
  background: white !important;
}

/* Top bar bhi header ke saath */
.top-bar-wrap {
  width: 100% !important;
}

/* Body ko space do */
body {
  margin-top: 150px !important;
  padding-top: 0 !important;
}

/* Hero slider ka margin hatao */
.hero-slider {
  margin-top: 1000px;
}

/* Mobile ke liye */
@media (max-width: 768px) {
  body {
    margin-top: 120px !important;
  }
}
/* ========= HERO FORCE FIX ========= */

.hero-slider {
  position: relative !important;
  width: 100% !important;
  height: 1000vh  
}

#heroMedia {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ===== KILL ALL HERO POSITIONING BUGS ===== */

.hero-slider {
  position: relative !important;   /* 🔥 MOST IMPORTANT */
  top: auto !important;
  margin-top: 0 !important;
  width: 100% !important;
  height: 90vh !important;
  min-height: 600px;
  display: block !important;
  overflow: hidden;
}

/* ensure parent is normal flow */
#home {
  position: relative !important;
}
}
.hero-slider {
  position: relative !important;
  top: auto !important;
}
/* HERO MUST BE IN NORMAL FLOW */
#home,
.hero-slider {
  position: relative !important;
  top: auto !important;
  margin-top: 80px !important;   /* header height ke hisaab se */
}
.hero-slide {
  position: absolute;
  inset: 0;
}
/* ================= MOBILE HERO GAP FIX ================= */
@media (max-width: 768px) {

  /* body ka extra push hatao */
  body {
    padding-top: 80px !important  ;   /* mobile header height */
    margin-top: 0 !important;
  }

  /* hero ko upar lao */
  #home,
  .hero-slider {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

}
.contact-section,
.contact-box,
.contact-wrapper {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.contact-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-form input,
.contact-form textarea {
  width: 80% !important;
  box-sizing: border-box;
}
.contact-form .form-group {
  flex: 1 1 30%;
}

@media (max-width: 768px) {
  .contact-form .form-group {
    flex: 1 1 100%;
  }
}
.contact-form button,
.contact-form .send-btn {
  width: 80%;
}

.contact-map iframe {
    width: 400px !important;
    height: 100px !important;
    display: block;
    border-radius: 0px;
  }
  .consultation-box {
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

