/*Process step section starts*/

/* --- Base Desktop Styles (Unchanged) --- */
.case-1-section {
  font-family: sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  /* Make sure this path is correct for your project structure */
  background-image: url(../division-case-study/case-study.png);
  background-size: 100% 100%;
}

.case-1-left-panel {
  color: white;
  padding: 60px 220px 60px 60px;
}

.case-1-right-panel {
  padding: 60px;
  position: relative;
  min-height: 100%;
}

.case-1-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.case-1-text-orange {
  color: #ff4d00;
}

.case-1-left-panel p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d6d6d6;
  margin-bottom: 30px;
}

.case-1-action-item {
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 12px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.case-1-action-item i {
  color: #ffffff;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.case-1-action-item.active-case-1 {
  background-color: #ff4d00 !important;
}

.case-1-action-item.active-case-1 i {
  transform: scale(1.2);
}

.case-1-card {
  /* This absolute positioning is for DESKTOP ONLY */
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  top: 60px; /* Match parent padding */
  left: 60px; /* Match parent padding */
  right: 60px; /* Match parent padding */
  width: auto; /* Use auto width to respect padding */
}

.case-1-card.active {
  opacity: 1;
  visibility: visible;
  /* On desktop, the active card is made relative to give height to the parent panel */
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.case-1-card h4,
.case-1-card h2 {
  color: #ff4d00;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

.case-1-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}


/* --- Tablet Responsive Styles (991.98px and below) --- */
@media (max-width: 991.98px) {
  .case-1-section {
    /* Using a solid color as a fallback if the mobile image doesn't load */
    background-color: #002f6c;
    /* Make sure this path is correct for your project structure */
    background-image: url(division-case-study/case-study-mobile.png);
    background-size: cover;
    background-position: center;
  }

  .case-1-left-panel {
    clip-path: none;
    padding: 40px;
  }

  .case-1-right-panel {
    padding: 40px;
    min-height: auto; /* Allow height to be determined by its content */
    background-color: #ffffff; /* Add a white background for readability when stacked */
  }

  /*
   * KEY FIX FOR TABLET & MOBILE:
   * Change card positioning from 'absolute' to static flow.
   * Use 'display' to hide/show cards instead of opacity.
   * This ensures the active card takes up space and gives the parent '.case-1-right-panel' height.
  */
  .case-1-card {
    position: static; /* Override absolute positioning */
    display: none;    /* Hide all cards by default */
    opacity: 1;
    visibility: visible;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
  }

  .case-1-card.active {
    display: block; /* Show ONLY the active card */
  }
}


/* --- Mobile Responsive Styles (767.98px and below) --- */
@media (max-width: 767.98px) {
  .case-1-left-panel,
  .case-1-right-panel {
    padding: 30px;
  }

  .case-1-title {
    font-size: 1.8rem;
  }

  .case-1-section {
    /* Using a solid color as a fallback if the mobile image doesn't load */
    background-color: #002f6c;
    /* Make sure this path is correct for your project structure */
    background-image: url(division-case-study/case-study-mobile.png);
    background-size: cover;
    background-position: center;
  }
}


/* =================================================================== */
/* Process step section CSS starts (Included as requested)             */
/* =================================================================== */

.process-steps-section {
  font-family: "Inter", "Arial", sans-serif;
  position: relative;
  background-color: #ff4d00;
  color: #ffffff;
  padding: 60px 40px 60px 20%; /* Left padding makes space for the panel */
  overflow: hidden; /* Important for clip-path */
}

.getting-started-panel {
  position: absolute;
  left: 0px;
  top: -1px;
  width: 20%;
  height: 100%;
  background-color: #e6e6e6;
  clip-path: polygon(0 0, 100% 0, 0% 100%, 0% 100%);
  display: flex;
  align-items: start;
  justify-content: center;
  padding-top: 40px;
}

.getting-started-title {
  color: #ff4d00;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0;
  transform: translateX(-10%);
}

.process-step-wrapper {
  position: relative;
  text-align: center;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
}

.process-step {
  flex-grow: 1;
}

.process-icon {
  height: 55px;
  margin-bottom: 25px;
}

.process-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.process-step-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  max-width: 235px;
  margin: 0 auto;
  text-align: center !important;
}

.process-arrow-connector {
  display: none;
  position: absolute;
  top: 45%;
  left: 100%;
  width: 70px;
  transform: translateX(-50%);
  z-index: 1;
}

.connector-arrow-img {
  width: 100%;
  filter: brightness(0) invert(1);
}

/* LAPTOP & LARGE SCREENS (992px and up) */
@media (min-width: 992px) {
  /* Show arrows between all steps except the last one */
  .process-step-wrapper:not(:last-child) .process-arrow-connector {
    display: block;
  }
}

/* TABLET (768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .process-steps-section {
    padding: 0; /* Remove padding for stacked layout */
  }

  .getting-started-panel {
    position: static;
    width: 100%;
    clip-path: none; /* Remove the slant */
    padding: 30px 15px;
    height: auto;
  }
  .getting-started-title {
    transform: none; /* Reset the position nudge */
  }

  .process-steps-section .container-fluid {
    padding: 50px 20px; /* Add space between header and steps */
  }

  /* Show arrow only after the first item in each row (1st and 3rd steps) */
  .process-step-wrapper:nth-child(odd):not(:last-child)
    .process-arrow-connector {
    display: block;
  }

  /* Add space between the two rows of steps */
  .row > .process-step-wrapper:nth-child(-n + 2) {
    margin-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .process-steps-section {
    padding: 0;
  }

  .getting-started-panel {
    position: static;
    width: 100%;
    clip-path: none;
    padding: 25px 15px;
    height: auto;
  }
  .getting-started-title {
    transform: none;
    font-size: 1.5rem;
  }

  .process-steps-section .container-fluid {
    padding: 40px 15px 20px;
  }

  .process-step-wrapper {
    margin-bottom: 40px;
  }
  .process-step-wrapper:last-child {
    margin-bottom: 0;
  }

  /* Hide all arrows on mobile */
  .process-arrow-connector {
    display: none !important;
  }
}


