@font-face {
  font-family: "Designer";
  src: url("../fonts/designer_Heading/Designer.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-font-family/Geist-Regular-BF6569491e3eff1.otf")
    format("opentype");
  src: url("../fonts/geist-font-family/Geist-Thin-BF6569491e12aff.otf")
    format("opentype");
  src: url("../fonts/geist-font-family/Geist-Light-BF6569491dc9c01.otf")
    format("opentype");
  src: url("../fonts/geist-font-family/Geist-Bold-BF6569491da5a14.otf,")
    format("opentype");
  font-weight: bolder;
  font-style: normal;
}

.bannerheading {
  font-family: "Designer", sans-serif;
  font-weight: 600; /* Match the font weight in @font-face */
  text-align: center;
  /* background: linear-gradient(90deg, #9ef441, #6cb8ff); 
	-webkit-text-fill-color: transparent; Makes the text transparent to show the gradient */
  /* font-size: 2rem; */
  line-height: 50px;
  letter-spacing: 2px;

  font-size: 45px;
  display: inline-block;
  text-shadow:
    0px 10px 20px rgba(0, 0, 0, 0.5),
    0px 4px 6px rgba(255, 255, 255, 0.1),
    0px 0px 15px 3px rgba(108, 184, 255, 0.5);
  animation: glowPulse 2s ease-in-out infinite;
  color: #082741;
}
body {
  font-family: "Geist", sans-serif;
  background-color: #eef3f6 !important;
}
.bannersubheading {
  color: #f9f6f6 !important;
  font-size: 16px;
}
/*  */

/* Hover state to make it interactive */
.gradient-btn:hover {
  filter: brightness(1.05); /* Slightly brightens the colors */
  transform: translateY(-2px); /* Lifts the button slightly */
  background: #0066b3;
  color: #fff !important;
}

/* Active state for the 'pressed' feel */
.gradient-btn:active {
  transform: translateY(0);
  font-weight: bolder;
}
.titlt-btn:hover {
  background: #dddddd36;
  border: 1px solid #fff;
  border-radius: 25px;
  padding: 12px 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: none;
  text-transform: uppercase;
  /* transition: transform 0.2s, filter 0.2s; */
  padding: 5px 15px;
}
.startnowsection {
  background: url("../svg/index/StartNowbanner.gif") no-repeat center center;
  background-size: cover;
  min-height: 450px;

  /* Centering Logic */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertical centering */
  align-items: center; /* Horizontal centering */

  color: white;
  padding: 20px; /* Added padding so text doesn't touch edges on mobile */
  border-radius: 15px;
  text-align: center;
}

.titlt-btn {
  background: #dddddd36;
  border: 1px solid #fff;
  border-radius: 25px;
  padding: 12px 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: none;
  text-transform: uppercase;
  /* transition: transform 0.2s, filter 0.2s; */
  padding: 5px 15px;
}
.border-radius-15 {
  border-radius: 15px !important;
}
.card {
  border-radius: 15px;
  border: none;
}
.cardtitle {
  color: #082741 !important;
  font-weight: bolder;
  font-size: 1.6rem !important;
}
.cardtext {
  color: #4d5663 !important;
  font-size: 18px;
}
.mainlist {
  font-size: 1.3rem !important;
  font-weight: bold;
  /* font-size: 1.35rem !important;
  font-weight: 500; */
}
.listimg {
  list-style: none; /* Hide the original bullet */
  padding-left: 0;
}

.listimg li {
  position: relative;
  padding-left: 30px;
  line-height: 40px;
}

.listimg li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* Centers the tick vertically */

  /* Set your desired size here */
  width: 20px;
  height: 20px;

  background-image: url("../svg/index/Tick.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.h-80 {
  height: 80% !important;
}

:root {
  --gap: 3rem; /* Control spacing here */
  --duration: 20s;
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%; /* Ensures 4 items fill the container width */
  animation: scroll-infinite var(--duration) linear infinite;
  -webkit-text-fill-color: #eef3f6;
  -webkit-text-stroke-width: 0.1px;
  -webkit-text-stroke-color: #082741;
}

