/* about.php page inner style code starts */

.who-we-are-section-2 {
  background-color: #fff; /* Assuming a white background for the section */
  padding-top: 4rem; /* py-5 equivalent or custom */
  padding-bottom: 4rem; /* py-5 equivalent or custom */
}

.image-graphic-container {
  background-color: #bdbdbd;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}

.image-graphic-container img {
  max-width: 100%;
  height: auto;
}

.section-title-wwa {
  font-size: 2.2rem; /* Adjust as needed */
  font-weight: 600; /* Semi-bold */
  color: #333;
  margin-bottom: 1.5rem;
}

.text-orange-wwa {
  color: #ff4d00; /* Your specific orange color */
}

.description-wwa p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}
.description-wwa p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  /* Small devices (landscape phones, less than 768px) */
  .image-graphic-container {
    margin-bottom: 2rem; /* Add space between image and text when stacked */
    min-height: auto; /* Allow height to shrink more on mobile */
    padding: 1.5rem;
  }
  .section-title-wwa {
    text-align: center;
    font-size: 1.8rem;
  }
  .description-wwa {
    text-align: center;
  }
  .description-wwa p {
    font-size: 0.95rem;
  }
}

/* *************************************** */

.fw-bold-color {
  color: black;
}
.poly-guide {
  clip-path: polygon(0% 0%, 81% 0%, 100% 16%, 100% 100%, 0% 100%);
}

@media only screen and (max-width: 992px) {
  .poly-guide {
    clip-path: polygon(0% 0%, 83% 0%, 100% 9%, 100% 100%, 0% 100%) !important;
  }
}

@media only screen and (max-width: 576px) {
  .poly-guide {
    clip-path: polygon(0% 0%, 84% 0%, 100% 6%, 100% 100%, 0% 100%) !important;
  }
}

/* ****************************************** */

.about-anovip-section .heading-title {
  font-size: 2.3rem; /* Adjust based on desired size */
  font-weight: 600; /* Semi-bold */
  color: #333; /* Dark gray for the main text */
  line-height: 1.3;
}

.about-anovip-section .text-orange {
  color: #ff4d00; /* The orange color from your previous example */
}

.about-anovip-section .description-text p {
  font-size: 1rem; /* Standard paragraph size */
  color: #555; /* Medium gray for paragraph text */
  line-height: 1.6;
}

.about-anovip-section .description-text p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  /* Medium devices (tablets, less than 992px) */
  .about-anovip-section .heading-title {
    text-align: center; /* Center heading when stacked */
    font-size: 2.2rem;
    margin-bottom: 20px; /* Add some space below heading when stacked */
  }
  .about-anovip-section .description-text {
    text-align: center; /* Center description text when stacked */
  }
}
@media (max-width: 767.98px) {
  /* Small devices (landscape phones, less than 768px) */
  .about-anovip-section .heading-title {
    font-size: 2rem;
  }
  .about-anovip-section .description-text p {
    font-size: 0.95rem;
  }
}

/* about.php page inner style code Ends */

/* insights.php ppage inner style code starts */

.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 2px 12px;
  text-decoration: none;
  font-size: 15px;
}

.topnav a:hover {
  background-color: #ffffff;
  color: #ff4d00;
}

.topnav a.active {
  background-color: #ff4d00;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {
    position: relative;
  }
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/* *********************** */

.anv-article-section {
  padding: 60px 20px;
}

.anv-container {
  max-width: 1200px;
  margin: 0 auto;
}

.anv-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.anv-section-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #f39c12; /* Using the orange from your previous example */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.anv-section-title {
  font-family: "Arial", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50; /* Dark blue/grey */
  margin-bottom: 15px;
}

.anv-section-description {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.anv-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.anv-article-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.08); /* Softer, more diffused shadow */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden; /* Ensures pseudo-elements don't spill */
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  position: relative; /* For pseudo-elements if needed */
}

.anv-article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(44, 62, 80, 0.12);
}

/* Optional: Add a subtle colored top border accent on hover */
.anv-article-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 5px;
  background-color: #ff4d00; /* Accent color */
  transition: width 0.3s ease-out;
}

.anv-article-card:hover::before {
  width: 100%;
}

.anv-card-content {
  padding: 25px 30px;
}

.anv-article-tag {
  display: inline-block;
  background-color: #f8f9fa; /* Light grey tag background */
  color: #495057; /* Darker grey text for tag */
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.anv-article-title {
  font-family: "Arial", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.3;
}

.anv-article-summary {
  font-size: 0.95rem;
  color: #5a6a7a; /* Slightly softer text color */
  margin-bottom: 0; /* Pushed to footer */
}

.anv-card-footer {
  padding: 0px 30px 25px 30px; /* Adjust padding if title/summary too long or short */
  margin-top: 20px; /* Ensure space above button */
  /* border-top: 1px solid #e9ecef; Optional separator */
}

.anv-btn {
  display: inline-flex; /* For icon alignment */
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Arial", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.anv-btn-primary {
  background-color: #ff4d00; /* Accent orange */
  color: #ffffff;
}

.anv-btn-primary:hover {
  background-color: #e67e22; /* Darker orange */
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
  transform: translateY(-2px);
}

.anv-btn i {
  margin-left: 8px;
  font-size: 0.9em; /* Relative to button text */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .anv-article-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .anv-section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .anv-section-title {
    font-size: 2.1rem;
  }
  .anv-article-title {
    font-size: 1.25rem;
  }
  .anv-card-content,
  .anv-card-footer {
    padding: 20px 25px;
  }
  .anv-card-footer {
    padding-top: 0;
    padding-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .anv-article-grid {
    grid-template-columns: 1fr; /* Stack cards on very small screens */
  }
  .anv-section-title {
    font-size: 1.8rem;
  }
  .anv-section-description {
    font-size: 0.9rem;
  }
}
/* === REUSABLE BUTTON STYLES (UPDATED PRIMARY COLOR) === */
.anv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Arial", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.anv-btn-primary {
  background-color: #ff4d00;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.anv-btn-primary:hover {
  background-color: #e63c00;
  box-shadow: 0 6px 20px rgba(255, 77, 0, 0.4);
  transform: translateY(-2px);
}
/* === END OF REUSABLE BUTTON STYLES === */

/* === BREAKER SECTION SPECIFIC STYLES (UPDATED LAYOUT) === */
.anv-breaker-section {
  background-color: #ff4d00;
  padding: 60px 20px;
  position: relative;
}

.anv-breaker-container {
  max-width: 1290px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* Pushes content left and CTA right */
  align-items: center; /* Vertically aligns items if they have different heights */
  gap: 40px; /* Adds space between the text block and the button */
}

.anv-breaker-content-left {
  flex: 1 1 65%; /* Takes up more space, allows shrinking/growing */
  text-align: left; /* Align text to the left */
}

.anv-breaker-headline {
  font-family: "Arial", sans-serif;
  font-size: 2.3rem; /* Adjust as needed */
  font-weight: 700;
  color: #ffffff; /* Dark text color if on light background */
  /* color: #ffffff; // If on dark background */
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.3;
}

.anv-breaker-text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #fff; /* Medium dark text if on light background */
  /* color: #e0e0e0; // If on dark background */
  line-height: 1.7;
  margin-bottom: 0; /* Remove bottom margin as button is separate */
}

.anv-breaker-cta-right {
  flex-shrink: 0; /* Prevents the button container from shrinking */
  text-align: right; /* Aligns button to the right if its container is wider */
}

.anv-breaker-btn {
  padding: 15px 35px;
  font-size: 1rem;
  min-width: 220px; /* Give the button a decent minimum width */
  text-align: center; /* Ensure text inside button is centered */
}

/* Responsive Adjustments for the Breaker Section */
@media (max-width: 768px) {
  /* Tablet and below */
  .anv-breaker-container {
    flex-direction: column; /* Stack items vertically */
    text-align: center; /* Center align all content within the container */
    gap: 30px;
  }
  .anv-breaker-content-left {
    text-align: center; /* Ensure text within this block is also centered */
    flex-basis: auto; /* Reset flex basis */
  }
  .anv-breaker-text {
    margin-bottom: 20px; /* Add margin back if button is below */
  }
  .anv-breaker-cta-right {
    text-align: center; /* Center the button */
  }
  .anv-breaker-headline {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  /* Mobile */
  .anv-breaker-headline {
    font-size: 1.7rem;
  }
  .anv-breaker-text {
    font-size: 0.95rem;
  }
  .anv-breaker-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
    width: 100%; /* Make button full width for easier tapping */
    max-width: 300px; /* But not excessively wide */
    margin-left: auto;
    margin-right: auto;
  }
}