/*Process step section ends*/

/* --- Client Engagement section starts --- */
.client-engagement-section {
  background-color: #f8f9fa; /* Light grey background for the section */
  font-family: "Inter", sans-serif;
  box-shadow: rgb(255 255 255 / 25%) 0px 30px 60px -12px inset,
    rgb(106 102 102 / 30%) 0px 18px 36px -18px inset;
}

.engagement-main-title {
  font-size: 2rem; /* Adjust as needed */
  font-weight: 500; /* Medium weight for "Client Engagement" */
  color: #4a4a4a; /* Softer dark grey */
  line-height: 1.3;
  margin-bottom: 0;
}

.engagement-main-title .highlight-primary {
  font-weight: 600; /* Bolder for "Options" */
  color: #ff4d00; /* Your primary orange */
}

.engagement-card {
  background-color: #ffffff;
  border-radius: 20px; /* More rounded corners than previous cards */
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px; /* Softer shadow */
  padding: 20px;
  position: relative;
  height: 100%;
  display: flex; /* Added for card-automation button alignment */
  flex-direction: column; /* Added for card-automation button alignment */
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.engagement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.09);
}

.engagement-card-number {
  position: absolute;
  top: 0px; /* Position badge slightly above the card */
  right: 0px; /* Offset from the right edge */
  background-color: #ff4d00; /* Primary orange */
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px 11px 3px 3px; /* Slightly rounded corners for badge */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); /* Add shadow to badge */
  line-height: 1;
  z-index: 1; /* Ensure badge is above card content */
}

.engagement-card-content {
  padding-top: 10px; /* Add some space below the badge */
  flex-grow: 1; /* Allow content to take space */
  display: flex;
  flex-direction: column;
}

.engagement-card-title {
  font-size: 1.1rem; /* Adjust as needed */
  font-weight: 600; /* Semibold */
  color: #33373d; /* Dark text */
  margin-bottom: 0.65rem;
}

.engagement-card-text {
  font-size: 0.9rem;
  font-family: "Arial", sans-serif;
  color: #5a6a7a; /* Muted grey */
  line-height: 1.6;
  margin-bottom: 1rem;
}
.engagement-card-content > .engagement-card-text:last-child {
  margin-bottom: 0; /* Remove bottom margin for the very last text element */
}

.engagement-card-divider {
  border: 0;
  border-top: 1.2px solid #ff4d00;
  margin: 0.8rem 0; /* Adjust vertical spacing */
}

.engagement-card-small-heading {
  font-size: 0.95rem;
  font-weight: 600;
  color: #33373d;
  margin-bottom: 0.4rem;
}

/* Specific styles for the Automation card */
.engagement-card-automation .engagement-card-title {
  margin-bottom: 0.5rem; /* Less margin for title if only one line of text follows */
}
.engagement-card-automation .engagement-card-text {
  margin-bottom: 0; /* No margin for the text above the button */
}

.btn-book-call {
  background-color: #ff4d00; /* Primary orange */
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 1.05rem; /* Slightly larger font for button */
  font-weight: 600; /* Semibold */
  padding: 0.7rem 1.5rem;
  border-radius: 6px; /* Consistent with card rounding */
  text-align: center;
  width: 100%; /* Make button full width of its column in card */
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  /* margin-top: auto; /* Pushes button to the bottom if card content is flex */
}