@keyframes scroll-infinite {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/* Pause when user hovers */
.marquee:hover .marquee__group {
  animation-play-state: paused;
}
.marquee-icon {
  width: 40px; /* Set fixed size for source icons */
  height: 40px;
  margin-left: 35px;
  object-fit: contain;
  flex-shrink: 0; /* Prevents image from shrinking on small screens */
}
/* start marquee in mobile */

/* Animation remains the same, but uses the mobile gap */
@keyframes scroll-infinite {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 1.5rem));
  }
}

/* end marquee in mobile */

/* start for footer */
.custom-footer {
  /* Set the SVG background to cover and center properly */
  background-image: url("../svg/footer/Background.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 60px 0;
  position: relative; /* Useful for nested absolute elements */
}

/* Ensures logos don't get too large on big screens or too small on mobile */
.w-75 {
  width: 75% !important;
}

/* Link Styling */
.primary-text {
  color: #4d5663; /* Your specific slate-grey color */
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: inline-block;
  text-decoration: none;
}

/* Hover state: Helps user experience since #4D5663 is dark */
.primary-text:hover {
  color: #0066b3 !important;
  transform: translateX(5px);
}

/* Header styling inside footer */
.cardtitle {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

/* Responsive adjustment for images on mobile */
@media (max-width: 767px) {
  .copyright-text {
    font-size: 0.75rem; /* Prevents text from looking too bulky on small screens */
  }
  .marquee {
    padding: 20px 0; /* Creates space so the shadow isn't clipped */
    gap: 1.5rem; /* Gap between the cards */
  }

  .bannerheading {
    /* white-space: nowrap; */
    flex-shrink: 0;

    /* Card Styling */
    /* background: #ffffff; */
    padding: 12px 20px;
    border-radius: 10px;

    /* Subtle Box Shadow */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

    /* Typography */
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;

    /* Border (optional, for extra definition) */
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* Adjust animation for the new gap */
  .marquee__group {
    gap: 1.5rem;
    animation: scroll-infinite 12s linear infinite; /* Faster on mobile for better UX */
  }
  .article-title {
    font-size: 1rem !important;
    font-weight: 700;
    color: #082741;
  }
  .w-75 {
    width: 60% !important; /* Slightly smaller logos on mobile */
    margin-bottom: 20px;
  }
  .custom-footer {
    padding: 40px 0;
    text-align: center; /* Center-align content for mobile UX */
  }
  .nav.flex-column {
    align-items: center; /* Center-align list items on mobile */
  }
}
.footertitle-highlighted {
  background-color: transparent; /* Yellow highlight color */
  padding: 2px 5px; /* Adjust padding to wrap the text/line */
  display: inline;
}
.footertitle::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 50px;
  background-color: #082741;
  margin-top: 34px;
}
.footertitle {
  color: #082741;
}
.isoimg {
  width: 20%;
  border-right: solid 2px #08274170;
  padding-right: 10px;
}
.bottom-bar {
  /* This is the container around your copyright text */
  background: linear-gradient(to top, #55c2a2f7, #0066b3, #0066b3);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 15px 0; /* Vertical spacing */
  color: #ffffff;
  margin-bottom: 10px;
}
/* 1. Add space for the emoji and define the marker */
.footerlist {
  list-style: none;
  padding-left: 1.5rem; /* Room for the emoji */
  position: relative;
}

/* 2. Insert the emoji using the ::before pseudo-element */
.footerlist {
  position: relative;
  padding-left: 28px; /* Space for the SVG icon */
  list-style: none;
}

.footerlist::before {
  content: ""; /* Must be empty to show background-image */
  position: absolute;
  left: 10px;
  top: 12%;
  /*transform: translateY(-50%);  Perfect middle alignment */

  /* Use your local source path */
  background-image: url("../svg/footer/Footerarrow.svg");
  background-repeat: no-repeat;
  background-size: contain;

  /* Set explicit dimensions for the SVG icon */
  width: 18px;
  height: 18px;

  /* Smooth movement on hover if you decide to add it */
  transition: transform 0.2s ease-in-out;
}

/* Optional: Subtle animation on hover */
/* .footerlist:hover::before {
  transform: translateY(-50%) translateX(4px);
} */

/* 3. Optional: Subtle hover effect for the emoji */
.footerlist:hover::before {
  transform: translateX(4px); /* Moves the hand slightly right on hover */
  transition: transform 0.2s ease-in-out;
}
a.btn.btn-light.rounded-circle {
  height: 55px;
}
.pt5 {
  padding-top: 5px;
}

.copyright-text {
  font-size: 0.85rem;
  opacity: 0.9;
}

.social-btn {
  background: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
  background: #f8f9fa;
}

.social-btn img {
  width: 18px;
  height: 18px;
}

/* end for footer */

/* Base styling for the button container */
.gradient-btn {
  /* Using specific colors similar to the image */
  background: linear-gradient(90deg, #9ef443, #6cb8fe);
  border: none;
  border-radius: 50px; /* Highly rounded corners */
  padding: 10px 20px;
  color: #004d99; /* Dark blue text color */
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensures icon stays within button bounds */
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Styling for the text inside the button */
.button-text {
  margin-right: 10px; /* Space between text and circle */
}

/* Styling for the white circle and arrow */
.arrow-icon {
  background-color: white;
  border-radius: 50%; /* Makes a perfect circle */
  width: 35px; /* Size of the circle/icon area */
  height: 35px;
  padding: 8px; /* Inner padding for the arrow */
  /* Ensure smooth transition for the rotation */
  transition: transform 0.4s ease-in-out;
  transform: rotate(0deg); /* Initial state of the arrow */
  margin-right: -14px;
}

/* Hover effect on the entire button */
.gradient-btn:hover .arrow-icon {
  /* Rotate the arrow 360 degrees on hover */
  transform: rotate(45deg);
  /* Optional: slightly darken the white circle */
  background-color: #f0f0f0;
}

/* Optional: Subtle animation for the button itself */
/* .gradient-btn:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
} */

/* start article section */
.italic-title {
  font-family: "Designer", sans-serif;
  font-style: italic; /* */
  font-weight: 800;
  line-height: 1.1;
  color: #082741;
}

.read-more-pill {
  background-color: #9ef443; /* Bright Green */
  border-radius: 50px; /* */
  font-weight: bold;
  padding: 10px 25px;
  color: #000;
}

.article-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  /* overflow: hidden; */
  height: 230px; /* Fixed height for consistency */
}

.article-img {
  /* width: 200px; */
  height: 100%;
  object-fit: contain; /* Prevents stretching */
  border-radius: 15px;
}

.article-content {
  padding: 25px;
  position: relative;
  flex-grow: 1;
}

.meta-data {
  font-size: 0.75rem;
  color: #777;
}

.article-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #082741;
}

.arrow-circle-btn {
  position: sticky;
  top: 105%;
  left: 106%;
  background-color: #0066b3;
  transform: rotate(0deg);
  transition: all 0.3s ease;
  z-index: 10;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.article-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 12px 24px rgba(8, 39, 65, 0.15); /* Deeper Pragya-blue shadow */
  border-color: #9ef443; /* Subtle glow effect */
}

/* .article-card:hover .article-img {
  transform: scale(1.1); Smoothly zooms the image
} */
/* .arrow-circle-btn {
  transition: all 0.3s ease;
} */

/* When card is hovered, change the arrow button */
.article-card:hover .arrow-circle-btn {
  background-color: #9ef443; /* Changes to your bright green */
  color: #082741;
  transform: scale(1.2) rotate(45deg); /* Grows and angles the arrow */
}
/* .article-card:hover .article-title {
  color: #0066b3;
} */

/* end article section */

/* start video slider */
/* start video slider */
.pragya-carousel-container {
  /* background: linear-gradient(90deg, #9EF443, #6CB8FE);  */
  background: linear-gradient(51deg, #07ad6dc7, #0066be, #004a80);
  border-radius: 15px;
  padding: 40px; /* Increased padding for better breathing room */
  color: white;
  /* max-width: 1000px; */
  margin: 20px auto;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.carousel-inner {
  display: grid; /* Stack slides in the same grid cell */
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 430px; /* Fixed height to prevent jumping */
}

.carousel-slide {
  grid-area: 1 / 1 / 2 / 2; /* All slides occupy the same space */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px); /* Slight slide-in effect */
  transition: all 0.5s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0); /* Move to center when active */
}

.carousel-text-area h1 {
  font-size: clamp(1.5rem, 5vw, 3rem); /* Fluid typography */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
}

.carousel-image-area {
  /* background-color: rgba(255, 255, 255, 0.1); */
  border-radius: 10px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 40%;
}

.carousel-nav {
  position: absolute;
  bottom: 20px;
  left: 40px;
  display: flex;
  gap: 12px;
  z-index: 10;
}
.carousel-image-area {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.lightbulb-visual {
  width: 100%; /* Forces the wrapper to match the parent width */
  height: 100%; /* Keeps the wrapper height consistent */
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbulb-visual img {
  width: 100%; /* Forces the image to stretch/shrink to the wrapper width */
  height: 100%; /* Fills the container height */

  /* BEST OPTION: 'contain' fits the whole image inside without cropping */
  /* ALTERNATIVE: Use 'cover' if you want it to fill the box completely (might crop edges) */
  object-fit: contain;

  display: block; /* Prevents unwanted bottom spacing */
}

.slidergradient-btn:hover {
  filter: brightness(1.05); /* Slightly brightens the colors */
  transform: translateY(-2px); /* Lifts the button slightly */
  background: #0066b3;
  color: #fff !important;
}
.slidergradient-btn:active {
  transform: translateY(0);
  font-weight: bolder;
}
.slidergradient-btn {
  background: linear-gradient(121deg, #095984, #0066b3);
  border: none;
  border-radius: 50px;
  padding: 10px 10px;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slidergradient-btn:hover .arrow-icon {
  transform: rotate(45deg);
  background-color: #f0f0f0;
}
.videoslidersubtitle {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .pragya-carousel-container {
    padding: 30px 20px 80px 20px; /* Extra bottom padding for buttons */
  }

  .carousel-slide {
    flex-direction: column-reverse; /* Image on top, text on bottom */
    text-align: center;
    gap: 20px;
  }

  .carousel-image-area {
    width: 100%;
    height: 180px;
  }

  .carousel-nav {
    left: 50%;
    transform: translateX(-50%); /* Center buttons on mobile */
  }
}

/* end video slider */

/* start industry carousel */

/* end industry carousel CSS */
.carousel-viewport {
  overflow-x: auto; /* Enable horizontal scrolling */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab; /* Visual hint for mouse movement */
}

.carousel-viewport::-webkit-scrollbar {
  display: none; /* Hide scrollbar for clean look */
}

.carousel-track {
  display: grid;
  grid-auto-flow: column; /* Force items to be in a row */
  grid-auto-columns: calc(33.33% - 20px); /* 3 cards on desktop */
  gap: 30px;
  padding-bottom: 20px;
}

/* .card-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
} */

.slidergradient-btn {
  background: linear-gradient(90deg, #9ef443, #6cb8fe);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-left: 10px;
  transition: 0.3s;
}

.slidergradient-btn:hover {
  background: #0066b3;
  color: white;
}

/* Mobile: Show 1 card fully */
@media (max-width: 768px) {
  .carousel-track {
    grid-auto-columns: 100%;
    gap: 15px;
  }
}
/* last */
.carousel-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  cursor: grab;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.card-item {
  flex: 0 0 calc((100% / 3) - 13.33px); /* 3 cards on desktop */
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 460px;
}

.card-item:hover .arrow-circle-btn {
  background-color: #9ef443;
  color: #082741;
  transform: scale(1.2) rotate(45deg);
}

@media (max-width: 768px) {
  .card-item {
    flex: 0 0 100%;
  } /* 1 card on mobile */
}
.industryslidertitle {
  margin-bottom: 1rem;
  border-bottom: solid 1px #ddd;
  color: #082741 !important;
  font-weight: bolder;
  font-size: 1.6rem !important;
}
.industrysliderreadmore {
  font-size: 1.1rem;
  color: #082741;
  cursor: pointer;
}

/* end industry carousel */

/* start header nav menu */
/* 1. Hide all dropdown lists by default */
.nav-menu .dropdown-list {
  display: none !important; /* Force hide initially */
  position: absolute;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

/* 2. Show ONLY the one being hovered */
.nav-menu li.dropdown:hover > .dropdown-list {
  display: block !important;
  flex-direction: column;
}

/* 3. Horizontal layout for the main nav */
.nav-menu > ul {
  display: flex;
  list-style: none;
  align-items: center;
}
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #082741;
  font-weight: 500;
  padding: 10px 15px;
  display: block;
}

/* Active State */
.nav-menu a.active {
  color: #0066b3;
  border-bottom: 4px solid #0066b3;
  /* margin-top: -10px; */
  background: linear-gradient(to bottom, #ffffff 50%, #eef6fc 100%);
}

/* Dropdown Container */
.dropdown {
  position: relative;
}

/* Hidden list by default */
.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 230px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  display: none; /* Hide */
  flex-direction: column;
  z-index: 1000;
  /* border-top: 3px solid #0066b3; */
}

/* Show on Hover */
.dropdown:hover .dropdown-list {
  display: flex;
}

.dropdown-list li a {
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-list li a:hover {
  background-color: #f8f9fa;
  color: #0066b3;
}

/*new nav*/

/* end header nav menu */
.about-text {
  font-family: "Geist", sans-serif;
  color: #4d5663;
  font-size: 16.5px;
  line-height: 1.3;
  margin-bottom: 24px;
}

/*Solutions Commons*/
/* --- Custom CSS for Pragya Section --- */

/* Section Background */
.pragya-section {
  padding-bottom: 5rem;
  overflow: hidden;
}

.step-container {
  position: relative;
  /* padding: 0 1rem; */
  padding: 20px;
}

/* Vertical Divider (Desktop Only) */
@media (min-width: 992px) {
  .step-col:not(:last-child) .step-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    height: 100%;
    width: 1px;
    background-color: #dee2e6;
  }
}

.step-icon-wrapper {
  display: flex;
  align-items: center; /* Centers ring and image vertically */
  height: 100px;
  margin-bottom: 1rem;
  position: relative;
}

/* The Ring (Circle with gap at bottom) */

/* --- YOUR ICON IMAGE STYLES --- */
.step-img {
  width: 110px; /* Adjust this size as needed */
  height: auto;
  margin-left: -15px; /* Negative margin makes it overlap the ring slightly */
  z-index: 2; /* Ensures image sits on top of the ring border */
  object-fit: contain;
}

.step-title {
  color: #0d2240;
  font-weight: 700;
  font-size: 1.28rem;
  margin-bottom: 0.5rem;
}

.step-desc {
  color: #6c757d;
  font-size: 18px;
  line-height: 1.5;
}

/* Core Values */
/* .core-values-section {
      background-color: #eef3f6;
    } */
.core-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 24px;
  height: 100%;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06); */
}
.core-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #eef3f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.core-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.core-divider {
  position: relative;
  height: 1px;
  background-color: #d8e2eb;
  margin-bottom: 20px;
}
.core-divider span {
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  background-color: #b0c4d8;
  border-radius: 50%;
}
.core-title {
  font-family: "Geist", sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: #082741;
  margin-bottom: 30px;
  margin-top: 32px;
}
.core-text {
  font-family: "Geist", sans-serif;
  font-size: 18.5px;
  color: #4d5663;
  line-height: 1.2;
  margin-bottom: 30px;
}

/*Problems and Solutions*/
/* common box */
.ps-box {
  padding: 60px;
  border-radius: 20px;
  margin: auto;
}

/* PROBLEM gradient */
.problem-box {
  background: linear-gradient(90deg, #f1d5d6 0%, #f9f2f2 60%, #eef3f6 100%);
}

/* SOLUTION gradient */
.solution-box {
  background: linear-gradient(90deg, #eef3f6 0%, #f2faf6 10%, #c6ead2 100%);
  margin-top: -48px;
}

/* mobile */
@media (max-width: 768px) {
  .ps-box {
    padding: 30px 20px;
    text-align: center;
  }
}

/*INDUSTRIES COMMON CSS*/
/* --- Accordion Customization --- */
.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 15px; /* Spacing between items */
  border-radius: 12px !important;
  overflow: hidden;
  background: #fff;
}

.custom-accordion .accordion-button {
  background-color: #fff;
  color: #082741;
  font-weight: 600;
  font-size: 1.3rem;
  padding: 25px 25px;
  box-shadow: none !important; /* Removes blue glow focus */
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: #082741;
  background-color: #fff;
}

/* Custom Arrow Icon */

/* Custom Arrow Icon */
.custom-accordion .accordion-button::after {
  background-image: url("../svg/aboutUs/Arrow.svg");
  background-size: 1.9rem;
  width: 1.6rem;
  height: 1.6rem;
  transition: transform 0.3s ease-in-out;
}

/* Rotate arrow when open */
.custom-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.industry-video {
  width: 100%;
  aspect-ratio: 18 / 9; /* keeps proper ratio */
  object-fit: cover;
}

/*monitor for phrama industry*/
/* WRAPPER */
.monitor-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #eef3f6;
  border-radius: 60px;
  margin-top: 80px;
}

/* TITLE */
.monitor-title {
  min-width: 320px;
}

.monitor-title h5 {
  margin: 0;
  font-weight: 600;
  font-size: 28px;
  color: #0d1b2a;
}

/* ICON */
.monitor-icon img {
  width: 50px;
}

/* SLIDER CONTAINER */
.monitor-slider {
  flex: 1;
  display: flex;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

/* Make arrows fixed on edges */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
}

.slider-arrow:first-child {
  left: 0;
}

.slider-arrow:last-child {
  right: 0;
}

.slider-arrow img {
  width: 100px;
}
.slider-track {
  overflow: hidden;
  width: 100%;
  padding: 0 60px; /* space equal to arrow width */
}

/* MOVING CONTENT */
.slider-content {
  padding: 2px;
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scroll-left 15s linear infinite;
}

/* PILLS */
.pill {
  background: #ffffff;
  padding: 12px 30px;
  border-radius: 50px;
  white-space: nowrap;
  font-weight: 500;
  font-size: 22px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.06);
}

/* SMOOTH INFINITE SCROLL */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.slider-track:hover .slider-content {
  animation-play-state: paused;
}
/*MOBILE FIX */
@media (max-width: 768px) {
  .monitor-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 15px;
    gap: 20px;
  }

  .monitor-title {
    min-width: 100%;
  }

  .monitor-title h5 {
    font-size: 20px;
    line-height: 1.3;
  }

  .monitor-icon {
    margin-top: -5px;
  }

  .slider-arrow {
    display: none;
  }

  .monitor-slider {
    width: 100%;
    padding: 0;
    background: transparent;
  }

  .slider-track {
    width: 100%;
  }

  .slider-content {
    gap: 15px;
    animation: scroll-left 35s linear infinite;
  }

  .pill {
    font-size: 14px;
    padding: 8px 18px;
  }

  .monitor-section {
    overflow: hidden;
  }
}

/*DOWNLOAD BROACHERS*/
.download-icon {
  background-color: white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  padding: 8px;
  margin-right: -14px;
}

.download-btn {
  background: linear-gradient(90deg, #9ef443, #6cb8fe);
  border: none;
  border-radius: 50px;
  padding: 9px 20px;
  color: #004d99;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
}
.download-btn:hover {
  filter: brightness(1.05);
  background: #0066b3;
  color: #fff !important;
}
