/* =========================================================
   Aditya Infrasafety Solutions — Stylesheet
   ========================================================= */

:root {
  --navy: #0e2a47;
  --navy-dark: #081c30;
  --orange: #f47920;
  --orange-dark: #d9640f;
  --gray-100: #f5f7f9;
  --gray-200: #e9edf1;
  --gray-500: #6b7686;
  --gray-700: #384252;
  --white: #ffffff;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(14, 42, 71, .12);
  --transition: .3s ease;
  --font-head: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--gray-100);
}

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 34px;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--gray-500);
  max-width: 640px;
  margin-bottom: 40px;
  font-size: 20px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-dark {
  background: #243bdf;
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-dark);
}

/* =========================== HEADER / TOP BAR =========================== */
.topbar {
  background: var(--navy-dark);
  color: #cbd6e2;
  font-size: 13px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cbd6e2;
  transition: color var(--transition);
}

.topbar-links a:hover {
  color: var(--orange);
}

.topbar-social {
  display: flex;
  gap: 14px;
}

.topbar-social a {
  color: #cbd6e2;
  transition: color var(--transition);
}

.topbar-social a:hover {
  color: var(--orange);
}

.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
}

.logo-text {
  line-height: 1.1;
}

.logo-text .name {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .5px;
text-transform: uppercase; 
 font-family:'Times New Roman', Times, serif ;
}

.logo-text .tag {
  font-size: 15px;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.name1{
  font-size: 25px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 600;
  color: var(--navy);
  font-size: 18px;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--orange);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--orange);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
}

/* =========================== HERO SLIDER =========================== */
.hero-slider {
  position: relative;
  height: 80vh;
  min-height: 480px;
  max-height: 720px;
  overflow: hidden;
  background: var(--navy-dark);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 28, 48, .82) 0%, rgba(8, 28, 48, .45) 55%, rgba(8, 28, 48, .15) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 640px;
  padding: 0 60px;
}

.slide-content .eyebrow {
  color: var(--orange);
}

.slide-content h2 {
  font-size: 46px;
  color: var(--white);
  margin-bottom: 18px;
}

.slide-content p {
  font-size: 17px;
  color: #dbe3ec;
  margin-bottom: 28px;
  max-width: 520px;
}

.slider-controls {
  position: absolute;
  bottom: 26px;
  right: 40px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .4);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.slider-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 60px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  transition: all var(--transition);
}

.slider-dots button.is-active {
  background: var(--orange);
  width: 28px;
  border-radius: 6px;
}

/* =========================== PAGE HERO (inner pages) =========================== */
.page-hero {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 50px 60px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: 38px;
  margin-bottom: 10px;
}

.breadcrumb {
  color: #b9c6d6;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--orange);
}

/* =========================== STRIP / TICKER =========================== */
.services-strip {
  background: var(--navy);
  color: var(--white);
}

.services-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.strip-item {
  flex: 1 1 200px;
  padding: 26px 20px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  gap: 14px;
}

.strip-item:last-child {
  border-right: none;
}

.strip-item .num {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--orange);
  font-weight: 800;
}

.strip-item span.label {
  font-size: 14px;
  font-weight: 600;
  color: #dbe3ec;
}

/* =========================== SERVICE CARDS =========================== */
.grid {
  display: grid;
  gap: 28px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(14, 42, 71, .18);
}