.btn-book-call:hover {
  background-color: #e63900; /* Darker orange on hover */
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-book-call i {
  /* Font Awesome icon styling will be inherited for color, adjust size if needed */
  font-size: 1rem; /* Match text size or slightly smaller */
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  /* lg */
  /* col-lg-3 creates 4 cards per row */
}

@media (max-width: 991.98px) {
  /* md */
  .engagement-main-title {
    font-size: 1.9rem;
  }
  .engagement-card-title {
    font-size: 1.05rem;
  }
  /* col-md-6 will create 2 cards per row */
}

@media (max-width: 767.98px) {
  /* sm */
  .client-engagement-section .engagement-main-title {
    text-align: center;
  }
  .engagement-main-title {
    font-size: 1.8rem;
  }
  .engagement-card-number {
    top: 0px;
    right: 0px;
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
  .engagement-card-content {
    padding-top: 15px; /* Adjust more space if badge looks too close */
  }
  /* Cards will stack to 1 column by default due to col-md-6 */
}

@media (max-width: 575.98px) {
  /* xs */
  .engagement-card {
    padding: 15px;
  }
  .engagement-card-title {
    font-size: 1rem;
  }
  .engagement-card-text {
    font-size: 0.85rem;
  }
  .btn-book-call {
    font-size: 1rem;
    padding: 0.65rem 1.2rem;
  }
}
/* Client Engagement section Ends */

.about-anovip-section {
  font-family: "Inter", "Arial", sans-serif;
  position: relative; /* For potential z-indexing if complex overlaps occur */
  padding-bottom: 60px; /* Space at the bottom of the entire section */
}

.about-img-sec img {
  height: 500px;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}

.about-header-orange {
  background-color: #ff4d00;
  padding-top: 380px;
  padding-bottom: 120px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-main-title {
  text-align: start;
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* White radial glow behind the heading only */
.about-main-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: -1;
  pointer-events: none;
}

.overlapping-white-box {
  background-color: #fff;
  padding: 70px 74px 70px 74px;
  border-radius: 5px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
  margin-top: -90px; /* Negative margin to pull it up into the orange header */
  position: relative; /* To ensure it sits above the orange header's flow */
  z-index: 2;
  text-align: left; /* Align text inside the box to the left */
}

.overlapping-white-box p {
  font-size: 1.4rem; /* Slightly larger than standard body text */
  color: #2e2d2d;
  line-height: 1.7;
  margin-bottom: 0; /* Only one paragraph here */
}

.lower-text-content {
  /*padding-top: 60px;*/
  text-align: left;
}

.lower-text-content p {
  font-size: 1.2rem;
  color: #555555;
  margin-bottom: 20px;
  line-height: 1.75;
}

.lower-text-content p:last-child {
  margin-bottom: 0;
}

/* --- Responsive Adjustments --- */

@media (max-width: 991.98px) {
  .about-main-title {
    font-size: 5rem;
  }
  .overlapping-white-box {
    padding: 60px 35px;
    margin-top: -60px;
  }
  .overlapping-white-box p {
    font-size: 1.4rem;
  }
  .lower-text-content p {
    font-size: 0.9rem;
  }
  .about-img-sec img {
    height: 280px;
  }
}

@media (max-width: 767.98px) {
  .about-header-orange {
    padding-top: 140px;
    padding-bottom: 80px; /* Adjust for smaller overlap */
  }
  .about-anovip-section p {
    text-align: center !important;
  }
  .about-main-title {
    font-size: 4rem;
  }
  .overlapping-white-box {
    padding: 25px;
    margin-top: -50px; /* Less overlap on mobile */
    margin-left: 15px; /* Add some side margin for the box itself */
    margin-right: 15px;
  }
  .overlapping-white-box p {
    font-size: 1.5rem;
  }
  /* Ensure the col-xl-10, col-lg-11 doesn't add extra constraints on mobile */
  .about-content-area .row.justify-content-center > div[class*="col-"] {
    padding-left: 0; /* Reset padding if Bootstrap adds it to columns */
    padding-right: 0;
  }
  .lower-text-content {
    padding-top: 30px;
    padding-left: 60px;
    padding-right: 60px;
  }
  .lower-text-content p {
    font-size: 0.875rem;
  }
  .about-anovip-section {
    padding-bottom: 40px;
  }
}

@media (max-width: 575.98px) {
  .about-main-title {
    font-size: 4rem;
  }
  .overlapping-white-box {
    padding: 20px;
    border-radius: 8px;
  }
  .overlapping-white-box p {
    font-size: 1.3rem;
  }
}
/* About anovIP section Ends */

/* Who we are section starts */

.who-we-are-section {
  position: relative; /* For positioning the overlay */
  padding: 120px 0; /* Generous padding top and bottom */
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 20%,
    rgba(0, 212, 255, 1) 100%
  );
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff; /* Default text color for this section */
}

.background-overlay {
  /*position: absolute;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    15,
    12,
    25,
    0.88
  ); /* Dark, slightly purplish overlay, adjust opacity as needed */
  z-index: 1; /* Overlay sits above background but below content */
}

/* Ensure container and its content are above the overlay */
.who-we-are-section .container {
  position: relative;
  z-index: 2;
}

.who-we-are-title {
  font-size: 2.8rem; /* Large title */
  font-weight: 700; /* Bold */
  margin-bottom: 35px;
  color: #ffffff;
}

.who-we-are-paragraph {
  font-size: 1.15rem; /* Readable paragraph size */
  font-weight: 400; /* Regular weight */
  line-height: 1.75;
  color: #fff; /* Slightly off-white for better readability on dark bg */
  margin-bottom: 25px;
  /* Max-width is handled by the Bootstrap column (col-xl-9 etc.) */
}

.who-we-are-paragraph:last-child {
  margin-bottom: 0;
}

/* --- Responsive Adjustments --- */

@media (max-width: 991.98px) {
  .who-we-are-section {
    padding: 100px 0;
  }
  .who-we-are-title {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  .who-we-are-paragraph {
    font-size: 1.1rem;
    line-height: 1.7;
  }
}

@media (max-width: 767.98px) {
  .who-we-are-section {
    padding: 80px 20px; /* Add side padding for text on mobile */
  }
  .who-we-are-title {
    font-size: 2.1rem;
    margin-bottom: 25px;
  }
  .who-we-are-paragraph {
    font-size: 1rem;
    line-height: 1.65;
  }
}

@media (max-width: 575.98px) {
  .who-we-are-section {
    padding: 60px 15px;
  }
  .who-we-are-title {
    font-size: 1.8rem;
  }
  .who-we-are-paragraph {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
/* Who we are section Ends */

/* Our division section starts */
.divisions-section {
  background-color: #fcfcfc;
}

.divisions-section .section-title h2 {
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--dark-grey);
}

.divisions-section .section-title .highlight-orange {
  color: #ff4d00;
}

/* The wrapper is now ONLY for positioning the icon and handling the hover lift effect */
.division-card-wrapper {
  position: relative;
  height: 100%;
  transition: transform 0.3s ease;
  padding-bottom: 30px;
}

.division-card-wrapper p {
  text-align: center !important;
}

.division-card-wrapper:hover {
  transform: translateY(-10px);
}

/* KEY CHANGE: The card itself is now the positioning context for the corners */
.division-card {
  position: relative; /* This is the new positioning context */
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  padding: 55px 28px 30px 28px;
  text-align: center;
  height: 100%;
  margin-top: 30px; /* Make space for the icon to be positioned above */
}

/* The Golden Corners - Now attached to .division-card for perfect alignment */
.division-card::before,
.division-card::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border-color: #f9c846;
  border-style: solid;
  border-width: 0;
  z-index: 1;
  /* KEY CHANGE: Using negative positioning to place them outside the card's border */
  /* The value (-3px) is equal to the corner's own border-width */
}

/* Top-left corner */
.division-card::before {
  top: -3px;
  left: -3px;
  border-top-width: 3px;
  border-left-width: 3px;
  border-top-left-radius: 6px;
}

/* Bottom-right corner */
.division-card::after {
  bottom: -3px;
  right: -3px;
  border-bottom-width: 3px;
  border-right-width: 3px;
  border-bottom-right-radius: 6px;
}

.division-icon-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 60px;
  background-color: #ff4d00;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 3;
}

.division-icon-wrapper i {
  color: #fff;
  font-size: 1.8rem;
  transform: rotate(-45deg);
  line-height: 1;
}

.division-title {
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #716e6e;
}

.division-tagline {
  font-family: "Arial", "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #ff4d00;
}

.division-description {
  font-family: "Arial", "Inter", sans-serif;
  font-size: 1rem;
  color: #454545;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .division-card {
    padding: 50px 20px 25px 20px;
  }
}

@media (max-width: 767.98px) {
  .divisions-section .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 575.98px) {
  .divisions-section .section-title h2 {
    font-size: 1.9rem;
  }
  .division-title {
    font-size: 1.15rem;
  }
  .division-description {
    font-size: 0.9rem;
  }
}
/* Our division section Ends */

/*Our Edge Section Starts*/
.our-edge-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

.section-title-edge {
  font-size: 2.5rem; /* Adjust as needed */
  font-weight: 700;
  color: #2c3e50; /* A neutral dark color for "Our" */
  margin-bottom: 50px;
}

.section-title-edge .highlight-orange {
  color: #ff4d00; /* Primary orange for "Edge" */
}

.edge-card {
  border-radius: 8px; /* Rounded corners for all cards */
  height: 100%; /* Ensures cards in a row have the same height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center content for white cards */
  overflow: hidden; /* Important for image cards with border-radius */
  position: relative; /* For overlay positioning */
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.edge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.edge-card-white {
  background-color: #ffffff;
  padding: 30px 25px;
  text-align: center;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
  min-height: 180px; /* Minimum height for white cards to align better */
}

.edge-card-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
  align-items: center; /* Vertically center content for image cards */
  min-height: 220px; /* Min height for image cards */
}

.edge-card-image-overlay {
  background-color: rgba(25, 25, 35, 0.12); /* Dark overlay, adjust opacity */
  width: 100%;
  height: 100%;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.edge-card-title-sm {
  /* For smaller, white cards */
  font-size: 1.2rem;
  font-weight: 700;
  color: #34495e;
  margin-bottom: 10px;
}

.edge-card-description-sm {
  /* For smaller, white cards */
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 0;
}

.edge-card-title-lg {
  /* For larger, image cards */
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.edge-card-description-lg {
  /* For larger, image cards */
  font-size: 1rem;
  color: #e0e0e0; /* Lighter white for description on image */
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 85%; /* To prevent text from stretching too wide */
}

/* --- Responsive Adjustments --- */

@media (max-width: 991.98px) {
  /* Tablet */
  .section-title-edge {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
  .edge-card-white,
  .edge-card-image-overlay {
    padding: 25px 20px;
  }
  .edge-card-title-sm {
    font-size: 1.15rem;
  }
  .edge-card-title-lg {
    font-size: 1.4rem;
  }
  .edge-card-description-sm {
    font-size: 0.875rem;
  }
  .edge-card-description-lg {
    font-size: 0.95rem;
  }
  /* On tablets, make the image cards also take full width (col-md-12) if desired,
       or keep them col-md-6 if you want two image cards side-by-side.
       The provided HTML already has col-md-12 for image cards and col-md-6 for white cards.
    */
}

@media (max-width: 767.98px) {
  /* Mobile */
  .our-edge-section {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .section-title-edge {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .edge-card-white {
    min-height: auto; /* Remove min-height on mobile for natural flow */
  }
  .edge-card-image {
    min-height: 200px;
  }
  .edge-card-title-sm {
    font-size: 1.1rem;
  }
  .edge-card-title-lg {
    font-size: 1.3rem;
  }
  .edge-card-description-sm,
  .edge-card-description-lg {
    font-size: 0.9rem;
    max-width: 95%;
  }
}
/*Our Edge Section Ends*/

/* About page testimonial section starts */

.testimonials-section {
  background: radial-gradient(
    circle,
    rgba(247, 72, 2, 1) 33%,
    rgba(255, 17, 0, 1) 99%
  );
  padding: 40px 0;
  color: #ffffff; /* Default text color for this section */
}

.testimonials-main-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0; /* Adjusted by row alignment and margin */
}

.testimonials-nav-col {
  display: flex;
  align-items: center;
}

.carousel-custom-prev,
.carousel-custom-next {
  background-color: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.4rem; /* Size of chevron icons */
  padding: 0.3rem 0.6rem; /* Small padding around icons */
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}

.carousel-custom-prev:hover,
.carousel-custom-next:hover {
  opacity: 0.8;
}

/* Hide Bootstrap's default carousel indicators if you're only using prev/next arrows */
#testimonialCarousel .carousel-indicators {
  display: none;
}

.testimonial-content {
  text-align: left;
  max-width: 750px; /* Max width for the testimonial text block */
  margin: 0 auto; /* Center the text block if container is wider */
  padding: 0 15px; /* Side padding for the text content */
  position: relative; /* For positioning the quote icon */
}

.testimonial-quote-icon {
  font-size: 3rem; /* Size of the quote icon */
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 15px;
  /* If you want it slightly offset or to the side of the text:
    position: absolute;
    top: -10px;
    left: -20px;
    */
}

.testimonial-text {
  font-size: 1.4rem; /* Adjust as per visual */
  font-weight: 400; /* Regular or slightly lighter like 300 if font supports */
  line-height: 1.7;
  margin-bottom: 25px;
  color: #f0f0f0; /* Slightly off-white for main text */
}

.testimonial-author {
  font-size: 0.95rem;
  font-weight: 500; /* Medium weight */
  color: #ffffff;
  opacity: 0.9;
}

/* --- Responsive Adjustments --- */

@media (max-width: 991.98px) {
  /* Tablet */
  .testimonials-section {
    padding: 70px 0;
  }
  .testimonials-main-title {
    font-size: 2.1rem;
  }
  .testimonial-text {
    font-size: 1.15rem;
  }
  .testimonial-author {
    font-size: 0.9rem;
  }
}

@media (max-width: 767.98px) {
  /* Mobile */
  .testimonials-section {
    padding: 50px 0;
  }
  /* Stack title and nav on mobile */
  .testimonials-section .row.align-items-center {
    flex-direction: column;
    text-align: center; /* Center title */
  }
  .testimonials-main-title {
    font-size: 1.9rem;
    margin-bottom: 20px; /* Space between title and nav buttons */
  }
  .testimonials-nav-col {
    justify-content: center; /* Center nav buttons */
  }
  .carousel-custom-prev,
  .carousel-custom-next {
    font-size: 1.3rem;
  }
  .testimonial-content {
    max-width: 100%;
    padding: 0 20px; /* Adjust side padding for mobile */
    text-align: center; /* Center testimonial text on mobile */
  }
  .testimonial-quote-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    /* If it was absolutely positioned, adjust for mobile */
  }
  .testimonial-text {
    font-size: 1.05rem;
    line-height: 1.65;
  }
  .testimonial-author {
    font-size: 0.875rem;
  }
}
/* About page testimonial section Ends */

/* Recognition & Awards Section Starts */

.awards-title {
  font-family: "Inter", "Arial", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--dark-grey);
  margin-bottom: 1rem;
}

.awards-title .highlight-orange {
  color: #ff4d00;
}

.awards-description {
  font-family: "Arial", "Inter", sans-serif;
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.awards-divider {
  border-top: 1px solid #e9ecef;
  margin-bottom: 3rem;
}

.award-card {
  position: relative;
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
  height: 160px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.award-card::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid #acacac;
  border-radius: 8px;
  z-index: -1;
}

.award-card:hover {
  transform: translateY(-5px) translateX(5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.award-card img {
  max-width: 110%;
  max-height: 110px;
  object-fit: contain;
}

/* Grid & Column Customization */
@media (min-width: 992px) {
  .col-custom-5 {
    flex: 0 0 auto;
    width: 20%;
  }
}

@media (max-width: 991.98px) {
  .awards-grid {
    justify-content: flex-start !important;
  }
}

@media (max-width: 767.98px) {
  .awards-title {
    font-size: 1.9rem;
  }
  .awards-description {
    font-size: 0.95rem;
  }
  .award-card {
    min-height: 100px;
  }
  .award-card img {
    height: 100px;
  }
  .award-card::before {
    top: -4px;
    left: -4px;
  }
}

/* Recognition & Awards Section Ends */

/* Principle values section Starts */

.principles-values-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-title-principles {
  font-size: 2.5rem; /* Adjust as needed */
  font-weight: 700;
  color: #2c3e50; /* A neutral dark color for "Our Principles" */
  margin-bottom: 10px; /* Tighter margin to tagline */
}

.section-title-principles .highlight-orange {
  color: #ff4d00; /* Primary orange for "& Values" */
}

.principles-tagline {
  font-size: 1.1rem;
  font-weight: 500; /* Medium weight */
  color: #555555; /* Darker grey for tagline */
  margin-bottom: 40px;
  text-align: center; /* Center the tagline */
}

.principles-intro {
  font-size: 1.3rem; /* Slightly larger intro paragraph */
  color: #454545;
  line-height: 1.7;
  margin-bottom: 50px; /* More space after intro */
  text-align: left; /* Keep intro left-aligned */
}

.principle-item {
  margin-bottom: 40px; /* Space between each principle item */
  text-align: left; /* Default alignment for principle items */
}

.principle-item:last-child {
  margin-bottom: 0;
}

.principle-title {
  font-size: 1.35rem; /* e.g., ~21-22px */
  font-weight: 700; /* Bold */
  color: #2c3e50; /* Dark, neutral color */
  margin-bottom: 12px;
}

.principle-description {
  font-size: 1.2rem; /* e.g., ~15px */
  color: #555555; /* Dark grey for description */
  line-height: 1.75;
  margin-bottom: 0; /* Reset if it's the only p in its group */
}

.principle-blockquote {
  background-color: transparent; /* No background for blockquote itself */
  border-left: none; /* No left border by default on blockquote */
  padding: 10px 0px; /* Minimal padding, or adjust as needed */
  margin: 0 0 15px 0; /* Margin below the blockquote, no side indent */
  font-style: normal; /* Not italic by default, as per screenshot */
}

.principle-blockquote p {
  font-size: 1rem; /* Quote text size */
  font-weight: 500; /* Medium weight for quote */
  color: #333333; /* Darker color for quote text */
  margin-bottom: 8px;
  line-height: 1.6;
}

.principle-blockquote footer {
  font-size: 0.9rem;
  color: #666666; /* Lighter grey for attribution */
  font-style: normal; /* Not italic for attribution */
  text-align: left; /* Keep attribution left-aligned */
}

@media (max-width: 991.98px) {
  /* Tablet */
  .principles-values-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section-title-principles {
    font-size: 2.2rem;
  }
  .principles-tagline {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .principles-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .principle-item {
    margin-bottom: 35px;
  }
  .principle-title {
    font-size: 1.25rem;
  }
  .principle-description {
    font-size: 0.925rem;
  }
  .principle-blockquote p {
    font-size: 0.95rem;
  }
}

@media (max-width: 767.98px) {
  /* Mobile */
  .principles-values-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-title-principles {
    font-size: 2rem;
  }
  .principles-tagline {
    margin-bottom: 25px;
  }
  .principles-intro,
  .principle-item {
    text-align: left; /* Keep text left-aligned as it's mostly paragraph content */
  }

  .principles-intro {
    margin-bottom: 30px;
  }
  .principle-item {
    margin-bottom: 30px;
  }
  .principle-title {
    font-size: 1.2rem;
  }
  .principle-description {
    font-size: 0.9rem;
  }
}
/* Principle values section Ends */

/* About page main image section starts */
.anovip-team-section {
  padding: 40px 0;
  background: #ffffff;
  font-family: Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background Ambient Effect */
.anovip-ambient-bg {
  position: absolute;
  top: 0;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 81, 0, 0.02) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.anovip-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.anovip-text-content h2 {
  font-size: 18px;
  color: #666;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 30px;
  animation: anovip-fadeInLeft 0.8s ease-out;
}

.anovip-text-content p {
  font-size: 19px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  animation: anovip-fadeInLeft 0.8s ease-out 0.2s both;
}

/* Enhanced Image Frame Container */
.anovip-image-frame {
  position: relative;
  display: inline-block;
  padding: 30px;
  animation: anovip-fadeInRight 0.8s ease-out 0.4s both;
}

/* Aurora Glow Background */
.anovip-aurora-glow {
  position: absolute;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
  background: radial-gradient(
      ellipse at top left,
      rgba(255, 81, 0, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(0, 102, 204, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      ellipse at top right,
      rgba(0, 170, 68, 0.08) 0%,
      transparent 40%
    );
  filter: blur(40px);
  opacity: 0.6;
  animation: anovip-auroraShift 10s ease-in-out infinite;
}

@keyframes anovip-auroraShift {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    filter: blur(40px) hue-rotate(0deg);
  }
  25% {
    transform: rotate(5deg) scale(1.1);
    filter: blur(45px) hue-rotate(10deg);
  }
  50% {
    transform: rotate(-3deg) scale(1.05);
    filter: blur(35px) hue-rotate(-5deg);
  }
  75% {
    transform: rotate(2deg) scale(1.08);
    filter: blur(42px) hue-rotate(5deg);
  }
}

/* Main Frame with Holographic Effect */
.anovip-frame-border {
  position: relative;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(248, 248, 248, 0.9) 100%
  );
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Holographic Shimmer Overlay */
.anovip-holographic {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 81, 0, 0.1) 35%,
    rgba(255, 128, 64, 0.15) 40%,
    rgba(0, 102, 204, 0.1) 45%,
    rgba(0, 170, 68, 0.1) 50%,
    transparent 55%
  );
  background-size: 200% 200%;
  animation: anovip-holographicShine 8s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  mix-blend-mode: screen;
}

@keyframes anovip-holographicShine {
  0% {
    background-position: 200% 200%;
  }
  100% {
    background-position: -200% -200%;
  }
}

/* Floating Frame Segments */
.anovip-frame-segment {
  position: absolute;
  background: linear-gradient(135deg, #ff5100 0%, #ff8040 100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.8;
}

.anovip-segment-top {
  top: -2px;
  left: 20%;
  right: 20%;
  height: 3px;
  border-radius: 2px;
  transform: scaleX(0.8);
}

.anovip-segment-right {
  top: 20%;
  bottom: 20%;
  right: -2px;
  width: 3px;
  border-radius: 2px;
  transform: scaleY(0.8);
}

.anovip-segment-bottom {
  bottom: -2px;
  left: 20%;
  right: 20%;
  height: 3px;
  border-radius: 2px;
  transform: scaleX(0.8);
}

.anovip-segment-left {
  top: 20%;
  bottom: 20%;
  left: -2px;
  width: 3px;
  border-radius: 2px;
  transform: scaleY(0.8);
}

/* Corner Orbs */
.anovip-corner-orb {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #ff5100 0%, #ff8040 100%);
  box-shadow: 0 0 20px rgba(255, 81, 0, 0.6);
  opacity: 0;
  transition: all 0.4s ease;
}

.anovip-orb-tl {
  top: -6px;
  left: -6px;
}
.anovip-orb-tr {
  top: -6px;
  right: -6px;
}
.anovip-orb-bl {
  bottom: -6px;
  left: -6px;
}
.anovip-orb-br {
  bottom: -6px;
  right: -6px;
}

/* Inner Frame */
.anovip-inner-frame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #fafafa;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05),
    inset 0 -2px 10px rgba(0, 0, 0, 0.05);
}

/* Particle Effect Container */
.anovip-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.anovip-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #ff5100;
  border-radius: 50%;
  opacity: 0;
  animation: anovip-particleFloat 6s linear infinite;
}

.anovip-particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}
.anovip-particle:nth-child(2) {
  left: 30%;
  animation-delay: 1s;
}
.anovip-particle:nth-child(3) {
  left: 50%;
  animation-delay: 2s;
}
.anovip-particle:nth-child(4) {
  left: 70%;
  animation-delay: 3s;
}
.anovip-particle:nth-child(5) {
  left: 90%;
  animation-delay: 4s;
}

@keyframes anovip-particleFloat {
  0% {
    transform: translateY(100%) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100%) translateX(50px);
    opacity: 0;
  }
}

/* Team Image */
.anovip-team-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

/* Hover Effects */
.anovip-image-frame:hover .anovip-holographic {
  opacity: 1;
}

.anovip-image-frame:hover .anovip-frame-segment {
  opacity: 1;
}

.anovip-image-frame:hover .anovip-segment-top,
.anovip-image-frame:hover .anovip-segment-bottom {
  transform: scaleX(1);
}

.anovip-image-frame:hover .anovip-segment-left,
.anovip-image-frame:hover .anovip-segment-right {
  transform: scaleY(1);
}

.anovip-image-frame:hover .anovip-corner-orb {
  opacity: 1;
  transform: scale(1.2);
}

.anovip-image-frame:hover .anovip-team-image {
  transform: scale(1.02);
}

.anovip-image-frame:hover .anovip-aurora-glow {
  opacity: 0.8;
}

/* Subtle Pulse Animation */
.anovip-image-frame:hover .anovip-orb-tl {
  animation: anovip-orbPulse 2s ease-in-out infinite;
}
.anovip-image-frame:hover .anovip-orb-tr {
  animation: anovip-orbPulse 2s ease-in-out infinite 0.5s;
}
.anovip-image-frame:hover .anovip-orb-bl {
  animation: anovip-orbPulse 2s ease-in-out infinite 1s;
}
.anovip-image-frame:hover .anovip-orb-br {
  animation: anovip-orbPulse 2s ease-in-out infinite 1.5s;
}

@keyframes anovip-orbPulse {
  0%,
  100% {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 81, 0, 0.6);
  }
  50% {
    transform: scale(1.5);
    box-shadow: 0 0 30px rgba(255, 81, 0, 0.8);
  }
}

/* Animations */
@keyframes anovip-fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes anovip-fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .anovip-text-content {
    margin-bottom: 40px;
  }
  .anovip-text-content p {
    font-size: 16px;
  }

  .anovip-image-frame {
    padding: 20px;
  }

  .anovip-frame-border {
    padding: 15px;
  }
}
.add_on-breaker-section {
  background: #ff4d00;
  position: relative;
  overflow: hidden;
}

.add_on-breaker-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("grid-overlay.png"); /* optional: grid overlay image */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.2;
  pointer-events: none;
}

