/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e03a3c;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;
  /* The default color of the main navmenu links */
  --nav-hover-color: #e03a3c;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e03a3c;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1b1b1b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #353535;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none !important;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
/* Existing header styles remain unchanged */

.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  height: 100px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  height: 50px;
  width: 120px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 16px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;

}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}




/* Default (Desktop/Laptop) – natural flow, no order forced */
.header .logo {
  order: unset;
}

.get-start-btn {
  order: unset;
}

.header .navmenu {
  order: unset;
}

/* Tablet (max-width: 1200px) – same as desktop */
@media (max-width: 1200px) {
  .header .logo {
    order: unset;
    width: 100px;
    height: 50px;
  }

  .get-start-btn {
    order: unset;
    margin: 0 15px 0 0;
    /* padding: 6px 15px; */
    font-weight: bold;
  }

  .header .navmenu {
    order: unset;
  }
}

/* Mobile (max-width: 767px) – Logo, Get Started, Nav */
@media (max-width: 767px) {
  .header .container-xl {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .header .logo {
    order: 1;
  }

  .get-start-btn {
    order: 2;
    margin: 0 20px 0 10px;
    /* padding: 6px 15px; */
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    /* border: 1px solid black; */
    /* position: relative;
    left: -130px; */
    /* margin-left: -1000px; */
    margin-right: 180px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;


  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 10px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    color: #4A3E82;
    font-weight: 450;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
    color: #4A3E82;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

.drop-list-col li a {
  color: #4A3E82 !important;
}

.drop-list-col li a:hover {
  color: #e03a3c !important;
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 16px;
  padding-bottom: 50px;
  position: relative;
  height: auto;

}






.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 80px;
  width: 100px;
  margin-right: 6px;
}

#logo-footer {
  width: 180px;
  height: auto;
  margin-top: -10px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-left: 10px;
}

.footer .footer-contact p i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 18px;
}

.footer .social-links {
  margin-top: 10px;
  gap: 12px;
  /* Adjust gap as needed (e.g., 12px, 16px) */
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
}

.useful-links {
  margin-left: 0;
  /* Remove unnecessary left margin */
  width: auto !important;
}

.our-services {
  margin-left: 0;
  width: auto !important;
}

.footer-contact {
  margin-left: 0 !important;
  width: auto !important;
}



/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: var(--alt-background-color);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

.section-bg {
  background-color: transparent;
  padding: 160px 0;
  position: relative;
}

.section-bg:before {
  content: "";
  background-color: var(--background-color);
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

.section-bg .container {
  position: relative;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  width: 100%;
  min-height: calc(100vh - 100px);
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.curson-img-containt {
  /* border: 1px solid white; */
  margin-left: 100px;
  /* margin-bottom: 200px; */
}

.carousel-inner {
  height: auto !important;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* z-index: 1; */
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .btn-get-started {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
  color: var(--default-color);
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.carousel-control-prev-icon {
  background-color: rgb(112, 112, 112) !important;
  border-radius: 50%;
  /*padding: 25px !important;*/
}

.carousel-control-next-icon {
  background-color: rgb(112, 112, 112) !important;
  border-radius: 50%;
  /*padding: 25px !important;*/
}

@media (max-width: 991.98px) {
  .curson-img-containt {
    margin-left: 20px;
    margin-bottom: 100px;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .btn-get-started {
    padding: 8px 20px;
    font-size: 14px;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 400px;
    padding: 40px 20px;
  }

  .hero img {
    height: 400px;
  }

  .curson-img-containt {
    margin-left: 10px;
    margin-bottom: 80px;
    text-align: center;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 22px;
  }

  .btn-get-started {
    margin: 0 auto;
    display: inline-block;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 20px;
  }
}

@media (max-width: 575.98px) {
  .hero {
    min-height: 450px;
    /* was 300px */
    padding: 40px 10px;
    /* slightly more padding */
  }

  .hero img {
    height: 450px;
    /* match min-height */
    object-fit: cover;
  }

  .curson-img-containt {
    margin: 0 auto 60px auto;
    text-align: center;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 22px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 15px;
    margin-top: 40px !important;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
/* Clients Images */
.clients .swiper-slide img {
  opacity: 1;
  /* show real color by default */
  filter: none;
  transition: transform 0.3s ease;
  max-width: 100px;
  /* responsive scaling */
  height: auto;
  display: block;
  margin: 0 auto;
  /* center the image horizontally */
  max-height: 100px;
  /* adjust for a consistent big size; change as per your design */
}

/* Hover effect for interactivity */
.clients .swiper-slide img:hover {
  transform: scale(1.05);
}

/* Swiper Wrapper */
.clients .swiper-wrapper {
  height: auto;
}

/* Pagination styling */
.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/* Responsive adjustments for various devices */
@media (max-width: 1200px) {
  .clients .swiper-slide img {
    max-height: 90px;
  }
}

@media (max-width: 992px) {
  .clients .swiper-slide img {
    max-height: 80px;
  }
}

@media (max-width: 768px) {
  .clients .swiper-slide img {
    max-height: 70px;
  }
}

@media (max-width: 576px) {
  .clients .swiper-slide img {
    max-height: 60px;
  }
}

@media (max-width: 400px) {
  .clients .swiper-slide img {
    max-height: 50px;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .icon-box {
  background: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  height: 250px;
  /* fixed height for uniformity */
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
}

.about .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0;
}

.about .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
  line-height: 1.5;
  text-align: justify;
}

#about-pp {
  text-align: justify;
  width: 450px;
}

/* Grid container adjustments for 2x2 layout with 20px gap */
.about .col-xl-7 .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 columns */
  gap: 20px;
  /* 20px gap between both rows and columns */
}


.stretched-link {
  color: var(--accent-color);
}

/* Responsive: stack items on smaller screens */
@media (max-width: 767px) {
  .about .col-xl-7 .row {
    grid-template-columns: 1fr;
    /* single column on mobile */
  }

  .about .icon-box {
    height: auto;
    /* auto height on small screens for readability */
  }
}




/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-icon {
  background: linear-gradient(135deg, #E7353C, #E7353C);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -30px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.stats .stats-item {
  background: #fff;
  padding: 40px 20px 25px 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  /* border: 1px solid black; */
}

.stats .stats-item span {
  font-size: 36px;
  font-weight: 700;
  display: block;
  margin-top: 20px;
  color: #4A3E82;
}

.stats .stats-item p {
  margin: 0;
  font-size: 16px;
  color: #555;
}

/* Hover effects */
.stats .stats-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}

.stats .stats-icon:hover {
  transform: scale(1.1);
}


.counter-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counter-plus .plus {
  font-size: 24px;
  /* adjust to match number size */
  margin-left: 2px;
  /* spacing between number and + */
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.tabs .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.tabs .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }

  .tabs .nav-link i {
    font-size: 24px;
  }
}

.tabs .tab-content {
  margin-top: 30px;
}

.tabs .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  transition: 0.3s;
}

.services .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services .service-item:hover {
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
}

/*--------------------------------------------------------------
# Global Partners Section
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

#become-partners {
  color: white;
  background-color: #E7353C;
  /* Brand Red */
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.3s ease;
}

#become-partners:hover {
  background-color: #c52d33;
}

/* Partners Grid - 4 images per row on desktop */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 images per row */
  gap: 30px;
  justify-items: center;
}