.schedule-btn-heading-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.schedule-btn-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 31px 10px 20px;
  overflow: hidden;
  border-radius: 50px;
  border: 1.5px solid #ccc;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out,
    border-color 0.4s ease-in-out, transform 0.4s ease-in-out;
  transform: translateX(0);
  flex-shrink: 0;
}

.schedule-btn-text {
  display: inline-block;
  margin-left: 0;
  margin-right: 10px;
  transition: transform 0.4s ease-in-out;
  transform: translateX(0);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.schedule-btn-icon-container {
  position: absolute;
  top: 15%;
  transform: rotate(-40deg);
  right: 5px;
  left: auto;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #ff4d00;
  border: 1.5px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: left 0.4s ease-in-out, right 0.4s ease-in-out,
    background-color 0.4s ease-in-out, border-color 0.4s ease-in-out,
    transform 0.4s ease-in-out; /* Added transform if needed */
}

.schedule-btn-arrow-icon {
  fill: #ffffff;
  transition: fill 0.4s ease-in-out;
  width: 16px;
  height: 16px;
}

.schedule-btn-button:hover {
  background-color: #cbcbcb;
  color: #000;
  border-color: #cbcbcb;
  transform: translateX(0);
}

.schedule-btn-button:hover .schedule-btn-text {
  transform: translateX(28px);
}

.schedule-btn-button:hover .schedule-btn-icon-container {
  left: 5px;
  right: auto;
  background-color: #ffffff;
  border-color: transparent;
}

.schedule-btn-button:hover .schedule-btn-arrow-icon {
  fill: #000000;
}

.schedule-btn-button:focus-visible {
  outline: 2px solid #ff6831;
  outline-offset: 2px;
}
.cta-heading {
  color: white;
}
/* **************************** */

#corporate-web-features {
  padding: 60px 0;
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* insights.php page inner style code Ends */

/* career.php page inner style code starts */
.anovIP-India {
  min-height: 280px;
}
@media (max-width: 575px) {
  .image-clip-path {
    clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 20%);
  }
}
@media (min-width: 576px) and (max-width: 785px) {
  .image-clip-path {
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 18%);
  }
}
@media (min-width: 786px) and (max-width: 1050px) {
  .image-clip-path {
    clip-path: polygon(11% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 20%);
  }
}
@media (min-width: 1051px) and (max-width: 1199px) {
  .image-clip-path {
    clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 21%);
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .image-clip-path {
    clip-path: polygon(28% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 18%);
  }
}
@media (min-width: 1400px) {
  .image-clip-path {
    clip-path: polygon(35% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 18%);
  }
}

/* ****************************** */

.poly-guide {
  clip-path: polygon(0% 0%, 85% 0%, 100% 20%, 100% 100%, 0% 100%);
}

@media only screen and (max-width: 992px) {
  .poly-guide {
    clip-path: polygon(0% 0%, 83% 0%, 100% 9%, 100% 100%, 0% 100%) !important;
  }
}

@media only screen and (max-width: 576px) {
  .poly-guide {
    clip-path: polygon(0% 0%, 84% 0%, 100% 6%, 100% 100%, 0% 100%) !important;
  }
}

/* ******************* */

.gall-img {
  height: 243px !important;
}
@media (max-width: 1399.98px) {
  .responsive-video {
    height: 625px !important;
  }
  .gall-img {
    height: 195px !important;
  }
}
@media (max-width: 1199.98px) {
  .responsive-video {
    height: 516px !important;
  }
  .gall-img {
    height: 167px !important;
  }
}

@media (max-width: 991px) {
  .responsive-video {
    height: 100% !important;
  }
}

/* ************************* */

.internship-tabs .list-group-item {
  border: 1px solid #ddd;
  border-radius: 0.375rem !important;
  margin-bottom: 0.75rem;
  color: #495057;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
  font-size: 0.95rem;
}
.internship-tabs .list-group-item:last-child {
  margin-bottom: 0;
}
.internship-tabs .list-group-item.active {
  background-color: #ff4d00;
  border-color: #ff4d00;
  color: white;
}
.internship-tabs .list-group-item.active .apply-now-link {
  color: white;
}
.internship-tabs .list-group-item:not(.active):hover {
  background-color: #f8f9fa;
  border-color: #ccc;
}
.internship-tabs .apply-now-link {
  color: #ff4d00;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap; /* Prevents wrapping */
}
.internship-tabs .apply-now-link:hover {
  text-decoration: underline;
}
.internship-tabs .text-orange-cta {
  color: #ff4d00 !important;
  font-weight: 500;
  font-size: 0.95rem;
  width: 100%; /* Make the text span full width */
  text-align: left; /* Align text to the left */
}
.internship-tabs .list-group-item.active .text-orange-cta {
  color: white !important;
}
.internship-tab-content .tab-pane {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0 !important;
  border-radius: 0.375rem !important;
  min-height: 320px; /* Adjusted min-height */
  position: relative; /* For the pseudo-element */
}
.internship-tab-content .tab-pane::after {
  /* Small triangle icon */
  content: "";
  position: absolute;
  bottom: 15px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #555; /* Dark gray triangle pointing down */
}

/* career.php page inner style code ends */

/* service pages inner style code starts */

.step-number {
  font-size: 6rem;
  font-weight: bold;
  color: #ff4d00;
  line-height: 1;
  margin-bottom: 25px;
  text-align: right; /* Aligns number to the right */
}

.step-item {
  text-align: left; /* Keeps the title and description aligned left */
  position: relative;
}
.carta-process-section {
  background-color: #f8f9fa;
}

.comprehensive-services-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}

.steps-flex-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}

.step-item-wrapper {
  padding: 0.5rem;
  width: 100%;
}

@media (min-width: 992px) {
  .step-item-wrapper {
    width: 20%; 
  }
  
  .step-item-wrapper-25per{
     width: 25% !important;
  }

  .step-item-wrapper.six-col {
    width: 16.6666%; /* 6 items per row */
  }
}

.step-item {
  padding: 30px 20px 20px 20px;
  height: 100%;
  background-color: #fff;
  transition: background-color 0.3s ease;
  border-right: 1px solid #daa5204a;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.step-item-first {
  background-color: #fff;
}

.step-item:hover {
  background-color: #e9ecef;
}

.step-number {
  font-size: 5rem;
  font-weight: bold;
  color: #ff4d00;
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-description {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .step-item-wrapper {
    width: 50%;
  }
}

@media (max-width: 767.98px) {
  .step-item-wrapper {
    width: 100%;
  }

  .step-number {
    font-size: 3rem;
  }

  .step-title {
    font-size: 1.1rem;
  }
}

/* *************************** */

.patent-graphic {
  max-width: 250px; /* Adjust size as needed */
  margin-top: 20px;
}

.card {
  border: 1px solid #e0e0e0; /* Subtle border for cards */
  border-radius: 0.5rem; /* Slightly more rounded corners for cards */
}

.card-title {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.text-muted.small {
  font-size: 0.9em;
  line-height: 1.5;
}

/* Custom Orange Background for the specific card */
.bg-custom-orange {
  background-color: #ff4d00 !important; /* Adjust this to the exact orange in the image */
}

/* Custom Pill Badges */
.badge-outline-custom {
  background-color: transparent;
  border: 1px solid #ff4d00; /* Orange-like border color, adjust */
  color: #ff4d00; /* Orange-like text color, adjust */
  padding: 0.4em 0.8em;
  font-weight: 500;
}

.badge-outline-light {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 0.4em 0.8em;
  font-weight: 500;
}

/* Ensure consistent card height in a row */
.h-100 {
  height: 100% !important;
}

/* Text styling for "Key User" and "Strategic Value" labels */
.fw-semibold {
  color: #555; /* Slightly lighter than pure black for these labels */
}

.fw-semibold-2 {
  color: #fff;
}

.display-1.text-muted {
  color: #424344 !important; /* Bootstrap default muted, can be adjusted */
}

h1.fw-bold {
  color: #343a40; /* Dark gray for main heading */
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .patent-graphic {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .col-lg-4.text-lg-start {
    text-align: center !important;
  }
}

@media (max-width: 767.98px) {
  .mobile-mt-2 {
    margin-top: 1rem !important;
  }
}

/* ************************ */

.carta-process-section {
  background-color: #f8f9fa;
}

.comprehensive-services-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}

/* Service pages inner style code ends */

/* Article pages inner style code starts */

.hero-content-row {
  background-color: #ff4d00;
  color: white;
}
.hero-text-column {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.hero-breadcrumbs {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  opacity: 0.9;
  margin-top: 5rem;
}
.hero-breadcrumbs a {
  color: white;
}
.hero-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}
.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
}
.hero-image-column {
  padding: 0;
  display: flex;
  align-items: stretch;
}
.hero-image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-section {
  padding: 40px 0;
  color: #333;
}

.article-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.article-main-content {
  border-top: 1px solid #ff4d00;
  padding-top: 20px;
}

.article-main-content h1 {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #111;
}

.article-main-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
.article-main-content ol li {
  margin-bottom: 10px;
}
.article-main-content ol li strong {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
}

.article-main-content p {
  font-size: 0.8rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
}

.article-main-content a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}
.article-main-content a:hover {
  text-decoration: underline;
}

