h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Oswald", sans-serif;
  font-weight: 600;
}
p {
  font-family: "Poppins", "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}
div,
span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

html,
body {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden !important;
}

/* overlay full-screen */
.intro-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: #000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  box-sizing: border-box;
  padding: 0;
  overflow-x: hidden;
}

/* hide state */
.intro-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* wrapper must match viewport width exactly to avoid gaps */
.intro-video-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* video: full-bleed, keep skip button visible and stable */
.intro-video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
  outline: none;
  border: none;
}

/* ✅ Mobile responsive adjustments */
@media (max-width: 768px) {
  .intro-video {
    max-width: 100vw;
    max-height: 75vh; /* ⬅ reduce height for tablets & phones */
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .intro-video {
    max-width: 100vw;
    max-height: 65vh; /* ⬅ smaller phones get smaller height */
  }

  .skip-btn {
    right: 20px;
    top: 14px;
    font-size: 14px;
    padding: 5px 9px;
  }
}

/* Skip button */
.skip-btn {
  position: fixed;
  right: 30px;
  top: 30px;
  background: rgba(122, 122, 122, 0.5);
  color: #fff;
  border: 0;
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  cursor: pointer;
  font-size: 20px;
  z-index: 10000;
}

.skip-btn:active {
  transform: scale(0.98);
}

/* video section end */

/* video section end  */

/* hero slidder section start  */
.peacepage-wrapper-unique {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
  margin-top: 0;
  margin-bottom: 20px;
}

/* Slider container */
.peacebanner-slider-unique {
  width: 100%;
  height: 620px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(8, 20, 40, 0.08);
  background: #000;
}

/* Track */
.peacebanner-track-unique {
  display: flex;
  height: 100%;
  transition: transform 600ms cubic-bezier(0.22, 0.9, 0.25, 1);
  will-change: transform;
}

.peacebanner-slide-unique {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-drag: none;
}

.peacebanner-slide-unique img {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

/* Arrows */
.peacebanner-arrow-unique {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
  backdrop-filter: blur(4px);
  opacity: 0.95;
}
.peacebanner-arrow-unique:active {
  transform: translateY(-50%) scale(0.98);
}
.peacebanner-arrow-unique:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(0, 0, 0, 0.48);
}

.peacebanner-arrowleft-unique {
  left: 14px;
}
.peacebanner-arrowright-unique {
  right: 14px;
}

.peacebanner-arrow-unique svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: white;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Dots */
.peacebanner-dots-unique {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  display: flex;
  gap: 10px;
  z-index: 6;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.04);
}

.peacebanner-dot-unique {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transform: scale(1);
  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
  opacity: 0.85;
  border: none;
}
.peacebanner-dot-unique:focus {
  outline: 2px solid rgba(255, 255, 255, 0.18);
}
.peacebanner-dot-unique:hover {
  transform: scale(1.12);
  opacity: 1;
}
.peacebanner-dot-unique.active {
  width: 18px;
  height: 18px;
  background: #ffffff;
  box-shadow: 0 6px 22px rgba(2, 10, 30, 0.35);
  opacity: 1;
}

/* Responsive behavior */
@media (max-width: 1100px) {
  .peacebanner-slider-unique {
    aspect-ratio: 16 / 7;
  }
  .peacebanner-arrow-unique {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 820px) {
  .peacebanner-slider-unique {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    height: auto;
  }
  .peacebanner-arrow-unique {
    width: 44px;
    height: 44px;
  }
  .peacebanner-arrowleft-unique {
    left: 10px;
  }
  .peacebanner-arrowright-unique {
    right: 10px;
  }
  .peacebanner-dots-unique {
    bottom: 12px;
    gap: 8px;
  }
}
@media (max-width: 520px) {
  .peacebanner-slider-unique {
    aspect-ratio: 16 / 9;
    min-height: 180px;
  }
  .peacebanner-arrow-unique {
    width: 40px;
    height: 40px;
  }
  .peacebanner-dot-unique {
    width: 10px;
    height: 10px;
  }
  .peacebanner-dot-unique.active {
    width: 14px;
    height: 14px;
  }
}

/* hero slidder section end  */

/* Darshan Extrusions Pvt. Ltd. start  */
.darshan-top-section {
  margin: 0 auto;
  box-sizing: border-box;
  position: relative; /* IMPORTANT: anchor absolute child */
  background: #b31a33;
  padding: 56px 40px 0 40px; /* top padding keeps heading/text comfortable */
  color: #fff;
  overflow: visible; /* allow the absolutely positioned image to show */
}

/* text column on left */
.darshan-top-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}

/* left text block */
.darshan-top-text {
  width: 52%; /* left column width */
  min-width: 300px;
}

.darshan-top-text h1 {
  margin: 0 0 16px 0;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}

.darshan-top-text p {
  margin: 0 0 12px 0;
  color: rgb(255 255 255 / 95%);
  line-height: 1.6;
  font-size: 18px;
}