.social-orange-strip {
  width: 40px;
  background-color: #ff4d00;
  margin-right: 1rem;
}

.social-text-anovip-orange {
  color: #ff4d00 !important;
}
.social-bg-anovip-orange {
  background-color: #ff4d00 !important;
}
.social-text-anovip-blue {
  color: rgb(6 52 108) !important;
}
.social-bg-anovip-blue {
  background-color: rgb(6 52 108) !important;
}

.social-business-tips-tag {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 2rem;
  text-transform: uppercase;
}

.badge {
  border-radius: 0;
}

.social-item-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.social-item-description {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #6c757d;
}

.social-item-illustration {
  max-width: 80%;
  height: auto;
}

.social-main-title-small {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: #000;
}

.social-main-title-large {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.social-orange-bar-number {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
}

.social-row-full-height {
  display: flex;
  flex-wrap: wrap;
}

.social-row-full-height > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.social-content-wrapper-text {
  /*padding: 1.5rem;*/
}

.social-content-wrapper-numbers {
  padding: 1rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .social-main-title-small {
    font-size: 1.1rem;
  }
  .social-main-title-large {
    font-size: 2.5rem;
  }
  .social-orange-bar-number {
    font-size: 6rem;
  }
  .social-content-wrapper-text {
    /*padding: 1.5rem;*/
  }
  .social-content-wrapper-numbers {
    padding: 2rem 1rem;
  }
}

/* About page main image section ends */