.article-sidebar {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  max-height: calc(100vh - 40px);
}

.sidebar-block {
  margin-bottom: 30px;
}

.sidebar-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #777;
  /*text-transform: uppercase;*/
  margin-bottom: 10px;
  display: block;
  letter-spacing: 0.5px;
}

.author-info-no-avatar .author-name {
  font-weight: 600;
  margin: 0 0 2px 0;
  color: #333;
  font-size: 0.9rem;
}

.author-info-no-avatar .author-title {
  font-size: 0.85rem;
  color: #555;
  margin: 0;
}

.share-icons {
  display: flex;
  gap: 20px;
}

.share-icons a {
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
  font-weight: 700;
}
.share-icons a:hover {
  color: #007bff;
}

.subscription-form-block {
  background-color: #f7f7f7;
  padding: 25px;
  border-radius: 4px;
}

.subscription-form-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 8px;
  color: #111;
}

.subscription-form-block p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label.form-label-custom {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #666;
  /*text-transform: uppercase;*/
  margin-bottom: 8px;
}

.form-group input[type="email"].form-control-custom,
.form-group .select-wrapper-custom select.form-select-custom {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 0.9rem;
  background-color: #fff;
  line-height: 1.5;
}
.form-group input[type="email"].form-control-custom::placeholder {
  color: #aaa;
}

.select-wrapper-custom {
  position: relative;
}

.select-wrapper-custom::after {
  content: "▼";
  font-size: 0.6em;
  color: #777;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-group .select-wrapper-custom select.form-select-custom {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.checkbox-group-custom {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.checkbox-group-custom input[type="checkbox"] {
  margin-top: 4px;
  margin-right: 10px;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

.checkbox-group-custom label {
  font-size: 0.8rem;
  color: #555;
  font-weight: 400;
  text-transform: none;
  line-height: 1.4;
}

.subscribe-button-custom {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  /*border-radius: 3px;*/
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.subscribe-button-custom:hover {
  background-color: #0056b3;
}

@media (min-width: 768px) {
  .hero-text-column {
    padding: 4rem 2.5rem;
  }
  .hero-main-title {
    font-size: 3.2rem;
  }
  .hero-subtitle {
    font-size: 1.15rem;
  }
}
@media (min-width: 992px) {
  .hero-text-column {
    padding: 5rem 3rem;
  }
  .hero-main-title {
    font-size: 3.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
}
@media (min-width: 1200px) {
  .hero-main-title {
    font-size: 4rem;
  }
}
@media (max-width: 991.98px) {
  .hero-image-column {
    min-height: 300px;
  }
  .hero-text-column {
    text-align: center;
  }

  .article-sidebar {
    position: static;
    max-height: none;
    margin-top: 40px;
  }
  .article-main-content h1 {
    font-size: 1.7rem;
  }
}

/* Article pages inner style code ends */

/* fast-insights.php page inner style code starts */

    .insights-section {
      padding-top: 60px;
      padding-bottom: 60px;
    }
    
    .insights-title {
      font-size: 2.8rem;
      font-weight: bold;
      color: #343a40;
      margin-bottom: 0.5rem;
    }

    .insights-title .highlight-2 {
      color: #ff4500;
    }

    .insights-subtitle {
      font-size: 1rem;
      color: #6c757d;
      margin-bottom: 40px;
      margin-left: auto;
      margin-right: auto;
      max-width: 80%;
    }

    .insight-card {
      background-color: white;
      border: 1px solid #e0e0e0;
      border-radius: 12px;
      padding: 20px 20px 20px 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      cursor: pointer;
      flex-shrink: 0; 
    }
    
    .insight-card:hover{
        border: 1px solid goldenrod;
    }

    .card-custom-icon {
      width: 20px;
      height: 20px;
      background-color: #ff4500;
      border-radius: 4px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
    }

    .card-custom-icon .bi-arrow-right {
      transform: rotate(305deg) translateY(-1px) translateX(-1px);
    }

    .card-item-title {
      color: #ff4500;
      font-weight: 600;
      font-size: 0.95rem;
      margin-top: 1.4rem;
      margin-bottom: 0.5rem;
      line-height: 1.4;
    }

    .card-item-description {
      font-size: 0.85rem;
      color: #555;
      line-height: 1.5;
    }

    /* --- DESKTOP VIEW STYLES (md screens and up) --- */

    .insights-grid-container {
      display: flex; 
      justify-content: center;
      gap: 16px;
      height: 750px;
      overflow: hidden;
      position: relative;
      background-color: #f8f9fa;
    }

    .insight-column {
      flex: 0 0 calc(20% - 13px);
      max-width: calc(20% - 13px);
      height: 100%;
      overflow: hidden;
      position: relative;
    }

    .insight-column-track {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .insight-column-track .insight-card {
      margin-bottom: 20px;
    }

    .insight-column.odd-column .insight-column-track {
      animation: slide-up 60s linear infinite;
    }

    .insight-column.even-column .insight-column-track {
      animation: slide-down 60s linear infinite;
    }

    .insight-column-track.paused {
      animation-play-state: paused !important;
    }
    
    @keyframes slide-up {
      0% { transform: translateY(0); }
      100% { transform: translateY(-50%); }
    }

    @keyframes slide-down {
      0% { transform: translateY(-50%); }
      100% { transform: translateY(0); }
    }

    /* --- MOBILE & TABLET VIEW STYLES (screens smaller than md) --- */
    .mobile-insights-container {
       display: flex; 
       flex-direction: column;
       gap: 16px;
       overflow: hidden;
       background-color: #f8f9fa;
       padding-top: 20px;
       padding-bottom: 20px;
    }

    .mobile-insight-row {
      width: 100%;
      overflow: hidden;
    }

    .mobile-insight-track {
      display: flex;
      flex-direction: row;
      gap: 16px;
    }
    
    .mobile-insight-track .insight-card {
      width: 280px;
    }

    .mobile-insight-track.slide-left {
        animation: slide-left 30s linear infinite;
    }

    .mobile-insight-track.slide-right {
        animation: slide-right 30s linear infinite;
    }

    .mobile-insight-track.paused {
      animation-play-state: paused !important;
    }

    @keyframes slide-left {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    @keyframes slide-right {
        0% { transform: translateX(-50%); }
        100% { transform: translateX(0); }
    }

    /* Minor adjustments for small screens */
    @media (max-width: 767px) {
        .insights-title {
            font-size: 2.2rem;
        }
        .insights-subtitle {
            max-width: 95%;
        }
    }
    
/* fast-insights.php page inner style code ends */

/* it-services-section.php page inner style code starts */

.it-services-overview-section {
  padding: 60px 0;
}

.it-services-overview-section .service-card {
  position: relative;
  min-height: 300px;
  display: flex;
  background-color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out;
  border-radius: 4px;
}

.it-services-overview-section .service-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.it-services-overview-section .service-text-wrapper {
  position: relative;
  width: 60%;
  padding: 25px 30px;
  padding-right: 50px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.it-services-overview-section .service-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}

.it-services-overview-section .service-text-wrapper h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.it-services-overview-section .service-text-wrapper p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Card 1: Primary Orange Styling */
.it-services-overview-section .service-card.card-primary .service-text-wrapper {
  background-color: #ff4d00;
  color: var(--text-light);
}

/* Other Cards: Default Styling */
.it-services-overview-section
  .service-card:not(.card-primary)
  .service-text-wrapper {
  background-color: #fff;
}

.it-services-overview-section
  .service-card:not(.card-primary)
  .service-text-wrapper
  h3 {
  color: #008272;
}

.it-services-overview-section
  .service-card:not(.card-primary)
  .service-text-wrapper
  p {
  color: #333;
}

/* Hover effect for non-primary cards */
.it-services-overview-section
  .service-card:not(.card-primary):hover
  .service-text-wrapper {
  background-color: #ff4d00;
  color: #fff;
}

/* Ensure text color changes on hover for h3 and p */
.service-card:not(.card-primary):hover .service-text-wrapper h3,
.service-card:not(.card-primary):hover .service-text-wrapper p {
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .it-services-overview-section .service-text-wrapper {
    width: 100%;
    clip-path: none;
    min-height: 200px;
    text-align: center;
    padding-right: 30px;
  }
  .it-services-overview-section .service-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 220px;
  }
  .it-services-overview-section .service-card {
    flex-direction: column;
  }
  .service-card.image-first-on-mobile .service-text-wrapper {
    order: 2;
  }
  .service-card.image-first-on-mobile .service-image-wrapper {
    order: 1;
  }
}

@media (max-width: 767px) {
  .it-services-overview-section .service-text-wrapper h3 {
    font-size: 1.5rem;
  }
  .it-services-overview-section .service-text-wrapper p {
    font-size: 0.9rem;
  }
  .it-services-overview-section .service-card {
    min-height: auto;
  }
}
/* it-services-section.php page inner style code ends */

/* managing-intellectual-property page inner style code starts */

.anovip-insight-blog-detail {
  padding: 170px 0;
  background-color: #ffffff;
  color: #333;
  font-family: sans-serif;
  line-height: 1.6;
}

.anovip-insight-blog-detail p {
  line-height: 1.7;
}

.anovip-insight-container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.anovip-insight-content-wrapper {
  opacity: 1;
  transform: none;
}

.anovip-insight-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ff4d00;
  line-height: 1.2;
}

.anovip-insight-rich-text p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.anovip-insight-rich-text h3,
.anovip-insight-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #ff6831;
}

.anovip-insight-rich-text h4,
.anovip-insight-subheading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2.25rem;
  margin-bottom: 0.9rem;
  line-height: 1.3;
  color: #303030;
}

.anovip-insight-rich-text h5,
.anovip-insight-minor-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  color: #333333;
}