.partner-item img {
  width: 150px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-item img:hover {
  transform: scale(1.05);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-content {
  border-radius: 1rem;
}

.form-control {
  border-radius: 0.5rem;
  box-shadow: none;
  border: 1px solid #ccc;
}

.form-control:focus {
  border-color: #e03a3c;
  box-shadow: 0 0 0 0.2rem rgba(224, 58, 60, 0.25);
}

.btn {
  border-radius: 0.5rem;
}

.btn:hover {
  opacity: 0.9;
}


/* Responsive adjustments */
@media (max-width: 992px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    /* 3 per row on tablet */
  }
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 per row on small tablets/mobiles */
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: 1fr;
    /* 1 per row on mobile */
  }

  .partner-item img {
    width: 120px;
    height: 80px;
  }

  #become-partners {
    font-size: 16px;
    padding: 8px 16px;
  }
}

/* # Focus Areas Section
/* # Focus Areas Section
/* # Focus Areas Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  /* border: 2px solid var(--accent-color); */
  border-radius: 8px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  width: 350px;
  /* fixed width for all items */
  height: 250px;
  /* fixed height for all items */
  text-align: center;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* center content vertically */
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
}

/* .testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  
} */

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 15px 0;
  color: var(--accent-color);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto;
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.5;
  padding: 0 10px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 20px;
  line-height: 0;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  position: relative;
  left: -5px;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  position: relative;
  right: -5px;
  top: 5px;
  transform: scale(-1, -1);
}

.testimonials .swiper-wrapper {
  height: auto;
  display: flex;
  align-items: center;
  /* border: 1px solid black; */
  margin-left: -6px;
}

.testimonials .swiper-pagination {
  margin-top: 50px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 991.98px) {
  .testimonials .testimonial-item {
    max-width: 300px;
    padding: 20px;
  }

  .testimonials .testimonial-item h3 {
    font-size: 18px;
  }

  .testimonials .testimonial-item p {
    font-size: 15px;
  }
}

/* Adjust for mobile devices */
@media (max-width: 767.98px) {
  .testimonials .swiper-wrapper {
    margin-left: 13px;
  }

  .testimonials .testimonial-item {
    max-width: 90%;
    padding: 15px;
  }

  .testimonials .testimonial-item h3 {
    font-size: 16px;
  }

  .testimonials .testimonial-item p {
    font-size: 14px;
  }

  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    font-size: 16px;
  }

  .testimonials .swiper-pagination {
    margin-top: 30px;
  }
}

/* Adjust for extra small devices */
@media (max-width: 575.98px) {
  .testimonials .testimonial-item {
    padding: 10px;
  }

  .testimonials .testimonial-item h3 {
    font-size: 14px;
  }

  .testimonials .testimonial-item p {
    font-size: 13px;
  }
}

/**--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* .starter-section { */
/* Add your styles here */
/* } */

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}


/* .

/* #DISCOVER MORE  */
/* #DISCOVER MORE  */
/* #DISCOVER MORE  */

.dicover-img {
  /* border: 1px solid black; */
  width: 900px;
  height: 350px !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.dicover-img-2 {
  height: 350px !important;
}

.discovery-contact {
  /* border: 1px solid black; */
  margin-top: -50px;
}

.discovery-items-wrap {
  /* border: 1px solid black; */
  margin-top: -100px !important;
}



/* Scoped only to AI / IoT section */
.ai-iot-section h2 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.ai-iot-section h3 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.ai-iot-section h4 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 15px;
}