.card-img {
  height: 210px;
  overflow: hidden;
  position: relative;
  background: var(--gray-200);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.card:hover .card-img img {
  transform: scale(1.08);
}

.card-body {
  padding: 22px 24px 26px;
}

.card-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card-body p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.card-link {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.card-link::after {
  content: "→";
  margin-left: 6px;
  transition: margin var(--transition);
}

.card-link:hover::after {
  margin-left: 12px;
}

/* =========================== ABOUT SPLIT =========================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media .accent-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.split-media .accent-box .big {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
}

.split-media .accent-box .small {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.split-body p {
  margin-bottom: 16px;
  color: var(--gray-700);
}

.check-list {
  margin: 20px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
}

.check-list li::before {
  content: "✓";
  background: var(--orange);
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

/* =========================== COUNTERS =========================== */
.counters {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  color: var(--white);
}

.counters .grid-4 {
  text-align: center;
}

.counter-item .count {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  color: var(--orange);
}

.counter-item .label {
  font-size: 14px;
  color: #dbe3ec;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* =========================== PROCESS =========================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}

.process-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.process-item .step-num {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  color: var(--gray-200);
  margin-bottom: 10px;
}

.process-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.process-item p {
  font-size: 14px;
  color: var(--gray-500);
}

/* =========================== GALLERY =========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-200);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(8, 28, 48, .9), transparent);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* =========================== TESTIMONIALS =========================== */
.testimonial-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.is-active {
  display: block;
  animation: fade .6s ease;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-slide .quote-mark {
  font-size: 60px;
  color: var(--orange);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-slide p {
  font-size: 18px;
  color: var(--gray-700);
  font-style: italic;
  margin: 14px 0 20px;
}

.testimonial-author {
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-head);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.testimonial-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gray-200);
}

.testimonial-dots button.is-active {
  background: var(--orange);
  width: 22px;
  border-radius: 6px;
  transition: all var(--transition);
}

/* =========================== CTA BAND =========================== */
.cta-band {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10"><rect width="10" height="10" fill="%230e2a47"/></svg>');
  background-color: var(--orange);
  padding: 50px 0;
}

.cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-band h2 {
  color: var(--white);
  font-size: 26px;
}

.cta-band p {
  color: rgba(255, 255, 255, .9);
}

/* =========================== FORMS =========================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group.full {
  grid-column: 1/-1;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--gray-700);
  background: var(--gray-100);
  transition: border var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}

.form-note {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 6px;
}

.form-status {
  margin-top: 14px;
  font-weight: 700;
  font-size: 14px;
}

.form-status.success {
  color: #1e8e3e;
}

.form-status.error {
  color: #d93025;
}

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 22px;
}

.contact-row {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-row .ic {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 18px;
}

.contact-row .txt {
  font-size: 14px;
  color: #cbd6e2;
  line-height: 1.5;
}

.contact-row .txt strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 2px;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* =========================== FOOTER =========================== */
.site-footer {
  background: var(--navy-dark);
  color: #b9c6d6;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--orange);
}

.footer-col p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  color: #b9c6d6;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: #b9c6d6;
}

.footer-bottom a:hover {
  color: var(--orange);
}

/* =========================== FLOATING BUTTONS =========================== */
.float-btns {
  position: fixed;
  left: 22px;
  right: auto;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1200;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  transition: transform var(--transition);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.call {
  background: var(--orange);
}

.back-to-top {
  position: fixed;
  right: 22px;
  /* Changed from left to right */
  bottom: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 1200;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================== SERVICE DETAIL LIST (Services page) =========================== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}

.service-detail.reverse .service-media {
  order: 2;
}

.service-detail.reverse .service-text {
  order: 1;
}

.service-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* =========================== MISSION & VISION =========================== */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  position: relative;
}

.mv-card:nth-child(2) {
  border-top-color: var(--navy);
}

.mv-card .mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.mv-card:nth-child(2) .mv-icon {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
}

.mv-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.mv-card p {
  color: var(--gray-500);
  font-size: 15px;
}

/* =========================== WHY CHOOSE US =========================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-item {
  text-align: center;
  padding: 34px 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.why-item:hover {
  transform: translateY(-6px);
}

.why-item .why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
}

.why-item h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 13.5px;
  color: var(--gray-500);
}

/* =========================== CLIENTS =========================== */
.clients-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.client-logo {
  flex: 1 1 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 20px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  /* filter: grayscale(100%); */
  /* opacity: .65; */
  transition: all var(--transition);
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.client-logo span {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
  letter-spacing: .5px;
  text-align: center;
}

/* =========================== UTILITIES =========================== */
.mt-0 {
  margin-top: 0;
}

.text-center {
  text-align: center;
}

/* =========================== RESPONSIVE =========================== */
@media (max-width:991px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse .service-media {
    order: 1;
  }

  .service-detail.reverse .service-text {
    order: 2;
  }

  .slide-content h2 {
    font-size: 34px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logo {
    flex: 1 1 33.33%;
  }
}

@media (max-width:768px) {
  .topbar-links span.only-desktop {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .15);
    transition: right var(--transition);
    gap: 30px;
    z-index: 1100;
  }

  .main-nav.open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-slider {
    height: 70vh;
  }

  .slide-content {
    padding: 0 26px;
  }

  .slide-content h2 {
    font-size: 26px;
  }

  .slide-content p {
    font-size: 15px;
  }

  .slider-dots {
    left: 26px;
  }

  .slider-controls {
    right: 16px;
    bottom: 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-band .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width:480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .strip-item {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .client-logo {
    flex: 1 1 50%;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Section */

.client-section {
  padding: 80px 20px;
  text-align: center;
}

.client-section h6 {
  margin-bottom: 40px;
  font-size: 32px;
}

/* Grid */

.client-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  /* 5 logos per row */
  gap: 15px;
}

/* Logo Box */

.client-logo {
  background: #fff;
  padding: 1px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: scale(1.55);
}

/* Logo */

.client-logo img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

/* Tablet */

@media (max-width: 992px) {
  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */

@media (max-width: 576px) {
  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-list-box {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.service-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #d32f2f;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-item {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-left: 5px solid #d32f2f;
  padding: 15px 18px;
  border-radius: 10px;
  transition: .3s;
}

.service-item i {
  color: #d32f2f;
  font-size: 20px;
  margin-right: 12px;
}

.service-item span {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.service-item:hover {
  background: #081C30;
  transform: translateX(6px);
}

.service-item:hover i,
.service-item:hover span {
  color: #fff;
}

@media(max-width:768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-title {
    font-size: 24px;
  }
}

.about-section {
  background: #f8f9fa;
  overflow: hidden;
}

.about-img {
  position: relative;
}

.about-img img {
  border-radius: 20px;
}

.experience-box {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #d62828;
  color: #fff;
  padding: 20px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

.experience-box h2 {
  font-size: 40px;
  margin: 0;
  font-weight: 700;
}

.about-tag {
  background: #d62828;
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.title-line {
  width: 90px;
  height: 4px;
  background: #d62828;
  border-radius: 50px;
}

.about-text {
  color: #444;
  font-size: 17px;
  line-height: 1.9;
  text-align: justify;
}

@media(max-width:991px) {

  .about-title {
    font-size: 32px;
  }

  .experience-box {
    position: static;
    margin-top: 20px;
  }

}

.core-values {
  padding: 80px 0;
  background: #f8f9fa;
}

.values-heading {
  font-size: 40px;
  font-weight: 700;
  color: #222;
}

.values-subtitle {
  color: #666;
  max-width: 650px;
  margin: 10px auto 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-box {
  background: #fff;
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
  transition: .3s;
  border-bottom: 4px solid #d62828;
}

.value-box:hover {
  transform: translateY(-6px);
}

.value-box i {
  font-size: 32px;
  color: #d62828;
  margin-bottom: 12px;
}

.value-box h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.value-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Tablet */

@media(max-width:991px) {

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Mobile */

@media(max-width:767px) {

  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-heading {
    font-size: 30px;
  }

  .value-box {
    padding: 20px 15px;
  }

}

/* ===== Services ===== */

.as-services-sec {
  padding: 70px 0;
  background: #fff;
}

.as-title {
  text-align: center;
  margin-bottom: 35px;
}

.as-title span {
  background: #d71920;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.as-title h2 {
  margin-top: 15px;
  font-size: 34px;
  font-weight: 700;
  color: #222;
}

.as-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.as-box {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #fff;
  transition: .3s;
}

.as-box i {
  font-size: 30px;
  color: #d71920;
  min-width: 40px;
  text-align: center;
  transition: 0.3s;
}

.as-box:hover i {
  transform: scale(1.15);
  color: #000;
  border-left: 4px solid #d71920;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.as-box i {
  width: 45px;
  height: 45px;
  background: #d71920;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.as-box p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* Tablet */

@media(max-width:991px) {

  .as-services {
    grid-template-columns: 1fr 1fr;
  }

}

/* Mobile */

@media(max-width:767px) {

  .as-services {
    grid-template-columns: 1fr;
  }

  .as-title h2 {
    font-size: 28px;
  }

  .as-box {
    padding: 14px;
  }

}

/*================ COMPANY VIDEO =================*/

.company-work-video {

  width: 100%;
  overflow: hidden;

}

.video-banner {

  position: relative;

  width: 100%;

  height: 700px;

}

.company-video {

  width: 100%;

  height: 100%;

  object-fit: cover;

}

.video-overlay {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, .45);

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  text-align: center;

  color: #fff;

}

.video-overlay h1 {

  font-size: 60px;

  font-weight: 700;

  text-transform: uppercase;

}

.video-overlay p {

  font-size: 22px;

  margin-top: 20px;

  letter-spacing: 1px;

}

@media(max-width:992px) {

  .video-banner {

    height: 450px;

  }

  .video-overlay h1 {

    font-size: 38px;

  }

  .video-overlay p {

    font-size: 18px;

  }

}