.anovip-insight-rich-text h6,
.anovip-insight-smallest-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 0.7rem;
  line-height: 1.4;
  color: #353535;
  text-transform: uppercase;
}

.anovip-insight-list {
  margin-bottom: 1.5rem;
  padding-left: 25px;
}

.anovip-insight-list li {
  margin-bottom: 0.6rem;
}

.anovip-insight-list-unordered {
  list-style-type: disc;
}

.anovip-insight-list-ordered {
  list-style-type: decimal;
}

.anovip-insight-figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.anovip-insight-figure-fullwidth {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

.anovip-insight-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.anovip-insight-blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #ff6831;
  background-color: #f8f8f8;
  font-style: italic;
  color: #555;
}

.anovip-insight-blockquote p {
  margin-bottom: 0;
}

.insights-hero-section {
  background-image: url(images/insights-page-images/asia-insights.jpg);
  color: #fff;
  padding: 170px 0 60px 0;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.insights-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.insights-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.insights-logo {
  font-size: 1.8em;
  font-weight: bold;
}

.insights-nav-links {
  display: flex;
  gap: 25px;
}

.insights-nav-link {
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.insights-nav-link:hover {
  opacity: 0.8;
}

.insights-hero-content {
  max-width: 700px;
  margin-top: 3.5rem;
}

.insights-main-heading {
  font-size: 4em;
  font-weight: bold;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 30px;
  color: white;
}

.insights-search-form {
  display: flex;
  width: 100%;
  max-width: 650px;
  background-color: var(--insights-button-bg-color);
  /*border-radius: 6px; */
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.insights-search-input {
  flex-grow: 1;
  padding: 15px 20px;
  font-size: 1em;
  border: none;
  outline: none;
  color: #333;
}

.insights-search-input::placeholder {
  color: #888;
}

.insights-search-button {
  background-color: var(--insights-button-text-color);
  color: var(--insights-button-bg-color);
  border: 6px solid white;
  padding: 15px 30px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.insights-search-button:hover {
  opacity: 0.9;
}

.insights-popular-searches {
  font-size: 0.9em;
  color: var(--insights-text-color-light-secondary);
  margin-top: 15px;
}

.insights-popular-searches a {
  color: var(--insights-text-color-light);
  text-decoration: underline;
  margin: 0 3px;
  transition: opacity 0.2s ease;
}

.insights-popular-searches a:hover {
  opacity: 0.8;
}

.insights-example-box {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 8px;
  max-width: 350px;
}
.insights-example-box h2 {
  margin-top: 0;
}

/* managing-intellectual-property page inner style code ends */

/* privacy.php page inner style code starts */
.privacy-page {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: #212529;
  font-size: 1rem;
  background-color: #ffffff;
}

.privacy-page h1,
      .privacy-page h2, /* Combined h2 with h1 rule for consistency if needed */
      .privacy-page h3,
      .privacy-page h4,
      .privacy-page h5,
      .privacy-page h6 {
  font-family: "Arial", sans-serif;
  font-weight: 800; /* Default font-weight for headings */
  margin-bottom: 0.75rem; /* Common bottom margin */
}

.privacy-page h1.display-6 {
  /* Specific style for H1 with display-6 */
  font-weight: 600;
  letter-spacing: -0.02em;
}

.privacy-page .terms-page-title {
  /* Style for the main Terms of Use H1 */
  font-size: 2.25rem; /* Example size, adjust as needed */
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.privacy-page .text-orange {
  color: #ff4d00 !important;
}
.privacy-page .bg-orange {
  background-color: #ff4d00 !important;
  color: #fff;
}
.privacy-page .border-orange {
  border-color: #ff4d00 !important;
}

.privacy-page h2 {
  /* Existing h2 style, kept for potential other uses */
  font-size: 1.5rem;
  position: relative;
  padding-left: 1rem;
  border: none;
  margin-top: 0.5rem;
}

.privacy-page h2::before {
  /* Existing h2::before style */
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 5px;
  height: 90%;
  background: #ff4d00;
  border-radius: 4px;
}

.privacy-page .terms-section-heading {
  /* Specific styling for h3 in terms sections */
  font-size: 1.35rem; /* Slightly larger for better hierarchy */
  margin-top: 2rem; /* More space above section headings */
  margin-bottom: 0.85rem;
  color: #333;
  font-weight: 700; /* Bolder headings */
}

.privacy-page .terms-text {
  /* Styling for paragraph text within terms */
  margin-bottom: 1rem;
  line-height: 1.7; /* Improved line height for readability */
}

.privacy-page .intro-text {
  /* Special style for the introductory paragraph */
  margin-bottom: 2rem; /* More space after intro */
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .privacy-page h2 {
    font-size: 1.75rem;
  }
  .privacy-page .terms-section-heading {
    /* Responsive h3 size */
    font-size: 1.5rem;
  }
}

.privacy-page ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem; /* Indent lists */
}
.privacy-page ul li {
  margin-bottom: 0.5rem; /* Space between list items */
}
.privacy-page p {
  margin-bottom: 1rem;
}

.privacy-page .nav-pills .nav-link {
  color: #212529;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
}

.privacy-page .nav-pills .nav-link:hover {
  border-color: #ff4d00;
  background-color: rgba(255, 77, 0, 0.08);
  transform: translateY(-2px);
}

.privacy-page .nav-pills .nav-link.active {
  background-color: #ff4d00;
  color: #fff;
  border-color: #ff4d00;
  box-shadow: 0 4px 10px rgba(255, 77, 0, 0.35);
  transform: translateY(-2px);
}

@media (min-width: 992px) {
  .privacy-page #legalNav {
    flex-direction: column;
    position: sticky;
    top: 120px;
    align-self: flex-start;
    align-items: flex-start;
    z-index: 1020;
    height: fit-content;
    margin-bottom: 0;
    min-width: 180px;
    padding-left: 0.5rem;
    border-right: 1px solid #e5e5e5;
    padding-right: 1.5rem;
  }

  .privacy-page article.col-lg-9 {
    max-width: 680px; /* Consider if this applies or if col-lg-12 is always for terms */
    flex-grow: 0;
    flex-shrink: 0;
    width: auto;
  }

  .privacy-page > .row {
    justify-content: center;
  }

  .privacy-page aside.col-lg-3 {
    flex: 0 0 auto;
    width: 180px;
    padding-right: 1.5rem;
  }
}

.privacy-page .legal-card {
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-image: linear-gradient(to bottom, #ffffff, #fefefe);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-page .legal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .privacy-page .legal-card {
    padding: 3rem 2.5rem;
  }
}

@media (min-width: 992px) {
  .privacy-page .legal-card {
    padding: 3rem 3rem;
  }
}

#terms, /* Original ID from ToU */
      #privacy {
  /* New ID for Privacy Policy content block */
  padding-top: 0;
  padding-bottom: 0;
  background-color: transparent;
}

.section-divider {
  /* Style for the divider line */
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0)
  );
  margin-top: 0.5rem;
  margin-bottom: 2.5rem; /* More space after divider */
}