.ai-iot-section h5 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 10px;
}

.ai-iot-section p {
  color: #333333;
  line-height: 1.8;
  font-size: 16px;
}

/* Service cards styling */
.ai-iot-section .service-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ai-iot-section .service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

/* Solution card styling (CTA) */
.ai-iot-section .solution-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #3f3f8f;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ai-iot-section .solution-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.ai-iot-section .solution-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Contact Button styling (reuse global .btn-contact) */
.btn-contact {
  display: inline-block;
  background-color: #e03a3c;
  /* same red shade */
  color: #fff;
  padding: 12px 25px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover {
  background-color: #c53032;
  /* darker on hover */
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {

  .ai-iot-section .service-card,
  .ai-iot-section .solution-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .ai-iot-section h2,
  .ai-iot-section h3,
  .ai-iot-section h4,
  .ai-iot-section h5 {
    text-align: center;
  }

  .ai-iot-section p {
    font-size: 15px;
  }
}



.application-section h2 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.application-section h3 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.application-section h4 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 15px;
}

.application-section h5 {
  font-weight: 600;
  color: #3f3f8f;
}

.application-section p {
  color: #333333;
  line-height: 1.8;
  font-size: 16px;
}

/* Application Image Styling */
.application-section .application-img {
  margin: 0 auto 30px auto;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border-radius: 12px;
}

.application-section .application-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Service cards styling */
.application-section .service-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.application-section .service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.application-section .service-card i {
  color: #e03a3c;
  transition: transform 0.3s ease, color 0.3s ease;
}

.application-section .service-card:hover i {
  transform: scale(1.3);
  color: #3f3f8f;
}

/* Solution cards styling (same style reused for contact section card) */
.application-section .solution-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #3f3f8f;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.application-section .solution-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

/* Lists styling if you include ul lists later */
.application-section ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.application-section ul li::before {
  position: absolute;
  left: 0;
  color: #e03a3c;
  font-weight: bold;
}

/* Contact button styling */
.btn-contact {
  display: inline-block;
  background-color: #e03a3c;
  color: #fff;
  padding: 12px 25px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover {
  background-color: #c53032;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .application-section .application-img {
    max-width: 80%;
  }

  .application-section .service-card,
  .application-section .solution-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .application-section h2,
  .application-section h3,
  .application-section h4,
  .application-section h5 {
    text-align: center;
  }

  .application-section .application-img {
    max-width: 100%;
  }

  .application-section ul li {
    font-size: 15px;
  }
}


.automobile-section h2 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.automobile-section h3 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.automobile-section h4 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 15px;
}

.automobile-section p {
  color: #333333;
  line-height: 1.8;
  font-size: 16px;
}

/* Automobile Image Styling */
.automobile-section .automobile-img {
  margin: 0 auto 30px auto;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border-radius: 12px;
}

.automobile-section .automobile-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Service cards styling */
.automobile-section .service-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.automobile-section .service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.automobile-section .service-card h5 {
  font-weight: 600;
  color: #3f3f8f;
}

.automobile-section .service-card i {
  color: #e03a3c;
  transition: transform 0.3s ease, color 0.3s ease;
}

.automobile-section .service-card:hover i {
  transform: scale(1.3);
  color: #3f3f8f;
}

/* Solution cards styling */
.automobile-section .solution-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #3f3f8f;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.automobile-section .solution-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.automobile-section .solution-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Choose cards styling */
.automobile-section .choose-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.automobile-section .choose-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.automobile-section .choose-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Lists styling */
.automobile-section ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.automobile-section ul li::before {
  position: absolute;
  left: 0;
  color: #e03a3c;
  font-weight: bold;
}

/* Contact button */
.btn-contact {
  display: inline-block;
  background-color: #e03a3c;
  color: #fff;
  padding: 12px 25px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover {
  background-color: #c53032;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .automobile-section .automobile-img {
    max-width: 80%;
  }

  .automobile-section .service-card,
  .automobile-section .solution-card,
  .automobile-section .choose-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .automobile-section h2,
  .automobile-section h3,
  .automobile-section h4,
  .automobile-section h5 {
    text-align: center;
  }

  .automobile-section .automobile-img {
    max-width: 100%;
  }

  .automobile-section ul li {
    font-size: 15px;
  }
}

/* Scoped only to AWS section */

.aws-section h2 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.aws-section h3 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.aws-section h4 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 15px;
}

.aws-section h5 {
  font-weight: 600;
  color: #3f3f8f;
}

.aws-section p {
  color: #333333;
  line-height: 1.8;
  font-size: 16px;
}

/* Service cards styling */
.aws-section .service-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.aws-section .service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

/* Solution cards styling */
.aws-section .solution-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #3f3f8f;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.aws-section .solution-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.aws-section .solution-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Contact button styling */
.btn-contact {
  display: inline-block;
  background-color: #e03a3c;
  color: #fff;
  padding: 12px 25px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover {
  background-color: #c53032;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {

  .aws-section .service-card,
  .aws-section .solution-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .aws-section h2,
  .aws-section h3,
  .aws-section h4,
  .aws-section h5 {
    text-align: center;
  }

  .aws-section ul li {
    font-size: 15px;
  }
}


.azure-section h2 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.azure-section h3 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.azure-section h4 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 15px;
}