/* RIGHT: absolutely positioned white image card that overlaps bottom section by ~20% */
/* Desktop sizes */
.top-image-card {
  position: absolute;
  right: 40px; /* distance from right edge of section */
  width: 580px; /* card width on desktop */
  height: 480px; /* card height on desktop */
  bottom: -84px; /* negative offset equal to 20% of 420px => 84px */
  background: #ffffff; /* white background inside card */
  border-radius: 28px;
  border: 4px solid #b31a33; /* subtle maroon border */
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  padding: 18px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30; /* above top section and above bottom section */
  overflow: hidden;
}

/* image inside the card */
.top-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

/* Ensure top section has extra bottom padding to make room visually */
.darshan-top-section .spacer {
  height: 160px; /* ensures content + overlap area doesn't cover text */
}

/* ----------------- Responsive adjustments ----------------- */

/* medium / tablet */
@media (max-width: 1100px) {
  .darshan-top-text {
    width: 60%;
  }
  .top-image-card {
    width: 360px;
    height: 360px;
    bottom: -72px; /* 20% of 360 = 72 */
    right: 28px;
    padding: 14px;
  }
  .darshan-top-section .spacer {
    height: 140px;
  }
}

/* small tablet / large phones */
@media (max-width: 820px) {
  .darshan-top-row {
    flex-direction: column;
    gap: 18px;
  }
  .darshan-top-text {
    width: 100%;
    text-align: left;
  }
  .top-image-card {
    position: relative; /* stop absolute overlap on narrow screens: flow in doc */
    width: 100%;
    height: auto;
    bottom: 0;
    right: 0;
    margin-top: 12px;
    padding: 12px;
  }
  .top-image-card img {
    border-radius: 12px;
    height: auto;
  }
  .darshan-top-section .spacer {
    height: 28px;
  }
}

/* mobile phones: keep stacked, no overlap (more usable on small screens) */
@media (max-width: 420px) {
  .darshan-top-section {
    padding: 20px 10px 0 10px;
  }
  .darshan-top-text h1 {
    font-size: 24px;
  }
  .darshan-top-text p {
    font-size: 16px;
  }
  .top-image-card {
    border-radius: 12px;
    padding: 10px;
  }
}