#toTop {
  box-shadow: var(--shadow); /* Assuming --shadow is defined elsewhere */
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  display: flex;
  transform: scale(0.9) translateY(10px);
}

#toTop.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

#toTop:hover {
  opacity: 1;
  background-color: #e64600 !important;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(255, 77, 0, 0.4);
}

.privacy-page table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.privacy-page table thead tr {
  background: linear-gradient(to bottom, #f8f8f8, #f1f1f1);
  font-weight: 600;
  color: #333;
}

.privacy-page table tbody tr:nth-child(even) {
  background: #fafafa;
}

.privacy-page table th,
.privacy-page table td {
  /* Combined rule */
  padding: 0.85rem 1.2rem;
  border-top: 1px solid #e0e0e0;
  vertical-align: top;
  line-height: 1.5;
}

.privacy-page table th {
  border-top: none;
  letter-spacing: 0.03em;
}

.privacy-page table td:not(:last-child),
.privacy-page table th:not(:last-child) {
  /* Combined rule */
  border-right: 1px solid #e0e0e0;
}

.privacy-page table tbody tr:first-child td {
  border-top: none;
}

.privacy-page table tbody tr:hover {
  background-color: rgba(255, 77, 0, 0.02);
}

.privacy-page a,
.privacy-page .terms-link {
  /* Added .terms-link here */
  color: #ff4d00;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.privacy-page a:hover,
.privacy-page .terms-link:hover {
  /* Added .terms-link here */
  color: #d93d00;
  text-decoration: underline;
}

@media print {
  #legalNav,
  #toTop,
  aside.col-lg-3 {
    display: none !important;
  }
  .privacy-page {
    margin: 0.75in;
    font-size: 10pt;
    line-height: 1.4;
    background-color: #fff !important;
  }
  .privacy-page {
    padding: 0 !important;
    max-width: 100% !important;
  }
  .privacy-page > .row {
    justify-content: flex-start;
  }
  .privacy-page article.col-lg-9,
  .privacy-page article.col-lg-12 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .legal-card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
    padding: 1rem !important;
    margin-bottom: 1.5rem;
    border-radius: 0 !important;
    transform: none !important;
    background-image: none !important;
  }
  .privacy-page .terms-page-title,
  .privacy-page h2 {
    font-size: 14pt !important;
    padding-left: 0 !important;
  }
  .privacy-page h2::before {
    height: 80%;
    top: 0.15rem;
  }
  .privacy-page .terms-section-heading {
    font-size: 12pt !important;
    margin-top: 1rem;
  }
  .privacy-page h1,
  .privacy-page h2,
  .privacy-page h3 {
    page-break-after: avoid;
  }
  .privacy-page table,
  .privacy-page thead,
  .privacy-page tbody,
  .privacy-page tr,
  .privacy-page td,
  .privacy-page li {
    page-break-inside: avoid;
  }
  .privacy-page a {
    text-decoration: none;
    color: #000 !important;
  }
  .privacy-page a[href^="mailto:"]:after {
    content: " (" attr(href) ")";
    font-size: 90%;
  }
  .privacy-page a[href^="#"] {
    display: none;
  }
  #privacy p.small.fst-italic {
    display: none;
  }
  .privacy-page .text-orange {
    color: #000 !important;
  }
  .privacy-page h2::before {
    background: #000 !important;
  }
  .privacy-page table {
    border: 1px solid #666;
  }
  .privacy-page table th,
  .privacy-page table td {
    border-color: #ccc;
    padding: 0.4rem 0.6rem;
  }
  .privacy-page table thead tr {
    background: #eee;
  }
  .privacy-page table tbody tr:nth-child(even) {
    background: #f9f9f9;
  }
}
/* privacy.php page inner style code ends */

/* related-articles.php page inner style code starts */
.ebooks-webinars-section {
  background-color: #fff;
}

.rel-art {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
}

.navigation-arrows .btn {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  border-color: #ced4da;
}

.navigation-arrows .btn:hover {
  background-color: #e9ecef;
  border-color: #adb5bd;
  color: #495057;
}