.azure-section h5 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 15px;
}

.azure-section p {
  color: #333333;
  line-height: 1.8;
  font-size: 16px;
}

/* Service cards styling */
.azure-section .service-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.azure-section .service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.azure-section .service-card h5 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Solution cards styling */
.azure-section .solution-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #3f3f8f;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.azure-section .solution-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.azure-section .solution-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Contact Button Styling */
.btn-contact {
  display: inline-block;
  background-color: #e03a3c;
  /* same red shade */
  color: #fff;
  padding: 12px 25px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover {
  background-color: #c53032;
  /* darker on hover */
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {

  .azure-section .service-card,
  .azure-section .solution-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .azure-section h2,
  .azure-section h3,
  .azure-section h4,
  .azure-section h5 {
    text-align: center;
  }

  .azure-section p {
    font-size: 15px;
  }
}


.bfsi-section h2 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.bfsi-section h3 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.bfsi-section h4 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 15px;
}

.bfsi-section p {
  color: #333333;
  line-height: 1.8;
  font-size: 16px;
}

/* BFSI Image Styling */
.bfsi-section .bfsi-img {

  margin: 0 auto 30px auto;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border-radius: 12px;
}

.bfsi-section .bfsi-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Service cards styling */
.bfsi-section .service-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.bfsi-section .service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.bfsi-section .service-card h5 {
  font-weight: 600;
  color: #3f3f8f;
}

.bfsi-section .service-card i {
  color: #e03a3c;
  transition: transform 0.3s ease, color 0.3s ease;
}

.bfsi-section .service-card:hover i {
  transform: scale(1.3);
  color: #3f3f8f;
}

/* Solution cards styling */
.bfsi-section .solution-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #3f3f8f;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.bfsi-section .solution-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.bfsi-section .solution-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Choose cards styling */
.bfsi-section .choose-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.bfsi-section .choose-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.bfsi-section .choose-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Lists styling */
.bfsi-section ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.bfsi-section ul li::before {
  position: absolute;
  left: 0;
  color: #e03a3c;
  font-weight: bold;
}

.btn-contact {
  display: inline-block;
  background-color: #e03a3c;
  /* same red shade */
  color: #fff;
  padding: 12px 25px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover {
  background-color: #c53032;
  /* darker on hover */
  transform: translateY(-2px);
}


/* Responsive adjustments */
@media (max-width: 991px) {
  .bfsi-section .bfsi-img {
    max-width: 80%;
  }

  .bfsi-section .service-card,
  .bfsi-section .solution-card,
  .bfsi-section .choose-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .bfsi-section h2,
  .bfsi-section h3,
  .bfsi-section h4,
  .bfsi-section h5 {
    text-align: center;
  }

  .bfsi-section .bfsi-img {
    max-width: 100%;
  }

  .bfsi-section ul li {
    font-size: 15px;
  }
}



.data-analytics-section h2 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.data-analytics-section h3 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.data-analytics-section h4 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 15px;
}

.data-analytics-section p {
  color: #333333;
  line-height: 1.8;
  font-size: 16px;
}

/* Data Analytics Image Styling */
.data-analytics-section .data-analytics-img {
  margin: 0 auto 30px auto;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border-radius: 12px;
}

.data-analytics-section .data-analytics-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Service cards styling */
.data-analytics-section .service-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.data-analytics-section .service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.data-analytics-section .service-card h5 {
  font-weight: 600;
  color: #3f3f8f;
}

.data-analytics-section .service-card i {
  color: #e03a3c;
  transition: transform 0.3s ease, color 0.3s ease;
}

.data-analytics-section .service-card:hover i {
  transform: scale(1.3);
  color: #3f3f8f;
}

/* Solution cards styling */
.data-analytics-section .solution-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #3f3f8f;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.data-analytics-section .solution-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.data-analytics-section .solution-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Choose cards styling */
.data-analytics-section .choose-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.data-analytics-section .choose-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.data-analytics-section .choose-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Lists styling (if any lists are added in future) */
.data-analytics-section ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.data-analytics-section ul li::before {
  position: absolute;
  left: 0;
  color: #e03a3c;
  font-weight: bold;
}

/* Contact button styling (reusing existing btn-contact class) */
.btn-contact {
  display: inline-block;
  background-color: #e03a3c;
  color: #fff;
  padding: 12px 25px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover {
  background-color: #c53032;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .data-analytics-section .data-analytics-img {
    max-width: 80%;
  }

  .data-analytics-section .service-card,
  .data-analytics-section .solution-card,
  .data-analytics-section .choose-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .data-analytics-section h2,
  .data-analytics-section h3,
  .data-analytics-section h4,
  .data-analytics-section h5 {
    text-align: center;
  }

  .data-analytics-section .data-analytics-img {
    max-width: 100%;
  }

  .data-analytics-section ul li {
    font-size: 15px;
  }
}



.dynatrace-section h2 {
  color: #3f3f8f;
  /* same as BFSI for brand consistency */
  font-weight: 700;
  margin-bottom: 20px;
}

.dynatrace-section h3 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.dynatrace-section h4 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 15px;
}

.dynatrace-section h5 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 15px;
}

.dynatrace-section p {
  color: #3f3f8f;
  line-height: 1.8;
  font-size: 16px;
}

/* Service cards styling */
.dynatrace-section .service-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  /* red accent for consistency */
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.dynatrace-section .service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