/* ----------------- Bottom section placeholder so you can test overlap ----------------- */
/* Bottom section — background image fixed and overlay */
.darshan-bottom-section {
  margin: 0 auto;
  padding: 120px 40px 80px 40px; /* top padding to receive overlap */
  box-sizing: border-box;
  color: #222;
  position: relative;

  /* background image — update path if needed */
  background-image: url("/assets/images/banner/about-us-bg.jpg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* keep image fixed on scroll */
}

/* overlay so text remains readable on top of image */
.darshan-bottom-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* container immediate child should be positioned above overlay */
.darshan-bottom-section > div {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* right-side white image card border styling */
.bottom-image-placeholder {
  width: 580px;
  /* remove fixed height for better responsiveness */
  height: auto;
  border-radius: 28px;
  border: 4px solid #b31a33;
  background: #ffffff;
  box-sizing: border-box;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* image: use object-fit cover/contain depending on style */
.bottom-image-placeholder img {
  width: 100%;
  height: auto;
  max-height: 420px; /* optional cap so it doesn't become huge on large screens */
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

/* Responsive Fix for Bottom Section */
@media (max-width: 820px) {
  /* Parent flex -> vertical stack */
  .darshan-bottom-section > div {
    display: flex !important;
    flex-direction: column !important; /* vertical stack */
    align-items: center !important; /* center horizontally */
    justify-content: center !important;
    gap: 24px !important;
  }

  /* Text on top */
  .darshan-bottom-section .bottom-text {
    order: 1;
    max-width: 100% !important;
    text-align: center; /* keep left align; change to center if you prefer */
    color: #222; /* text color sits well with white overlay */
  }

  /* Image below text and full width */
  .darshan-bottom-section .bottom-image-placeholder {
    order: 2;
    width: 100% !important;
    height: auto !important;
    padding: 10px !important;
    border-radius: 16px;
  }

  .darshan-bottom-section .bottom-image-placeholder img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
    border-radius: 12px;
  }

  /* Reduce padding for mobile */
  .darshan-bottom-section {
    padding: 10px 20px 40px 20px !important;
    background-size: cover;
  }
}

/* Darshan Extrusions Pvt. Ltd. end / */

/* process section start  */
.process-container {
  background: #b01630; /* deep red like the screenshot */
  color: #ffffff;

  padding: 48px 20px;
}

.process-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.process-heading {
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  margin: 2px 0 40px;
  letter-spacing: 0.2px;
  color: #ffffff;
}

/* --- Grid of four cards --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}

.process-card {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers image and text horizontally */
}

/* white rounded "image" area */
.process-image {
  width: 100%;
  max-width: 340px; /* controls card width as in screenshot */
  height: 320px; /* taller card similar to screenshot */
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Title & description (centered under each image) */
.process-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  margin: 6px 0 8px;
  color: #ffffff;
  text-align: center;
}

.process-desc {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.45;
  max-width: 260px;
  text-align: center; /* centered text under image as requested */
  margin: 0 auto;
}

/* small screens: 2 columns */
@media (max-width: 1000px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-image {
    max-width: 300px;
    height: 260px;
  }
}

/* mobile: 1 column stacked with larger visuals */
@media (max-width: 520px) {
  .process-heading {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .process-card {
    align-items: center;
  }

  .process-image {
    max-width: 86%; /* narrower than full width to mimic screenshot spacing */
    height: 300px;
    border-radius: 20px;
  }

  .process-desc {
    max-width: 92%;
    font-size: 14px;
  }
  .process-container {
    padding: 18px 20px;
  }
}

/* optional micro-adjust to make the layout closer to the example */
.process-spacer {
  height: 6px;
}
/* process section end  */

/* products section start  */
.products-section {
  margin: 24px auto;
  padding: 0 28px;
  box-sizing: border-box;
}
.products-heading {
  color: #b31a33;
  font-size: 32px;
  font-weight: 800;
  margin: 6px 0 6px;
}
.products-tabs {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 10px 0 26px;
  font-size: 22px;
}
.products-tab {
  color: #b31a33;
  cursor: pointer;
  text-decoration: none;
  padding: 6px 0;
  font-weight: 600;
}
.products-separator {
  color: #8a8a8a;
  font-weight: 500;
  margin-right: 6px;
  margin-left: 6px;
}
.products-tab.inactive {
  color: #7a7a7a;
  font-weight: 600;
} /* hero area (cards on white background, page is white like figma) */
.products-section {
  margin: 24px auto;
  padding: 0 20px; /* page-level padding; safe */
}

.heading {
  color: #b31a33;
  font-size: 32px;
  font-weight: 800;

  margin-bottom: 16px;
}

/* Desktop grid (unchanged) */
.products-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1350px;
  margin: 0 auto;
  align-items: start;
}

.product-card {
  background: #ececed;
  border-radius: 28px;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
}

/* tablet */
@media (max-width: 820px) {
  .heading {
    font-size: 26px;
    text-align: center;
  }
  .products-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .product-card {
    height: 280px;
    border-radius: 22px;
  }
}

/* ===== MOBILE: single-item slider (fixed so only 1 card visible) ===== */
@media (max-width: 480px) {
  .products-section {
    padding: 0 12px;
    margin: 16px auto;
  }
  .heading {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .products-slider {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
  }

  /* Use flex with no gap so slides occupy full width */
  .products-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 0; /* important: no gap */
    transition: transform 0.55s cubic-bezier(0.22, 0.9, 0.35, 1);
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .product-card {
    flex: 0 0 100%; /* exactly 100% width per slide */
    min-width: 100%;
    height: 220px;
    border-radius: 18px;
    margin: 0; /* ensure no extra margin causing partial visibility */
  }

  .product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills card, adjust to contain if you prefer no cropping */
  }

  /* nav buttons (mobile only) */
  .products-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  }
  .products-nav.prev {
    left: 8px;
  }
  .products-nav.next {
    right: 8px;
  }
  .products-nav:hover {
    background: #b31a33;
  }
}

/* hide nav on desktop/tablet */
@media (min-width: 481px) {
  .products-nav {
    display: none !important;
  }
}
/* Product name text styling */
.product-card {
  position: relative;
}

.product-name {
  position: absolute;
  bottom: -10px; /* image ke bottom se thoda upar */
  left: 50%;
  transform: translateX(-50%);
  color: #fff; /* white text for contrast */
  background: rgba(0, 0, 0, 0.6); /* semi-transparent background */
  padding: 5px 20px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

/* Responsive text adjustments */
@media (max-width: 768px) {
  .product-name {
    font-size: 16px;
    padding: 4px 10px;
  }
}

@media (max-width: 480px) {
  .product-name {
    font-size: 16px;
    padding: 3px 8px;
  }
}

/* products section end  */

/* why choose section start  */
.cu-section {
  padding: 10px 0px;

  color: #4a4a4a;
}

.cu-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 390px 1fr; /* left large heading + right content */
  gap: 40px;
  align-items: stretch;
  min-height: 520px;
}

/* LEFT: Big Heading */
.cu-left {
  display: flex;
  justify-content: flex-start;
  padding-left: 8px;
}

.cu-left-heading {
  font-size: 60px; /* very large like Figma */
  color: #a5112c;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
  white-space: pre-line; /* allows manual line breaks */
}

/* RIGHT: grid of 2x2 with center dividing lines */
.cu-right {
  position: relative; /* for pseudo-elements (center lines) */
  padding: 30px 0 0 0;
}

/* center dividing lines: vertical and horizontal crossing the right area */
.cu-right::before,
.cu-right::after {
  content: "";
  position: absolute;
  background: #c3c1c1; /* subtle maroon-ish line similar to screenshot */
  z-index: 1;
}

/* vertical center line */
.cu-right::before {
  width: 2px;
  top: 10px;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* horizontal center line */
.cu-right::after {
  height: 2px;
  left: 10px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* inner grid that sits above the lines (so text not overlapped by lines) */
.cu-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 40px 40px;
  position: relative;
  z-index: 2; /* above the lines so borders appear behind text */
  padding: 0 20px;
}

.cu-box {
  padding: 20px 10px 20px 10px;
  min-height: 180px;
  box-sizing: border-box;
  /* visual offset so text doesn't touch center lines */
}
.cu-box--top-left {
  padding-right: 30px;
}
.cu-box--top-right {
  padding-left: 30px;
}
.cu-box--bottom-left {
  padding-right: 30px;
}
.cu-box--bottom-right {
  padding-left: 30px;
}

.cu-subtitle {
  margin: 0 0 14px 0;
  font-weight: 700;
  font-size: 16px;
  color: #3a3a3a;
  line-height: 1.2;
}

.cu-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #606060;
}

/* Outer border lines around the entire right area (optional to match screenshot) */
.cu-right-border {
  position: absolute;
  inset: 0;
  border-left: none; /* vertical center is already drawn */
  border-top: none;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .cu-wrapper {
    grid-template-columns: 320px 1fr;
  }
  .cu-left-heading {
    font-size: 90px;
  }
}

@media (max-width: 900px) {
  /* stack: heading on top, grid below */
  .cu-wrapper {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 24px;
  }

  .cu-left {
    padding-left: 0;
    justify-content: center;
  }

  .cu-left-heading {
    font-size: 56px;
    text-align: center;
  }

  .cu-right {
    padding-top: 10px;
  }

  /* hide center crossing lines on small screens and instead use box borders */
  .cu-right::before,
  .cu-right::after {
    display: none;
  }

  .cu-right-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .cu-box {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .cu-left-heading {
    font-size: 44px;
  }
  .cu-subtitle {
    font-size: 22px;
  }
  .cu-text {
    font-size: 14px;
  }
}

/* wht choose section end  */

/* indusrty served section start  */
.industries-7 {
  color: #222222;
  max-width: 1480px; /* increased a bit to fit stricter fixed columns */
  margin: 24px auto;
  padding: 12px 28px 0px;
  box-sizing: border-box;
}

.heading {
  color: #b31a33;
  font-size: 32px;
  font-weight: 800;
  margin: 6px 0 22px;
}

/* Desktop: fixed column widths for pixel-accurate placement */
.industries-7 .grid {
  display: grid;
  grid-template-columns: 460px 300px 300px 300px; /* strict widths */
  gap: 22px; /* slightly tighter gap */
  align-items: stretch;

  justify-content: center; /* center the whole layout */
}

/* Desktop placement (columns + row spans) */
.i-big {
  grid-column: 1 / span 1;
  grid-row: 1 / span 3;
} /* large left occupies column 1, 3 rows */
.i-a {
  grid-column: 2 / span 1;
  grid-row: 1 / span 1;
}
.i-b {
  grid-column: 3 / span 1;
  grid-row: 1 / span 1;
}
.i-c {
  grid-column: 4 / span 1;
  grid-row: 1 / span 1;
}
.i-right {
  grid-column: 5 / span 1;
  grid-row: 1 / span 3;
} /* tall right */
.i-d {
  grid-column: 2 / span 1;
  grid-row: 2 / span 1;
}
.i-wide {
  grid-column: 3 / span 2;
  grid-row: 2 / span 1;
} /* wide bottom spans columns 3 & 4 */

/* Generic card */
.industry-card {
  background: #e9eaeb;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.industry-card img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Label bar — moved slightly lower (90%) for better match */
.label {
  display: none;
  position: absolute;
  left: 0px;
  top: 90%;
  transform: translateY(-50%);
  background: #b31a33;
  height: 28px;
  width: 180px;
  border-radius: 2px;
}
.label.short {
  width: 140px;
}
.label.medium {
  width: 160px;
}
.label.long {
  width: 200px;
}

/* Height specifics tuned to match screenshot */
.i-big {
  height: 620px;
} /* larger than before */
/* .i-right {
  height: 580px;
} */
.i-a,
.i-b,
.i-c,
.i-d {
  height: 300px;
}
.i-wide {
  height: 300px;
}

/* ===== RESPONSIVE ===== */

/* Narrow desktop / smaller screens: scale to 6 columns with proportional widths */
@media (max-width: 1250px) {
  .industries-7 .grid {
    grid-template-columns: 410px 210px 210px 210px 230px;
    gap: 20px;
  }
  .i-big {
    min-height: 520px;
  }
  .i-right {
    min-height: 520px;
  }
  .i-a,
  .i-b,
  .i-c,
  .i-d {
    min-height: 220px;
  }
  .i-wide {
    min-height: 260px;
  }
  .label {
    left: 16px;
    top: 90%;
    height: 26px;
    transform: translateY(-50%);
  }
}

/* Tablet: 2-column composition, keep big and right prominent */
@media (max-width: 900px) {
  .industries-7 .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .i-big {
    grid-column: 1 / span 2;
    grid-row: auto;
    min-height: 420px;
  }
  .i-a {
    grid-column: 1 / span 1;
  }
  .i-b {
    grid-column: 2 / span 1;
  }
  .i-c {
    grid-column: 1 / span 2;
  }
  .i-d {
    grid-column: 1 / span 1;
  }
  .i-wide {
    grid-column: 1 / span 2;
    min-height: 240px;
  }
  .i-right {
    grid-column: 1 / span 2;
    min-height: 420px;
  }
  .label {
    left: 16px;
    top: 90%;
    height: 26px;
    transform: translateY(-50%);
  }
}

/* Mobile single column (logical reading order) */
@media (max-width: 420px) {
  .industries-7 .grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .i-big,
  .i-right {
    min-height: 260px;
    border-radius: 18px;
  }
  .industry-card {
    border-radius: 18px;
    min-height: 140px;
  }
  .label {
    left: 14px;
    top: 90%;
    height: 22px;
    width: 140px;
    transform: translateY(-50%);
  }
  .label.long {
    width: 160px;
  }
  .label.short {
    width: 120px;
  }
}

/* ensure images don't cause overflow */
.industry-card img {
  display: block;
  max-width: 100%;
  height: 100%;
}
.industry-card a {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---------- Fix overlapping on narrow screens ---------- */

/* Make sure the grid flows naturally on narrow widths */
@media (max-width: 900px) {
  .industries-7 .grid {
    /* Force a clean row-based flow (tablet + mobile) */
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: auto !important;
    grid-auto-flow: row !important;
  }

  /* Reset any desktop-specific placement so items stack normally */
  .industries-7 .grid > .i-big,
  .industries-7 .grid > .i-a,
  .industries-7 .grid > .i-b,
  .industries-7 .grid > .i-c,
  .industries-7 .grid > .i-right,
  .industries-7 .grid > .i-d,
  .industries-7 .grid > .i-wide {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: auto !important;
    height: auto !important;
  }

  /* Make cards flow normally and avoid absolute/stacking issues */
  .industry-card {
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 140px; /* keep a reasonable card height */
    border-radius: 18px;
  }

  /* Ensure images size proportionally and do not stretch to 100% height */
  .industry-card img {
    display: block;
    width: 100% !important;
    height: auto !important; /* IMPORTANT: let height be automatic */
    max-height: 420px; /* optional cap — adjust if needed */
  }

  /* Tighter gaps on smaller screens */
  .industries-7 .grid {
    gap: 14px !important;
  }

  /* Specific mobile one-column layout */
  @media (max-width: 420px) {
    .industries-7 .grid {
      grid-template-columns: 1fr !important;
      gap: 12px !important;
    }
    .industry-card {
      min-height: 120px;
      border-radius: 14px;
    }
    .industry-card img {
      max-height: none;
    }
  }
}

/* Extra safeguard: ensure images never overflow parent */
.industry-card img {
  box-sizing: border-box;
  max-width: 100%;
}

/* Optional: if any labels are absolutely positioned and cause overlap, reduce z-index */
.label {
  z-index: 2;
}
.industry-card > a,
.industry-card > img {
  z-index: 1;
}

/* industry served section end  */
/* arrow */

.scroll-top {
  z-index: 100;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  /* background: #e10d25;
  color: white; */
  /* border: none;
  border-radius: 50%; */
  font-size: 24px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
/* 
.scroll-top:hover {
  background: #0056b3;
} */

.scroll-top.show {
  display: flex;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating Icons Styling */
.floating-icons {
  position: fixed;
  right: 15px;
  top: 70%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

/* Common icon style */
.floating-icons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.floating-icons a:hover {
  transform: scale(1.1);
}

.phone-icon {
  background-color: #4285f4;
}

.whatsapp-icon {
  background-color: #25d366;
}

/* Responsive visibility */
@media (min-width: 768px) {
  .phone-icon {
    display: none;
  }
}

a .fab.fa-whatsapp {
  color: #ffffff;
  font-size: 24px;
}

/* whatsapp and phone icon section end  */

/* home about botom section animation css start  */

.darshan-bottom-section .bottom-text h2,
.darshan-bottom-section .bottom-text p {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 800ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: transform, opacity;
}

/* image placeholder initial (slide from right) */
.darshan-bottom-section .bottom-image-placeholder {
  opacity: 0;
  transform: translateX(60px) rotate(-0.8deg);
  transition: opacity 1000ms cubic-bezier(0.16, 0.98, 0.49, 1),
    transform 1000ms cubic-bezier(0.16, 0.98, 0.49, 1);
  will-change: transform, opacity;
}

/* in-view state - trigger reveal */
.darshan-bottom-section.in-view .bottom-text h2,
.darshan-bottom-section.in-view .bottom-text p {
  opacity: 1;
  transform: translateY(0);
}

.darshan-bottom-section.in-view .bottom-image-placeholder {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

/* Add attractive 4-side shadow / glow around images (both top & bottom) */
/* Use multiple layered shadows + subtle outer glow */
.top-image-card,
.bottom-image-placeholder,
.process-image {
  /* keep existing border-radius etc; just add layered shadow */
  box-shadow: 0 10px 30px rgba(11, 24, 40, 0.12),
    /* soft depth shadow */ 0 2px 8px rgba(11, 24, 40, 0.06),
    /* smaller contact shadow */ 0 0 24px rgba(179, 26, 51, 0.08); /* colored ambient glow matching brand maroon */
  transition: box-shadow 400ms ease, transform 350ms ease;
}

/* subtle hover lift for clickable/interactive images */
.top-image-card:hover,
.bottom-image-placeholder:hover,
.process-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(11, 24, 40, 0.16),
    0 6px 18px rgba(11, 24, 40, 0.08), 0 0 36px rgba(179, 26, 51, 0.1);
}

/* ensure bottom-image-placeholder inner img uses nice rounding and covers area */
.bottom-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  transition: transform 6s linear; /* for subtle parallax movement if JS applies */
}

/* responsive tweaks - keep animation but softer on small screens */
@media (max-width: 820px) {
  .darshan-bottom-section .bottom-text h2,
  .darshan-bottom-section .bottom-text p,
  .darshan-bottom-section .bottom-image-placeholder {
    transition-duration: 600ms;
  }
  .top-image-card,
  .bottom-image-placeholder,
  .process-image {
    box-shadow: 0 8px 22px rgba(11, 24, 40, 0.1);
  }
}

/* home about bottom animation css end  */

/* process animation section start  */

.process-card,
.process-image,
.process-title,
.process-desc {
  opacity: 0;
  transform: translateY(28px) scale(0.995);
  transition: opacity 700ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: transform, opacity;
}

/* Slight image pop effect separate (image container) */
.process-image {
  transform-origin: center;
}

/* Heading underline (hidden until in-view) */
.process-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

/* underline element using ::after */
.process-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: 6px; /* thickness of the decorative border */
  width: 0%;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.6)
  );
  box-shadow: 0 6px 18px rgba(11, 24, 40, 0.12),
    0 0 26px rgba(179, 26, 51, 0.08);
  transition: width 900ms cubic-bezier(0.16, 0.98, 0.49, 1), opacity 600ms;
  opacity: 0.95;
}

/* in-view: reveal underline fully */
.process-container.in-view .process-heading::after {
  width: 60%; /* adjust width as desired (60% of heading width) */
}

/* when section is in view, reveal cards with stagger handled by JS */
.process-container.in-view .process-card,
.process-container.in-view .process-image,
.process-container.in-view .process-title,
.process-container.in-view .process-desc {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* subtle hover lift on each card for interactivity */
.process-card:hover .process-image {
  transform: translateY(-6px) scale(1.01);
  transition: transform 400ms ease;
}

/* ensure images keep smooth long transform for parallax if applied */
.process-image img {
  transition: transform 6s linear;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .process-card,
  .process-image,
  .process-title,
  .process-desc,
  .process-heading::after {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* process aniamtion section end  */

/* products animation section start  */
.product-card {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 800ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 800ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: transform, opacity;
}

/* When section is in view, activate animation */
.products-section.in-view .product-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Direction-based entry (we’ll add via JS) */
.product-card.left {
  transform: translateX(-80px);
}
.product-card.right {
  transform: translateX(80px);
}
.product-card.center {
  transform: translateY(60px) scale(0.95);
}

/* When in view, they all come to neutral position */
.products-section.in-view .product-card.left,
.products-section.in-view .product-card.right,
.products-section.in-view .product-card.center {
  transform: translateX(0) translateY(0) scale(1);
  opacity: 1;
}

/* Slight hover effect for better interactivity */
.product-card:hover {
  transform: translateY(-6px) scale(1.02);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 14px 34px rgba(11, 24, 40, 0.12);
}

/* Responsive fine-tuning */
@media (max-width: 820px) {
  .product-card {
    transform: translateY(30px);
  }
  .product-card.left,
  .product-card.right {
    transform: translateY(30px);
  }
}

/* products animation section edn  */

/* products 2 animation  section start  */
.industry-card {
  opacity: 0;
  transition: opacity 800ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 900ms cubic-bezier(0.16, 0.98, 0.49, 1), box-shadow 300ms ease;
  will-change: transform, opacity;
}

/* directional presets (initial offscreen directions) */
.industry-card.left {
  transform: translateX(-90px) translateY(0) scale(0.995);
}
.industry-card.right {
  transform: translateX(90px) translateY(0) scale(0.995);
}
.industry-card.center {
  transform: translateY(60px) scale(0.96);
}

/* when section is in view, reset transform + fade in */
.industries-7.in-view .industry-card {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

/* subtle layered shadow and hover lift */
.industry-card {
  box-shadow: 0 8px 28px rgba(11, 24, 40, 0.08),
    0 2px 8px rgba(11, 24, 40, 0.04);
  border-radius: 18px;
  overflow: hidden;
}
.industry-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 28px 60px rgba(11, 24, 40, 0.14),
    0 8px 26px rgba(11, 24, 40, 0.06);
}

/* image smoothing for parallax */
.industry-card img {
  transition: transform 6s linear;
  display: block;
  width: 100%;
  height: 100%;
}

/* responsive softening */
@media (max-width: 900px) {
  .industry-card.left,
  .industry-card.right,
  .industry-card.center {
    transform: translateY(36px) scale(0.98);
  }
  .industries-7.in-view .industry-card {
    transform: translateY(0) scale(1);
  }
}

/* prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .industry-card,
  .industry-card img {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* products 2 animation  section end  */

/* certification sectiion start  */
.Certificates-Accreditations-wrapper {
  background-color: #b02036;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  margin-bottom: 20px;
}

.Certificates-Accreditations-container {
  width: 95%;
  max-width: 1200px;
  position: relative;
  overflow: hidden; /* clip overflowed content */
  border-radius: 8px;
  padding: 18px 22px; /* internal spacing so slides never touch edges */
  box-sizing: border-box;
  background: transparent;
}

.Certificates-Accreditations-title {
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* track uses flex and gap; width of each slide is set via JS for pixel-perfect layout */
.Certificates-Accreditations-track {
  display: flex;
  gap: 20px; /* JS will account for this gap when computing widths */
  transition: transform 0.55s cubic-bezier(0.22, 0.9, 0.26, 1);
  will-change: transform;
  align-items: stretch;
  padding-bottom: 6px; /* small padding so box-shadows don't get cut */
}

.Certificates-Accreditations-slide {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(8, 20, 40, 0.08);
  padding: 22px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Certificates-Accreditations-slide img {
  max-width: 100%;
  max-height: 160px;

  display: block;
}

/* Nav buttons */
.Certificates-Accreditations-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: #b02036;
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 50;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.Certificates-Accreditations-prev {
  left: 12px;
}
.Certificates-Accreditations-next {
  right: 12px;
}

.Certificates-Accreditations-btn:active {
  transform: translateY(-50%) scale(0.98);
}

/* Dots */
.Certificates-Accreditations-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.Certificates-Accreditations-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.9;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.Certificates-Accreditations-dot.active {
  background: #0b0b0b;
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .Certificates-Accreditations-container {
    padding: 18px 12px;
  }
  .Certificates-Accreditations-btn {
    width: 38px;
    height: 38px;
  }
  .Certificates-Accreditations-slide img {
    max-height: 160px;
  }
}

/* certification sectiion end  */

/* why choose animaton section start  */
.cu-box {
  opacity: 0;
  transform: translateY(22px) scale(0.995);
  transition: opacity 700ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: transform, opacity;
}

/* center lines (initial color already in your CSS) - add transition */
.cu-right::before,
.cu-right::after {
  transition: background-color 900ms cubic-bezier(0.16, 0.98, 0.49, 1),
    box-shadow 900ms cubic-bezier(0.16, 0.98, 0.49, 1);
  /* keep z-index as before */
}

/* in-view state: dark maroon lines + reveal boxes */
.cu-section.in-view .cu-right::before,
.cu-section.in-view .cu-right::after {
  background-color: #a5112c; /* dark maroon (target color) */
  box-shadow: 0 8px 22px rgba(165, 17, 44, 0.12),
    0 0 24px rgba(165, 17, 44, 0.06);
}

/* when in-view, boxes come up */
.cu-section.in-view .cu-box {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* stagger helper: JS will set inline transition-delay on each .cu-box */

/* subtle highlight on left big heading when in view */
.cu-section.in-view .cu-left-heading {
  transform: translateX(0);
  transition: transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

/* initial small shift for left heading (so it slides in subtly) */
.cu-left-heading {
  transform: translateX(-8px);
  will-change: transform;
}

/* small decorative accent: tiny glow when lines darken */
.cu-section.in-view .cu-right::before,
.cu-section.in-view .cu-right::after {
  filter: drop-shadow(0 6px 16px rgba(165, 17, 44, 0.06));
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cu-box,
  .cu-right::before,
  .cu-right::after,
  .cu-left-heading {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* add this near your existing .cu-box / .cu-section.in-view styles */
.cu-box {
  opacity: 0;
  transform: translateY(22px) scale(0.995);
  transition: opacity 700ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: transform, opacity;
}

/* per-box reveal (used by mobile observer) */
.cu-box.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ensure desktop section-level still works (no change) */
.cu-section.in-view .cu-box {
  /* fallback if you keep section-level in-view for desktop */
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* why choose animation section edn  */
/* scrollbar animation section start  */
.scroll-section-wrapper_2025 {
  display: flex;
  gap: 40px;
  padding: 30px 5%;
  align-items: flex-start;
  position: relative;
  flex-wrap: wrap;
}

.scroll-fixed-text_2025 {
  flex: 1;
  position: sticky;
  top: 100px;
}

.scroll-fixed-text_2025 h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 10px;
}

.scroll-fixed-text_2025 h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #970101;
}

.scroll-fixed-text_2025 p {
  font-size: 16px;
  color: #2d2c2c;
}

.scroll-cards-container_2025 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.scroll-card-box_2025 {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.scroll-card-icon_2025 {
  width: 60px;
  height: 60px;
  background: #e0e0e0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.scroll-card-icon_2025 img {
  width: 30px;
  height: 30px;
}

.scroll-card-content_2025 h2 {
  font-size: 20px;
  margin: 0 0 10px;
  color: #111;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
  display: inline-block;
}

.scroll-card-content_2025 p {
  margin: 0;
  font-size: 15px;
  color: #666;
}

/* ACTIVE STATE */
.scroll-card-box_2025.active {
  border-color: #00bcd4;
}

.scroll-card-box_2025.active .scroll-card-icon_2025 {
  background-color: #00bcd4;
  border-color: #00bcd4;
}

.scroll-card-box_2025.active .scroll-card-content_2025 h2 {
  color: #ffffff;
  border-color: #ffffff;
}
.scroll-card-box_2025.active {
  background-color: #7d0b00;
}
.scroll-card-box_2025.active .scroll-card-content_2025 p {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .scroll-section-wrapper_2025 {
    flex-direction: column;
  }

  .scroll-fixed-text_2025 {
    position: static;
  }

  .scroll-fixed-text_2025 h1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .scroll-section-wrapper_2025 {
    flex-direction: column;
  }

  .scroll-fixed-text_2025 {
    position: static;
  }

  .scroll-fixed-text_2025 h1 {
    font-size: 28px;
  }

  /* 👇 New Code for Mobile Layout of Each Card */
  .scroll-card-box_2025 {
    flex-direction: column; /* logo top, text bottom */
    text-align: center; /* center align for better design */
  }

  .scroll-card-icon_2025 {
    margin-bottom: 15px; /* space between logo and text */
  }

  .scroll-card-content_2025 h2 {
    font-size: 18px;
  }

  .scroll-card-content_2025 p {
    font-size: 14px;
  }
}

/* scrollbar animation section end  */

/* form section start  */
.darshan-container {
  display: grid;
  place-items: center;
  padding: 20px 10px;
  background: linear-gradient(
    180deg,
    rgba(239, 239, 239, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.darshan-card {
  width: 100%;
  max-width: 800px;
  border-radius: 18px;
  padding: 5px;
  box-shadow: 0 18px 50px rgba(21, 21, 21, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(250, 249, 249, 0.98)
  );
  border: 1px solid rgba(179, 26, 51, 0.06);
  overflow: hidden;
}

.darshan-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

/* .darshan-badge {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(179, 26, 51, 1),
    rgba(140, 18, 40, 1)
  );
  box-shadow: 0 8px 28px rgba(179, 26, 51, 0.14);
} */

.darshan-title {
  font-size: 20px;
  font-weight: 700;
  color: rgb(38, 38, 38);
  line-height: 1.05;
}

.darshan-sub {
  color: #6b6b6b;
  font-size: 13px;
  margin-top: 4px;
}

.darshan-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

.darshan-field {
  position: relative;
  display: block;
}

.darshan-input,
.darshan-textarea {
  width: 92%;
  padding: 16px 14px 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(20, 20, 20, 0.06);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  font-size: 14px;
  color: #222;
  outline: none;
  transition: box-shadow 260ms ease, transform 260ms ease,
    border-color 260ms ease;
  box-shadow: 0 6px 20px rgba(18, 18, 18, 0.03);
}
.darshan-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; /* increased gap between Email and Mobile */
  width: 96%;
}

/* Optional — add a bit of space between inputs inside the row if needed */
.darshan-row-two .darshan-field {
  margin-bottom: 4px;
}

.darshan-input:focus,
.darshan-textarea:focus {
  border-color: rgba(179, 26, 51, 0.9);
  box-shadow: 0 10px 30px rgba(179, 26, 51, 0.08);
  transform: translateY(-3px);
}

.darshan-label {
  position: absolute;
  left: 16px;
  top: 12px;
  font-size: 12px;
  color: rgba(40, 40, 40, 0.55);
  pointer-events: none;
  transition: transform 240ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 160ms ease,
    font-size 240ms ease;
  transform-origin: left top;
}

.darshan-field.filled .darshan-label,
.darshan-input:focus + .darshan-label,
.darshan-textarea:focus + .darshan-label {
  transform: translateY(-14px) scale(0.92);
  opacity: 1;
  font-size: 11px;
  color: rgba(40, 40, 40, 0.75);
}

.darshan-textarea {
  resize: vertical;
  padding-top: 22px;
}

.darshan-actions {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.darshan-btn {
  background: linear-gradient(90deg, rgb(179, 26, 51), rgb(140, 18, 40));
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(179, 26, 51, 0.12);
  transition: transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 220ms ease;
}

.darshan-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(179, 26, 51, 0.16);
}

@media (max-width: 720px) {
  .darshan-row-two {
    grid-template-columns: 1fr;
  }
  .darshan-card {
    max-width: 320px;
    .darshan-badge img {
      display: none;
    }
  }
}

.darshan-badge img {
  width: 300px;
  height: 80px;
  object-fit: contain;
}

/* form section end   */

.process-card .process-title {
  font-size: 20px;
}

.process-card .process-desc {
  font-size: 16px;
}