.resource-cards-container {
  display: flex;
  overflow-x: auto;
  padding-bottom: 20px;
  gap: 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.resource-cards-container::-webkit-scrollbar {
  display: none;
}

.resource-card-wrapper {
  flex: 0 0 auto;
  width: 320px;
  min-width: 300px;
}

.resource-card {
  background-color: var(--card-bg-color, #cccccc);
  padding: 12px;
  border-radius: 8px;
  height: 100%;
  display: flex;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-content {
  background-color: white;
  padding: 25px 20px;
  border-radius: 4px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resource-tag {
  display: inline-block;
  background-color: #ff4d00;
  color: white;
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 12px;
}

.resource-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #212529;
  line-height: 1.3;
  margin-bottom: 15px;
  flex-grow: 1;
}

.resource-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.resource-link:hover {
  color: var(--card-accent-color, #007bff);
}

.resource-link i {
  margin-left: 6px;
  font-size: 0.8em;
}

@media (max-width: 767px) {
  .resource-card-wrapper {
    width: 280px;
  }
  .rel-art {
    font-size: 1.5rem;
  }
  .resource-title {
    font-size: 1.2rem;
  }
}
/* related-articles.php page inner style code ends */

/* Subscribe-for-our-latest page inner style code starts */

.career-cta-banner {
  min-height: auto;
}
.cta-text-column {
  background-color: #ff4d00;
  color: white;
}
.subscribe-input-group .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 0.75rem 1rem;
  background-color: white; /* Fix 1: White background */
}
.subscribe-input-group .form-control::placeholder {
  color: #6c757d;
}
.subscribe-input-group .form-control:focus {
  box-shadow: none; /* Fix 2: Remove focus border */
  border-color: #ced4da;
  outline: none;
}
.subscribe-button {
  background-color: #ff4d00;
  color: #fff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border: 5px solid white;
}
.subscribe-button:hover {
  background-color: #f0f0f0;
  color: #ff4d00;
  transform: none !important; /* Fix 3: Prevent upward movement */
}
.form-check-consent {
  font-size: 0.8rem;
  opacity: 0.8;
}
.form-check-consent .form-check-input:checked {
  background-color: white;
  border-color: white;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ff4d00' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e"); /* Fix 4: Orange checkmark */
}
.form-check-consent .form-check-label {
  padding-left: 0.25rem;
}
#subscribeForm {
  max-width: 545px;
}
@media (max-width: 991.98px) {
  .cta-subscribe-text-area,
  .cta-subscribe-form-area {
    text-align: center;
  }
  #subscribeForm {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-heading {
    font-size: 2rem;
  }
}
@media (max-width: 767.98px) {
  .cta-text-column {
    padding: 20px 15px;
  }
  .cta-heading {
    font-size: 1.8rem;
  }
}

/* Subscribe-for-our-latest page inner style code ends */

/* ***************Comprehensive-IP-section-analytics Starts************** */

      .Comprehensive-IP-section-analytics {
        background-color: #ffffff;
        overflow-x: hidden;
      }
      
      .Comprehensive-IP-section-analytics .fw-semibold {
            color: #fff;
        }
        
        .Comprehensive-IP-section-analytics .fw-semibold:hover {
            color: var(--bs-btn-hover-color);
            background-color: var(--bs-btn-hover-bg);
            border-color: var(--bs-btn-hover-border-color);
        }

      /* General Section Styling */
      .Comprehensive-IP-section-analytics .section-main-title {
        color: #202020;
        font-weight: bold;
      }

      .Comprehensive-IP-section-analytics
        .section-main-title
        .highlight-primary {
        color: #ff4d00;
      }

      .Comprehensive-IP-section-analytics .comprehensive-ip-section {
        box-shadow: rgb(255 255 255 / 15%) 0px 30px 60px -12px inset,
          rgb(0 0 0 / 30%) 0px 18px 36px -18px inset;
      }

      /* Main Add-On Section Styling */
      .add_on-section {
        background-color: #00234c;
        color: white;
        position: relative;
        margin-top: 80px;
        padding-top: 60px;
        padding-bottom: 30px;
      }

      .add_on-title-container {
        padding: 40px 30px 40px 40px;
        position: sticky;
        top: 20px;
        align-self: flex-start;
      }

      .add_on-number {
        font-size: 48px;
        font-weight: bold;
        display: block;
        margin-bottom: 10px;
        line-height: 1;
        color: #ff4d00;
      }

      .add_on-title {
        font-size: 30px;
        font-weight: bold;
        line-height: 1.2;
        margin: 0;
      }

      .add_on-cards-wrapper {
        position: relative;
      }

      .add_on-slider-controls {
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 20;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .add_on-slider-controls button {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 20px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s, opacity 0.3s;
      }

      .add_on-slider-controls button:hover {
        background: rgba(255, 255, 255, 0.2);
      }

      .add_on-slider-controls button:disabled {
        opacity: 0.4;
        cursor: not-allowed;
        background: rgba(0, 0, 0, 0.2);
      }

      .add_on-service-item {
        background-color: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 25px;
        border-radius: 8px;
        height: 100%;
        display: flex;
        flex-direction: column;
      }

      .add_on-service-item h3 {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px;
      }

      .add_on-service-description {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.5;
        margin-bottom: 20px;
        flex-grow: 1;
      }

      .add_on-tags {
        margin-bottom: 20px;
      }

      .add_on-tag-custom {
        background-color: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: white;
        padding: 4px 10px;
        font-size: 12px;
        margin-right: 6px;
        margin-bottom: 6px;
        display: inline-block;
        border-radius: 50px;
      }

      .add_on-strategic-value {
        font-size: 14px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
        font-style: italic;
      }

      .add_on-breaker-section {
        background: #ff4d00;
        position: relative;
        overflow: hidden;
      }

      .add_on-columns-container.active-drag {
        cursor: grabbing;
        cursor: -webkit-grabbing;
        user-select: none; /* Prevent text selection during drag */
      }

      /* ------------------------------------------------------------------- */
      /* --- DESKTOP STACKING BEHAVIOR (>= 992px) --- */
      /* ------------------------------------------------------------------- */
      @media (min-width: 992px) {
        .add_on-columns-container {
          position: relative;
          overflow: hidden;
          min-height: 350px;
          padding: 40px;
        }

        .stack-row {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          padding: 0 40px;
          opacity: 0;
          visibility: hidden;
          transform: translateY(50px);
          transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
            opacity 0.6s, visibility 0.6s;
          z-index: 1;
        }

        .stack-row.active {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
          z-index: 10;
        }

        .stack-row.exit {
          z-index: 5;
          transform: translateY(-50px);
        }
      }

      /* ------------------------------------------------------------------- */
      /* --- TABLET & MOBILE HORIZONTAL SCROLL (< 992px) --- */
      /* ------------------------------------------------------------------- */
      @media (max-width: 991.98px) {
        .add_on-section {
          margin-top: 40px;
        }

        .add_on-title-container {
          position: static;
          text-align: center;
          padding: 40px 20px 20px 20px;
        }

        .add_on-slider-controls {
          position: static;
          flex-direction: row;
          justify-content: center;
          gap: 20px;
          margin-top: 20px;
          margin-bottom: 30px;
        }

        .add_on-columns-container {
          display: flex;
          overflow-x: auto;
          scroll-behavior: smooth;
          -ms-overflow-style: none;
          scrollbar-width: none;
          padding-bottom: 20px;
        }

        .add_on-columns-container::-webkit-scrollbar {
          display: none;
        }

        .add_on-columns-container .row {
          flex-wrap: nowrap;
          margin: 0;
          padding: 0;
          width: 100%;
        }

        .add_on-columns-container .col-md-4 {
          flex-shrink: 0;
          padding: 0 10px;
        }
      }

      /* Tablet specific: 3 cards */
      @media (min-width: 768px) and (max-width: 991.98px) {
        .add_on-columns-container .col-md-4 {
          width: calc(100% / 3);
        }
        .add_on-columns-container {
          padding-inline: 20px;
        }
      }

      /* Mobile specific: 1 card centered with peeking neighbors */
      @media (max-width: 767.98px) {
        .add_on-columns-container {
          scroll-snap-type: x mandatory;
          padding-inline: 10%;
        }
        .add_on-columns-container .col-md-4 {
          width: 100%;
          scroll-snap-align: center;
        }
      }
   
 
/* ***********Comprehensive-IP-section-analytics ends*********************** */

.commitment-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative; /* Ensure content stays above bg elements */
  z-index: 2;
}

/* Main breaker section block */
.commitment-breaker {
  background-color: #ff4d00; /* Primary background */
  color: #ffffff;
  padding: 80px 0; /* More vertical padding */
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Text Styling within the commitment section */
.commitment-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 15px;
  opacity: 0.85;
  letter-spacing: 1px;
}

.commitment-major-text {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

.commitment-highlight-phrase {
  font-weight: 900; /* Extra bold */
  /* color: #fff0e6; */ /* Optional alternative highlight */
}

.commitment-secondary-text,
.commitment-vision {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 20px auto;
  opacity: 0.9;
}

.commitment-vision {
  font-weight: 600;
  margin-bottom: 40px;
}

/* Company Name Highlight specific to this section */
.commitment-company-name-highlight {
  font-weight: 900;
  border-bottom: 3px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 2px;
  display: inline-block;
  white-space: nowrap;
}

/* Button container specific to this section */
.commitment-breaker-buttons {
  margin-top: 30px;
}

/* Base button style specific to this section */
.commitment-btn {
  display: inline-block;
  padding: 12px 30px;
  margin: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

/* Primary button variant specific to this section */
.commitment-btn-primary {
  background-color: #ffffff;
  color: #ff4d00;
  border-color: #ffffff;
}

.commitment-btn-primary:hover {
  background-color: #fff0e6;
  border-color: #fff0e6;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Secondary button variant specific to this section */
.commitment-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.commitment-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Animations specific to commitment section --- */
/* (Note: Prefixed animation classes might be less reusable if intended globally) */
@keyframes commitmentFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes commitmentFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.commitment-animate-fade-in-up {
  opacity: 0; /* Start hidden */
  animation: commitmentFadeInUp 0.8s ease-out forwards;
}

.commitment-animate-fade-in {
  opacity: 0; /* Start hidden */
  animation: commitmentFadeIn 0.8s ease-out forwards;
}

/* Animation Delays specific to commitment section */
.commitment-delay-1 {
  animation-delay: 0.2s;
}
.commitment-delay-2 {
  animation-delay: 0.4s;
}
.commitment-delay-3 {
  animation-delay: 0.6s;
}
.commitment-delay-4 {
  animation-delay: 0.8s;
}

.commitment-breaker-bg-element {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .commitment-breaker {
    padding: 60px 0;
  }
  .commitment-major-text {
    font-size: 2.2rem;
  }
  .commitment-secondary-text,
  .commitment-vision {
    font-size: 1rem;
  }
  .commitment-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .commitment-breaker {
    padding: 50px 0;
  }
  .commitment-subtitle {
    font-size: 1.2rem;
  }
  .commitment-major-text {
    font-size: 1.8rem;
  }
  .commitment-btn {
    display: block;
    width: 80%;
    max-width: 250px;
    margin: 15px auto;
  }
  .commitment-breaker-buttons {
    margin-top: 20px;
  }
  .commitment-company-name-highlight {
    border-bottom-width: 2px;
  }
  .commitment-breaker-bg-element {
    display: none;
  }
}

/* **************************************** */

/* Ready-to-talk-form.php inner page css starts */

.ready-form .custom-input-group {
  display: flex;
  align-items: center;
  width: 100%;
}

.ready-form .custom-input-group .input-group-text .prefix-display {
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-right: none;
  border-radius: 0.25rem 0 0 0.25rem;
  padding: 0.375rem 0.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 0 0 70px;
  white-space: nowrap;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ready-form .custom-input-group .phone-input {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
  flex: 1 1 auto;
  height: 50px;
}

.ready-form .custom-form-control {
  height: 50px;
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: 0.25rem;
}

.ready-form .custom-form-control.message-area {
  height: auto;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}

.ready-form .custom-dropdown {
  position: relative;
  flex: 0 0 auto;
  width: 200px;
}

.ready-form .custom-dropdown-toggle {
  border: 1px solid #ced4da;
  border-radius: 0;
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 0.9rem;
  color: #6c757d;
  background-color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  box-sizing: border-box;
  height: 50px;
  display: flex;
  align-items: center;
}

.ready-form .custom-dropdown.open {
  width: 100%;
}

.ready-form .custom-dropdown.open .custom-dropdown-toggle {
  border-radius: 0 0.375rem 0.375rem 0;
  border-right: 1px solid #ced4da;
}

.ready-form .custom-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 200px;
  overflow-y: auto;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.ready-form .custom-dropdown-item {
  padding: 0.5rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ready-form .custom-dropdown-item:hover,
.custom-dropdown-item.highlighted {
  background-color: #d1e7ff;
}

.ready-form .custom-dropdown-item[disabled] {
  color: #6c757d;
  cursor: not-allowed;
}

.ready-form .custom-dropdown-item.selected {
  font-weight: bold;
}

.ready-form .phone-input.hidden {
  display: none;
}

.ready-form .flag-icon {
  height: 1em;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  margin-right: 5px;
}

.ready-form .custom-input-group > :not(:first-child) {
  margin-left: -1px;
}

.ready-form .custom-dropdown-toggle:focus {
  border-color: #f9690e;
  box-shadow: 0 0 0 0.2rem rgba(249, 105, 14, 0.25);
  outline: none;
}

/* Ready-to-talk-form.php inner page css ends */

/*Business Tips section inner page css starts*/

 /* DESKTOP STYLES (Your Original Code, slightly organized) */
    .social-item-title {
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    .social-text-anovip-orange {
        color: #ff4d00;
    }
    .social-item-description {
        font-size: 0.9rem;
        color: #555;
    }
    .social-item-illustration {
        max-width: 220px;
        height: auto;
    }
    .social-row-full-height {
        /*min-height: 200px;*/
    }
    .social-main-title-small {
        font-size: 1.3rem;
        color: #000;
        font-weight: 600;
    }
    .social-main-title-large {
        font-size: 2rem;
        color: rgb(6 52 108) !important;
        text-transform: uppercase;
        font-weight: 800;
        line-height: 1.2;
    }
    .social-orange-bar-number {
        font-size: 6rem;
        font-weight: 700;
        opacity: 0.8;
    }

    /* --- NEW MOBILE & TABLET STYLES --- */
    .mobile-business-tips-section {
        background-color: #f0f2f5; /* A light grey background for the section */
        padding-top: 40px;
        padding-bottom: 50px;
    }
    .mobile-section-tag {
        font-size: 0.8rem;
        background-color: rgb(6 52 108);
        color: white;
        font-weight: 700;
        padding: 0.5rem 2rem;
        text-transform: uppercase;
        display: inline-block; /* Allows for margin */
        margin-bottom: 20px;
    }
    .mobile-carousel-title {
        color: rgb(6 52 108);
        font-weight: 800;
        font-size: 1.5rem;
        line-height: 1.3;
        text-transform: uppercase;
        margin-bottom: 25px;
    }
    .carousel-tip-card {
        background-color: #ffffff;
        border-radius: 16px;
        padding: 25px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        text-align: center;
        margin-left: 10px;
        margin-right: 10px;
        border: 1px solid #e9ecef;
    }
    .carousel-tip-number {
        font-size: 3.5rem;
        font-weight: 700;
        color: #ff4d00;
        line-height: 1;
    }
    .carousel-tip-image {
        max-height: 140px;
        margin: 15px auto;
    }
    .carousel-tip-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: #ff4d00;
        margin-top: 10px;
        margin-bottom: 8px;
    }
    .carousel-tip-description {
        font-size: 0.9rem;
        color: #555;
        line-height: 1.6;
    }

    /* Customizing Carousel Controls & Indicators */
    .mobile-business-tips-section .carousel-indicators [data-bs-target] {
        background-color: #c0c0c0;
        width: 10px;
        height: 10px;
        border-radius: 100%;
        margin: 0 5px;
        opacity: 0.7;
    }
    .mobile-business-tips-section .carousel-indicators .active {
        background-color: #ff4d00;
        opacity: 1;
    }
    .mobile-business-tips-section .carousel-control-prev-icon,
    .mobile-business-tips-section .carousel-control-next-icon {
        background-color: rgb(6 52 108);
        border-radius: 50%;
        padding: 15px;
        background-size: 50% 50%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    .mobile-business-tips-section .carousel-control-prev {
      left: -20px;
    }
    .mobile-business-tips-section .carousel-control-next {
      right: -20px;
    }

/*Business Tips section inner page css ends*/

/* anovip ai first section Css starts */

      .anovip-ai-first-section {
        background-color: #eef4ff;
      }

      .anovip-ai-first-section .section-heading h2 {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.3;
        color: #343a40;
      }

      .anovip-ai-first-section .section-heading .text-highlight {
        color: #ff4d00;
      }

      .anovip-ai-first-section .content-text p {
        color: #6c757d;
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
      }

      .anovip-ai-first-section .content-text p:last-child {
        margin-bottom: 0;
      }

      @media (max-width: 991.98px) {
        .anovip-ai-first-section .section-heading,
        .anovip-ai-first-section .content-text {
          text-align: center;
        }
      }

      /* For mobile phones */
      @media (max-width: 767.98px) {
        .anovip-ai-first-section .section-heading h2 {
          font-size: 2.2rem;
        }
      }
      /* anovip ai first section ends */
      
      /* why choose section AI starts */

      .why-choose-section-AI {
        background-color: #ff4d00;
        color: #ffffff;
        padding: 100px 0;
        position: relative;
        overflow: hidden;
      }
      
      .why-choose-section-AI .pad-LR {
            padding-right: 6rem;
            padding-left: 1.5rem;
        }

      .why-choose-section-AI::before {
        content: "";
        position: absolute;
        top: -1px;
        left: 0;
        width: 10vw;
        max-width: 300px;
        height: 140px;
        background-color: #eef4ff;
        clip-path: polygon(0 0, 100% 0, 0 100%);
      }

      .why-choose-section-AI .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
      }

      .why-choose-section-AI hr {
        border-top: 1px solid rgba(255, 255, 255);
        margin-bottom: 2.5rem;
      }

      .why-choose-section-AI .feature-item {
        margin-bottom: 2rem;
      }

      .why-choose-section-AI .feature-item h3 {
        font-size: 1.25rem;
        font-weight: 700;
      }

      .why-choose-section-AI .feature-item h3 span {
        font-weight: 400;
        opacity: 0.8;
        margin-right: 0.5rem;
      }

      .why-choose-section-AI .feature-item p {
        font-size: 1rem;
        opacity: 0.9;
        margin-bottom: 0;
        padding-left: 2.2rem;
      }

      /* --- Testimonial Slider --- */
      .why-choose-section-AI .testimonial-slider-container {
        position: relative;
      }

      .why-choose-section-AI .testimonial-card {
        background: #f8f9fa;
        color: #343a40;
        padding: 2.5rem 4rem;
        padding-top: 10rem;
        border-radius: 16px;
        clip-path: polygon(
          0 0,
          calc(100% - 50px) 0,
          100% 50px,
          100% 100%,
          0 100%
        );
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        min-height: 450px;
        position: relative;
      }

      .why-choose-section-AI .testimonial-quote-icon {
        position: absolute;
        top: 2.5rem;
        left: 2.5rem;
        font-size: 6rem;
        font-weight: 700;
        color: #ff4d00;
        line-height: 1;
      }

      .why-choose-section-AI .testimonial-text {
        font-size: 1.25rem;
        line-height: 1.6;
        color: #495057;
      }

      .why-choose-section-AI .testimonial-author {
        border-top: 1px solid #dee2e6;
        padding-top: 1rem;
        margin-top: 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        color: #6c757d;
      }

      .why-choose-section-AI .testimonial-nav {
        position: absolute;
        top: 2.5rem;
        right: 2.5rem;
        z-index: 10;
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .why-choose-section-AI .testimonial-nav .swiper-button-prev,
      .testimonial-nav .swiper-button-next {
        position: static;
        width: 36px;
        height: 36px;
        margin-top: 0;
        background-color: #e9ecef; /* Light grey to match card bg */
        border-radius: 50%;
        transition: background-color 0.3s ease;
      }

      .why-choose-section-AI .testimonial-nav .swiper-button-prev:hover,
      .testimonial-nav .swiper-button-next:hover {
        background-color: #dee2e6;
      }

      .why-choose-section-AI .testimonial-nav .swiper-button-prev::after,
      .testimonial-nav .swiper-button-next::after {
        font-size: 1rem;
        font-weight: 700;
        color: #6c757d; /* Dark grey arrows */
      }

      .why-choose-section-AI .testimonial-nav .swiper-pagination {
        position: static;
        width: auto;
        color: #6c757d; /* Dark grey text */
        font-weight: 500;
      }

      /*--------------------------------------------------------------
        # Responsive Design
        --------------------------------------------------------------*/
      @media (max-width: 991.98px) {
        .why-choose-section-AI {
          padding: 60px 0;
        }
        
        .why-choose-section-AI .pad-LR {
            padding-right: 1.5rem !important;
            padding-left: 1.5rem !important;
        }

        .why-choose-section-AI .text-content {
          margin-bottom: 3rem;
        }
        /* Revert positioning for stacked layout on tablets/mobile */
        .why-choose-section-AI .testimonial-slider-container {
          position: static;
        }
        .why-choose-section-AI .testimonial-card {
          padding-top: 2.5rem 3rem; /* Revert top padding */
        }
        .why-choose-section-AI .testimonial-quote-icon {
          position: static; /* Revert to static flow */
          margin-bottom: 1rem;
        }
        .why-choose-section-AI .testimonial-nav {
          position: static; /* Revert to static flow */
          justify-content: center;
          margin-top: 1rem;
        }
        /* Change nav colors for better contrast on orange bg */
        .why-choose-section-AI .testimonial-nav .swiper-pagination {
          color: white;
        }
        .why-choose-section-AI .testimonial-nav .swiper-button-prev::after,
        .testimonial-nav .swiper-button-next::after {
          color: white;
        }
        .testimonial-nav .swiper-button-prev,
        .testimonial-nav .swiper-button-next {
          background-color: rgba(0, 0, 0, 0.1);
        }
      }

      @media (max-width: 767.98px) {
        .why-choose-section-AI .section-title {
          font-size: 2rem;
        }
        .why-choose-section-AI .testimonial-card {
          padding: 1.5rem 2.5rem;
          padding-top: 1.5rem; /* Adjust for mobile */
          min-height: auto;
        }
        .why-choose-section-AI .testimonial-text {
          font-size: 1.5rem;
        }
        .why-choose-section-AI .testimonial-quote-icon {
          margin-bottom: 0.5rem;
        }
      }

      /* why choose section AI ends */
      
      /* Comprehensive section AI Starts */

      .services-section-AI {
        background-color: #f8f9fa; 
        padding: 60px 0;
        position: relative;
        overflow: hidden; 
      }


      .services-section-AI::before {
        width: 400px;
        height: 400px;
        top: -150px;
        right: -150px;
      }

      .services-section-AI::after {
        width: 500px;
        height: 500px;
        bottom: -200px;
        left: -200px;
      }

      .services-section-AI .container {
        position: relative;
        z-index: 1;
      }

      .services-section-AI .section-header h2 {
        font-size: 2.8rem;
        font-weight: 700;
        color: #343a40;
      }

      .services-section-AI .section-header h2 .text-highlight {
        color: #ff4d00;
      }

      .services-section-AI .section-header p {
        text-align: center !important;
        color: #6c757d;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
      }

      .services-section-AI .service-card {
        background-color: #fff;
        padding: 2.5rem 2rem 1rem 2rem;
        border: 1px solid #dadada;
        border-radius: 16px;
        height: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
      }

      .services-section-AI .service-card-up {
        padding: 25px;
        background-color: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 16px;
        border: 1px solid #dadada;
      }

      .services-section-AI .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      }

      .services-section-AI .service-icon {
        width: 64px;
        height: 64px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        background-color: #f1f5f9; /* Light background for icons on standard cards */
      }

      .services-section-AI .service-icon i {
        font-size: 2rem; /* 32px */
        color: #0d2c54; /* Default icon color */
      }

      .services-section-AI .service-card h3 {
        font-size: 1.25rem;
        font-weight: 500;
        color: #212529;
        margin-bottom: 0.75rem;
      }

      .services-section-AI .service-card p {
        font-size: 0.95rem;
        color: #6c757d;
        line-height: 1.7;
      }

      /* Styles for the highlighted card */
      .services-section-AI .service-card.highlighted {
        background-color: #0d2c54; /* Dark blue from screenshot */
        color: #fff;
        border-color: #0d2c54;
      }

      .services-section-AI .service-card.highlighted h3 {
        color: #fff;
      }

      .services-section-AI .service-card.highlighted p {
        color: rgba(255, 255, 255, 0.8);
      }

      .services-section-AI .service-card.highlighted .service-icon {
        background-color: #ff4d00; /* Orange background for icon */
      }

      .services-section-AI .service-card.highlighted .service-icon i {
        color: #fff; /* White icon on highlighted card */
      }

      /*--------------------------------------------------------------
        # Responsive Design
        --------------------------------------------------------------*/
      @media (max-width: 991.98px) {
        .services-section-AI {
          padding: 80px 0;
        }
      }

      @media (max-width: 767.98px) {
        .services-section-AI {
          padding: 60px 0;
        }
        .services-section-AI .section-header h2 {
          font-size: 2.2rem;
        }
        /* On mobile, center the content inside the cards */
        .services-section-AI .service-card {
          text-align: center;
        }
        .services-section-AI .service-icon {
          margin-left: auto;
          margin-right: auto;
        }
      }
      /* Comprehensive section AI Ends */
      
      /*whatsapp css starts*/
      
       #whatsapp .wtsapp {
                position: fixed;
                transition: all .5s ease; /* Fixed: was transform: all... */
                background-color: #25d366;
                display: block;
                text-align: center;
                box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
                border-radius: 50px;
                color: #fff;
                font-weight: 700;
                font-size: 30px;
                bottom: 30px;
                left: 20px;
                border: 0;
                z-index: 9999;
                width: 50px;
                height: 50px;
                line-height: 50px;
                position: fixed;
            }
            
            #whatsapp .wtsapp:before {
                content: "";
                position: absolute;
                z-index: -1;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                display: block;
                width: 60px;
                height: 60px;
                border-radius: 50%;
                background-color: #25d366;
                animation: pulse-border 1500ms ease-out infinite;
            }
            
            /* Define the pulse animation */
            @keyframes pulse-border {
                0% {
                    transform: translate(-50%, -50%) scale(1);
                    opacity: 1;
                }
                100% {
                    transform: translate(-50%, -50%) scale(1.5);
                    opacity: 0;
                }
            }
            
            
            /*Whatsapp icon css ends*/
            
            /*Mob And Desk Media Query starts*/
            
            @media only screen and (min-width: 992px){
                .desk{
                    display: block;
                }
                .mob{
                    display: none;
                }
            }
            @media only screen and (max-width: 992px){
                .mob{
                    display: block;
                }
                .desk{
                    display: none;
                }
            }
            /*Mob And Desk Media Query ends*/
            
            /***********************************/
            
            .pad-new{
                    padding: 5px 18px;
                    font-size: 14px !important;
                }
                
                .btn-submit-contact-enhanced {
                  /*pointer-events: none;*/
                }
                
                .btn-submit-contact-enhanced {
                  background-color: #ff4d00;
                  color: #fff;
                  padding: 10px 18px;
                  border: none;
                  font-weight: 700;
                  border-radius: 20px;
                  transform: none !important;
                  width: 150px;
                  font-size: 0.9rem;
                  margin-top: 0.5rem;
                }
                
                .btn-submit-contact-enhanced:hover {
                  background-color: #e65100;
                  transform: none !important;
                }
                
            /****************************************/
            
            /*anovIP India video section css starts*/
            
            @media only screen and (min-width: 1399px){
                .vid-wid{
                    width: 660px;
                }
            }
            
            @media only screen and (max-width: 1399px){
                .vid-wid{
                    width: 570px;
                }
            }
            @media only screen and (max-width: 1199px){
                .vid-wid{
                    width: 480px;
                }
            }
             @media only screen and (max-width: 991px){
                .vid-wid{
                    width: 720px;
                }
            }
            @media only screen and (max-width: 767px){
                .vid-wid{
                    width: 540px;
                }
            }
            @media only screen and (max-width: 574px){
                .vid-wid{
                    width: 100vw;
                }
            }
            /*anovIP India video section css ends*/