/* Solution cards styling */
.dynatrace-section .solution-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #3f3f8f;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.dynatrace-section .solution-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

/* Choose cards styling */
.dynatrace-section .choose-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.dynatrace-section .choose-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

/* Buttons styling */
.btn-contact {
  display: inline-block;
  background-color: #e03a3c;
  color: #fff;
  padding: 12px 25px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover {
  background-color: #c53032;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {

  .dynatrace-section .service-card,
  .dynatrace-section .solution-card,
  .dynatrace-section .choose-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .dynatrace-section h2,
  .dynatrace-section h3,
  .dynatrace-section h4,
  .dynatrace-section h5 {
    text-align: center;
  }

  .dynatrace-section ul li {
    font-size: 15px;
  }
}


.healthcare-section h2 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.healthcare-section h3 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.healthcare-section h4 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 15px;
}

.healthcare-section h5 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 10px;
}

.healthcare-section p {
  color: #333333;
  line-height: 1.8;
  font-size: 16px;
}

/* Healthcare Image Styling */
.healthcare-section .healthcare-img {
  margin: 0 auto 30px auto;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border-radius: 12px;
}

.healthcare-section .healthcare-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Service cards styling */
.healthcare-section .service-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.healthcare-section .service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.healthcare-section .service-card h5 {
  font-weight: 600;
  color: #3f3f8f;
}

.healthcare-section .service-card i {
  color: #e03a3c;
  transition: transform 0.3s ease, color 0.3s ease;
}

.healthcare-section .service-card:hover i {
  transform: scale(1.3);
  color: #3f3f8f;
}

/* Solution cards styling */
.healthcare-section .solution-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #3f3f8f;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.healthcare-section .solution-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.healthcare-section .solution-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Choose cards styling */
.healthcare-section .choose-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.healthcare-section .choose-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.healthcare-section .choose-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Lists styling */
.healthcare-section ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.healthcare-section ul li::before {
  position: absolute;
  left: 0;
  content: "✔️";
  color: #e03a3c;
  font-weight: bold;
}

/* Contact Button Styling */
.btn-contact {
  display: inline-block;
  background-color: #e03a3c;
  color: #fff;
  padding: 12px 25px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover {
  background-color: #c53032;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .healthcare-section .healthcare-img {
    max-width: 80%;
  }

  .healthcare-section .service-card,
  .healthcare-section .solution-card,
  .healthcare-section .choose-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .healthcare-section h2,
  .healthcare-section h3,
  .healthcare-section h4,
  .healthcare-section h5 {
    text-align: center;
  }

  .healthcare-section .healthcare-img {
    max-width: 100%;
  }

  .healthcare-section ul li {
    font-size: 15px;
  }
}


.hire-train-section h2 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.hire-train-section h3 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.hire-train-section h4 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 15px;
}

.hire-train-section p {
  color: #3f3f8f;
  line-height: 1.8;
  font-size: 16px;
}

/* Service cards styling */
.hire-train-section .service-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hire-train-section .service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.hire-train-section .service-card h5 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Solution cards styling */
.hire-train-section .solution-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #3f3f8f;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hire-train-section .solution-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.hire-train-section .solution-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Choose cards styling */
.hire-train-section .choose-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hire-train-section .choose-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.hire-train-section .choose-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Lists styling (if applicable in future sections) */
.hire-train-section ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.hire-train-section ul li::before {
  position: absolute;
  left: 0;
  color: #e03a3c;
  font-weight: bold;
}

/* Contact button styling */
.btn-contact {
  display: inline-block;
  background-color: #e03a3c;
  color: #fff;
  padding: 12px 25px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover {
  background-color: #c53032;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {

  .hire-train-section .service-card,
  .hire-train-section .solution-card,
  .hire-train-section .choose-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .hire-train-section h2,
  .hire-train-section h3,
  .hire-train-section h4,
  .hire-train-section h5 {
    text-align: center;
  }

  .hire-train-section ul li {
    font-size: 15px;
  }
}


.as400-section h2 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.as400-section h3 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.as400-section h4 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 15px;
}

.as400-section h5 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 10px;
}

.as400-section p {
  color: #333333;
  line-height: 1.8;
  font-size: 16px;
}

/* Service cards styling */
.as400-section .service-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.as400-section .service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.as400-section .service-card h5 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Solution cards styling */
.as400-section .solution-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #3f3f8f;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.as400-section .solution-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.as400-section .solution-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Contact button styling */
.btn-contact {
  display: inline-block;
  background-color: #e03a3c;
  /* same red shade */
  color: #fff;
  padding: 12px 25px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover {
  background-color: #c53032;
  /* darker on hover */
  transform: translateY(-2px);
}

/* Lists styling */
.as400-section ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.as400-section ul li::before {
  position: absolute;
  left: 0;
  color: #e03a3c;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 991px) {

  .as400-section .service-card,
  .as400-section .solution-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .as400-section h2,
  .as400-section h3,
  .as400-section h4,
  .as400-section h5 {
    text-align: center;
  }

  .as400-section ul li {
    font-size: 15px;
  }
}



.it-infra-section h2 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.it-infra-section h3 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.it-infra-section h4 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 15px;
}

.it-infra-section p {
  color: #333333;
  line-height: 1.8;
  font-size: 16px;
}

/* IT Infrastructure Image Styling */
.it-infra-section .it-infra-img {
  margin: 0 auto 30px auto;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border-radius: 12px;
}

.it-infra-section .it-infra-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Service cards styling */
.it-infra-section .service-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.it-infra-section .service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.it-infra-section .service-card h5 {
  font-weight: 600;
  color: #3f3f8f;
}

.it-infra-section .service-card i {
  color: #e03a3c;
  transition: transform 0.3s ease, color 0.3s ease;
}

.it-infra-section .service-card:hover i {
  transform: scale(1.3);
  color: #3f3f8f;
}

/* Solution cards styling */
.it-infra-section .solution-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #3f3f8f;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.it-infra-section .solution-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.it-infra-section .solution-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Choose cards styling */
.it-infra-section .choose-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.it-infra-section .choose-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.it-infra-section .choose-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Lists styling */
.it-infra-section ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.it-infra-section ul li::before {
  position: absolute;
  left: 0;
  color: #e03a3c;
  font-weight: bold;
}

/* Contact button styling */
.btn-contact {
  display: inline-block;
  background-color: #e03a3c;
  /* same red shade */
  color: #fff;
  padding: 12px 25px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover {
  background-color: #c53032;
  /* darker on hover */
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .it-infra-section .it-infra-img {
    max-width: 80%;
  }

  .it-infra-section .service-card,
  .it-infra-section .solution-card,
  .it-infra-section .choose-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .it-infra-section h2,
  .it-infra-section h3,
  .it-infra-section h4,
  .it-infra-section h5 {
    text-align: center;
  }

  .it-infra-section .it-infra-img {
    max-width: 100%;
  }

  .it-infra-section ul li {
    font-size: 15px;
  }
}


/* Scoped only to Oracle section */
.oracle-section h2 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.oracle-section h3 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.oracle-section h4 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 15px;
}

.oracle-section h5 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 10px;
}

.oracle-section p {
  color: #333333;
  line-height: 1.8;
  font-size: 16px;
}

/* Service cards styling */
.oracle-section .service-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.oracle-section .service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

/* Solution cards styling */
.oracle-section .solution-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #3f3f8f;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.oracle-section .solution-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

/* Choose cards styling */
.oracle-section .choose-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.oracle-section .choose-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

/* Button styling */
.btn-contact {
  display: inline-block;
  background-color: #e03a3c;
  /* same red shade */
  color: #fff;
  padding: 12px 25px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover {
  background-color: #c53032;
  /* darker on hover */
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {

  .oracle-section .service-card,
  .oracle-section .solution-card,
  .oracle-section .choose-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .oracle-section h2,
  .oracle-section h3,
  .oracle-section h4,
  .oracle-section h5 {
    text-align: center;
  }

  .oracle-section p {
    font-size: 15px;
  }
}



.qa-section h2 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.qa-section h3 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.qa-section h4 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 15px;
}

.qa-section p {
  color: #333333;
  line-height: 1.8;
  font-size: 16px;
}

/* QA Image Styling */
.qa-section .qa-img {
  margin: 0 auto 30px auto;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border-radius: 12px;
}

.qa-section .qa-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Service cards styling */
.qa-section .service-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.qa-section .service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.qa-section .service-card h5 {
  font-weight: 600;
  color: #3f3f8f;
}

.qa-section .service-card i {
  color: #e03a3c;
  transition: transform 0.3s ease, color 0.3s ease;
}

.qa-section .service-card:hover i {
  transform: scale(1.3);
  color: #3f3f8f;
}

/* Solution cards styling */
.qa-section .solution-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #3f3f8f;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.qa-section .solution-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.qa-section .solution-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Lists styling */
.qa-section ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.qa-section ul li::before {
  position: absolute;
  left: 0;
  content: "✔️";
  color: #e03a3c;
  font-weight: bold;
}

/* Contact button styling */
.qa-section .btn-contact {
  display: inline-block;
  background-color: #e03a3c;
  color: #fff;
  padding: 12px 25px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.qa-section .btn-contact:hover {
  background-color: #c53032;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .qa-section .qa-img {
    max-width: 80%;
  }

  .qa-section .service-card,
  .qa-section .solution-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .qa-section h2,
  .qa-section h3,
  .qa-section h4,
  .qa-section h5 {
    text-align: center;
  }

  .qa-section .qa-img {
    max-width: 100%;
  }

  .qa-section ul li {
    font-size: 15px;
  }
}


.retail-section h2 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.retail-section h3 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.retail-section h4 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 15px;
}

.retail-section p {
  color: #333333;
  line-height: 1.8;
  font-size: 16px;
}

/* Retail Image Styling */
.retail-section .retail-img {
  margin: 0 auto 30px auto;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border-radius: 12px;
}

.retail-section .retail-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Service cards styling */
.retail-section .service-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.retail-section .service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.retail-section .service-card h5 {
  font-weight: 600;
  color: #3f3f8f;
}

.retail-section .service-card i {
  color: #e03a3c;
  transition: transform 0.3s ease, color 0.3s ease;
}

.retail-section .service-card:hover i {
  transform: scale(1.3);
  color: #3f3f8f;
}

/* Solution cards styling */
.retail-section .solution-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #3f3f8f;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.retail-section .solution-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.retail-section .solution-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Choose cards styling */
.retail-section .choose-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.retail-section .choose-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.retail-section .choose-card h4 {
  font-weight: 600;
  color: #3f3f8f;
}

/* Lists styling */
.retail-section ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.retail-section ul li::before {
  position: absolute;
  left: 0;
  color: #e03a3c;
  font-weight: bold;
}

/* Contact button */
.btn-contact {
  display: inline-block;
  background-color: #e03a3c;
  color: #fff;
  padding: 12px 25px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover {
  background-color: #c53032;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .retail-section .retail-img {
    max-width: 80%;
  }

  .retail-section .service-card,
  .retail-section .solution-card,
  .retail-section .choose-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .retail-section h2,
  .retail-section h3,
  .retail-section h4,
  .retail-section h5 {
    text-align: center;
  }

  .retail-section .retail-img {
    max-width: 100%;
  }

  .retail-section ul li {
    font-size: 15px;
  }
}


.software-section h2 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.software-section h3 {
  color: #3f3f8f;
  font-weight: 700;
  margin-bottom: 20px;
}

.software-section h4 {
  color: #3f3f8f;
  font-weight: 600;
  margin-bottom: 15px;
}

.software-section p {
  color: #333333;
  line-height: 1.8;
  font-size: 16px;
}

/* Software Image Styling */
.software-section .software-img {
  margin: 0 auto 30px auto;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border-radius: 12px;
}

.software-section .software-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Service cards styling */
.software-section .service-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-left: 4px solid #e03a3c;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.software-section .service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
}

.software-section .service-card h5 {
  font-weight: 600;
  color: #3f3f8f;
}

.software-section .service-card i {
  color: #e03a3c;
  transition: transform 0.3s ease, color 0.3s ease;
}

.software-section .service-card:hover i {
  transform: scale(1.3);
  color: #3f3f8f;
}

/* Lists styling (if used in software section) */
.software-section ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.software-section ul li::before {
  position: absolute;
  left: 0;
  color: #e03a3c;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .software-section .software-img {
    max-width: 80%;
  }

  .software-section .service-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .software-section h2,
  .software-section h3,
  .software-section h4,
  .software-section h5 {
    text-align: center;
  }

  .software-section .software-img {
    max-width: 100%;
  }

  .software-section ul li {
    font-size: 15px;
  }
}



/* Careers Page Specific Styles */
.careers-hero {
  background: linear-gradient(135deg, #1d3557, #e63946) !important;
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.careers-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.careers-hero .container {
  position: relative;
  z-index: 2;
}

.search-filter-section {
  background: #f8f9fa;
  padding: 2rem 0;
  border-bottom: 1px solid #dee2e6;
}

.search-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.job-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: none;
  overflow: hidden;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(224, 58, 60, 0.15);
}

.job-card-header {
  padding: 1.5rem;
  border-bottom: 1px solid #f1f3f4;
}

.job-title {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: #6c757d;
}

.job-type-badge {
  background: linear-gradient(135deg, #e03a3c, #ff6b6d);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.job-description {
  padding: 0 1.5rem 1rem;
  color: #555;
  line-height: 1.6;
}

.job-card-footer {
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  display: flex;
  justify-content-between;
  align-items: center;
}

.apply-btn {
  background: linear-gradient(135deg, #e03a3c, #ff6b6d);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: linear-gradient(135deg, #c82f31, #e85658);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.benefits-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.benefit-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: none;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e03a3c, #ff6b6d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: white;
}

.benefit-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.pagination .page-link {
  border-radius: 8px !important;
  margin: 0 2px;
  border: 1px solid #dee2e6;
  color: #495057;
}

.pagination .page-item.active .page-link {
  background: #e03a3c;
  border-color: #e03a3c;
}

.no-jobs {
  text-align: center;
  padding: 4rem 0;
}

.no-jobs i {
  font-size: 4rem;
  color: #dee2e6;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .careers-hero {
    padding: 2rem 0;
  }

  .job-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .job-card-footer {
    flex-direction: column;
    gap: 1rem;
  }
}



.apply-hero {
  background: linear-gradient(135deg, #e03a3c 0%, #ff6b6d 100%);
  color: white;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.apply-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.apply-hero .container {
  position: relative;
  z-index: 2;
}

.back-to-careers {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.back-to-careers:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
}

.job-meta-hero {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  border-radius: 15px;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
}

.job-meta-item {
  display: inline-block;
  margin-right: 2rem;
  margin-bottom: 0.5rem;
}

.job-details-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-bottom: 2rem;
  border: none;
}

.job-details-card h3 {
  color: #2c3e50;
  border-bottom: 2px solid #e03a3c;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.skill-badge {
  background: linear-gradient(135deg, #e03a3c, #ff6b6d);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.application-form {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  border: none;
  margin-top: 2rem;
}

.form-title {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-control {
  border-radius: 10px;
  border: 1px solid #dee2e6;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #e03a3c;
  box-shadow: 0 0 0 0.2rem rgba(224, 58, 60, 0.25);
}

.form-label {
  font-weight: 500;
  color: #495057;
  margin-bottom: 0.5rem;
}

.btn-submit {
  background: linear-gradient(135deg, #e03a3c, #ff6b6d);
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #c82f31, #e85658);
  color: white;
  transform: translateY(-2px);
}

.success-message {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2rem;
}

.error-message {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  border: 1px solid #f5c6cb;
  margin-bottom: 1rem;
}

.file-upload-info {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 0.5rem;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #6c757d;
  content: ">";
}

.breadcrumb-item a {
  color: #e03a3c;
  text-decoration: none;
}

@media (max-width: 768px) {
  .apply-hero {
    padding: 2rem 0;
  }

  .job-meta-item {
    display: block;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .job-details-card {
    padding: 1.5rem;
  }

  .application-form {
    padding: 1.5rem;
  }
}

.careers-hero {
  background: linear-gradient(135deg, #e03a3c 0%, #ff6b6d 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.careers-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}


.careers-hero .container {
  position: relative;
  z-index: 2;
}


.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  overflow: hidden;
}


.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.blog-card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #f8f9fa;
}


.sidebar-search-box {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #dee2e6;
}


.sidebar-search-box input {
  border: none;
  padding: 0.75rem;
  font-size: 0.9rem;
}


.sidebar-search-box input:focus {
  outline: none;
  box-shadow: none;
}


.sidebar-search-box button {
  background: #e03a3c;
  border: none;
  padding: 0.75rem 1rem;
  color: white;
  transition: all 0.3s ease;
}


.sidebar-search-box button:hover {
  background: #c82f31;
}


.category-filter-btn {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  margin-bottom: 0.25rem;
  background: #f8f9fa;
  color: #495057;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: 1px solid transparent;
}


.category-filter-btn:hover {
  background: #e9ecef;
  color: #495057;
  text-decoration: none;
}


.category-filter-btn.active {
  background: #e03a3c;
  color: white;
  border-color: #e03a3c;
}


.results-info {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid #e03a3c;
}


.clear-filters {
  background: #dc3545;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
}


.clear-filters:hover {
  background: #c82333;
  color: white;
  text-decoration: none;
}


.pagination .page-link {
  border-radius: 8px !important;
  margin: 0 2px;
  border: 1px solid #dee2e6;
  color: #495057;
}


.pagination .page-item.active .page-link {
  background: #e03a3c;
  border-color: #e03a3c;
}


.sidebar-card {
  border: none;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}


.popular-post-item {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}


.popular-post-item:hover {
  background-color: #f8f9fa;
}


.popular-post-item:last-child {
  border-bottom: none;
}

.post-hero {
  background: linear-gradient(135deg, #e03a3c 0%, #ff6b6d 100%);
  color: white;
  padding: 4rem 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.post-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.post-hero .container {
  position: relative;
  z-index: 2;
}

.post-meta {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  border-radius: 15px;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.post-meta-item {
  display: inline-block;
  margin-right: 2rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.post-meta-item i {
  margin-right: 0.5rem;
  opacity: 0.9;
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  padding: 2rem 0;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  color: #2c3e50;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.post-content h2 {
  font-size: 1.8rem;
  border-bottom: 2px solid #e03a3c;
  padding-bottom: 0.5rem;
}

.post-content h3 {
  font-size: 1.5rem;
  color: #e03a3c;
}

.post-content p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.post-content ul,
.post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content blockquote {
  border-left: 4px solid #e03a3c;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
}

.post-content code {
  background: #f1f3f4;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #e03a3c;
}

.post-content pre {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  border-left: 4px solid #e03a3c;
}

.post-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.back-to-blog {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.back-to-blog:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.sidebar-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-bottom: 2rem;
  border: none;
  transition: transform 0.3s ease;
}

.sidebar-card:hover {
  transform: translateY(-3px);
}

.sidebar-title {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #e03a3c;
  font-size: 1.2rem;
}

.related-post,
.popular-post {
  display: block;
  color: #495057;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
}

.related-post:last-child,
.popular-post:last-child {
  border-bottom: none;
}

.related-post:hover,
.popular-post:hover {
  color: #e03a3c;
  text-decoration: none;
  padding-left: 15px;
}

.related-post-title,
.popular-post-title {
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.related-post-date,
.popular-post-date {
  font-size: 0.85rem;
  color: #6c757d;
}

.share-buttons {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 15px;
  margin: 3rem 0;
  text-align: center;
  border: 1px solid #dee2e6;
}

.share-buttons h5 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.share-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  margin: 0 8px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.share-btn:hover {
  transform: translateY(-5px) scale(1.1);
  text-decoration: none;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.share-facebook {
  background: #1877f2;
}

.share-twitter {
  background: #1da1f2;
}

.share-linkedin {
  background: #0a66c2;
}

.share-whatsapp {
  background: #25d366;
}

.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #6c757d;
  content: ">";
}

.breadcrumb-item a {
  color: #e03a3c;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.newsletter-card {
  background: linear-gradient(135deg, #e03a3c 0%, #ff6b6d 100%);
  color: white;
  text-align: center;
}

.newsletter-card .sidebar-title {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-card .form-control {
  border: none;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 1rem;
}

.newsletter-card .btn {
  background: white;
  color: #e03a3c;
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-card .btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .post-hero {
    padding: 2rem 0;
  }

  .post-meta-item {
    display: block;
    margin-right: 0;
    margin-bottom: 0.75rem;
  }

  .post-content {
    font-size: 1rem;
  }

  .sidebar-card {
    margin-bottom: 1.5rem;
  }
}


@media (min-width: 1400px) {
  .container, .container-lg, .container-md, 
  .container-sm, .container-xl, .container-xxl {
    /* max-width: 100% !important; */
    /* OR set your preferred width */
    max-width: 1155px !important;
  }
}