/* ===============================
   FONT FACE
================================ */
@font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SF-Pro-Display-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Regular */
@font-face {
  font-family: 'Rubik';
  src: url('../rubik/Rubik-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../webfonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/fa-brands-400.woff2") format("woff2");
}

/* ===============================
   ROOT VARIABLES
================================ */
:root {
  --primary-color: #E51743;
  --text-color: #000;
  --background-color: #f8f8f8;
  --secondary-background-gradient: linear-gradient(to bottom,
      #F5F5F5,
      #FFEEEE);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}



body {
  font-family: 'SF Pro Display', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  font-weight: 400;
}


h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: var(--primary-color);
  font-family: 'SF Pro Display', sans-serif !important;
}

p,
ul,
li {
  font-family: "Rubik", sans-serif;
}

p {
  font-size: clamp(0.95rem, 2vw, 1rem);
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text-color);


}

p a {
  text-decoration: none;
  border-bottom: 1px dotted #000;
  color: #000;


}

h3 a {
  text-decoration: none;
  border-bottom: 1px dotted #000;
  color: #000;

}

h3 a:hover {
  text-decoration: none;
  border-bottom: 1px dotted #E51743;
  color: #E51743;

}

p a:hover {
  text-decoration: none;
  border-bottom: 1px dotted #E51743;
  color: #E51743;

}

.client-heading {
  font-size: clamp(22px, 4vw, 32px);
  line-height: 1.2;
  color: var(--text-color);
}

/* -------- Navbar -------- */
.navbar {
  background: #000000d6;
  padding: 0 10px;
  z-index: 100;
  position: relative;
}

/* Center nav */
.navbar-nav {
  margin: 0 auto;
  display: flex;
  align-items: center;
}



/* Nav item */
.navbar-nav .nav-item {
  position: relative;
}

/* -------- Nav Link -------- */
.navbar .nav-link {
  color: #fff;
  font-weight: 600 !important;
  padding: 12px 18px;
  font-size: 14px !important;
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: all 0.3s ease;
  z-index: 1;
}


/* Nav item */
.navbar .nav-item {
  position: relative;

}

/* âœ… Separator (LEFT side) */
.navbar .nav-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  /* LEFT side */
  transform: translateY(-50%);
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

/* âŒ First itemà®•à¯à®•à¯ à®µà¯‡à®£à¯à®Ÿà®¾à®®à¯ */
.navbar .nav-item:first-child::before {
  display: none;
}

/* -------- Hover Effects -------- */
.navbar .nav-link:hover,
.navbar .nav-item.show>.nav-link,
.navbar .nav-item.dropdown:hover>.nav-link {
  background: transparent !important;
  color: #E51743 !important;
}

/* -------- Underline Animation (Full width) -------- */
.navbar .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: #E51743;
  transition: width 0.3s ease;
  z-index: 2;
}

.navbar .nav-link:hover::before,
.navbar .nav-item.dropdown:hover>.nav-link::before,
.navbar .nav-item.show>.nav-link::before {
  width: 100%;
}

/* ---------- Navbar Links Gap & Responsive Font ---------- */



/* Navbar links */
.navbar .nav-link {
  color: #fff;
  font-weight: 550;
  padding: 12px 16px;

  font-size: 15px;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Hover + active background */
.navbar .nav-link:hover,
.navbar .nav-item.show>.nav-link,
.navbar .nav-item.dropdown:hover>.nav-link {
  background-color: #E51743;
  color: #fff !important;
}

.navbar .nav-link i {
  margin-left: 6px;
  font-size: 15px;
  /* keeps arrow small */
  vertical-align: middle;
}

.navbar .nav-link i {
  margin-left: 6px;
  font-size: 12px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.site-logo {
  width: 189px;
  height: auto;
}

/* -------- Mega Menu Base -------- */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;

  width: max-content;
  /* fit content */
  min-width: 220px;
  /* prevent too small */
  max-width: 90vw;
  /* responsive limit */

  background: linear-gradient(to bottom, #F5F5F5, #FFEEEE);
  padding: 8px 15px;
  border-radius: 6px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);

  opacity: 0;
  transform: translateY(-10px);
  transition: 0.3s ease;
  white-space: normal;
  /* allow text wrap */
  z-index: 999;
}

/* Show on hover */
.nav-item:hover>.mega-menu {
  opacity: 1;
  transform: translateY(0);
}

/* Rows inside mega menu */
.mega-menu .row {
  display: flex;
  flex-wrap: wrap;
  /* allow columns to wrap */
  gap: 20px;
}

/* Columns inside mega menu */
.mega-menu .col-md-3,
.mega-menu .col-md-4 {
  flex: 0 0 auto;
  width: auto;
  min-width: 120px;
  /* adjust to content */
}

/* List inside mega menu */
.mega-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu ul li {
  display: block;
}

.mega-menu ul li a {
  display: block;
  width: 100%;
  padding: 6px 8px;
  margin: 0;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.mega-menu ul li a:hover {
  color: #000;
  font-weight: 600;
}

/* Section title with icon */
.mega-menu .section-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  margin-bottom: 6px;
}

.mega-menu .section-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}




/* Navbar link hover and active background */
.navbar .nav-link {
  transition: all 0.3s ease;
  /* smooth hover */
  /* optional rounded effect */
}

.section-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding-left: 5px;
  margin-top: 20px;
  margin-bottom: 10px;
  position: relative;
}

/* Section title icon */
.section-title img {
  width: 17px;
  /* icon width */
  height: 17px;
  /* icon height */
  vertical-align: middle;
  /* aligns icon with text */
  margin-right: 3px;
  /* space between icon and text */
  display: inline-block;
  /* ensures proper alignment */
}

.section-title a {
  color: var(--text-color);
  text-decoration: none;
}


/* Optional hover effect */
.section-title a:hover {
  color: #E51743;
  transition: color 0.3s ease;
}

/* REMOVE THIS if using click */
.navbar .nav-item:hover>.dropdown-menu {
  opacity: 1;
}

.mega-submenu {
  min-width: 650px;
  max-width: 95vw;
  padding: 35px;
}

.mega-submenu .row {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
}

.mega-submenu .row>div {
  flex: 0 0 auto;
  white-space: normal;
}

/* Mega menu headers flower-like underline */
.mega-menu h5 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
  position: relative;
}

.nested-submenu {
  display: none;
  width: 100%;
  /* ðŸ”¥ à®®à¯à®•à¯à®•à®¿à®¯à®®à¯ */
}

.mega-menu .started {
  border-top: 1px solid #ddd;
  padding-top: 15px;

  width: 100%;
  margin-left: 0;
  margin-right: 0;
}



.nested-submenu {
  max-height: 0;
  overflow: hidden;

  margin: 0;
  padding-left: 12px;
  /* space for border */

  position: relative;
  border-left: none;
  /* remove old border */

  transition: max-height 0.4s ease;
}

.has-submenu.open .nested-submenu {
  max-height: 400px;
  margin-left: 12px;
}

/* ðŸ”¥ Perfect border */
.nested-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  /* start from first item */
  bottom: 8px;
  /* end at last item */
  width: 2px;
  background: #e63946;
}

/* remove gaps */
.nested-submenu li {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 12px;

}

.nested-submenu li a {
  display: block;
  padding: 8px 10px;
  margin: 0;
  border-radius: 4px;
}



/* ===== Reset UL ===== */
.mega-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== ðŸ”¥ FIXED STRUCTURE ===== */

/* parent */
.mega-menu ul li.has-submenu {
  position: relative;
}



/* ---- Remove full-width hover for links ---- */
.mega-menu ul li a,
.submenu-link {
  display: inline-flex !important;
  /* content-fit */
  width: auto !important;
  /* not full width */
  flex: unset !important;
  justify-content: flex-start !important;
  padding: 8px 6px;
  margin: 0;
  border-radius: 0;
  color: var(--text-color);
  text-decoration: none;
  font-size: clamp(11px, 1vw, 14px);
  transition: all 0.3s ease;
  position: relative;
  /* for z-index layering */
  z-index: 2;
  /* above pseudo */
}

/* Parent li only highlight */
.mega-menu ul li.has-submenu {
  position: relative;
}

/* Limit hover background height */
.mega-menu ul li.has-submenu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  /* adjust to row height */
  background: transparent;
  border-radius: 4px;
  transition: 0.3s;
  z-index: 1;
  /* behind text */
}

/* Bring content above pseudo */
.mega-menu ul li.has-submenu>* {
  position: relative;
  z-index: 2;
}

/* Normal li hover */
.mega-menu ul li:not(.has-submenu):hover {
  background: #cccccc2c;
  border-radius: 4px;
  transform: translateX(3px);
  text-shadow: 0 0 0.5px #212529;
}

/* Normal li link hover */
.mega-menu ul li:not(.has-submenu):hover>a {
  color: #212529;
  transform: translateX(3px);
  text-shadow: 0 0 0.5px #212529;
  font-weight: 500;
}

/* Parent li hover */
.mega-menu ul li.has-submenu:hover::before {
  background: #cccccc2c;
  transform: translateX(3px);
  color: #212529;
  text-shadow: 0 0 0.5px #212529;
  font-weight: 500;
}

/* Parent link hover */
.mega-menu ul li.has-submenu:hover>a {
  transform: translateX(3px);
}

/* Toggle icon hover */
.mega-menu ul li.has-submenu:hover>.submenu-toggle {
  transform: translateX(3px);
  background: transparent;
  /* keep toggle background clean */
}

/* ===== Extra text ===== */
.mega-menu .mega-li-text {
  font-size: clamp(11px, 1vw, 14px);
  line-height: 1.5;
  padding: 8px 08px;
  color: var(--text-color);
}


/* Show mega menu on hover desktop */
@media (min-width: 992px) {

  .navbar .nav-item:hover .mega-menu,
  .navbar .nav-item:hover .mega-submenu {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    pointer-events: auto;
  }
}

/* ðŸ”½ 1400px à®•à¯€à®´à¯‡ */
@media (max-width: 1400px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* ðŸ”½ 1200px à®•à¯€à®´à¯‡ */
@media (max-width: 1200px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 13px;
  }
}

/* ðŸ”½ 992px à®•à¯€à®´à¯‡ (tablet / mobile menu) */
@media (max-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 8px !important;
    padding-right: 8px !important;
    font-size: 12px;
  }
}

/* Mobile: stack mega menu full width */
@media (max-width: 991px) {

  .mega-menu,
  .mega-submenu {
    position: static !important;
    width: 100% !important;
    min-width: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    box-shadow: none;
    padding: 15px 20px;
  }

  .mega-menu .row,
  .mega-submenu .row {
    flex-direction: column;
    gap: 15px;
  }

  .mega-menu .col-md-3,
  .mega-menu .col-md-6 {
    flex: 0 0 100%;
    width: 100%;
  }
}

/* Mega menu titles & icons */
.mega-title {
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.mega-title i {
  font-size: 24px;
  color: #E51743;
}

.mega-desc {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 400px;
  word-wrap: break-word;
}

/* Style for last line "Ready to get started?" */
.mega-menu .started {
  color: var(--text-color);
  font-weight: 600;
  padding-left: 5px;
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.5;
  /* âœ… added line height */
}

/* Highlight "Let's Talk" text */
.mega-menu .lets-talk {
  position: relative;
  /* needed for ::after positioning */
  color: #E51743;
  /* red text */
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 5px;
  display: inline-block;
  /* keep it inline and allow ::after width */
  transition: color 0.3s ease;
  /* smooth text color change */
}

/* Animated bottom border */
.mega-menu .lets-talk::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  /* thickness of underline */
  width: 0;
  /* start hidden */
  background: #E51743;
  /* underline color */
  transition: width 0.3s ease;
  /* animation */
}

/* Hover effect */
.mega-menu .lets-talk:hover {
  color: var(--text-color);
  /* text color on hover */
}

.mega-menu .lets-talk:hover::after {
  width: 100%;
  /* expand underline */
}

.mega-menu .lets-talk a {
  text-decoration: none;
  color: #E51743;
  border: none;
}

/* Normal dropdowns */
.navbar .dropdown-menu {
  background: linear-gradient(to bottom, #F5F5F5, #FFEEEE);
  min-width: auto;
  /* remove fixed minimum */
  width: max-content;
  /* fit the content width */
  padding: 10px 0;
  border: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  display: block;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* Optional: Align dropdown to parent */
.navbar .nav-item.dropdown {
  position: relative;
}

.navbar .dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
}


.navbar .dropdown-menu .dropdown-item {
  display: block;
  /* âœ… vertical stack */
  width: 100%;
  /* full width */
  padding: 8px 20px;
  white-space: normal;
  /* text wrap ok */
}

/* Dropdown item full width + padding */
.navbar .dropdown-menu .dropdown-item {
  display: block;
  width: 100%;
  padding: 8px 20px;
  white-space: normal;
  position: relative;
  color: #000;
  /* normal text color */
  text-decoration: none;
  font-size: clamp(11px, 1vw, 14px);
  transition: all 0.3s ease;
}

/* Hover: background + text + underline animation */
.navbar .dropdown-menu .dropdown-item:hover {
  background: #cccccc2c;
  color: #000;
  /* text color on hover */
  transform: translateX(3px);
  text-shadow: 0 0 0.5px #000;
}

/* ðŸ”¥ NON-CLICKABLE ITEM (like IT Transformation) */
.navbar .dropdown-menu li span {
  display: block;
  width: 100%;

  padding: 8px 20px;
  font-size: clamp(11px, 1vw, 14px);
  color: #000;

  cursor: default;
  /* not clickable */
  transition: all 0.3s ease;
}

/* Hover same feel like other items */
.navbar .dropdown-menu li span:hover {
  background: #cccccc2c;
  transform: translateX(3px);
  text-shadow: 0 0 0.5px #000;
}


/* Align only the Resources dropdown to the right of its parent */
#resourcesDropdown+.dropdown-menu {
  left: auto !important;
  /* cancel default left */
  right: 0 !important;
  /* align right edge to parent */
  top: 100%;
  /* below parent */
  min-width: 180px;
  /* optional width */
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 1050;
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
}

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
  #resourcesDropdown:hover+.dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Mobile: stacked below parent */
@media (max-width: 991px) {
  #resourcesDropdown+.dropdown-menu {
    position: static;
    /* normal flow */
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
}

/* Show mega menu on hover desktop */
@media (min-width: 992px) {

  .navbar .nav-item:hover>.mega-menu,
  .navbar .nav-item:hover>.mega-submenu,
  .navbar .nav-item:hover>.dropdown-menu {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    pointer-events: auto;
  }
}

.nav-item:last-of-type .mega-menu,
.nav-item:nth-last-child(2) .mega-menu,
.nav-item:nth-last-child(3) .mega-menu {
  left: auto;
  right: 0;
}

/* ---------- 3D Services Mega Menu Responsive Width ---------- */

/* For screens below 1400px */
@media (max-width: 1400px) {
  #threeDDropdown+.mega-menu {
    min-width: 600px;
    /* smaller width than default 850px */
    max-width: 80vw;
    /* fit inside viewport */
    padding: 20px;
    /* optional padding */
  }
}

/* For screens below 1199px */
@media (max-width: 1199px) {
  #threeDDropdown+.mega-menu {
    min-width: 600px;
    /* smaller width than default 850px */
    max-width: 80vw;
    /* fit inside viewport */
    left: 0;
    /* stick to left side */
    right: auto;
    padding: 15px;
    /* adjust padding */
    box-sizing: border-box;
    /* include padding in width */
  }
}

/* Optional: mobile stacking */
@media (max-width: 991px) {
  #threeDDropdown+.mega-menu {
    position: static;
    width: 100%;
    padding: 10px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
}


/* Show dropdowns on hover desktop */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile: show dropdowns on click */
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navbar toggle & collapse for mobile */
@media (max-width: 1101px) {
  .navbar-expand-lg .navbar-toggler {
    display: block !important;
  }

  .navbar-expand-lg .navbar-collapse {
    display: none !important;
  }
}

@media (min-width: 1100px) {
  .navbar-expand-lg .navbar-toggler {
    display: none !important;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .navbar {
    height: auto;
    padding: 10px 20px;
  }
}

/* Navbar links flex wrap for smaller desktops */
@media (max-width: 1400px) {
  .navbar .navbar-nav {
    gap: 8px !important;
  }

  .navbar .nav-link {
    font-size: 14px;
    padding: 10px 12px;
  }
}





/* Prevent navbar links from wrapping at 1199px */
@media (max-width: 1200px) {
  .navbar .navbar-nav {
    flex-wrap: nowrap;
    /* Prevent wrapping */
    gap: 02px !important;
    /* Reduce gap */
    margin-left: -20px;
  }

  .navbar .nav-link {
    font-size: 11px !important;
    /* Slightly smaller font */
    padding: 10px 12px;
    /* Smaller padding */
    white-space: nowrap;
    /* Keep text in one line */
  }
}

@media (min-width: 1100px) {

  .navbar .navbar-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
  }

  .navbar .navbar-nav>.nav-item {
    flex: 1;
    /* IMPORTANT */
    position: relative;

  }

  .navbar .nav-link {
    display: flex;
    /*  change */
    width: 100%;
    /*  FULL WIDTH */
    white-space: nowrap;
    line-height: 1;
    position: relative;
  }
}




/* ===== Nested submenu ===== */
.has-submenu {
  position: relative;
  display: flex;
  /* ðŸ”¥ FIX */
  align-items: center;
  justify-content: space-between;
}

/* TEXT LINK */
.submenu-link {
  flex: 1;
  text-align: center;
  /* ðŸ”¥ take full width */
  display: block;
  /* âŒ inline-flex remove */
  padding: 8px 10px;
  white-space: nowrap;
  color: var(--text-color);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* TOGGLE ICON */
.submenu-toggle {
  flex: 0 0 auto;
  padding: 8px 6px;
  margin-left: -5px;
  color: #E51743;
  cursor: pointer;
}



.has-submenu.open .submenu-toggle i {
  transform: rotate(180deg);

  color: var(--text-color);
}

.has-submenu .submenu-toggle i.fa-minus {
  display: none;
  color: #E51743;
}

.has-submenu.open .submenu-toggle i.fa-plus {
  display: none;
}

.has-submenu.open .submenu-toggle i.fa-minus {
  display: inline;
}

.submenu-toggle i {
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
  font-size: 12px;

}



.has-submenu.open .submenu-toggle i.fa-minus {
  transform: rotate(180deg);
}


/* Indentation for nested accordions */
#photoEditingNestedAccordion .accordion-button {
  padding-left: 18px;
}

#photoEditingNestedAccordion .accordion-body {
  padding-left: 32px;
}


.topbar {
  background: #F9F9F9;
  font-size: 14px;
  padding: 8px 0;

}

.topbar .tagline {
  padding-left: 16px;
  margin-left: 16px;
  border-left: 2px solid #d3d3d3;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-color);
  white-space: normal;

}

/* Hide topbar in mobile */
@media(max-width: 991px) {
  .topbar {
    display: none;
  }
}

/* Logo */
.topbar img {
  height: 35px;
  width: auto;
}

.offcanvas-header img,
.navbar-brand img {
  height: 25px;
  width: auto;
}



/* ---------- Search Box ---------- */
.search-box {
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 6px 12px;
  position: relative;
  font-size: 14px;
  background: #fff;

}

.search-box i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  padding-left: 30px;
  background: transparent;
  font-size: 14px;
}

/* ---------- Dropdown Suggestions ---------- */
#suggestions {
  overflow-y: auto;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 400px;
  /* Set a max height instead of fixed height */
  background: #fff;
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;

  transition: all 0.2s ease-in-out;
  scrollbar-width: thin;
  scrollbar-color: #1a73e8 #f1f1f1;
  /* For Firefox */
}

/* Chrome, Edge, Safari custom scroll */
#suggestions::-webkit-scrollbar {
  width: 2px;
}

#suggestions::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

#suggestions::-webkit-scrollbar-thumb {
  background-color: #007bff;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

#suggestions::-webkit-scrollbar-thumb:hover {
  background-color: #0056b3;
}

#suggestions li {
  cursor: pointer;
  padding: 12px 30px;
  font-size: 12px;
  display: flex !important;
  /* force flex */
  align-items: center;
  gap: 10px;
  /* space between icon and text */
}

#suggestions li i {
  color: #1a73e8;
  font-size: 16px;
  flex-shrink: 0;
  /* icon keeps its size */
}

#suggestions li:hover {
  background: #f1f3f4;
}

#suggestions li i {
  color: #1a73e8;
  font-size: 12px;
}

/* Contact Button */
.btn-contact {
  background-color: #E51743 !important;
  color: #fff !important;
  width: 180px;
  height: 35px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;

}

.btn-contact:hover {
  background-color: #E51743 !important;
  color: #fff !important;
}

/* ---------- Modal ---------- */
.modal-dialog {
  max-width: 700px;
}

.modal-body {
  max-height: 60vh;
  overflow-y: auto;
}

/* Result count + sort */
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.results-header p {
  margin: 0;
}

/* Search Result */
.search-result {
  margin-bottom: 18px;
}

.search-result a {
  font-size: 14px;
  font-weight: 500;
  color: #1a0dab;
  text-decoration: none;
}

.search-result a:hover {
  text-decoration: underline;
}

.search-result .link {
  color: #006621;
  font-size: 12px;
}

.search-result small {
  color: #70757a;
  font-size: 12px;
  display: block;
  margin-bottom: 4px;
}

.search-result p {
  font-size: 12px;
}

#resultCount {
  font-size: 12px;
}

#sortSelect {
  font-size: 12px;
  /* change number as needed */
}

/* Pagination */
.pagination {
  justify-content: flex-start;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 4px;
}

.pagination .page-item {
  border: none;
}

.pagination .page-item a {
  color: #1a0dab;
  padding: 4px 10px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  border-radius: 2px;
}

.pagination .page-item.active a {
  background-color: #1a73e8;
  color: #fff;
}

.pagination .page-item a:hover {
  text-decoration: underline;
  background: #f1f3f4;
}

/* ---------- Navbar ---------- */

/* ---------- Offcanvas ---------- */
.offcanvas .nav-tabs {
  border-bottom: 2px solid #ddd;
  margin-bottom: 15px;
}

.offcanvas .nav-tabs .nav-link {
  color: #000;
  font-weight: 500;
}

.offcanvas .nav-tabs .nav-link.active {
  color: #E51743;
  border-color: #E51743 #E51743 #fff;
}

/* ---------- Offcanvas accordion & other links ---------- */
.offcanvas .accordion-body a,
.offcanvas #tab-company .company-links ul li a,
.offcanvas #tab-company>ul li a {
  display: block;
  padding: 6px 0;
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.3s forwards;
}

/* ---------- Base animation for links and spans ---------- */
.offcanvas .accordion-body a,
.offcanvas .accordion-body .text-item {
  display: block;
  padding: 6px 0;
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.4s ease forwards;
}

/* Remove border for last item */
.offcanvas .accordion-body>*:last-child {
  border-bottom: none;
}

/* Hover effect */
.offcanvas .accordion-body a:hover,
.offcanvas .accordion-body .text-item:hover {
  color: #E51743;
  transform: translateX(5px);
  transition: 0.3s ease;
}

/* Reset when accordion is closed */
.offcanvas .accordion-collapse:not(.show) .accordion-body>* {
  opacity: 0;
  transform: translateY(10px);
  animation: none;
}

/* ================= STAGGER DELAY ================= */
.offcanvas .accordion-collapse.show .accordion-body>*:nth-child(1) {
  animation-delay: 0.1s;
}

.offcanvas .accordion-collapse.show .accordion-body>*:nth-child(2) {
  animation-delay: 0.2s;
}

.offcanvas .accordion-collapse.show .accordion-body>*:nth-child(3) {
  animation-delay: 0.3s;
}

.offcanvas .accordion-collapse.show .accordion-body>*:nth-child(4) {
  animation-delay: 0.4s;
}

.offcanvas .accordion-collapse.show .accordion-body>*:nth-child(5) {
  animation-delay: 0.5s;
}

.offcanvas .accordion-collapse.show .accordion-body>*:nth-child(6) {
  animation-delay: 0.6s;
}

.offcanvas .accordion-collapse.show .accordion-body>*:nth-child(7) {
  animation-delay: 0.7s;
}

.offcanvas .accordion-collapse.show .accordion-body>*:nth-child(8) {
  animation-delay: 0.8s;
}

.offcanvas .accordion-collapse.show .accordion-body>*:nth-child(9) {
  animation-delay: 0.9s;
}

.offcanvas .accordion-collapse.show .accordion-body>*:nth-child(10) {
  animation-delay: 1s;
}

/* ================= KEYFRAMES ================= */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= HEADER ANIMATION ================= */
.offcanvas .accordion-header {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.4s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header delay */
.offcanvas .accordion-item:nth-child(1) .accordion-header {
  animation-delay: 0.1s;
}

.offcanvas .accordion-item:nth-child(2) .accordion-header {
  animation-delay: 0.2s;
}

.offcanvas .accordion-item:nth-child(3) .accordion-header {
  animation-delay: 0.3s;
}

.offcanvas .accordion-item:nth-child(4) .accordion-header {
  animation-delay: 0.4s;
}

.offcanvas .accordion-item:nth-child(5) .accordion-header {
  animation-delay: 0.5s;
}

/* ================= LINK STYLE ================= */
.accordion-button a.accordion-link {
  display: inline-block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.accordion-button a.accordion-link:hover {
  text-decoration: underline;
  color: #E51743 !important;
}

/* ================= HOVER EFFECT ================= */
.offcanvas .accordion-body a:hover {
  transform: translateX(5px);
  transition: 0.3s ease;
}

/* Offcanvas links stagger animation for one-by-one show */
.offcanvas .tab-content a,
.offcanvas .accordion-body a {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.3s forwards;
}

/* Main navbar link 2D Services */
.navbar .nav-link.dropdown-toggle {
  font-size: 14px;
  font-weight: 600;
  /* semi-bold */
  display: flex;
  align-items: center;
}

.navbar .nav-link.dropdown-toggle i {
  margin-left: 10px;
  font-size: 14px;
  /* down arrow bigger and visible */
}



/* Mega menu paragraph wrap and justify */
.mega-menu p {
  white-space: normal;
  text-align: justify;
  line-height: 1.6;
}

.offcanvas .tab-content a:nth-child(1),
.offcanvas .accordion-body a:nth-child(1) {
  animation-delay: 0.1s;
}

.offcanvas .tab-content a:nth-child(2),
.offcanvas .accordion-body a:nth-child(2) {
  animation-delay: 0.2s;
}

.offcanvas .tab-content a:nth-child(3),
.offcanvas .accordion-body a:nth-child(3) {
  animation-delay: 0.3s;
}

.offcanvas .tab-content a:nth-child(4),
.offcanvas .accordion-body a:nth-child(4) {
  animation-delay: 0.4s;
}


/* Fade in up animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Search box & contact button in offcanvas */
.offcanvas .search-box {
  margin-top: 15px;
}

.offcanvas .btn-contact {
  width: 100%;
  margin-bottom: 15px;
}

/* ---------- Offcanvas Accordion Clean Style ---------- */

/* Remove accordion item background and border */
.offcanvas .accordion .accordion-item {
  background: transparent;
  /* no background */
  border: none;
  /* remove border */
  box-shadow: none;
  /* remove shadow */
}

/* Remove accordion header background and border */
.offcanvas .accordion .accordion-header {
  background: transparent;
  border: none;
}

/* Accordion buttons clean */
.offcanvas .accordion-button {
  background: transparent;
  /* no background */
  color: var(--text-color);
  /* text color */
  padding: 10px 0;
  border: none;
  /* remove border */
  box-shadow: none;
  /* remove shadow */
  font-weight: 500;
}

/* Accordion button hover/expanded */
.offcanvas .accordion-button:hover,
.offcanvas .accordion-button:not(.collapsed) {
  color: #E51743;
  /* optional hover color */
  background: transparent;
  box-shadow: none;
}

/* Accordion body clean */
.offcanvas .accordion-body {
  padding: 0 0 10px 10px;
  /* optional indentation */
}

/* Links inside accordion body */
.offcanvas .accordion-body a {
  display: block;
  padding: 5px 0;
  color: #444;
  text-decoration: none;
}

.offcanvas .accordion-body a:hover {
  color: #E51743;
}

/* Style direct links like 3D Services & IT Services */
.offcanvas .mb-3>a {
  display: block;
  padding: 6px 0;
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: color 0.3s;
}

.offcanvas .mb-3>a:last-child {
  border-bottom: none;
}

.offcanvas .mb-3>a:hover {
  color: #E51743;
}

/* Offcanvas Accordion Header Link Styling */
#offcanvasNav .accordion-header .accordion-link {
  color: #333;
  text-decoration: none;
  /* Remove underline */
  flex-grow: 1;
  /* Take available space next to button */
  padding: 0.5rem 0;
  /* Vertical padding */
  font-size: 1rem;
  /* Font size */
  transition: color 0.3s;
}

#offcanvasNav .accordion-header a {
  border: none;
  white-space: nowrap;
}

/* Hover effect for header links */
#offcanvasNav .accordion-header .accordion-link:hover {
  color: #E51743;
  text-decoration: none;
}

/* Make header a flex container */
#offcanvasNav .accordion-header {
  display: flex;
  justify-content: space-between;
  /* Link left, button right */
  align-items: center;
}

/* Remove default button background */
#offcanvasNav .accordion-header .accordion-button {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0.25rem 0;

}

/* Remove button focus outline */
#offcanvasNav .accordion-header .accordion-button:focus {
  box-shadow: none;
}


/* Remove fixed height on small screens */
@media (max-width: 991px) {
  .navbar {
    height: auto;
    /* height adjusts to content */
    padding: 10px 20px;
    /* optional: more padding for mobile */
  }
}

#offcanvasNav .accordion-header .accordion-nolink {
  color: #333;
  text-decoration: none;
  flex-grow: 1;
  padding: 0.5rem 0;
  font-size: 1rem;
  transition: color 0.3s;
}























.error-page {
  text-align: center;
  padding: 30px;
}

.terms {
  padding: 60px;
  background: #ffffff;
  box-shadow: 0px 4px 23px 1px #e8e8e8;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 25px;
}

.terms h3 {
  font-weight: 600;
  font-size: 28px;
}

.job-box {
  padding: 60px;
  background: #ffffff;
  box-shadow: 0px 4px 23px 1px #e8e8e8;
  margin-bottom: 25px;
}

section.career-page {
  margin-top: 30px;
}

/* ------ RESPONSIVE FIX ------ */
/* Reduce padding on tablets & mobile */
@media (max-width: 992px) {
  .terms {
    padding: 40px;
  }
}

@media (max-width: 576px) {
  .terms {
    padding: 20px;
  }

  .terms h3 {
    font-size: 22px;
  }

  .terms {
    font-size: 14px;
    line-height: 22px;
  }
}





/* ================= HERO SECTION ================= */

/* ================= HERO SECTION ================= */

.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: #000;
  padding: 80px 20px;
}

/* ðŸ”¥ Optimized Red Glow (Reduced Blur for Performance) */
.hero-section::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;

  background: radial-gradient(ellipse at center,
      rgba(255, 0, 60, 0.8) 0%,
      rgba(255, 0, 60, 0.6) 30%,
      rgba(255, 0, 60, 0.3) 55%,
      rgba(0, 0, 0, 0) 80%);

  filter: blur(30px);
  /* ðŸ”¥ reduced from 90px */
  will-change: transform, opacity;
  z-index: 0;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

/* Heading */
.hero-content h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  min-height: 80px;
  /* ðŸ”¥ prevent layout shift */
}

.hero-content h1 span {
  color: #E51743;
}

/* Paragraph */
.hero-content p {
  margin-top: 15px;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: #fff;
}

/* ================= BUTTONS ================= */

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-buttons a {
  text-decoration: none;
  color: #fff;
}

/* Primary Button */
.btn-primary {
  position: relative;
  overflow: hidden;
  padding: 8px 42px;
  border-radius: 25px;
  background-color: #E51743;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  border: none;
  z-index: 1;
  transition: color 0.3s ease, transform 0.2s ease;
}

/* Background hover layer */
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  background: #000;
  z-index: -1;
  transition: width 0.4s ease;
}

/* Hover */
.btn-primary:hover::before {
  width: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  /* ðŸ”¥ smooth lift instead of heavy move */
}

/* Outline Button */
.btn-outline {
  padding: 6px 42px;
  border-radius: 25px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* ================= VIDEO BUTTON ================= */

.video-btn {
  display: flex;
  align-items: center;
  gap: 12px;
}

.play-icon {
  position: relative;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #E51743;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}

/* ðŸ”¥ Optimized Ripple (Reduced Load) */
.play-icon::before,
.play-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: white;
  z-index: -1;
  animation: ripple 3s infinite;
  /* slower = better performance */
  opacity: 0.6;
}

.play-icon::after {
  animation-delay: 1.5s;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.video-btn:hover .play-icon {
  background: #E51743;
  color: #fff;
}

/* ================= VIDEO MODAL ================= */

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-content {
  width: 100%;
  max-width: 1000px;
  position: relative;
}

.video-content video {
  width: 100%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: -30px;
  right: 0;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* ================= TYPING EFFECT ================= */

.typing-word {
  color: #ff1e4d;
  border-right: 3px solid #ff1e4d;
  padding-right: 5px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% {
    border-color: #ff1e4d;
  }

  50% {
    border-color: transparent;
  }

  100% {
    border-color: #ff1e4d;
  }
}

/* ================= SMOKE EFFECT ================= */

.smoke {
  position: fixed;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
      rgba(255, 0, 200, 0.9) 0%,
      rgba(0, 255, 255, 0.7) 40%,
      rgba(255, 255, 0, 0.6) 60%,
      rgba(0, 0, 0, 0) 80%);
  filter: blur(25px);
  animation: fadeOut 1s forwards;
  mix-blend-mode: screen;
  z-index: 2;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.5);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width:992px) {
  .hero-section {
    min-height: auto;
    padding: 70px 20px;
  }
}

@media (max-width:768px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 260px;
    margin: auto;
  }

  .video-content {
    width: 95%;
  }

  .close-btn {
    top: -35px;
    font-size: 22px;
  }
}

@media (max-width:480px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .play-icon {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}









/* Full Section Background */
.company-section {
  background: #f8f8f8;
  ;
  padding: 60px 0;
}

/* Inner Wrapper Card */
.company-section-wrapper {

  border-radius: 18px;

}

/* Image */
.company-image-style {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  height: auto;
  display: block;
}


/* Feature Block */
.company-feature-block {
  display: flex;
  align-items: center;
  gap: 15px;
}

.company-description-text {
  text-align: justify;
}

.company-feature-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  color: #000;
}

/* Text */
.company-feature-text {
  font-size: 16px;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 992px) {
  .company-section-wrapper {
    padding: 40px 25px;
  }

  .company-main-title {
    font-size: 28px;
  }
}














/* ===============================
   SERVICE PAGE BANNER
================================= */

.service-page-banner-section {
  position: relative;
  overflow: hidden;
}

.banner-video {
  width: 100%;
  height: 700px;
  object-fit: cover;
  display: block;
}

/* Banner Image */
.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Overlay Container */
.banner-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

/* Text Wrapper */
.banner-container-text {
  max-width: 580px;
  color: #ffffff;
}

.banner-container-text h1,
.banner-container-text p {
  color: #ffffff;
}


/* ===============================
   BREADCRUMB
================================= */

.breadcrumb-service {
  padding-block: 15px;
}

.breadcrumb-service ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
}

/* Separator via CSS (clean schema-safe) */
.breadcrumb-service li+li::before {
  content: "\f101";
  /* FontAwesome angle-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin: 0 6px;
  font-size: 11px;
  opacity: 0.8;
  color: #000000;
}

.breadcrumb-service a {
  font-size: 14px;
  color: #000000;
  text-decoration: none;
  transition: 0.3s ease;
}

.breadcrumb-service a:hover {
  color: var(--primary-color);
}

.active-breadcrumb {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
}

.banner-container-text h1 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.banner-container-text p {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.6;
  margin-bottom: 18px;
}

.banner-button {
  position: relative;
  background-color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  transition: 0.3s ease;
}

.banner-button:hover {
  color: var(--text-color);
}

.banner-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  transition: left 1s ease;
}

.banner-button:hover::after {
  left: 120%;
}

@media (max-width: 768px) {


  .banner-img {
    display: none;
  }

  .banner-video {
    display: none;
  }

  .service-page-banner-section {
    background: #000;
    padding: 60px 20px;
  }

  .banner-container {
    position: static;
  }

  .banner-container-text {
    max-width: 100%;
    text-align: center;
  }

  .breadcrumb-service ul {
    justify-content: start;
    flex-wrap: wrap;
  }

  .banner-button {
    padding: 8px 20px;
  }
}

@media (max-width: 495px) {

  .breadcrumb-service ul {
    line-height: 1.3;
  }
}





/* ================================
   HERO WRAPPER
================================ */
.top-hero-wrapper {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Banner Image */
.hero-banner-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

/* Overlay */
.top-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(23, 2, 2, 0.55) 0%,
      rgba(170, 0, 0, 0.80) 100%);
}

/* Content */
.top-hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

/* Heading */
.top-hero-heading {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ================================
   BREADCRUMB
================================ */

.page-trail-wrapper {
  display: inline-block;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border-radius: 50px;
}

.page-trail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.page-trail-item {
  font-size: 15px;
  color: #fff;
}

.page-trail-item+.page-trail-item::before {
  content: "\f101";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin: 0 8px;
  font-size: 11px;
  opacity: 0.8;
  color: #ffffff;
}

.page-trail-link {
  color: #fff;
  text-decoration: none;
}

.page-trail-link:hover {
  color: #E51743;
}

.page-trail-current {
  color: #E51743;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .top-hero-wrapper {
    height: 350px;
  }

  .top-hero-heading {
    font-size: 24px;
  }
}




/* ============  Service Banner  ============ */
.service-banner-section {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* vertical centering */
  padding-top: 80px;
  /* space for badge on mid screens */
  padding-bottom: 80px;
  color: #fff;
}

/* Background wrapper & images */
.service-banner-images-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* sit behind content */
}

.service-banner-images-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* Dark overlay */
.service-banner-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

/* Content row */
.service-banner-section .row {
  position: relative;
  z-index: 1;
  /* keeps text above images & overlay */
}

/* Text column */
.service-banner-section h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-banner-section .banner-paragraph {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  max-width: 500px;
  /* limit width for better readability */
  word-break: keep-all;
  /* prevent mid-word breaks */
  white-space: normal;
  /* allow natural line wrapping */

}

.service-banner-section .client-badge {
  background-color: #FFE785;
  /* your requested color */
  color: #000;
  /* black text for contrast */
  padding: 0.35rem 0.75rem;
  border-radius: 0.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;

}

/* Right images */
.service-banner-section .hero-images {
  max-width: 100%;
  border-radius: 12px;
}



.ba-container {

  place-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  --position: 50%;
}

.ba-image-container {
  width: 636px;
  height: 406px;
  aspect-ratio: 1/1;
  /* keeps it square */
}

.ba-slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.ba-image-before {
  position: absolute;
  inset: 0;
  width: var(--position);

}

.ba-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  height: 100%;
}

.ba-slider:focus-visible~.ba-slider-button {
  outline: 5px solid black;
  outline-offset: 3px;
}

.ba-slider-line {
  position: absolute;
  inset: 0;
  width: .2rem;
  height: 100%;
  background-color: #fff;
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-slider-button {
  position: absolute;
  background: linear-gradient(135deg, #ff7e5f, #E10600);
  /* gradient background */
  color: #ffffff;
  /* color of the SVG (white in this example) */
  padding: .5rem;
  border-radius: 100vw;
  display: grid;
  place-items: center;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767.98px) {
  .ba-container {
    display: none;
  }
}

/* ---------- Tablet / small desktop ---------- */
@media (max-width: 1200px) {
  .service-banner-section h1 {
    font-size: 43px;
  }
}

/* ---------- Tablets & large phones ---------- */
@media (max-width: 992px) {
  .service-banner-section {
    padding-top: 70px;
    /* ensures badge never collides */
    padding-bottom: 70px;
    text-align: center;
  }

  .service-banner-section .col-lg-6 {
    text-align: center;
    margin-top: 20px;
  }

  .service-banner-section h1 {
    font-size: 40px;
  }

  .service-banner-section .banner-paragraph {
    font-size: 15px;
    max-width: 550px;
  }
}

/* ---------- ~845px fix (optional tighter control) ---------- */
@media (max-width: 850px) {
  .service-banner-section {
    padding-top: 80px;
  }
}

/* ---------- Phones ---------- */
@media (max-width: 768px) {
  .service-banner-section {
    min-height: auto;
    /* allow natural height */
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .service-banner-section h1 {
    font-size: 34px;
  }

  .service-banner-section .banner-paragraph {
    font-size: 15px;

  }

  .service-banner-section .client-badge {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {

  /* below large screens */
  .service-banner-section .hero-image {
    display: none;
  }
}

/* ---------- Mobile & Tablet ---------- */
@media (max-width: 991px) {

  /* Hide video */
  .service-banner-image-wrapper video {
    display: none !important;
  }

  /* Remove overlay */
  .service-banner-image-wrapper .overlay {
    display: none !important;
  }

  /* Add solid background color */
  .service-banner-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
  }
}

.inner-intro {
  padding: 25px 0 25px;
  text-align: justify;
  background-color: var(--background-color);
  color: var(--text-color);
  text-align: justify;
}





















/* ================= HERO / BANNER ================= */
.aboutus-hero-section {
  position: relative;
  overflow: hidden;
  background: #000;
}

/* ðŸ”¥ RED GLOW BACKGROUND */
.aboutus-hero-section::before {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 320px;

  background: radial-gradient(ellipse at center,
      rgba(229, 23, 67, 0.9) 0%,
      rgba(229, 23, 67, 0.7) 30%,
      rgba(229, 23, 67, 0.4) 55%,
      rgba(0, 0, 0, 0) 80%);

  filter: blur(70px);
  z-index: 0;
}

.map-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 450px;
  /* desktop height */
  border: 0;
  display: block;
}

/* ðŸ“± Mobile responsive */
@media (max-width:768px) {
  .map-container iframe {
    height: 300px;
  }
}

/* CONTENT WRAPPER */
.aboutus-top {
  position: relative;
  z-index: 2;
  text-align: center;

  padding: 100px 20px 110px;
  /* top | side | bottom */
  color: #fff;
}

/* CONTAINER FIX */
.aboutus-top .container {
  max-width: 900px;
  margin: 0 auto;
}

/* HEADING */
.aboutus-top h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* PARAGRAPH */
.aboutus-top p {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
  max-width: 750px;
  margin: 0 auto;
}

/* ðŸ”¥ OPTIONAL BUTTON (if needed) */
.aboutus-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 30px;
  border-radius: 25px;
  background: #E51743;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.aboutus-btn:hover {
  background: #fff;
  color: #E51743;
}

/* ================= RESPONSIVE ================= */
@media (max-width:768px) {
  .aboutus-top {
    padding: 70px 15px 80px;
  }

  .aboutus-top h1 {
    font-size: 28px;
  }

  .aboutus-top p {
    font-size: 14px;
  }
}















/* ============  Service Banner Before after ============ */
.photo-editing-banner-section {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  color: #fff;
  background-color: #000;
}

/* Background wrapper */
.photo-editing-banner-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #141414;
}

.photo-editing-banner-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.photo-editing-banner-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

/* Row content */
.photo-editing-banner-section .row {
  position: relative;
  z-index: 1;
}



.pe-breadcrumbs {
  padding-block: 15px;

}

.pe-breadcrumbs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
}


/* Chevron Separator */
.pe-breadcrumbs li+li::before {
  content: "\f101";
  /* FontAwesome angle-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin: 0 6px;
  font-size: 11px;
  opacity: 0.8;
  color: #000000;
}

.pe-breadcrumbs a {
  font-size: 14px;
  color: #000000;
  text-decoration: none;
  transition: 0.3s ease;
}

.pe-breadcrumbs a:hover {
  color: #e51743;
}

.pe-active-breadcrumb {
  color: #e51743;
  font-weight: 500;
  font-size: 14px;
}

.photo-editing-banner-section h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.photo-editing-banner-section .banner-paragraph {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  max-width: 500px;
  word-break: keep-all;
  white-space: normal;
}

.photo-editing-banner-section .client-badge {
  background-color: #FFE785;
  color: #000;
  padding: 0.35rem 0.75rem;
  border-radius: 0.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  /* font-family: 'Roboto', sans-serif !important; */
}

.photo-editing-banner-section .hero-images {
  max-width: 100%;
  border-radius: 12px;
}

.ba-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  --position: 50;
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.ba-image-container {
  width: 100%;
  position: relative;
}

.ba-slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.ba-image-before {
  position: absolute;
  inset: 0;
  width: var(--position);
  overflow: hidden;
}


.ba-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  height: 100%;
}

.ba-slider-line {
  position: absolute;
  inset: 0;
  width: 0.3rem;
  height: 100%;
  background-color: #fff;
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-slider-button {
  position: absolute;
  background: #E51743;
  color: #fff;
  padding: 0.6rem;
  border-radius: 100vw;
  display: grid;
  place-items: center;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}


/* ============================= */
/*      Before / After Labels    */
/* ============================= */

/* Base label styles */
.ba-image-before::before,
.ba-image-container::after {
  position: absolute;
  top: 15px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 30px;
  text-transform: uppercase;
  z-index: 3;
  color: #fff;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

/* ================= BEFORE ================= */

.ba-image-before::before {
  content: "Before";
  left: 15px;
  background: rgba(0, 0, 0, 0.65);

  /* Fade based on slider position */
  opacity: clamp(0, calc(var(--position) / 10), 1);
}

/* ================= AFTER ================= */

.ba-image-container::after {
  content: "After";
  right: 15px;
  background: #E51743;

  /* Fade opposite of Before */
  opacity: clamp(0, calc((100 - var(--position)) / 10), 1);
}

@media (max-width: 767.98px) {
  .ba-container {
    display: none;
  }
}

@media (max-width: 1200px) {
  .photo-editing-banner-section h1 {
    font-size: 43px;
  }
}

@media (max-width: 992px) {
  .photo-editing-banner-section {
    padding-top: 70px;
    padding-bottom: 70px;
    text-align: center;
  }

  .photo-editing-banner-section .col-lg-6 {
    text-align: center;
    margin-top: 20px;
  }

  .photo-editing-banner-section h1 {
    font-size: 40px;
  }

  .photo-editing-banner-section .banner-paragraph {
    font-size: 15px;
    margin: auto;
    margin-bottom: 15px;
  }
}

@media(max-width: 991px) {
  .pe-breadcrumbs ul {
    justify-content: start;
  }
}

@media (max-width: 850px) {
  .photo-editing-banner-section {
    padding-top: 80px;
  }
}

@media (max-width: 768px) {
  .photo-editing-banner-section {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .photo-editing-banner-section h1 {
    font-size: 34px;
  }

  .photo-editing-banner-section .banner-paragraph {
    font-size: 15px;
  }

  .photo-editing-banner-section .client-badge {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .photo-editing-banner-section .hero-image {
    display: none;
  }
}

@media (max-width: 991px) {
  .photo-editing-banner-image-wrapper video {
    display: none !important;
  }

  .photo-editing-banner-image-wrapper .overlay {
    display: none !important;
  }


}








.query-section {
  padding: 60px 0;
  background: radial-gradient(circle at center bottom,
      #DEC1E0 0%,
      #FFF5F5 80%);



}

.query-container {
  max-width: 1200px;
  margin: 0 auto;
}

.form-box {
  padding: 30px;
  border-radius: 12px;
}

.info-list .info-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;

}

.info-list .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-icon img {
  display: block;
}

.info-title {
  font-size: 1.1rem;
}

.info-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
}

/* Fix for icon + text alignment in links */
.info-link-wrap {
  display: flex;
  align-items: flex-start;
  /* icon top aligned with text */
  gap: 12px;
  /* spacing between icon and text */
  line-height: 1.5;
}

.info-link-wrap i {
  color: #9585FF;
  flex-shrink: 0;
  /* icon stays fixed */
  margin-top: 3px;
}

.info-link {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
  word-break: break-word;
  /* ensures text breaks neatly */
}

.info-link:hover {
  color: #0D0C10;
}


.form-label-custom {
  font-weight: 500;
  margin-bottom: 5px;
}

.form-input,
.form-select-custom {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.form-input:focus,
.form-select-custom:focus {
  border-color: #0D0C10;
  outline: none;
}

.captcha-box {
  font-family: monospace;
  font-size: 1rem;
  background: #f0f0f0;
  border-radius: 8px;
  padding: 10px 12px;
  display: inline-block;
  min-width: 120px;
  text-align: center;
  letter-spacing: 3px;
  user-select: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.captcha-box:hover {
  background: #e0e0e0;
  transform: scale(1.05);
}

.captcha-refresh-btn {
  background: NONE;
  color: #fff;
  border: 1px solid #fff !important;
  border-radius: 6px;
  padding: 10px 0;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.captcha-refresh-btn:hover {
  background: #222;
  transform: scale(1.1);
}

.form-submit-btn {
  position: relative;
  overflow: hidden;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #0D0C10;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.form-submit-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
}

.form-submit-btn .btn-loading,
.form-submit-btn .btn-success {
  display: none;
}

.form-submit-btn.loading .btn-text {
  display: none;
}

.form-submit-btn.loading .btn-loading {
  display: inline-flex;
  gap: 8px;
}

.form-submit-btn.success .btn-text,
.form-submit-btn.success .btn-loading {
  display: none;
}

.form-submit-btn.success .btn-success {
  display: inline-flex;
  gap: 8px;
}

.form-feedback {
  display: none;
  font-size: 0.8rem;
  color: red;
  margin-top: 3px;
}

@media (max-width:767px) {
  .query-section {
    padding: 40px 15px;
  }

  .captcha-box {
    min-width: 100px;
    margin-bottom: 5px;
  }

  .captcha-refresh-btn {
    margin-top: 5px;
  }
}

/* ===============================
   SECTION BACKGROUND
================================ */

.typesetting-services-section {
  padding: 40px 0;
}

.typesetting-header {
  text-align: start;
  margin-block: 1.5rem;

}



.typesetting-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.typesetting-card {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  transition: 0.3s ease;
  box-shadow: 0px 0px 8px 0px #EAEAEA;

  height: 100%;
  /* ðŸ”¥ IMPORTANT */
  display: flex;
  /* ðŸ”¥ IMPORTANT */
  flex-direction: column;
  /* ðŸ”¥ IMPORTANT */
}

.typesetting-card:hover {
  background-color: var(--background-color);
  transform: translateY(-5px);
}

.card-icon-box {
  width: 70px;
  height: 70px;

  border-radius: 8px;
  padding: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;

}

.card-icon-box img {
  width: 70px;
  height: 70px;
}


.typesetting-card h3 {
  font-size: 20px;
  color: var(--text-color);
  font-weight: 600;
  margin-block: 10px;
}

.typesetting-header p {
  text-align: justify;
}

.typesetting-card p {
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
}


@media (max-width: 1200px) {
  .typesetting-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .typesetting-services-section {
    padding: 30px 0;
  }

  .typesetting-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .typesetting-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   CATEGORY TYPESET SECTION
================================ */
.category-typeset-section {
  padding: 40px 0;
}

.category-typeset-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}

.category-title {
  font-weight: 600;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .category-title {
    max-width: 380px;
  }
}

@media (max-width: 1199px) {
  .category-title {
    max-width: 100%;
  }
}

.category-typeset-description {
  max-width: 620px;
}

.category-typeset-description p {
  font-size: 16px;
  text-align: justify;
  line-height: 1.7;
}

.category-typeset-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.category-pill {
  display: inline-block;
  background: linear-gradient(to bottom, #F5F5F5, #FFEEEE);
  color: var(--text-color);
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 30px;
  transition: all 0.3s ease;

}

.category-pill a {
  display: block;
  text-decoration: none;
  color: #000;
  border-bottom: 1px dotted transparent;
  /* reserve space */
  transition: 0.3s ease;
  cursor: pointer;
}

.category-pill:hover a {
  color: #fff;
  border-bottom-color: #fff;
  /* only change color */
}


/* Hover pill */
.category-pill:hover {
  background: #E51743;
  color: #fff;
}



@media (max-width: 992px) {

  .category-typeset-section {
    padding: 30px 0;
  }

  .category-typeset-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 0px;
  }

  .category-typeset-description {
    max-width: 100%;
  }

}

@media (max-width: 576px) {
  .category-pill {
    font-size: 13px;
    padding: 8px 14px;
  }

}















/* ===============================
   BENEFITS SECTION
================================ */
.inner-benefits-sec {
  background: var(--secondary-background-gradient);
  padding: 40px 0px;
}

.inner-benefits-row {
  margin-bottom: 20px;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}


.inner-benefits-heading h2 span {
  color: #E51743;
}

.inner-benefits-stats {
  display: flex;
  gap: 20px;
}

.stat-box {
  background: #FFFFFF;
  padding: 15px 22px;
  border-radius: 8px;
  text-align: start;
  min-width: 160px;

  /* Bottom â†’ Top Animation */
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* When visible */
.stat-box.show {
  opacity: 1;
  transform: translateY(0);
}




.stat-box small {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.stat-box strong {
  font-size: 18px;
  color: #E51743;
  font-weight: 600;
}

.text-row p {
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

.benefits-row {
  display: flex;
  gap: 60px;
}

.benefits-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefit-item {
  display: flex;
  gap: 15px;
}

.benefit-icon {

  color: #E51743;

  border-radius: 50%;
  display: flex;
  margin-top: 4px;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.benefit-item p {
  font-size: clamp(14px, 0.9vw + 0.2rem, 15px);
  line-height: 1.6;
  text-align: justify;

}

@media (max-width: 992px) {
  .top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .inner-benefits-stats {
    flex-wrap: wrap;
  }

  .benefits-column {
    gap: 10px;
  }

  .benefits-row {
    flex-direction: column;
    gap: 10px;
  }

}

@media (max-width: 786px) {

  .inner-benefits-stats {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .stat-box {
    width: 100%;
    min-width: unset;
    padding: 14px 16px;
  }

  .stat-box small {
    font-size: 20px;
    font-weight: 600;
  }

  .stat-box strong {
    font-size: 20px;
  }
}


















/* ===============================
   CASE STUDIES SECTION
================================ */


.casestudies-service-page {
  padding: 40px 0px;
  padding-bottom: 40px;
}

.casestudies-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.casestudies-intro {
  flex: 1;
  max-width: 200px;
}

.casestudies-intro p {
  font-size: 14px;
  margin-bottom: 8px;
  /* 20px â†’ 8px reduce panniten */
}

.casestudies-btn {
  position: relative;
  display: inline-block;
  padding: 6px 52px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  background: #E51743;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.casestudies-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #000;
  transition: 0.4s ease;
  z-index: -1;
}

.casestudies-btn:hover::before {
  left: 0;
}

.casestudies-cards {
  flex: 2;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  /* ADD THIS */
}

.casestudy-card {
  background: #F8F8F8;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  display: flex;
  /* ADD THIS */
  flex-direction: column;
  /* ADD THIS */
  justify-content: space-between;
  /* ADD THIS */
  transition: 0.3s ease;
}

.casestudy-card h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-color);
}

.casestudy-link {
  position: relative;
  font-size: 12px;
  color: #E51743;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;

  display: inline-block;
  /* IMPORTANT FIX */
  width: fit-content;
  /* IMPORTANT FIX */
}

.casestudy-card p {
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;

}

.casestudy-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #E51743;
  transition: width 0.3s ease;
}

.casestudy-link:hover::after {
  width: 100%;
}

.mobile-view-btn {
  display: none;
  margin-top: 25px;
}

@media (max-width: 992px) {

  .casestudies-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  /* Full width intro */
  .casestudies-intro {
    max-width: 100%;
  }

  .casestudies-intro p {
    font-size: 16px;
  }

  /* Hide top button only */
  .casestudies-intro .casestudies-btn {
    display: none;
  }

  /* Stack cards */
  .casestudies-cards {
    flex-direction: column;
    gap: 20px;
  }

  .casestudy-card {
    width: 100%;
  }

  /* Show bottom button */
  .mobile-view-btn {
    display: block;
    margin: 20px auto;
    text-align: center;

  }

}





/* SECTION */
.pg-section {
  padding: 40px 0;
}

/* CARD */
.pg-card {
  text-align: left;
}

.view-samples-btn {
  position: relative;
  display: inline-block;
  padding: 08px 18px;
  color: #fff;
  background-color: #E51743;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
}

/* Background layer */
.view-samples-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #000;
  transition: width 0.4s ease;
  z-index: -1;
}

/* Hover effect */
.view-samples-btn:hover::before {
  width: 100%;
}

.view-samples-btn:hover {
  color: #ffffff;
}

/* IMAGE WRAP */
.pg-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

/* IMAGE */
.pg-img-wrap img {
  width: 100%;
  /* height: 300px; */
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: pointer;
}

/* HOVER IMAGE */
.pg-card:hover img {
  transform: scale(1.08) translateY(-6px);
}

/* ==================================
   OVERLAY (ONLY WHEN CLASS EXISTS)
================================== */

/* Dark overlay ONLY if .has-hover-text exists */
.pg-img-wrap.has-hover-text::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Text */
.pg-hover-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.4s ease, transform 0.4s ease;
  text-align: center;
  pointer-events: none;
}

/* Show overlay only when class exists */
.pg-card:hover .pg-img-wrap.has-hover-text::after {
  opacity: 0.8;
}

html {
  overflow-y: scroll;
}

body.modal-open {
  padding-right: 0 !important;
  overflow: hidden;
}

/* Show text only when class exists */
.pg-card:hover .pg-img-wrap.has-hover-text .pg-hover-text {
  opacity: 0.8;
  transform: translate(-50%, -50%) scale(1.05);
}

/* ===============================
   MODAL
================================ */
.pg-modal-dialog {
  max-width: 95vw;
  height: 100vh;
  margin: 0px auto;

}

.pg-modal-content {
  background: transparent;
  border: 0;
  overflow: hidden;
  /* prevents scroll inside modal */
  position: relative;
  /* keeps arrows positioned correctly */
}

/* ===============================
   CLOSE BUTTON
================================ */
.pg-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #fff;
  /* white circle */
  border-radius: 50%;
  padding: 10px;
  opacity: 1;
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* 1. Lock the lightbox height */
#carouselLightbox {
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 2. Force all slides to use same height */
#carouselLightbox .carousel-inner,
#carouselLightbox .carousel-item {
  height: auto;
  width: 100%;
}

/* 3. Make images fit inside instead of resizing the modal */
.pg-carousel-img {
  width: 100%;
  height: 80vh;
  object-fit: contain;
  display: block;
  margin: auto;
  border-radius: 12px;
}

/* ===============================
   MODAL BODY FIX
================================ */
.pg-modal-dialog .modal-body {
  padding: 0;
  max-height: 90vh;
  /* fit viewport */
  overflow: hidden;
  /* remove scroll */
  position: relative;
  /* allows absolute arrows */
}


/* ===============================
   CAROUSEL ARROWS
================================ */
.pg-carousel-prev,
.pg-carousel-next {
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1050;
}

.pg-carousel-prev {
  left: 70px;
}

.pg-carousel-next {
  right: 70px;
}

.pg-carousel-prev-icon,
.pg-carousel-next-icon {
  width: 20px;
  height: 20px;
}

/* Mobile Layout Order Fix */
/* Mobile Layout Order Fix */
@media (max-width: 768px) {

  /* Stack header items vertically */
  .samples-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }


  /* Heading first */
  .samples-header h2 {
    order: 1;
    width: 100%;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  /* Images second */
  .pg-section .row {
    order: 2;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  /* Button last */
  .samples-header .btn {
    order: 3;
    width: 100%;
    margin-top: 15px;
    text-align: center;
  }
}





.testimonials-section {
  padding: 60px 0;
  background-color: var(--background-color);
}



.testimonials-section h2 span {
  color: #E51743;
}

/* ---------------- Marquee ---------------- */

.marquee-container {
  overflow: hidden;
  max-width: 1200px;
  margin: 30px auto;
}

.marquee-track {
  display: flex;
  gap: 50px;
  animation: scroll 25s linear infinite;
}

.marquee-track img {
  height: 50px;
  width: auto;
  object-fit: contain;
  opacity: .8;
  display: block;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}



/* ---------------- Testimonial Cards ---------------- */

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
}

.testimonial-card .stars {
  color: #f5a623;
  font-size: 20px;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: justify;
}

/* Expanded state */
.testimonial-card p.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

/* Remove dots when expanded */
.testimonial-card p.expanded::after {
  display: none;
}

/* subtle hint on hover */
.testimonial-card p:hover {
  opacity: 0.9;
}

.client-info {
  display: flex;
  flex-direction: column;
  /* automatic next line */
  line-height: 1.6;
}

.client-info strong {
  font-size: 14px;
  font-weight: 600;
}

.client-info span {
  font-size: 12px;
  color: #484848;
}


/* Responsive Fix */
@media(max-width:768px) {
  .testimonials-section h2 {
    font-size: 28px;
  }
}









.industry-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-feature-list li {
  position: relative;
  padding-left: 27px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.5;
}

.industry-feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: #E51743;
  color: #fff;
  font-size: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   SERVICES ZIG ZAG SECTION
================================= */
.services-zig-zag-cards {
  padding: 60px 0;
}

.services-zig-zag-cards .section-header {
  margin-block-end: 30px;
}

.services-zig-zag-cards .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: none;
}

.services-zig-zag-cards .section-title span {
  color: #E51743;
}

.services-zig-zag-cards .section-desc {
  font-size: 16px;
  line-height: 1.6;
}

.zigzag-card {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 76px;
}

.zigzag-card:last-child {
  margin-bottom: 0;
}

.zigzag-card.reverse {
  flex-direction: row-reverse;
}

.zigzag-image {
  flex: 1;
}

.zigzag-image img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  display: block;
  object-fit: cover;
}

.zigzag-content {
  flex: 1;
}

.zigzag-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-wrap: wrap;
}

.zigzag-content h3 span {
  color: #E51743;
}

.zigzag-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
  text-align: justify;
}

.zigzag-content ul.bullets {
  line-height: 1.6;
  margin-bottom: 0;
  padding-inline-start: 10px;
  margin-top: 10px;
  list-style: none;
}

.zigzag-content ul.bullets li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 19px;
  line-height: 22px;
  text-wrap: wrap;
}

.zigzag-content ul.bullets li:before {
  content: "\f04d";
  font-family: "FontAwesome";
  font-size: 9px;
  color: #E51743;
  position: absolute;
  left: 0;
  font-weight: 600;
  line-height: 20px;
  top: 2px;
}

.zigzag-btn {
  position: relative;
  display: inline-block;
  padding: 08px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: #E51743;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
  margin-top: 10px;
}

.zigzag-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #000;
  transition: left 0.4s ease;
  z-index: -1;
}

.zigzag-btn:hover::before {
  left: 0;
}

.zigzag-btn:hover {
  color: #fff;
}

@media (max-width: 1200px) {
  .zigzag-card {
    gap: 40px;
  }

  .zigzag-content h3 {
    font-size: 24px;
  }

  .zigzag-content p {
    font-size: 15px;
  }

  .zigzag-content ul.bullets {
    font-size: 15px;
  }
}

@media (max-width: 992px) {

  .zigzag-card,
  .zigzag-card.reverse {
    flex-direction: column;
    gap: 25px;
    align-items: normal;
  }

  .zigzag-image img {
    width: 100%;
    height: auto;
  }

  .zigzag-btn {
    padding: 8px 10px;
    font-size: 15px;
  }
}



















/* ===== SECTION ===== */
.rev-testimonials {
  background: linear-gradient(to bottom, #F5F5F5, #FFEEEE);
  padding: 60px 0 120px;
  position: relative;
  overflow: hidden;
}

/* ===== HEADING ===== */
.rev-test-heading {
  margin-bottom: 20px;
}

.rev-test-heading span {
  color: #e11d2e;
}

/* ===== SLIDER CARDS ===== */
.rev-test-slider .slick-slide {
  display: flex !important;
  padding: 15px;
}

.rev-test-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  width: 100%;
  box-sizing: border-box;
}

.rev-test-stars {
  color: #f59e0b;
  font-size: clamp(12px, 2vw, 14px);
  /* responsive stars */
  margin-bottom: 12px;
}



.rev-test-card p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: #000;
  cursor: pointer;
  text-align: justify;

  /* clamp to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

  /* smooth transition */
  transition: all 0.3s ease;
}

.rev-test-card p.expanded {
  display: block;
  /* remove -webkit-box to show full text */
  overflow: visible;
}

.rev-test-card h5 {
  margin-bottom: 2px;

  font-size: clamp(12px, 1.5vw, 14px);
  /* responsive subheading */
}

.rev-test-card small {
  color: #413d3d;
  font-size: clamp(10px, 1.2vw, 12px);
  /* responsive small text */
}

/* Remove slick defaults */
.slick-dots,
.slick-prev,
.slick-next {
  display: none !important;
}

/* ===== BOTTOM NAV ===== */
.rev-test-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  display: flex;
  gap: 20px;
}

.rev-test-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #A4A4A4;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.rev-test-nav i {
  color: #A4A4A4;
  font-size: clamp(14px, 2vw, 16px);
  /* responsive nav icon */
  transition: 0.3s;
}

.rev-test-nav button:hover {
  border-color: #e11d2e;
}

.rev-test-nav button:hover i {
  color: #e11d2e;
}


/* ======================= */
/* FAQ Section & Background */
/* ======================= */
.cta-section {

  background-size: cover;
  padding: 60px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffff;
}

/* =============================== */
/* Project Full Image Card */
/* =============================== */



.cta-section .row {
  align-items: stretch;
}

.project-content,
.contact-box {
  width: 100%;
  height: 100%;
}


/* Both columns flex */
.cta-section .col-lg-7,
.cta-section .col-lg-5 {
  display: flex;
}

/* Make inner boxes stretch full height */
.project-content,
.contact-box {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-section .contact-box h2 {
  font-size: 27px !important;
}

.contact-box {
  height: 100%;
}

.project-content {
  background-color: var(--background-color);
  padding: 60px 40px 0;
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Perfect full stretch image */
.project-image {
  width: calc(100% + 80px);
  /* 40px + 40px padding compensate */
  margin-left: -40px;
  margin-top: auto;
  display: block;
  height: auto;
}





.project-content h2 span {
  color: #E51743;
}

.project-content p {
  color: #000;
  margin: 20px 0;
  font-size: clamp(14px, 1.2vw, 16px);
}

.feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-list li {
  font-weight: 500;
  color: #000;
}

.feature-list i {
  color: #E51743;
  margin-right: 8px;
}


/* ======================= */
/* Contact Box Styling */
/* ======================= */
.contact-box {
  background: var(--secondary-background-gradient);
  border-radius: 12px;
  padding: 30px;

}

.contact-box h2 {
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--text-color);
  font-size: clamp(20px, 1.8vw + 0.5rem, 26px);
}

/* Form Styling */
.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  font-family: "Inter", sans-serif !important;
}

::placeholder {
  color: #878493 !important;
  opacity: 1;
}

/* =========================== */
/* Placeholder styling for inputs & textarea */
/* =========================== */
.contact-box input::placeholder,
.contact-box textarea::placeholder {
  font-size: 14px;
  color: #878493;
  opacity: 1;
}

/* =========================== */
/* Form controls: input, textarea, select */
/* =========================== */
.contact-box input.form-control,
.contact-box textarea.form-control,
.contact-box select.form-select {
  height: 38px;
  /* same height for all */
  padding: 0 12px;
  /* inner spacing */
  font-size: 14px;
  font-family: "Inter", sans-serif !important;
  color: #222222;
  background-color: #FFFFFF !important;
  border: 1px solid #CCCCCC !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  line-height: 1.5;
  appearance: none;
  /* remove default select arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* =========================== */
/* Select placeholder styling (first disabled option) */
/* =========================== */
.contact-box select.form-select option:first-child {
  font-size: 14px;
  color: #878493;
}

/* =========================== */
/* All other select options */
/* =========================== */
.contact-box select.form-select option {
  color: #222222;
  font-size: 14px;
}

/* =========================== */
/* Optional: make textarea taller than inputs */
/* =========================== */
.contact-box textarea.form-control {
  height: auto;
  min-height: 88px;
  /* double the input height for multiline */
  padding-top: 8px;
  padding-bottom: 8px;
}

.contact-box input.form-control,
.contact-box textarea.form-control,
.contact-box select.form-select {
  /* height: 38px;  âŒ remove this */
  padding: 10px 12px;
}



.form-control:focus {
  border: 1px solid #999999 !important;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.input-group .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.bt-dark1 {
  background-color: #0D0C10 !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 10px 16px;
  font-weight: 600;
  transition: 0.3s;
  color: white;
}

.bt-dark1:hover {
  background-color: #222 !important;
  color: white;
}

.form-check-input:checked {
  background-color: #28a745 !important;
  border-color: #28a745 !important;
}

#captchaPreview {
  display: inline-flex;
  gap: 4px;

  font-weight: bold;
  user-select: none;
}

section.section-contact {
  background: linear-gradient(135deg, #10001D, #110A16);
  padding: 40px 0;
}

#captchaPreview span {
  display: inline-block;
  transition: transform 0.2s;
}

#captchaPreview span:hover {
  transform: scale(1.2) rotate(5deg);
}

#refreshCaptcha {
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid #dee2e6;
  /* border color */
  color: var(--text-color);
  /* icon/text color */
  background-color: #fff;
  /* optional: button background */
  transition: all 0.3s ease;
  /* smooth hover effect */
}

#refreshCaptcha:hover {
  background-color: #007bff;
  /* background on hover */
  color: #fff;
  /* text/icon color on hover */
  border-color: #0056b3;
  /* darker border on hover */
}

/* ======================= */
/* FAQ Cards (Optional)    */
/* ======================= */

.form-label {
  margin-bottom: 0rem;
}

/* ======================= */
/* Tab Heading             */
/* ======================= */
.tab-heading {
  margin-bottom: 10px;
  text-align: left;
  width: 100%;
  margin-left: 15px;
  font-family: "Bricolage Grotesque" !important;
}

/* Accordion width */
.tab-pane .accordion {
  width: 100%;
}

.custom-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-weight: 300;
  transition: 0.3s ease;
  padding: 20px 28px;
  /* ðŸ”¹ Padding set panniduchu */
  background-color: #0D0C10;
  border: none;
  color: white;
}

.contact-box .form-label {
  color: #000;
}

.custom-btn span {
  position: absolute;
  line-height: 0;
}

.custom-btn span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%);
}

.custom-btn span:nth-of-type(2) {
  top: 100%;
  transform: translateY(0%);
  font-size: 20px;
}

.custom-btn span:nth-of-type(3) {
  display: none;
}

.custom-btn.active {
  background-color: #2ecc71 !important;
  transition: background-color 0.3s ease;

}

.custom-btn.active span:nth-of-type(1) {
  top: -100%;
  transform: translateY(-50%);
}

.custom-btn.active span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.custom-btn.active span:nth-of-type(2) i {
  animation: loading 0.5s linear infinite;
}

.custom-btn.finished {
  background-color: #27ae60 !important;
}

.custom-btn.finished .submit {
  display: none;
}

.custom-btn.finished .loading {
  display: none;
}

.custom-btn.finished .check {
  display: block !important;
  font-size: 22px;
  animation: scale 0.5s linear;
}

@keyframes loading {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes scale {
  0% {
    transform: scale(10);
  }

  50% {
    transform: scale(0.2);
  }

  70% {
    transform: scale(1.2);
  }

  90% {
    transform: scale(0.7);
  }

  100% {
    transform: scale(1);
  }
}

/* Desktop */
.captcha-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-wrapper input {
  flex: 1;
}

.captcha-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Mobile */
@media (max-width: 768px) {

  .captcha-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .captcha-wrapper input {
    width: 100%;
    margin-bottom: 10px;
  }

}


/* Desktop Equal Height */
@media (min-width: 992px) {
  .cta-section .row {
    align-items: stretch;
  }

  .project-content,
  .contact-box {
    height: 100%;
  }
}



/* Mobile spacing */
@media (max-width: 991px) {
  .contact-box {
    margin-top: 30px;
  }
}









/* Text Box */
.dtbook-text {
  background: #fff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}


.dtbook-text h2 span {
  color: #e63946;
}

.dtbook-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  /* allow list to take remaining space if needed */
}

.dtbook-text ul li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  margin-bottom: 10px;
}

.dtbook-text p {
  text-align: justify;
}

.dtbook-text ul li::before {
  content: "âœ¦";
  color: #e63946;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
}

.dtbook-text ul li p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.dtbook-image {
  display: flex;
  flex-direction: column;
}

.dtbook-image img {
  width: 100%;
  height: auto;
  /* height follows the content naturally */
  max-height: 100%;
  /* prevent overflow if container grows */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}


.dtbook-image img:hover {
  transform: scale(1.03);
}






















.products-section {
  padding: 60px 0;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.product-content a {
  margin-top: auto;
  display: inline-block;
  /* keeps it small */
  width: max-content;
  /* removes full width */
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  background-color: #e60023;
  padding: 8px 18px;
  /* smaller size */
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Sliding background */
.product-content a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #000;
  z-index: -1;
  transition: width 0.35s ease;
}

/* Hover effect */
.product-content a:hover::before {
  width: 100%;
}

.product-content a:hover {
  color: #fff;
  border-color: #000;
  transform: translateY(-2px);
}

/* Click effect */
.product-content a:active {
  transform: translateY(0);
}

/* Click effect */
.product-content a:active {
  transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .product-card {
    margin-bottom: 20px;
  }
}




















/* Section */
.pf-section {
  padding: 60px 0;
}

/* Heading */
.pf-heading span {
  color: #E51743;
}

.pf-heading p {
  max-width: 1000px;
  /* Control paragraph width */
  margin: 0 auto;
  /* Center horizontally */
  color: #000;
  line-height: 1.7;

  text-align: center;
}

/* Card */
.pf-card {
  background: linear-gradient(to bottom, #ffffff, #fff5f7);
  padding: 30px;
  border-radius: 16px;
  height: 100%;
  transition: 0.3s;
}

.pf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 5px #e517442f;
}

/* Icon */
.pf-icon-box {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px #e517442f;
}

.pf-icon-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Title */
.pf-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

.pf-card h5 span {
  color: #E51743;
}

.pf-card a {
  text-decoration: none;
  border-bottom: 1px dotted #000;
  color: #000;
}

.pf-card a:hover {

  border-bottom: 1px dotted #E51743;
  color: #E51743;
}

/* Text */
.pf-card p {
  font-size: clamp(13px, 0.9vw + 0.2rem, 14px);
  color: #000;
  line-height: 1.6;
  text-align: justify;
}

/* Custom Icon Bullets */
.pf-card ul.bullets {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.pf-card ul.bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
}

.pf-card ul.bullets li::before {
  content: "âœ¦";
  color: #E51743;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

@media (max-width: 768px) {
  .pf-heading p {
    max-width: 100%;
    padding: 0 15px;
  }
}











/* Section spacing */
.dtbook-section {
  padding: 60px 0;
}

/* Text Box */
.dtbook-text {
  background: #fff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}



.dtbook-text h2 span {
  color: #e63946;
}

.dtbook-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.dtbook-text ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.dtbook-text ul li::before {
  content: "âœ¦";
  color: #e63946;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

.dtbook-text ul li p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.dtbook-text ul li a {
  text-decoration: none;
  color: #000;
  border-bottom: 1px dotted #000;
}

.dtbook-text ul li a:hover {

  color: #E51743;
  border-bottom: 1px dotted #E51743;
}


.dtbook-image {
  height: 100%;
}

.dtbook-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* crop but no distortion */
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.dtbook-image img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 992px) {

  .dtbook-text {
    padding: 25px 20px;
  }

  .dtbook-text h2 {
    font-size: 24px;
  }

  .dtbook-image img {
    height: auto;
    max-height: 420px;
  }

}



.map-process-sec {
  background: #F8F8F8;
  padding: 60px 0;
}

/* HEADER */
.map-process-header {
  text-align: center;
  margin-bottom: 30px;
}

.map-process-header h2 {
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.map-process-header p {
  font-size: 16px;
  max-width: 943px;
  margin: 0 auto;
  line-height: 1.6;
}

.map-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}

.map-process-item {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 25px 25px 25px 50px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.map-process-number {
  position: absolute;
  left: -17px;
  top: 50%;
  transform: translateY(-50%);
  width: 37px;
  height: 37px;
  background: #E51743;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.map-process-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
}

.map-process-content p {
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
}

@media (max-width: 992px) {

  .map-process-sec {
    padding: 50px 15px 50px 30px;
    /* left padding increase */
  }

  .map-process-grid {
    grid-template-columns: 1fr;
  }

}



.view-more-btn {
  position: relative;
  padding: 10px 30px;
  border-radius: 6px;
  font-weight: 600;
  background-color: #E51743;
  color: #fff;
  border: none;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  text-decoration: none;
}

/* Sliding background layer */
.view-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #000;
  /* hover fill color */
  transition: width 0.4s ease;
  z-index: -1;
}

/* On hover fill from left */
.view-more-btn:hover::before {
  width: 100%;
}

/* Keep text white */
.view-more-btn:hover {
  color: #fff;
}



.industries-service-cards {
  padding: 50px 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.industry-card {
  background: #F8F8F8;
  padding: 30px 25px;
  border-radius: 16px;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.industry-card:hover {
  transform: translateY(-6px);
}

/* ICON */
.industry-icon {
  width: 90px;
  height: 90px;
  background: #FFFFFF;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lottie-animation {
  width: 60px;
  height: 60px;
}

/* TEXT */
.industry-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

/* RESPONSIVE */

/* Large screens */
@media (max-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 992px) {
  .industries-header h2 {
    font-size: 26px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    padding: 25px 20px;
  }
}




/* Section */
.price-section {
  background: #f5f5f5;
  padding: 70px 0;
}

/* Table Wrapper */
.price-wrapper {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Table Cells */
.price-table th,
.price-table td {
  text-align: center;
  vertical-align: middle;
  padding: 22px 15px;
  border: 1px solid #e9e9e9;
  font-size: 14px;
}

/* First Column */
.price-table th:first-child,
.price-table td:first-child {
  text-align: left;
  background: #fafafa;
  font-weight: 500;
  width: 25%;
}

/* Plan Price */
.price-heading {
  font-size: 28px;
  font-weight: 700;
}

.price-heading span {
  font-size: 14px;
  color: #777;
  font-weight: 400;
}

/* Button */
.price-btn {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 10px 25px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  background: #1e1e2f;
  color: #fff;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Sliding Layer */
.price-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #E51743;
  border-radius: 50px;
  z-index: -1;
  transition: width 0.4s ease;
}

/* Hover */
.price-btn:hover::before {
  width: 100%;
  border-radius: 6px;
}

/* Active */
.price-btn.active {
  background: #E51743;
}

.price-btn.active::before {
  background: #000;
}

.price-btn.active:hover::before {
  width: 100%;

  border-radius: 6px;
}

/* Value Highlight */
.value-text {
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.value-sub {
  font-size: 12px;
  color: #000000e0;
}

/* Tick */
.icon-check {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/tick.svg");
}

/* âœ… Responsive Improvements */
@media (max-width: 991px) {
  .price-heading {
    font-size: 20px;
  }

  .price-btn {
    padding: 8px 18px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {

  .price-table th,
  .price-table td {
    font-size: 12px;
    padding: 15px 8px;
  }

  .price-btn {
    width: 100%;
    padding: 10px;
    font-size: 12px;
    margin-top: 10px;
  }

  .price-heading {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .price-btn {
    font-size: 11px;
    padding: 8px;
  }

  .price-heading {
    font-size: 16px;
  }
}

.cta-inner-section {
  padding: 30px 0 30px;
}

.cta-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.cta-bg-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.cta-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: #ffffff;
}

.cta-content h2 {
  font-weight: 600;
  font-size: clamp(24px, 2.5vw, 35px);

}

.cta-content p {
  max-width: 700px;
  margin-bottom: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  text-align: center;
}

.cta-content p a {
  color: #ffffff;
  border-bottom: 1px dotted #ffffff;
}

.cta-content p a:hover {
  color: #000;
  border-bottom: 1px dotted #000;
}

.cta-btn {
  position: relative;
  display: inline-block;
  background: #ffffff;
  color: #E51743;
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #000000;
  border-radius: 30px;
  transition: width 0.4s ease;
  z-index: -1;
}

.cta-btn:hover::before {
  width: 100%;
}

.cta-btn:hover {
  color: #ffffff;
}


@media (max-width: 992px) {

  .cta-inner-section {
    padding: 20px 0 30px;
  }

  .cta-bg-img {
    display: none;
  }

  .cta-content {
    position: relative;
    padding: 50px 25px;
  }

  .cta-wrapper {
    background: #E51743;
    min-height: auto;
    border-radius: 12px;
  }

  .cta-btn {
    background: #ffffff;
    color: #E51743;
  }

  .cta-btn:hover {
    background: #000000;
    color: #ffffff;
  }

  .cta-content p {
    font-size: 16px;
  }

}


.client-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}

.client-container p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.client-ebook-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  /* stretch children to same height */
}

.client-ebook-image {
  flex: 1 1 500px;
  display: flex;
  /* make img take full height */
}

.client-ebook-image img {
  width: 100%;
  height: 100%;
  /* stretch to match parent height */
  object-fit: cover;
  /* maintain aspect ratio, cover entire box */
  border-radius: 12px;
  transition: transform 0.3s ease;
}


.client-ebook-image img:hover {
  transform: scale(1.05);
}

.client-ebook-content {
  flex: 2 1 500px;
}

.client-ebook-box {
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 06px;
}

.client-ebook-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.client-ebook-box p {
  margin-bottom: 10px;
  font-size: 15px;
  text-align: justify;
}

.client-ebook-box a {
  color: #000;
  border-bottom: 1px dotted #000;
  text-decoration: none;
  transition: color 0.3s;
}

.client-ebook-box a:hover {
  color: #E51743;
  border-bottom: 1px dotted #E51743;
}

/* Two-column list for Interactive/Enhanced */
.client-ebook-box ul {
  display: grid;

  gap: 10px 40px;
  /* row gap 10px, column gap 40px */
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.client-ebook-box ul li {
  position: relative;
  padding-left: 22px;
  /* space for icon */
  font-size: 14px;
  margin-bottom: 12px;
}

.client-ebook-box ul li::before {
  content: "âœ¦";
  position: absolute;
  left: 0;
  top: 0px;
  color: #E51743;
  font-size: 16px;
}

@media (max-width: 900px) {
  .client-ebook-box ul {
    grid-template-columns: 1fr;
    /* stack single column on mobile */
  }
}





/* Section */
.faculty-section {
  padding: 40px 0;

}


/* Faculty Card */
.faculty-card {
  background: #ebebeb;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
}

.faculty-photo {
  width: 200px;
  height: 220px;
  object-fit: cover;
  margin-bottom: 15px;
}

.faculty-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.faculty-role {
  font-size: 1rem;
  font-weight: 600;
  color: #083C92;
  margin-bottom: 10px;
}

.faculty-info {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 10px;
}

.faculty-btn {
  font-size: 0.85rem;
}

/* Modal Custom */
.modal-body-custom {
  display: flex;
  gap: 20px;
  align-items: center;
}

.modal-body-custom img {
  width: 220px;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  /* no border radius */
}

.modal-body-custom .modal-content-text {
  flex: 1;
}

.faculty-btn-custom {
  background-color: #E10600;
  /* your custom color */
  color: #fff;
  border: none;
  border-radius: 8px;
  /* slightly rounded */
  padding: 8px 16px;
  font-size: 0.85rem;
  transition: background 0.3s, transform 0.3s;
}

.faculty-btn-custom:hover {
  background-color: #0f4dc1;
  /* hover color */
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media(max-width: 992px) {
  .faculty-card img {
    width: 100px;
    height: 100px;
  }
}

@media(max-width: 576px) {
  .faculty-card img {
    width: 80px;
    height: 80px;
  }
}




.modules-section {
  padding: 80px 0;
  background: #F8F8F8;
}



.module-card {
  background: linear-gradient(to bottom, #F5F5F5, #FFEEEE);
  color: #000;
  border-radius: 16px;
  padding: 30px 25px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}

.module-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.module-card h5 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 25px;
  color: #000;
}

.module-card ul {
  list-style: none;
  padding: 0;
}

.module-card ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #000;
}

/* Font Awesome icon styling */
.module-card ul li i {
  color: #e51743;
  /* Green check */
  margin-right: 12px;
  font-size: 18px;
}

.module-btn {
  display: inline-block;
  /* Make <a> behave like a button */
  background: #E51743;
  /* Button color */
  color: #fff;
  /* Text color */
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 25px;
  text-align: center;
  text-decoration: none;
  /* Remove underline */
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s;
}

.module-btn:hover {
  background: #2563eb;
  /* Hover color */
}


@media(max-width: 992px) {
  .module-card {
    min-height: auto;
  }
}

@media(max-width: 576px) {
  .module-card {
    min-height: auto;
  }
}








/* ====== MODERN COUNTRY CARDS ====== */
.country-card {
  background: #ffffff;
  padding: 25px 15px;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.3s ease;
  border-top: 4px solid #0d3b66;
  height: 100%;
}

.country-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Flag Circle */
.flag-circle {
  width: 70px;
  height: 70px;
  background: #f5f7fa;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Flag Image */
.flag-circle img {
  width: 40px;
  height: auto;
}

.country-card h5 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  color: #222;
}

/* ====== INFRASTRUCTURE ====== */

.infra-area {
  margin-top: 70px;
}

.infra-header {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.infra-header img {
  width: 45px;
  margin-right: 12px;
}



.infra-box {
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
  transition: 0.3s;
}

.infra-box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.infra-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}











/* ====== INFRASTRUCTURE ====== */

.infra-area {
  margin-top: 70px;
}

.infra-header {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.infra-header img {
  width: 45px;
  margin-right: 12px;
}



.infra-box {
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
  transition: 0.3s;
}

.infra-box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.infra-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}











.network-section {
  padding: 5rem 0;
  background-color: #f8f8f8;
}

.network-heading {
  color: #000;
  margin-bottom: 3rem;
  font-weight: 600;
  font-size: clamp(26px, 3vw, 35px);
  text-align: center;
}

.network-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.network-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: #2d74da;
}

.network-image-container {
  width: 160px;
  height: 160px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(45, 116, 218, 0.1), rgba(229, 62, 62, 0.05));
  padding: 25px;
}

.network-image {
  width: 120px;
  height: 100px;
  object-fit: contain;
}

/* clamp font used here */
.network-title {
  color: #1a365d;
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 20px);
  margin-bottom: 10px;
}

.network-badge {
  display: inline-block;
  background: linear-gradient(90deg, #2d74da, #e53e3e);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  margin-top: 15px;
}


@media (max-width:768px) {

  .network-section {
    padding: 40px 15px;
  }

  .network-card {
    margin-bottom: 20px;
  }

  .network-image-container {
    width: 120px;
    height: 120px;
  }

}







.env-section {
  padding: 40px 0;

  position: relative;
}

.env-content {
  background: #ffffff;
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}



.env-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.7;
}

.env-highlight {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.env-highlight i {
  color: #28a745;
  font-size: 24px;
  margin-top: 4px;
}

.env-images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.env-images img {
  width: 48%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.env-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .env-images img {
    width: 100%;
  }

  .promo-content h3 {
    font-size: 24px;
    color: #fff;


    margin: 0 auto 5px;
    font-weight: 600;
  }
}






.proofreading-wrapper {
  padding: 20px 0;
}

.proof-subheading {
  color: #2b7be6;
  font-weight: 600;
}

.proof-description {
  max-width: 40rem;
}

/* âœ… Feature List */
.proof-feature-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .9rem;

}

.proofreading-wrapper p a {
  text-decoration: none;
  border-bottom: 1px dotted #0F1C2E;
  color: #0F1C2E;
}

.proofreading-wrapper p a:hover {
  border-bottom: 1px dotted #E10600;
  color: #E10600;
}

.proof-feature-item a {
  text-decoration: none;
  border-bottom: 1px dotted #E10600;
  color: #E10600;
}

.proof-feature-item i {
  color: #E10600;
  font-size: 1rem;
  margin-top: 4px;
}

.proof-feature-item p {
  margin: 0;
  font-size: 14px;
}

.proof-cta {
  margin-top: 1.5rem;
}

.proof-btn {
  background: #E10600;
  border: 0;
  color: #fff;
  padding: .7rem 1.05rem;
  border-radius: .45rem;
}

.proof-image-block {
  position: relative;
  display: block;
  max-width: 540px;
  margin-left: auto;
}

.proof-image-block img {
  width: 100%;
  height: 480px;
  /* âœ… Set your desired height */
  object-fit: cover;
  /* âœ… Keeps the image nicely cropped without distortion */
  border-radius: 8px;
  display: block;
}


@media (max-width: 991px) {
  .proof-title {
    font-size: 2.15rem;
  }

  .proof-description {
    max-width: 100%;
  }

  .proof-image-block {
    max-width: 420px;
    margin: 2rem auto 0;
  }

  .proof-image-block img {
    display: none;
  }
}










.global-map-section {
  padding: 60px 20px;
  text-align: center;
}



.map-description {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: clamp(14px, 1.2vw, 16px);
  color: #000;
  line-height: 1.7;
}

/* Map Container */
.map-container {
  position: relative;
  max-width: 1340px;
  margin: auto;

}

/* Map Image */
.map-container img {
  width: 100%;
  height: auto;
  /* IMPORTANT for responsive */
  display: block;

}

/* Location Pin */
.map-pin {
  position: absolute;
  width: 26px;
  height: 26px;
  background: url("https://cdn-icons-png.flaticon.com/512/684/684908.png") no-repeat center;
  background-size: contain;
  cursor: pointer;
  transform: translate(-50%, -100%);
}

/* Tooltip */
.map-pin span {
  position: absolute;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 10;
}

/* Tooltip Arrow */
.map-pin span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #111;
}

/* Hover */
.map-pin:hover span {
  opacity: 1;
  visibility: visible;
}

/* ===== RESPONSIVE PIN POSITIONS ===== */
.pin-usa {
  top: 45%;
  left: 12%;
}

.pin-france {
  top: 48%;
  left: 37%;
}

.pin-jordan {
  top: 59%;
  left: 52%;
}

.pin-dubai {
  top: 64%;
  left: 60%;
}

.pin-delhi {
  top: 63%;
  left: 73%;
}

.pin-bangalore {
  top: 70%;
  left: 67%;
}











.client-page {
  padding: 60px 0;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
}

.client-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100px;
  width: 100%;
}

.client-card img {
  max-height: 65px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.client-card:hover img {
  transform: scale(1.20);
  /* zoom level */
}

@media (max-width: 576px) {
  .client-card {
    height: 80px;
    padding: 15px;
  }

  .client-card img {
    max-height: 40px;
    max-width: 110px;
  }
}













/* Portfolio Section */
.portfolio {
  padding: 80px 0;

}

.filter-buttons ul {
  padding: 0;
  list-style: none;
}

.filter-buttons ul li {
  display: inline-block;
  padding: 8px 20px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 5px;
  background: #e0e0e0;
  transition: all 0.3s;
}

.filter-buttons ul li.active,
.filter-buttons ul li:hover {
  background: #E10600;
  color: #fff;
}

.portfolio-gallery {
  gap: 20px;
}

.portfolio-gallery .item {
  position: relative;
  margin: 10px;
  overflow: hidden;
  border-radius: 8px;
  width: 300px;
}

.portfolio-gallery .item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.portfolio-gallery .item:hover img {
  transform: scale(1.1);
}

.port-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(183, 28, 28, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-gallery .item:hover .port-overlay {
  opacity: 1;
}

.port-text p {
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin: 0;
  padding: 10px 15px;
}


.list-inline-item a {
  text-decoration: none;
}

.list-inline-item a {
  text-decoration: none;
}













.section-security {
  padding: 80px 0;
  background: #f9fafc;
}



.section-subtext {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.75;
  margin-bottom: 18px;
  color: #555;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.security-card {
  background: #fff;
  padding: 16px 18px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #E10600;
  transition: 0.3s;
}

.security-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 10px 28px rgba(0, 0, 0, 0.12);
}

.security-card i {
  font-size: 24px;
  color: #E10600;
  flex-shrink: 0;
}

.security-card span {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.3;
}

.security-img-box {
  padding-left: 40px;
}

.security-img-box img {
  width: 100%;
  border-radius: 12px;
  border: 5px solid #fff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 991px) {

  .security-img-box {
    padding-left: 0;
    margin-top: 40px;
  }

}

@media (max-width: 768px) {

  .security-grid {
    grid-template-columns: 1fr;
  }

  .security-card {
    padding: 14px 16px;
  }

}

@media (max-width: 480px) {

  .section-security {
    padding: 50px 20px;
  }

}








.meta-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #666;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ddd;
  margin-bottom: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-item i {
  color: #e63946;
  /* red icon like image */
  font-size: 14px;
}

.meta-divider {
  color: #bbb;
}


.mmt-video-frame {
  position: relative;
  width: 100%;
}

.mmt-video-thumb {
  position: relative;
  cursor: pointer;
}

.mmt-video-image {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}

.mmt-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.mmt-video-play::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 22px;
  width: 0;
  height: 0;
  border-left: 22px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.mmt-video-iframe {
  width: 100%;
  height: 430px;
  border: none;
}

.mmt-video-schema span[itemprop="name"],
.mmt-video-schema span[itemprop="description"] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}








.vp-services-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 0px;
}

.vp-services-section h2 {
  font-weight: 700;
  margin-bottom: 25px;
}

/* tabs + arrows */

.vp-category-buttons-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.vp-category-buttons button {
  padding: 8px 18px;
  border: none;
  border-radius: 50px;
  background: #f0f0f0;
  font-size: 14px;
  cursor: pointer;
  transition: .3s;
}

.vp-category-buttons button.active {
  background: #E51743;
  color: #fff;
}

.vp-category-arrows-wrapper {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

/* carousel breakout */

.vp-carousel-wrapper {
  margin-bottom: 50px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.vp-carousel {
  padding-left: calc((100vw - 1200px)/2);
}

/* slick control */

.vp-carousel .slick-list {
  overflow: hidden;
  padding-right: 150px;
}

.vp-carousel .slick-track {
  display: flex;
}

.vp-carousel .slick-slide {
  padding: 0 15px;
}

/* card style */

.vp-service-card {
  text-align: left;
}

/* image */

.vp-service-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* heading */

.vp-service-card h4 {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
}

.vp-service-card p {
  font-size: 14px;
  color: #0e0d0d;
  line-height: 1.6;
  margin-top: 6px;
  margin-bottom: 0;
}

/* desktop arrows */

.vp-desktop-arrows {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

/* mobile arrows hide */

.vp-mobile-arrows {
  display: none;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

/* arrows style */

.vp-carousel-prev,
.vp-carousel-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #E51743;
  background: transparent;
  color: #E51743;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: .3s;
}

.vp-carousel-prev:hover,
.vp-carousel-next:hover {
  background: #E51743;
  color: #fff;
}

/* mobile responsive */

@media (max-width:768px) {

  .vp-desktop-arrows {
    display: none;
  }

  .vp-service-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
  }

  .vp-mobile-arrows {
    display: flex;
  }

  .vp-category-buttons-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

}

/* tablet view scroll */

@media (max-width:1024px) {

  .vp-category-buttons-wrapper {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
  }

  .vp-category-buttons {
    display: flex;
    gap: 10px;
    min-width: max-content;
  }

  .vp-category-buttons-wrapper::-webkit-scrollbar {
    display: none;
  }

}













.fixed-epub-section {
  background: #f5f5f5;
  padding: 60px 0;
  text-align: center;
}

.epub-card-wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Desktop - 3 cards */
.epub-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;

  flex: 0 0 calc(33.333% - 25px);
  max-width: calc(33.333% - 25px);
}

.epub-sec-para {
  max-width: 1000px;
  margin: 0px auto 20px;
}

.epub-card:hover {
  transform: translateY(-8px);
}

.epub-card h3 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.epub-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  text-align: justify;
}

/* Tablet - 2 cards */
@media (max-width: 992px) {
  .epub-card {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

/* Mobile - 1 card */
@media (max-width: 576px) {
  .epub-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}





/* Section spacing */
.archive-section {
  padding: 60px 0;
}

/* Images */
.archive-main-image,
.archive-side-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Counter Box */
.archive-stat-box {
  background: linear-gradient(to bottom, #F5F5F5, #FFEEEE);
  padding: clamp(10px, 2vw, 20px);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
}

.archive-stat-number {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 700;
  color: #E51743;
  line-height: 1.6;
}

.archive-stat-text {
  font-size: clamp(11px, 1.5vw, 14px);
  font-weight: 600;
  color: #000;
  line-height: 1.2;
}

/* Content */
.archive-content h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
}

.archive-content p {
  font-size: clamp(14px, 1vw + 0.3rem, 16px);
  text-align: justify;
}

.archive-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.archive-feature-list li {
  display: flex;
  gap: 10px;
  font-size: clamp(14px, 1vw + 0.2rem, 16px);
  margin-bottom: 12px;
  line-height: 1.6;
}

.archive-feature-list li::before {
  content: "âœ¦";
  color: #E51743;
  font-weight: bold;
  margin-top: 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .archive-content h2 {
    font-size: 26px;
  }
}





/* SECTION WRAPPER */
.ebook-feature-area {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px;
  gap: 40px;
}

/* IMAGE GROUP */
.ebook-image-group {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* MAIN IMAGE */
.ebook-primary-img {
  width: 350px;
  height: 500px;
  border-radius: 12px;
  object-fit: cover;
}

/* RIGHT COLUMN */
.ebook-side-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* SECOND IMAGE */
.ebook-secondary-img {
  width: 180px;
  height: 390px;
  border-radius: 12px;
  object-fit: cover;
}

/* COUNT BOX */
.ebook-counter-box {
  background: #fff0f3;
  padding: 15px 27px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.ebook-counter-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #E51743;
}

.ebook-counter-text {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #E51743;
  line-height: 1.2;
}

/* TEXT CONTENT */
.ebook-content-area {
  max-width: 600px;
}

.ebook-content-area h2 {
  font-size: 35px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.ebook-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ebook-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.ebook-feature-list li::before {
  content: "âœ¦";
  color: #E51743;
  font-weight: bold;
  margin-top: 3px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .ebook-feature-area {
    flex-direction: column;
    align-items: center;
  }

  .ebook-image-group {
    flex-direction: row;
    justify-content: center;
  }

  .ebook-content-area {
    margin-top: 0;
    text-align: left;
  }

  .ebook-counter-number {
    font-size: 18px;
  }
}

@media (max-width: 768px) {

  .ebook-primary-img {
    width: 220px;
    height: 320px;
  }

  .ebook-secondary-img {
    width: 120px;
    height: 209px;
  }

  .ebook-counter-box {
    padding: 12px 20px;
  }

  .ebook-counter-number {
    font-size: 22px;
  }

  .ebook-content-area h2 {
    font-size: 26px;
  }
}







/* ============================= */
/* SECTION */
.top-services-sec {
  padding: 40px 0;
  background: linear-gradient(to bottom, #F5F5F5, #FFEEEE);
}

/* ============================= */
/* HEADER */
.top-services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.top-services-header h2 span {
  color: #E51743;
}

.top-services-header p {
  max-width: 850px;
  width: 100%;
  text-align: justify;
}

/* ============================= */
/* ARROWS */
.slider-arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #E51743;
  color: #E51743;
  background: transparent;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.slider-arrows button:hover {
  background: #E51743;
  color: #fff;
}

/* ============================= */
/* SLIDER FIX */
.top-services-slider .slick-track {
  display: flex !important;
}

.top-services-slider .slick-slide {
  display: flex !important;
  padding: 0 10px;
  box-sizing: border-box;
  height: auto;
}

.top-services-slider .slick-list {
  margin: 0 -10px;
}

/* ============================= */
/* CARD STRUCTURE */
.service-card {
  display: flex !important;
  flex-direction: column;
  background: #f8f8f8;
  border-radius: 16px;
  overflow: hidden;
  flex: 1 1 0;
  /* ensures all cards equal height */
  transition: 0.3s ease;
}

.service-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  flex-shrink: 0;
}

/* ============================= */
/* CARD CONTENT */
.ser-card-content,
.service-content {
  background-color: #f8f8f8;
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  /* ensures content stretches */
  border-radius: 0 0 10px 10px;
}

.service-card h3,
.service-content h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.service-card p,
.service-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  /* makes all cards equal height */
  text-align: justify;
}

/* ============================= */
/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-5px);
}

/* ============================= */
/* VIEW BUTTON */
.top-services-btn {
  text-align: right;
}

/* ============================= */
/* CARD END VIEW ALL BUTTON */
.cards-end-btn {
  width: 100%;
  text-align: right;
  /* Right side show */
  margin-top: 25px;
}

/* Button Style with Fill Animation */
.view-all-main-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: transparent;
  color: #fff;
  text-align: end;
  padding: 10px 28px;
  border-radius: 30px;
  text-decoration: none;

  font-size: 14px;
  font-weight: 500;

  background-color: #E51743;
  overflow: hidden;

  transition: 0.3s ease;
  z-index: 1;
}

/* Animated Background */
.view-all-main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 0%;
  height: 100%;

  background: #E51743;

  border-radius: 30px;
  z-index: -1;

  transition: 0.4s ease;
}

/* Hover Effect */
.view-all-main-btn:hover::before {
  width: 100%;
}

.view-all-main-btn:hover {
  color: #fff;
  border-color: #E51743;
}

/* Icon */
.view-all-main-btn i {
  font-size: 12px;
  transition: 0.3s ease;
}

/* Icon Move */
.view-all-main-btn:hover i {
  transform: translateX(4px);
}

/* ============================= */
/* VIDEO SAME SIZE AS IMAGE */
.service-video-wrapper {
  width: 100%;
  height: 360px;
  /* Same as image height */
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.service-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width:576px) {
  .service-video-wrapper {
    height: 250px;
  }
}

/* Mobile Center */
@media (max-width:768px) {
  .cards-end-btn {
    text-align: center;
  }
}

@media (max-width:576px) {

  .top-services-sec .container {
    display: flex;
    flex-direction: column;
  }

  /* Header */
  .top-services-header {
    order: 1;
    text-align: center !important;
    flex-direction: column;
  }

  /* Slider */
  .top-services-slider {
    order: 2;
    margin: 15px 0;
  }

  /* Button after slider */
  .cards-end-btn {
    order: 3;
    text-align: center;
    margin-top: 15px;
  }

  /* Arrows last */
  .slider-arrows {
    order: 4;
    justify-content: center;
    margin-top: 15px;
    width: 100%;
  }

}












/* Section Background */
.software-section {

  padding: 10px 0;
}

/* Glass Card */
.software-card {
  border-radius: 16px;
  padding: 15px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 80px;
  transition: all 0.3s ease;

  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow:
    inset 0 2px 6px rgba(160, 157, 157, 0.15),
    inset 0 -2px 6px rgb(255, 255, 255);
}

/* Hover */
.software-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.7);
}

/* Icon */
.software-card img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

/* Text (span used instead of h6) */
.software-card span {
  display: block;
  font-weight: 600;
  font-size: 15px;
}

/* Tablet */
@media (max-width: 991px) {
  .software-title {
    font-size: 26px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .software-title {
    font-size: 22px;
  }

  .software-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    min-height: 130px;
  }

  .software-card img {
    width: 40px;
    height: 40px;
  }
}















.custom-accordion-services {
  padding: 40px 0px;
}

/* SECTION */
.custom-section {
  max-width: 1300px;
  margin: 40px auto;
  display: flex;
  gap: 30px;
  background: #F8F8F8;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  align-items: stretch;
}

.panel-image {
  display: none;
}

/* IMAGE */
.custom-image-box {
  width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.custom-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}

/* CONTENT */
.custom-content {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.custom-content h2 {
  font-size: 35px;
  margin-bottom: 20px;
}

.custom-content h2 span {
  color: red;
}

/* ACCORDION */
.custom-panel {
  border-bottom: 1px solid #ddd;
}

.custom-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px 0;
}

.custom-panel-header h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.custom-panel-icon {
  font-size: 22px;
  font-weight: bold;
}

.custom-panel-body {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

.custom-panel-body p {
  margin: 10px 0 20px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .custom-section {
    flex-direction: column;
  }

  /* Reorder sections for mobile */
  .custom-heading-wrapper {
    order: 1;
    /* Heading first */
    width: 100%;
  }

  .custom-image-box {
    order: 2;
    /* Image second */
    width: 100%;
    margin: 20px 0;
  }

  .custom-content {
    order: 3;
    /* Accordion last */
    width: 100%;
  }

  /* Optional: adjust heading size for mobile */
  .custom-heading-wrapper h2 {
    font-size: 28px;
  }
}






/* Section Styling */
.bio-illustration-section {
  background: linear-gradient(to bottom, #F5F5F5, #FFEEEE);
  padding: 60px 0;
}


.bio-description {
  font-size: 16px;
  color: #000;
}

/* Card Styling */
.bio-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}



/* Image Styling */
.bio-img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.bio-card:hover .bio-img {
  transform: scale(1.05);
}

/* Card Content */
.bio-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.bio-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.bio-content p {
  font-size: 15px;
  color: #000;
  margin-top: auto;
  text-align: justify;
}

/* Responsive adjustments */


@media (max-width: 767px) {
  .bio-title {
    font-size: 1.5rem;
  }

  .bio-description {
    font-size: 0.95rem;
  }

}

@media (max-width: 575px) {
  .bio-title {
    font-size: 1.3rem;
  }

  .bio-description {
    font-size: 0.9rem;
  }

  .bio-content h3 {
    font-size: 1rem;
  }

  .bio-content p {
    font-size: 0.85rem;
  }
}






/* Section */
.client-marquee-section {
  padding: 40px 0;
  overflow: hidden;
}

/* Wrapper */
.client-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Track */
.client-marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
}

/* Logo group */
.logo-group {
  display: flex;
  gap: 40px;
  /* spacing between logos */
}

/* Logos */
.logo-group img {
  height: clamp(35px, 5vw, 50px);
  /* responsive size */
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  transition: 0.3s ease;
}

/* Hover effect */
.logo-group img:hover {
  transform: scale(1.05);
}

/* Smooth infinite animation */
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}



.value-delivery-sec {
  padding: 60px 0;
  background: #f8f8f8;
}


.vd-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 10px;
}

.vd-left,
.vd-right {
  flex: 1;
}

.vd-header h2 {
  font-weight: 700;
}

.vd-header h2 span {
  color: #E51743;
}

.vd-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 0px;
}

.vd-right,
.vd-left p {
  text-align: justify;
}

.vd-card {
  padding: 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, #F5F5F5, #FFEEEE);
  transition: 0.3s ease;
}

.vd-card:hover {
  transform: translateY(-6px);
}

.vd-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 40px;
  /* increase gap */
}

.vd-card h3 {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.2;
}

.vd-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}


.vd-lef h4 {
  font-size: 24px;
  font-weight: 600;

}

.vd-card h3 span {
  color: #E51743;
}

.vd-card p {
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
}

.vd-content-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background-color: #E51743;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
}

.vd-content-btn:hover {
  background-color: #000;
}

/* VIDEO */
.vd-video-wrapper {
  position: relative;
}

.vd-video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  /* keeps height fixed */
  border-radius: 16px;
  overflow: hidden;
}

.vd-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vd-video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vd-video-player iframe.show {
  opacity: 1;
}

.vd-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #E51743;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.vd-play-btn::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #ffffff;
}

.vd-play-btn:hover {
  background: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .vd-row {
    flex-direction: column;
  }

  .vd-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .vd-cards {
    grid-template-columns: 1fr;
  }

  .vd-header h2 {
    font-size: 24px;
  }
}










/* ===============================
   SECTION
================================ */
.video-cta-section {
  padding: 40px 0 40px;
}

.video-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.video-cta-section p {
  text-align: justify;
}

/* Desktop Order */
.video-cta-video {
  flex: 1;
  order: 1;
}

.video-cta-content {
  flex: 1;
  order: 2;
  display: flex;
  flex-direction: column;
}

/* ===============================
   VIDEO
================================ */
.video-cta-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
}

.video-cta-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-cta-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-cta-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #E51743;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.video-cta-play::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #ffffff;
}

/* ===============================
   TEXT
================================ */
.video-cta-content h2 {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
}

.video-cta-content h2 span {
  color: #E51743;
}

.video-cta-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
  text-align: justify;
}

.video-cta-btn {
  position: relative;
  display: inline-block;
  background: #E51743;
  color: #fff;
  padding: 07px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  overflow: hidden;
  width: fit-content;
  z-index: 1;
}

.video-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.video-cta-btn:hover::before {
  transform: scaleX(1);
}

/* Hide mobile button on desktop */
.mobile-only-btn {
  display: none;
}

@media (min-width: 1200px) {
  .video-cta-content h2 {
    max-width: 395px;
  }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 992px) {

  .video-cta-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .video-cta-content {
    order: 1;
    align-items: start;
  }

  .video-cta-video {
    order: 2;
    width: 100%;
  }

  .desktop-btn {
    display: none;
  }

  .mobile-only-btn {
    display: inline-block;
    margin-top: 20px;
    text-align: center !important;
  }

}



/* ===== Unique CTA Section Styling ===== */
.ecs-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.ecs-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.ecs-button a {
  display: inline-block;
  padding: 12px 28px;
  background-color: #E51743;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s ease;
  font-size: 15px;
}

.ecs-button a:hover {
  background-color: #000;
}

/* ===== Video Styling ===== */
.ecs-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
}

.ecs-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ecs-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ecs-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #E51743;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.ecs-video-object [itemprop="name"],
.ecs-video-object [itemprop="description"] {
  display: none;
  /* hide both name and description */
}

.ecs-play-btn::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #fff;
}

.ecs-play-btn:hover {
  background: #000;
}




/* feature text */

.feature-text-content {
  background: linear-gradient(to bottom, #F5F5F5, #FFEEEE);
  padding: 50px 0;
}

.feature-text-content .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.feature-text-content-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.feature-text-content-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.feature-text-content-info {
  flex: 1;
}

.feature-text-content-info h2 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}

.feature-text-content-info h2 span {
  color: #E51743;
}

.feature-text-content-info p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

/* PILLS */
.feature-text-content-pills {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-text-content-pills span {
  display: inline-block;
  padding: 8px 16px;
  background: #ffffff;
  font-weight: 550;
  color: #000;
  border-radius: 25px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.feature-text-content-pills span a {
  text-decoration: none;
  color: #E51743;
}

.feature-text-content-pills span a:hover {
  border-bottom: 1px dotted #fff;
  color: #fff;
}

.feature-text-content-pills span:hover {
  background: #E51743;
  color: #fff;
}

@media (max-width: 992px) {
  .feature-text-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .feature-text-content-info {
    margin-top: 30px;
  }

  .feature-text-content-pills {
    justify-content: center;
  }

  .feature-text-content-info h2 {
    font-size: 22px;
  }
}





.channel-impact-section {
  padding: 40px 0;
  background: #f9fafc;
}



.channel-impact-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000;
}

.features-slider-section .feature-box a {
  color: #000000;
  text-decoration: none;
  border-bottom: 1px dotted #000000;
}

.features-slider-section {
  padding: 60px 0;
}

.slider-wrapper {
  position: relative;

}

.features-slick .slick-track {
  display: flex !important;
}

.features-slick .slick-slide {
  height: auto;
  display: flex !important;
}

.features-slick .slick-slide>div {
  display: flex;
  width: 100%;
}

.feature-box {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 28px;
  margin: 0 15px;
  border: 1px solid #F3F0F3;
  box-shadow:
    inset 0 2px 12px rgba(229, 23, 67, 0.05),
    0 8px 20px rgba(0, 0, 0, 0.04);

  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 2px 16px rgba(229, 23, 67, 0.08),
    0 14px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  margin-bottom: 15px;
}

.features-slider-desc {
  max-width: 1100px;
  margin: 0 auto;
}

.feature-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.feature-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1;
  text-align: justify;
}

.feature-box a {
  color: #000000;
  text-decoration: none;
  border-bottom: 1px dashed #000000;
}

.feature-box a:hover {
  color: #e51743;
  border-bottom: 1px dotted #e51743;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #979797;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 18px;
  color: #979797;
}

.slider-btn:hover {
  border-color: #E51743;
  color: #E51743;
}

/* Hide default slick arrows */
.slick-prev,
.slick-next {
  display: none !important;
}

.seo-video-section {
  padding: 40px 0;
  background-color: #0F1C2E;
}

.seo-text-block {
  max-width: 600px;
}

.seo-video-section .video-heading {
  font-size: 25px;
  color: #ffffff;
  margin-bottom: 30px;
}

.seo-video-section p.video-heading a {
  color: #ffffff;
  border-bottom: 1px dashed #ffffff;
  text-decoration: none;
}

.seo-video-section p.video-heading a:hover {
  border-bottom: 1px dashed #E10600;
}

.seo-action-btn {
  background-color: #E10600;
  border: none;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 6px;
  color: #fff;
  transition: 0.3s;
}

.seo-action-btn:hover {
  background-color: #E51743;
}

.seo-text-block .counter-para a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px dotted #ffffff;
}

/* ==========================
   Video Styling (NO JUMP)
   ========================== */

.seo-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  /* ðŸ”‘ locks height */
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

/* Poster image + iframe MUST behave identically */
.seo-video-wrapper img,
.seo-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

/* Play button */
.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  pointer-events: none;
  /* allows click through */
}

.play-btn-overlay::before {
  content: '';
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 5px;
}

.seo-video-wrapper:hover .play-btn-overlay {
  background: rgba(255, 0, 0, 0.85);
}

.video-heading-h6 {
  background-color: #717479;
  /* Blue background */
  padding: 8px 12px;
  /* Some space around text */
  border-radius: 0 0 12px 12px;
  /* Rounded corners only at bottom */
  text-align: center;
  margin-top: -5px;
  /* Slight overlap with video card */
}

.video-heading-h6 h6 {
  color: #fff;
  /* White text */
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

/* ==========================
   SEO Schema Cleanup
   ========================== */

.seo-video-card [itemprop="description"],
.seo-video-card [itemprop="name"],
.seo-schema-wrapper span {
  display: none !important;
}

/* ==========================
   Responsive
   ========================== */

@media (max-width: 991px) {
  .seo-text-block {
    text-align: center;
    margin-bottom: 40px;
  }
}





/* Section background */
.ebook-services-section {
  background: #f9f9f9;
  padding-top: 3rem;
  padding-bottom: 3rem;
}




/* Sub-headings for each feature */
.ebook-services-section h3 {
  font-weight: 600;
  font-size: 20px;
  color: #000;
  margin-bottom: 0.5rem;
}

/* Paragraphs */
.ebook-services-section p {
  color: #555;
  line-height: 1.6;

}

/* Responsive adjustments */
@media (max-width: 768px) {

  .ebook-services-section h3 {
    font-size: 16px;
  }
}




/* Section */
.cover-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #F5F5F5, #FFEEEE);
}

/* Grid */
.cover-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}


/* Card Box */
.cover-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  /* ðŸ‘‰ Important: box-ku velila pogama stop pannum */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* ðŸ‘‰ Same height cards */
}

/* Hover */
.cover-card:hover {
  transform: translateY(-8px);
}

/* Image */
.cover-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  /* ðŸ‘‰ Gap remove */
}

/* Content Box */
.card-content {
  padding: 22px;
  flex-grow: 1;
  /* ðŸ‘‰ Content same size */
}

/* Title */
.card-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

/* Text */
.card-content p {
  font-size: 14px;
  line-height: 1.6;


}

.video-schema-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  /* Perfect responsive ratio */
  overflow: hidden;
  border-radius: 12px;
}

.video-schema-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile */
@media(max-width:576px) {

  .cover-card img {
    height: 180px;
  }

  .client-heading {
    font-size: 24px;
    text-align: center;
  }

}

/* Tablet â†’ 2 Cards */
@media (max-width: 1199px) {
  .cover-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile â†’ 1 Card */
@media (max-width: 767px) {
  .cover-grid {
    grid-template-columns: 1fr;
  }
}
























/* SECTION STYLING */
.cert-section {
  padding: 100px 0;
  background: #f9fafc;
  /* */
}


/* CERTIFICATION CARD */
.cert-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 25px;
  padding: 40px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cert-card::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -80%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, #b71c1c, #ff6b6b, #ffbaba);
  opacity: 0.05;
  transform: rotate(25deg);
  pointer-events: none;
}

.cert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

/* LEFT SIDE */
.cert-card-left {
  flex: 1;
  z-index: 1;
}



/* RIGHT SIDE */
.cert-card-right {
  width: 450px;
  z-index: 1;
}

.cert-card-right img {
  width: 100%;
  border-radius: 20px;
  border: 3px solid #f2f2f2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  height: auto;
}

.cert-card-right img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* ALTERNATE CARD LAYOUT */
.cert-card.alt {
  flex-direction: row-reverse;
  text-align: left;
  gap: 50px;
  /* Added space between content and image */
}

/* Adjust content spacing */
.cert-card.alt .cert-card-left {
  padding-right: 20px;
  /* Extra space for desktop */
}

/* Make sure image is centered in responsive mode */
@media (max-width: 992px) {

  .cert-card,
  .cert-card.alt {
    flex-direction: column;
    text-align: center;
  }

  .cert-card-right {
    width: 100%;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    /* Centers the image horizontally */
  }

  .cert-card-right img {
    max-width: 80%;
    /* Optional: make image smaller on mobile */
  }
}








































.magazine-design-section {
  padding: 50px 0;
}

.design-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  border: 1px solid #F3F0F3;
  box-shadow: 0px 0px 8px 0px #EAEAEA;

  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.design-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 2px 16px rgba(229, 23, 67, 0.08),
    0 14px 30px rgba(0, 0, 0, 0.08);
}

.design-icon {
  margin-bottom: 15px;
}

.design-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* ðŸ”¥ Direct Tag Styling */
.design-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.design-card p {
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1;
}

.design-card a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px dotted #000;
}

.design-card a:hover {
  color: #e51743;
  border-bottom: 1px dotted #e51743;
}

.faq-link {
  border-bottom: none;
}











.ms-sample-wrapper {
  padding: 70px 0;
}

.ms-sample-header h2 {
  font-weight: 700;
}

.ms-video-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;

  display: flex;
  flex-direction: column;
  width: 100%;
  height: 300px;
  /* SAME HEIGHT FOR ALL CARDS */
}

.ms-video-card:hover {
  transform: translateY(-6px);
}

.ms-video-thumb {
  position: relative;
  cursor: pointer;
}

.ms-video-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ms-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
}

.ms-play-button::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 20px;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #000;
}

.ms-video-title {
  padding: 28px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
}

.ms-video-frame {
  width: 100%;
  height: 450px;
  border: none;
}

@media (max-width: 991px) {
  .ms-video-title {
    padding: 15px;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .ms-video-card {
    height: auto;
    /* content adapt */
  }
}








/* ================= Hero Video Banner ================= */
.hero-video-banner {
  position: relative;
  height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;

}

/* Background video */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay */
.hero-video-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}



@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* ================= Hero Banner Content ================= */
.hero-banner-container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-banner-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero-banner-content h1 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-banner-content p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}

.hero-banner-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #E51743;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-banner-btn:hover {
  background: #c41538;
}

/* ================= Breadcrumb ================= */
.hero-breadcrumb {
  display: flex;
  width: 100%;
  color: #000000;
  padding-block: 15px;
}

.hero-breadcrumb ul {
  display: flex;
  align-items: center;
  /* vertical align text + arrows */
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-breadcrumb ul li {
  font-size: 14px;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  /* vertical align arrow with text */
}

/* Breadcrumb link */
.hero-breadcrumb ul li a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.hero-breadcrumb ul li a:hover {
  color: #E51743;
}

/* Arrow separator */
.hero-breadcrumb ul li:not(:last-child)::after {
  content: "\f101";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin: 0 6px;
  font-size: 11px;
  opacity: 0.8;
  color: #000000;
}

/* Active breadcrumb */
.hero-breadcrumb .breadcrumb-active {
  color: #E51743;
  font-weight: 500;
}

@media (max-width:768px) {

  .hero-video-bg {
    display: none;
    /* hide video */
  }

  .hero-video-banner {
    background: #000;
    /* background color show */
  }

  .hero-banner-content h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .hero-video-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
  }

}










.gallery-section-new {
  padding: 70px 0;

}


.gallery-grid-box-new {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-grid-item-new {
  width: calc(33.333% - 20px);
  border-radius: 8px;
  overflow: hidden;
}

.gallery-grid-item-new img {
  width: 100%;
  height: 100%;
  /* IMPORTANT */
  object-fit: cover;
  /* IMAGE CROP WITHOUT STRETCH */
  transition: .4s;
  border-radius: 10px;
}

.gallery-grid-item-new img:hover {
  transform: scale(1.06);
}

/* Tablet */
@media (max-width: 991px) {
  .gallery-grid-item-new {
    width: calc(50% - 20px);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .gallery-grid-item-new {
    width: 100%;
  }
}







.custom-video-gallery {
  margin-top: 40px;
  margin-bottom: 40px;
}

.custom-video-col {
  padding: 0 10px;
  margin-bottom: 30px;
}

.custom-video-box {
  border-radius: 10px;
  overflow: hidden;
}

.custom-video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.custom-video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.custom-video-title {
  display: block;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  color: #222;
}

.custom-video-desc {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.custom-video-desc,
.custom-video-title {
  display: none;
  /* hides the description */
}

/* Responsive */
@media (max-width: 767px) {
  .custom-video-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}













/* =========================================
   DIGITAL FEATURES SLIDER SECTION
========================================= */

.df-section {
  background: #f2f2f2;
  padding: 40px 0;
  position: relative;
}

/* Container (optional if needed spacing fix) */
.df-section .df-section-container {
  width: 100%;
}

/* ===== HEADER ===== */

.df-section .df-section-header {
  text-align: center;
  margin-bottom: 25px;
}


.df-section .df-section-title span {
  color: #E51743;
}

.df-section .df-section-subtext {
  font-size: 14px;
  color: #555;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== SLIDER WRAPPER ===== */

.df-section .df-slider-container {
  margin-top: 20px;
}

/* ===== CARD DESIGN ===== */

.df-section .df-slide-item {
  background: #fff;
  border-radius: 14px;
  padding: 20px 25px;
  margin: 10px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  min-height: 170px;
  height: 100%;
  box-sizing: border-box;
  text-align: left;
}

.df-section .df-slide-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.df-section .df-slide-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.df-section .df-slide-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  word-break: break-word;
}

/* ===== SLICK FIXES (Scoped â€“ No Global Conflict) ===== */

.df-section .slick-slide {
  display: flex !important;
  height: 100%;
}

.df-section .slick-slide>div {
  width: 100%;
}

.df-section .slick-track {
  display: flex !important;
  align-items: stretch;
}



/* ===== CONTROLS ===== */

.df-section .df-slider-controls {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.df-section .df-slider-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #A4A4A4;
  background: transparent;
  color: #A4A4A4;
  transition: all 0.3s ease;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.df-section .df-slider-button:hover {
  color: #E51743;
  border-color: #E51743;
}

.df-section .df-slider-button.slick-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
  .df-section .df-slide-item {
    min-height: 160px;
  }
}

@media (max-width: 768px) {
  .df-section .df-slide-item {
    height: auto;
  }

  .df-section .df-section-title {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .df-section {
    padding: 30px 0;
  }

  .df-section .df-slide-item {
    padding: 18px;
  }
}

/* ===============================
   RELATED ARTICLE SECTION
================================ */

.service-related-article {
  padding: 60px 0;
}



.related-article-header h3 {
  font-weight: 600;
  color: var(--text-color);
}

.related-article-header h3 span {
  color: #E51743;
}

/* Grid */
.related-article-grid {
  display: flex;
  gap: 30px;
}

/* Card */
.related-article-card {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* creates space top & bottom */
}

.related-article-card:hover {
  transform: translateY(-5px);
}

.related-article-card h3 {
  font-size: clamp(16px, 1.2vw + 0.4rem, 20px);
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 12px;
}

.related-article-card p {
  font-size: clamp(14px, 1vw + 0.3rem, 16px);
  line-height: 1.6;
  margin-bottom: 18px;
  text-align: justify;
}

.related-btn {
  position: relative;
  display: inline-block;
  background: #000;
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  width: fit-content;
  z-index: 1;
}

/* animation layer */
.related-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #E51743;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

/* hover animation */
.related-btn:hover::before {
  transform: scaleX(1);
}

/* Responsive */
@media (max-width: 992px) {
  .service-related-article {
    padding: 30px 0;
  }

  .related-article-grid {
    flex-direction: column;
  }
}


.back-to-top {
  position: fixed;
  bottom: 150px;
  right: 30px;
  background: #E51743;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  transition: 0.3s;
  animation: floatBtn 2s ease-in-out infinite;
}

@keyframes floatBtn {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

.back-to-top:hover {
  background: #ff0000;
}

/* Hide Back To Top on desktop */
@media (min-width: 768px) {
  .back-to-top {
    display: none !important;
  }
}

@media(max-width: 767px) {
  .back-to-top {
    bottom: 80px;
  }
}



/* ---------- Floating Icons ---------- */
.floating-contact-icons {
  position: fixed;
  top: 40%;
  /* desktop default */
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  transition: opacity 0.3s ease, top 0.3s ease;
}

/* Each icon */
.contact-icon {
  position: relative;
  background-color: #f9f9f9;
  color: #000;
  border-radius: 50px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  overflow: visible;
  transition: background-color 0.3s ease;
}

.contact-icon i {
  font-size: 22px;
  z-index: 2;
}

/* Label */
.contact-icon .label {
  position: absolute;
  left: 60px;
  white-space: nowrap;
  background-color: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 25px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  font-size: 14px;
  z-index: 1;
}

/* Hover label */
.contact-icon:hover .label {
  opacity: 1;
}

/* Icon colors */
.contact-icon.chat {
  background: #25D366;
  color: #fff;
}

/* green for chat */
.contact-icon.email {
  background-color: #0072c6;
  color: #fff;
}

.contact-icon.phone {
  background-color: #E51743;
  color: #fff;
}

/* ---------- Responsive Mobile ---------- */
@media (max-width: 768px) {

  .contact-icon {
    width: 45px;
    height: 45px;
  }

  .contact-icon i {
    font-size: 20px;
  }

  .contact-icon .label {
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* Hide floating icons on mobile */
@media (max-width: 767px) {
  .floating-contact-icons {
    display: none !important;
  }
}



/* ===============================
   FAQ SECTION
================================ */
.faq-section {
  padding: 40px 0;
}

.faq-wrapper {
  display: flex;
  gap: 40px;
}

.faq-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* FAQ Item */
.faq-item {
  background: #EDE9ED;
  overflow: hidden;
  transition: 0.3s ease;
}

/* Question */
.faq-question {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: #F8F8F8;
}

.faq-question h3 {
  font-size: 16px;
  margin: 0;
  color: #000;
}

.faq-icon {
  font-size: 15px;
  color: #000;
}

/* Answer (Animated) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #FFFFFF;
  border-left: 4px solid #E51743;
  font-size: 14px;
  line-height: 1.6;
  color: #333;

  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  font-size: 14px;
}

/* When active */
.faq-item.active .faq-answer {
  background-color: #F8F8F8;
  max-height: max-content;
  padding: 18px 20px;
  opacity: 1;
}


.faq-item:hover {
  background: #F3F0F3;
}

.faq-section .faq-answer ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.faq-section .faq-answer ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  line-height: 1.7;
}

.faq-section .faq-answer ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background-color: #E51743;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 992px) {
  .faq-wrapper {
    flex-direction: column;
  }
}





/* ===============================
    FOOTER
================================ */
.footer {
  background: #0b0b0b;
  color: #fff;
  overflow: hidden;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  flex-wrap: wrap;
}

.footer-logo img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
}

.footer-certifications {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-certifications img {
  width: 140px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-middle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px 0;
}

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: .3s;
  display: inline-block;
}

.footer-col ul li a:hover {
  transform: translateX(6px);
}

.contact li {
  color: white;
  font-size: 13px;
}

.contact i {
  margin-right: 8px;
}

.contact li a {
  color: #fff !important;
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
  font-size: 12px;
  color: white;
}

.social a:nth-child(1) {
  background: #3b5998;
}

.social a:nth-child(2) {
  background: #000;
}

.social a:nth-child(3) {
  background: #0077b5;
}

.social a:nth-child(4) {
  background: #e1306c;
}

.social a:nth-child(5) {
  background: #ff0000;
}

.footer-bottom {
  background: black;
  padding: 15px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  flex: 1;
  min-width: 250px;
  color: white;
  font-size: 12px;
  margin: 0;
  overflow-wrap: break-word;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.reviews {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.reviews img {
  max-width: 100px;
  height: auto;
}

@media(max-width:992px) {

  .footer-middle {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media(max-width:576px) {

  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 25px 0;
  }

  .footer-middle {
    grid-template-columns: 1fr;
  }

  .footer-certifications {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-certifications img {
    width: 110px;
    max-width: 45%;
  }

  .footer-col ul li a:hover {
    transform: none;
  }

  .reviews img {
    max-width: 80px;
  }
}



/* ================= SECTION ================= */

.leader-main-section {
  padding: 80px 0;
}

/* ================= HEADING ================= */

.leader-heading h2 {
  font-weight: 700;
}

.leader-heading span {
  color: #ff0033;
}

/* ================= TEXT ================= */

.leader-text-area p {
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}

/* ================= IMAGE ================= */

.ceo-photo {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ================= CARD ================= */

.info-card-box {
  background: linear-gradient(to bottom, #f9f9f9, #ffecec);
  padding: 25px;
  border-radius: 16px;
  transition: 0.4s;
  height: 100%;
}

.info-card-box:hover {
  transform: translateY(-8px);
  border-color: #ff0033;
}

/* ================= CARD HEADER ================= */

.info-card-header {
  display: flex;
  align-items: flex-start;
  /* changed from center */
  gap: 15px;
  margin-bottom: 15px;
}

/* ================= ICON ================= */

.info-icon-wrap {
  width: 65px;
  height: 65px;
  min-width: 65px;
  /* prevents shrinking */
  flex-shrink: 0;
  /* prevents icon from compressing */
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

/* Icon Image */
.info-icon-wrap img {
  width: 38px;
  height: 38px;
}


/* ================= CARD TEXT ================= */

.info-title-box h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.info-title-box h5 span {
  color: #ff0033;
}

.info-title-box p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.info-desc-text {
  font-size: 16px;
  color: #000;
  margin-top: 10px;
}





.fp-section {
  background: #f5f5f5;
}

.fp-card {
  perspective: 1000px;
  height: 150px;
}

.fp-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.fp-card:hover .fp-inner {
  transform: rotateY(180deg);
}

.fp-front,
.fp-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.fp-front {
  background: #ffffff;
}

.fp-front h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.fp-front p {
  font-size: 18px;
  color: #666;
}

.fp-back {
  background: #2b2d6e;
  transform: rotateY(180deg);
}

.fp-btn {
  padding: 10px 25px;
  background: #ffffff;
  color: #2b2d6e;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.fp-btn:hover {
  background: #E51743;
  color: #fff;
}

.fp-featured .fp-front {
  border: 2px solid #E51743;
}

.fp-badge {
  position: absolute;
  top: 15px;
  right: 20px;
  background: #E51743;
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 20px;
}



/* Main Section */
.process-section {
  padding: 80px 20px;
}

/* Title */
.process-heading {
  text-align: center;
  margin-bottom: 70px;
}

.process-heading h2 {
  font-size: 35px;
  font-weight: 700;
}

.process-heading span {
  color: #E51743;
}

.process-heading p {
  color: #777;
  max-width: 600px;
  margin: auto;
}

/* Timeline Wrapper */
.process-timeline {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  width: 2px;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 2px dashed #ccc;
}

/* Row */
.process-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
  position: relative;
}

/* Image */
.process-image {
  width: 40%;
}

.process-image img {
  width: 100%;
  max-width: 200px;
}

/* Content */
.process-box {
  width: 40%;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.process-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Step Badge */
.process-step {
  background: #E51743;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 10px;
}

.process-box h3 {
  margin: 10px 0;
  font-size: clamp(18px, 2vw, 18px);
  font-weight: 600;
}

.process-box p {
  font-size: clamp(12px, 1.2vw, 14px);
  color: #000;
  line-height: 1.7;
}

/* Dot */
.process-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #E51743;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}

/* Reverse */
.process-item.reverse-layout {
  flex-direction: row-reverse;
}

/* Responsive */
@media(max-width:992px) {

  .process-timeline::before {
    left: 25px;
  }

  .process-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 70px;
    margin-bottom: 60px;
  }

  .process-item.reverse-layout {
    flex-direction: column;
  }

  .process-image {
    width: 100%;
    margin-bottom: 20px;
  }

  .process-image img {
    max-width: 150px;
  }

  .process-box {
    width: 100%;
  }

  .process-item::after {
    left: 25px;
    transform: none;
  }

}
















/* Blogs section */



/* Breadcrumb */
.breadcrumb-wrapper {
  margin-top: 30px;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 20px;
  font-size: 15px;
}

.breadcrumb a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: #E10600;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: ">";
  color: #000;
  margin: 0 5px;
  font-size: 22px;
  line-height: 1;
  /* fix CLS */
}

/* Blog Section */
.blog-section {
  padding: 40px 0;
}

.blog-category {
  color: #E10600;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.blog-container-blog .container {
  max-width: 90% !important;
  padding-left: 15px;
  padding-right: 15px;
}



.blog-meta {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}

.blog-meta img {
  border-radius: 50%;
}

.blog-desc {
  color: #444;
  font-size: 15px;
  margin-top: 10px;
  line-height: 1.6;
}

/* Keep Reading Button with Animated Underline */
.keep-reading {
  position: relative;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  font-size: 15px;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.keep-reading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #E10600;
  transition: width 0.4s ease;
}

.keep-reading:hover {
  color: #E10600;
}

.keep-reading:hover::after {
  width: 100%;
}

.keep-reading i {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.keep-reading:hover i {
  margin-left: 10px;
}

.blog-image img {
  width: 100%;
  height: 400px;
  /* fixed height to reduce CLS */
  border-radius: 8px;
  object-fit: cover;
}

hr.section-divider {
  border: none;
  border-bottom: 2px solid #BABABA;
  margin-top: 40px;
}

@media (max-width: 991px) {

  .blog-section {
    padding: 30px 8px;
  }

  .blog-image img {
    height: 250px;
  }
}




/* Blog Wrapper */
.blog-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center !important;
}

/* Blog Card */
.blog-card {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  width: 100%;
  padding-bottom: 20px;
  /* space between content and border */
  border-bottom: 1px solid #ddd;
  /* horizontal line */
}

.blog-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.blog-card-content {
  flex: 1;
}

.blog-card-image {
  flex: 1;
  margin-left: 10px;
}

.blog-card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
}

/* Title & Meta */
.blog-card-title {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0;
  word-break: break-word;
}

.blog-card-meta {
  font-size: 12px;
  color: #555;
  display: flex;
  align-items: center;
}

.blog-card-meta img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 5px;
  object-fit: cover;
}

.blog-category-label {
  color: #FF4667;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-category-label-epub {
  color: #FF4667;
  font-size: 12px;
  font-weight: 600;
}

/* Paragraph */
.blog-card-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 10px 0 15px 0;
  word-break: break-word;
}

/* Read More */
.read-more-link {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

.read-more-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #FF4667;
  transition: width 0.3s ease;
}

.read-more-link:hover {
  color: #FF4667;
}

.read-more-link:hover::after {
  width: 100%;
}

/* Sidebar */
.sidebar-wrapper {
  position: sticky;
  top: 100px;
  align-self: flex-start;
  height: fit-content;
  padding-left: 60px;
}

/* Pagination wrapper */
.pagination-wrapper {

  margin-top: 30px;
  flex-wrap: wrap;
  gap: 5px;
}

.pagination-wrapper .page-item {
  margin: 0 3px;
  font-size: 18px;
}

.pagination-wrapper .page-link {
  color: #fff !important;
  /* text color for numbers */
  background-color: #969696;
  /* normal page numbers */
  border: 1px solid #ddd;
  min-width: 38px;
  text-align: center;
  display: flex;

  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Active page number */
.pagination-wrapper .page-item .page-link {

  font-size: 18px;
  border-color: #ddd;
}

/* Active page number */
.pagination-wrapper .page-item.active .page-link {
  background-color: #E10600;
  color: #fff;
  font-size: 18px;
  border-color: #ddd;
}

/* Chevron icons (first & last item) */
.pagination-wrapper .page-item:first-child .page-link,
.pagination-wrapper .page-item:last-child .page-link {
  background-color: transparent !important;
  color: #969696 !important;
  /* icon color */
  font-size: 18px;
}

/* Optional: hover effect for numbers */
.pagination-wrapper .page-item:not(.active) .page-link:hover {
  background-color: #E10600;
  color: #fff;
}


.pagination-wrapper {
  display: flex;
  align-items: center;
  margin-top: 0;
  /* remove top margin from pagination */
}

/* Custom column styling */
.pagination-btn-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Optional: custom button styling */
.load-more-btn {
  background-color: #E10600;
  border: none;
  color: #fff;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background-color: #969696;
  color: #fff;
}

/* Filter Dropdown */
#categoryFilterSelect {
  min-width: 180px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: all 0.3s ease;
}

#categoryFilterSelect:focus {
  border-color: #FF4667;
  box-shadow: 0 0 0 2px rgba(255, 70, 103, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
  .blog-card {
    flex-direction: column;
    align-items: normal;
  }

  .blog-card-image {
    margin-left: 0;
    margin-top: 10px;
  }

  .sidebar-wrapper {
    padding-left: 30px;
    position: static;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  #categoryFilterSelect {
    width: 100%;
    min-width: auto;
    font-size: 13px;
  }

  .sidebar-wrapper {
    padding-left: 15px;
  }
}

@media (max-width: 576px) {
  .blog-card-title {
    font-size: 1.5rem;
  }

  .blog-card-meta {
    align-items: flex-start;
    gap: 5px;
  }

  .read-more-link {
    font-size: 12px;
  }

  .sidebar-wrapper {
    padding-left: 15px;
  }
}



.sidebar-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .sidebar-card img {
    display: none;
  }
}




























/* -------------------------------Resources css--------------------------------------- */

/* ===== Page Header ===== */
.resource-title-section {
  background-image: linear-gradient(360deg, #5B0013 0%, #000000 100%);
}

.resource-title {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.4rem);
  line-height: 1.3;
}

/* Breadcrumbs */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.blist {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.blist li {
  display: flex;
  align-items: center;
}

.blist li+span.mx-2,
.blist li+li::before {
  content: "»";
  margin: 0 8px;
  color: #ccc;
}

/* Links */
.breadcrumb-link a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-link a:hover {
  color: #E51743;
}

/* Active Item */
.breadcrumb-active {
  color: #f5f5f5ea;
  font-weight: 500;
  pointer-events: none;
}

/* Author Details */
.author-details p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.author-details strong {
  font-weight: 600;
}

.author-details em {
  font-style: normal;
  color: #ffffff;
}

@media (max-width: 768px) {
  .breadcrumb-nav {
    flex-direction: column;
    font-size: 14px;
  }

  .blist {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .author-info {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .author-details p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .author-details .separator {
    display: none;
  }

  .author-name,
  .update-time {
    display: block;
    margin: 0.3rem 0;
  }

  .author-name i,
  .update-time i {
    font-size: 0.9rem;
  }
}



/* ---------- Author Box ---------- */
.author-box {
  border-radius: 9px;
  border: 4px solid #f3f3f3;
  padding: 20px 35px;
  margin: 0px 0px 20px;
  background: #f6f6f6;
}

/* Style LinkedIn icon only (clean, blue circle) */
.author-box a.in i.fab.fa-linkedin {
  background: #0e76a8;
  color: #ffffff !important;
  border: 1px solid #0e76a8 !important;
  font-size: 17px;
  text-align: center;
  border-radius: 36px;
  padding: 5px;
  width: 28px;
  height: 28px;
  line-height: 17px;
}

.author-box .aheading {
  margin-top: 1px;
  font-size: 23px !important;
  line-height: 25px;
  font-weight: 500;
}

.author-box .aheading a {
  border: none;
  color: none;
}

.author-box hr {
  padding: 0px 0px;
  margin: -6px 0px 6px;
  border-top: 2px solid #c7c7c7;
}

/* anchor links */
.body-container p a {
  text-decoration: none;
  border-bottom: 1px dotted #E51743;
  color: #E51743;
}

.body-container p a:hover {
  text-decoration: none;
  border-bottom: 1px dotted #0D6EFD;
  color: #0D6EFD;
}

.article-section ul.bullets li a,
.body-container ol.bullets-ol li a,
.faq-page a {
  text-decoration: none;
  border-bottom: 1px dotted #E51743;
  color: #E51743;
}

.body-container ul.bullets li a:hover,
.body-container ol.bullets-ol li a:hover,
.body-container ol.small-ol li a:hover,
.article-section .body-container ol.bullets-ol li h3 a:hover,
.article-section .body-container ul.map-list li h3 a:hover,
.faq-page a:hover {
  text-decoration: none;
  border-bottom: 1px dotted #0D6EFD;
  color: #0D6EFD;
}

.article-section .body-container {
  overflow-x: visible !important;
  overflow-y: visible !important;
}

.article-section .body-container a {
  text-decoration: none;
}

/* .article-section .body-container ol.small-ol li a */
.article-section .body-container h2 a,
.article-section .body-container h3 a,
.article-section .body-container h4 a,
.article-section .body-container h5 a,
.article-section .body-container h6 a,
.article-section .body-container table td a,
.article-section .body-container ol.bullets-ol li h3 a,
.article-section .body-container ul.map-list li h3 a,
.article-section .body-container ol.small-ol li a {
  border-bottom: 1px dotted #000000;
  color: #212529;
}

.article-section .body-container table td a:hover,
.article-section .body-container h2 a:hover,
.article-section .body-container ol.small-ol li a:hover,
.side-faq .accordion-body ul.bullets li a:hover,
.faq-page a:hover {
  border-bottom: 1px dotted #0D6EFD;
  color: #0D6EFD;

}

/* arcticle section */
@media (min-width:993px) {
  .article-section .container {
    max-width: calc(100% - 140px) !important;
  }
}

@media (max-width: 992px) {
  .article-section .body-container {
    padding: 20px 24px;
  }
}

@media (max-width: 768px) {
  .article-section .body-container {
    padding: 16px 16px;
  }
}

.article-section h2,
.article-section h3,
.article-section h4,
.article-section h5,
.article-section h6 {
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1em;
  scroll-margin-top: 100px;
  font-family: 'SF Pro Display', sans-serif;
}

.article-section h2 {
  font-size: clamp(1.5rem, 2.5vw + 1rem, 2.1rem);
  margin-bottom: 20px;
}

.article-section h3 {
  font-size: clamp(1.3rem, 2vw + 0.8rem, 1.9rem);
  margin-bottom: 15px;
}

.article-section h4 {
  font-size: clamp(1.1rem, 1.8vw + 0.7rem, 1.6rem);
}

.article-section h5 {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
}

.article-section h6 {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1rem);
}

.article-section p {
  font-size: 16px;

  line-height: 1.7;
  margin-bottom: 0.5em;
  text-align: justify;
}

.article-section .post_img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1em;
  margin-top: 1.2rem;
}

.article-section .post-image img {
  float: left;
  width: 200px;
  margin-right: 30px;
  margin-bottom: 20px;
}

.article-section .post_img .img_size1,
img.blog-img {
  padding: 0;
  width: 100%;
  border: 1px solid #efefef;
}

.post_img figcaption {
  font-style: italic;
  font-size: 16px;
  color: rgba(13, 39, 111, 0.72);
  text-align: center;
  margin-top: 0px;
  margin-bottom: 20px;
}

/* Adjust image height and prevent it from expanding */
@media (min-width: 1400px) {
  .post_img .h-450 {
    max-height: 450px;
    width: auto;
    display: block;
    margin: 0 auto;
  }
}

.article-section ul,
.article-section ol {

  color: #000;
  line-height: 1.6;
  font-size: clamp(1rem, 2vw, 1rem);
  margin: 0 0 1.5rem 0;
  padding-left: 1rem;
}



/* ===========================================
   âœ… SMALL ORDERED LIST (.small-ol)
   =========================================== */

ol.small-ol {
  counter-reset: ol-counter;
  list-style: none;
  padding-left: 15px;
  margin: 10px 0 26px;
}

ol.small-ol li {
  position: relative;
  counter-increment: ol-counter;
  padding-left: 26px;
  margin-bottom: 10px;
  line-height: 1.6;
}

ol.small-ol li::before {
  content: counter(ol-counter) ".";
  color: #E51743;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}

/* ===========================================
   âœ… BULLET LIST (.bullets) - small
   =========================================== */

.article-section ul.bullets,
.terms-page ul.bullets {
  list-style: none;
  padding-left: 15px;
  margin: 10px 0 26px;

}

.article-section ul.bullets li,
.terms-page ul.bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.article-section ul.bullets li::before,
.terms-page ul.bullets li::before {
  content: "\f04d";
  /* FontAwesome play icon */
  font-family: "FontAwesome";
  font-size: 10px;
  color: #E51743;
  position: absolute;
  left: 0;
  top: 5px;
}

/* ===========================================
   âœ… BIG ORDERED LIST (.bullets-ol)
   =========================================== */

ol.bullets-ol {
  counter-reset: big-counter;
  list-style: none;
  margin: 10px 0 26px;
  padding-left: 45px;
}

ol.bullets-ol>li {
  position: relative;
  counter-increment: big-counter;
  margin: 0 0 26px 20px;
}

ol.bullets-ol>li::before {
  content: counter(big-counter);
  color: #fff;
  background: #E51743;
  border-radius: 50%;
  position: absolute;
  left: -35px;
  top: 4px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}



/* ===========================================
   âœ… BIG UNORDERED LIST (.map-list)
   =========================================== */

ul.map-list {
  list-style: none;
  margin: 10px 0 26px;
  padding-left: 45px;

}

ul.map-list>li {
  position: relative;
  margin: 0 0 26px 20px;
}

ul.map-list>li::before {
  content: "\f061";
  font-family: "FontAwesome";
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background: #E51743;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -35px;
  top: 4px;
  transition: all 0.3s ease-in-out;
}

@media (max-width:1350px) {

  ol.bullets-ol,
  ul.map-list {
    padding-left: 25px;
  }
}

@media (max-width:992px) {

  ul.map-list,
  ol.bullets-ol {
    padding-left: 0px;
  }

  ul.map-list>li::before,
  ol.bullets-ol>li::before {
    left: -35px;
    font-size: 12px;
    top: 4px;
  }
}

/* ===========================================
   âœ… Fine-tuning for readability
   =========================================== */
/* ===============================
   LIST HEADING TYPOGRAPHY (UL + OL)
================================ */

.article-section ol.bullets-ol>li>h3,
.article-section ul.map-list>li>h3 {
  font-size: clamp(1.3rem, 2vw + 0.8rem, 1.6rem);
  line-height: 1.35;
  margin-bottom: 10px;
}

.article-section ol.bullets-ol>li>h4,
.article-section ul.map-list>li>h4 {
  font-size: clamp(1.1rem, 1.8vw + 0.7rem, 1.4rem);
  line-height: 1.4;
  margin-bottom: 8px;
}

.article-section ol.bullets-ol>li>h5,
.article-section ul.map-list>li>h5 {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
  line-height: 1.45;
  margin-bottom: 6px;
}

.article-section ol.bullets-ol>li>h6,
.article-section ul.map-list>li>h6 {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1rem);
  line-height: 1.5;
  margin-bottom: 6px;
}

.article-section h2+ul,
.article-section h2+ol {
  margin-top: 0.8rem;
}

.article-section ul li:last-child,
.article-section ol li:last-child {
  margin-bottom: 0;
}

.article-section .full-img {
  padding-bottom: 25px;
  padding-top: 10px;

}

.article-section .full-img img.desc-img {
  width: 100%;
  height: auto;
  border: 1px solid #ececec;
}

.article-section .content-img {
  width: 25%;
  margin-right: 30px;
  margin-bottom: 20px;
  float: left;
  border-radius: 6px;
  display: block;
}

.blog-sm-img img {
  width: 100%;
  padding: 0px 25px 25px;
}

/* Make the image smaller on mobile */
@media (max-width: 768px) {
  .blog-sm-img img {
    width: 150px;
    /* adjust size as needed */
    padding: 0 0 15px;
    display: block;
    margin-left: 0;
    /* align to start */
  }
}

/* Ensure image layout doesnâ€™t break bullets or text flow */
.map-list li::after {
  content: "";
  display: block;
  clear: both;
}

/* Maintain your list spacing and typography */
/* Accordion Button */
.resource-faq .accordion-button,
.faq-page .accordion-button {
  font-weight: 600;
  background-color: #fff;
  color: #000;
  box-shadow: none !important;
  border: none;
  position: relative;
  padding-right: 2.5rem;
  /* space for icon */
  transition: color 0.3s ease;
  text-align: left;
  cursor: pointer;
  font-size: 17px;
}

/* Active / opened state */
.resource-faq .accordion-button:not(.collapsed),
.faq-page .accordion-button:not(.collapsed) {
  color: #E51743;
  background-color: #fff;
}

/* Remove default Bootstrap icon */
.resource-faq .accordion-button::after,
.faq-page .accordion-button::after {
  content: "\2b";
  /* Font Awesome plus */
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 15px;
  margin-left: auto;
  background: none;
  transition: all 0.3s ease;
}

/* MINUS icon when expanded */
.resource-faq .accordion-button:not(.collapsed)::after,
.faq-page .accordion-button:not(.collapsed)::after {
  content: "\f068";
  /* Font Awesome minus */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* Accordion body */
.resource-faq .accordion-body,
.faq-page .accordion-body {
  background: #fafafa;
  border-left: 3px solid #E51743;
  padding: 1rem;
  text-align: justify;
  color: #000;
}

/* Hover effect */
.resource-faq .accordion-button:hover,
.faq-page .accordion-button:hover {
  color: #E51743;
}

/* Remove Bootstrap outline */
.resource-faq .accordion-button:focus,
.faq-page .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.faq-page .accordion-item {
  margin-bottom: 1rem;
  border-radius: 0;
  /* removes rounded corners */
}

/* ===== Sidebar ===== */
.resource-sidebar {
  padding-left: 46px;
  position: sticky;
  top: 50px;
  align-self: flex-start;
}

/* Below 1100px */
@media (max-width: 1100px) {
  .resource-sidebar {
    position: static;
    padding-left: 0;
  }
}

.recent-post-section {
  height: auto;
  width: auto;
  background-color: #fff;
  border-radius: 12px
}

.widget-section {
  margin-bottom: 0px;
  padding: 40px;
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}

.sidebar-blog-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem !important;
}

.popular_image {
  display: none;
  height: 100%;
  width: 30%;
}

.text_post {
  padding-left: 0;
  margin-top: 0px;
  width: 100%;
  line-height: 22px;
}

.popular_image img {
  width: 100%;
  background-position: center;
  object-fit: cover;
  background-size: cover;
}

p.sidebar-heading-text {
  font-size: 1.7rem;
  padding: 10px 0px;
  color: #000000;
  margin-bottom: 0;
  text-align: left;
}

.text_post a {
  font-size: 16px;
  color: #000000;
  text-decoration: none;
}

.sidebar-blog-row:hover .text_post a {
  text-decoration: underline;
  color: #d13f41;
}



ul.category-list {
  padding-inline-start: 3px;
  list-style-type: none;
}

ul.category-list li {
  border-bottom: 1px dashed #dbdbdb;
  padding: 11px;
  padding-inline-start: 0
}

ul.category-list li:last-child {
  border: none;
  padding-bottom: 0
}

ul.category-list {
  padding-inline-start: 3px
}

ul.category-list li a {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  padding-left: 10px
}

ul.category-list li a:hover {
  color: #E51743;
}

@media (min-width: 992px) and (max-width: 1251px) {

  .widget-section {
    padding: 24px;
  }

  .text_post a {
    font-size: 15px;
  }

  p.sidebar-heading-text {
    font-size: 1.5rem;
  }

}

/* Share Article Section */
.share-title {
  font-weight: 600;
  color: #212529;
  font-size: clamp(1.3rem, 2vw + 0.8rem, 1.6rem) !important;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 10px;

}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 20%;
  text-decoration: none;
  font-size: 18px;
  margin-right: 8px;
  transition: all 0.3s ease;
}

/* Facebook */
.social-icons a[aria-label="Facebook"] {
  background-color: #3b5998;
  color: #fff;
}

.social-icons a[aria-label="Facebook"]:hover {
  background-color: #2d4373;
  transform: scale(1.1);
}

/* X */
.social-icons a[aria-label="X"] {
  background-color: #000;
  color: #fff;
}

.social-icons a[aria-label="X"]:hover {
  background-color: #111;
  transform: scale(1.1);
}

/* LinkedIn */
.social-icons a[aria-label="LinkedIn"] {
  background-color: #0077b5;
  color: #fff;
}

.social-icons a[aria-label="LinkedIn"]:hover {
  background-color: #005983;
  transform: scale(1.1);
}

/* ðŸ”— Copy Link */
.social-icons a[aria-label="Copy link"] {
  background-color: #6c757d;
  /* neutral gray */
  color: #fff;
  position: relative;
}

.social-icons a[aria-label="Copy link"]:hover {
  background-color: #495057;
  /* darker gray */
  transform: scale(1.1);
}

/* Tooltip */
.copy-tooltip {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.copy-link.show-tooltip .copy-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Mobile spacing */
@media (max-width: 576px) {
  .social-icons {
    gap: 1rem;
  }
}




/* table */
.table-list {
  background-color: #fff;
  margin-bottom: 50px;
  width: 100%;
  margin-block: 15px;
}

.table-list th {
  padding: 18px 10px;
  color: #fff;
  text-align: center;
  background-color: #E51743;
  border: 1px solid #fffafa;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 600;
}

.table-list td {
  padding: 15px 10px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #f6dfdf;
}

.table-list tr {
  border-bottom: 1px solid #e1e1e1;
}

.color-cta {
  margin-block: 1.4rem;
}

.color-cta a {
  color: #fff;
  background: #E51743;
  padding: 11px 17px;
  border-radius: 9px;
  font-size: 16px;
}

p.rel-art-p {
  background: #f1f1f1;
  padding: 15px 25px;
  display: inline-block;
}

img.small-img {
  padding-right: 15px;
  color: #d13f41;
  font-size: 30px;
  float: left;
  font-weight: 100;
  padding-right: 15px;
  display: flex;
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

ol.bullets-ol img.small-img {
  float: left;
  margin-left: 0;
  margin-right: 4%;
  /* margin-top: 11px; */
  border: 1px solid #f1f1f1;
  margin-bottom: 10px;
  display: flex;
}

.article-section .rvideo {
  margin-bottom: 35px;
}

/* Container with background image */
.article-section .youtube-container {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover !important;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  /* Keeps perfect video proportions */
}

/* Clickable player wrapper */
.article-section .youtube-player {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
}

/* Centered play icon */
.article-section span.fa.fa-play-circle.yicon {
  color: #f73859;
  font-size: 75px;
  border: 3px solid #f73859;
  border-radius: 50%;
  padding: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 94px;
  height: 94px;
  transform: translate(-50%, -50%);
  animation: blink 3s infinite;
  background-color: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.article-section span.fa.fa-play-circle.yicon:hover {
  transform: translate(-50%, -50%) scale(1.1);
  color: #fff;
  border-color: #fff;
}

/* Blinking border animation */
@keyframes blink {
  50% {
    border-color: #fff;
  }
}

/* Full-width video when playing */
.article-section .youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .article-section span.fa.fa-play-circle.yicon {
    font-size: 40px;
    width: 65px;
    height: 65px;
  }
}

@media (max-width: 576px) {
  .article-section .youtube-container {
    aspect-ratio: 16 / 9;
  }

  .article-section span.fa.fa-play-circle.yicon {
    font-size: 25px;
    width: 45px;
    height: 45px;
  }
}






















/* case studies */

.case-study-banner {
  background-image: linear-gradient(360deg, #5B0013 0%, #000000 100%)
}

.case-study-banner h1 {
  max-width: 1330px;
  font-size: 40px;
  margin-inline: auto;
}

.case-box {
  padding: 30px 40px 20px;
  background: #fdfdfd;
  margin-block: 20px;
  background: linear-gradient(180deg, #fff, #f5f8ff);
  border-radius: 5px;
  border: 1px solid #f2f2f2
}

@media (max-width:768px) {
  .case-box {
    padding: 20px;
  }
}

.case-box h2 {
  font-size: clamp(1.3rem, 2vw + 0.8rem, 1.6rem);
}

.case-box:nth-of-type(1) {
  background: linear-gradient(180deg, #D2E7FF, #EBEDEE);
}

.case-box:nth-of-type(2) {
  background: linear-gradient(180deg, #EEFFD7, #EBEDEE);
}

.case-box:nth-of-type(3) {
  background: linear-gradient(180deg, #FFE7D7, #EBEDEE);
}

.case-box:nth-of-type(4) {
  background: linear-gradient(180deg, #D7FFF2, #EBEDEE);
}

.case-box:nth-of-type(5) {
  background: linear-gradient(180deg, #D8D7FF, #EBEDEE);
}

.case-box:nth-of-type(6) {
  background: linear-gradient(180deg, #FAD7FF, #EBEDEE);
}

.case-box:nth-of-type(7) {
  background: linear-gradient(180deg, #EEFFD7, #EBEDEE);
}

.case-box ul.bullets li a {
  color: #363636;
  border-bottom: 1px dashed #363636;
}

.resource-sidebar .contact-box {
  background: linear-gradient(180deg, #F3F3F3, #EBEDEE);
}

.title p {
  font-size: 1.7em;
  margin-bottom: 0;
}

.case-feature-box {
  position: relative;
  margin-bottom: 5px;
}

.case-feature-box img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

.color-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  border-radius: 10px;
}

.case-feature-box .distext {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 30px;
  text-decoration: none;
}

.case-feature-box h3,
.case-feature-box p {
  color: #ffffff;
}

.case-feature-box .cs-btn {
  background-color: #E51743;
  color: white;
}

.case-feature-box .cs-btn:hover {
  background: none;
  outline: 1px solid #E51743;
}

.sidebar-block {
  margin-block: 1.5rem;
}

.float-left {
  float: left;
}

.widget-section.side-faq {
  background: linear-gradient(180deg, #ffe5e5, #ebedee);
  padding: 20px;
  border-radius: 8px;
}

.side-faq .accordion-body ul.bullets {
  list-style: none;
  padding-left: 15px;
}

.side-faq .accordion-body ul.bullets li {
  position: relative;
  padding-left: 20px;
  line-height: 2rem;
}

.side-faq .accordion-body ul.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background-color: #E51743;
}

.side-faq .accordion-body ul.bullets li a {
  border-bottom: 1px dotted #000000;
  text-decoration: none;
  color: #212529;

}

.side-faq .accordion-body ul.bullets li {
  text-align: left;
}

.widget-section.side-faq .accordion-item,
.widget-section.side-faq .accordion-button,
.widget-section.side-faq .accordion-body {
  background: transparent !important;
  box-shadow: none;
}


/* =================================== case studies category page */
.bordered-card {
  border: 1px solid #e5e5e5;
  border-left: 6px solid transparent;
  /* gradient via pseudo-element */
  border-radius: 12px;
  background: #fff;
  padding: 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

/* Gradient Left Border */
.bordered-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(175deg, #E51743, #240b36);
  transition: all 0.4s ease;
}

.bordered-card:hover::before {
  filter: brightness(1.2);
}

/* Hover Effect */
.bordered-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* Accent Bar */
.accent-bar {
  width: 60px;
  height: 6px;
  background: linear-gradient(175deg, #E51743, #240b36);
  margin-bottom: 1rem;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.bordered-card:hover .accent-bar {
  width: 80px;
}

/* Content */
.category-content h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #000000;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-weight: 600;
}

.category-content p {
  color: #000000;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Red Button */
.category-read-more {
  display: inline-block;
  padding: 0.65rem 1.3rem;
  font-weight: 600;
  color: #fff;
  background-color: #E51743;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(195, 20, 50, 0.3);
}

.category-read-more:hover {
  background-color: #E51743;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(195, 20, 50, 0.45);
}

/* related case studies */
/* related case studies */
.related-heading {
  font-size: clamp(1.2rem, 1.5vw + 0.6rem, 1.8rem);
  font-weight: 700;
  margin-bottom: 1.2em;
  text-align: start;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Card */
.related-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #efefef;
  height: 380px;
  /* full visible height */
}

/* Make the image fill the entire card */
.related-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay area */
.related-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 2;
  /* make sure it's above the image */
}

/* Content at bottom */
.related-content {
  color: #fff;
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.55);
  /* text background strip */
  backdrop-filter: blur(2px);
  border-radius: 0 0 10px 10px;
}

.related-content h3 {
  font-size: clamp(1rem, 1vw + 0.3rem, 1.2rem);
  font-weight: 600;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.related-read-more {
  color: #ffdf00;
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.85rem, 1vw + 0.2rem, 0.95rem);
  transition: 0.3s ease;
}

.related-read-more:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-card {
    height: 380px;
  }
}

@media (max-width: 600px) {
  .related-grid {
    grid-template-columns: 1fr;
  }

  .related-card {
    height: 320px;
  }

  .related-content {
    padding: 0.8rem 1rem;
  }
}

.faq-link {
  color: #E51743;
  /* main red tone */
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.faq-link:hover {
  color: #E51743;
  /* darker red on hover */
  border-bottom: 2px solid #E51743;
  text-decoration: none;
}

.faq-page .accordion-body ul.bullets {
  list-style: none;
  padding-left: 15px;
}

.faq-page .accordion-body ul.bullets li {
  position: relative;
  padding-left: 20px;
  line-height: 1.7rem;
}

.faq-page .accordion-body ul.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: #E51743;
}

.faq-page .accordion-body p {
  line-height: 1.8rem;
}




/* ======================== */
h2.case-heading {
  font-size: 32px;
  margin-bottom: 8px;

}

.case-study-img img {
  width: 100%;
  height: auto;
  margin-block: 1.5rem;
}

ul.bullets-cus {
  list-style: none;
  padding-left: 15px;
}

ul.bullets-cus li {
  position: relative;
  padding-left: 20px;
  line-height: 2rem;
}

ul.bullets-cus li a,
.error-page a {
  color: #E51743;
  text-decoration: none;
  border-bottom: 1px dotted #E51743;
}

ul.bullets-cus li a:hover,
.error-page a:hover,
.error-page ul li a:hover {
  color: #0D6EFD;
  border-bottom: 1px dotted #0D6EFD;
}

ul.bullets-cus li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background-color: #E51743;
  /* red bullet */
  border-radius: 50%;
}

.call_to_action {
  border: 2px solid #e9e9e9cc;
  padding: 32px 40px;
  border-radius: 5px;
  background: #ffffffd4;
  margin-bottom: 15px;
}

.error-page {
  text-align: center;
  padding: 30px;
}

.card-note {
  background: #f1f1f1;
  padding: 15px 25px;
}

/* befre and after image  */

.slider-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-before,
.image-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.image-before {
  z-index: 2;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: white;
  z-index: 3;
  transform: translateX(-50%);
  cursor: ew-resize;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  z-index: 4;
  cursor: ew-resize;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  /* transition: all 0.2s ease; */
}

.slider-handle:hover {
  /* transform: translate(-50%, -50%) scale(1.1); */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.slider-handle i {
  color: #0083b0;
  font-size: 1.5rem;
}

.before-label,
.after-label {
  position: absolute;
  top: 20px;
  padding: 8px 16px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  font-weight: bold;
  border-radius: 4px;
  z-index: 3;
  user-select: none;
}

.before-label {
  left: 20px;
}

.after-label {
  right: 20px;
}

@media (max-width: 768px) {
  .slider-container {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .slider-container {
    height: 300px;
  }

  .slider-handle {
    width: 40px;
    height: 40px;
  }

  .before-label,
  .after-label {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
}

.img-logo {
  width: auto;
  max-width: 100%;
  height: auto;
}

/* Main schema wrapper */
.ms-sample-wrapper .video-object-schema {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5rem;
}

/* Video container with aspect ratio */
.video-object-schema .video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 ratio */
  overflow: hidden;
  background: #000;
  margin: 0 auto;
}

/* Iframe styling */
.video-object-schema .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Reusable image + text layout */
.media-info {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}

/* Image styling */
.media-info img {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* ðŸ“± Mobile: stack one by one */
@media (max-width: 768px) {
  .media-info {
    grid-template-columns: 1fr;
  }

  .media-info img {
    max-width: 240px;
  }
}

.block-note {
  background: #FAF2DB;
  border: 2px solid #FFDB00;
  color: #292929;
  margin: 2.5em 0;
  justify-content: center;
  padding: 1.4em 1.5em;
}

.fullwidth-blog {
  padding: 5px 0% 0;
}

a.view-more {
  background: #E51743;
  color: #ffffff;
  float: left;
  margin-top: 12px;
  padding: 2px 20px;
}

p.heading {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 0;
}

section.terms-page.sitemap {
  padding: 49px 0px;
  background: #f6f6f6;
}

.terms h3 a {
  color: #000;
  text-decoration: none;
}

.terms h3 a:hover {
  color: #007bff;
}

.terms-page ul.bullets {
  list-style-type: none;
}

.terms-page ul.bullets li a {
  text-decoration: none;
  border-bottom: 1px dotted #000000;
  color: #212529;

}

.terms-page ul.bullets li a:hover {
  color: rgb(13 110 253);
  border-bottom: 1px dotted #007bff;

}

p.p-test {
  margin: 0;
  color: #240b36;
}


/* ==================resource parent pages============== */

.latest-post-section {
  background: #ffffff;
  border-radius: 10px;
}

.latest-post {
  border: 1px solid #d7d7d7;
  border-radius: 12px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;

}

.latest-post img {
  display: none;
  width: 25%;
  min-height: 125px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.latest-post-text {
  flex: 1;
  width: 100%;
  padding: 12px 20px;
}

p.res-heading {
  line-height: 1.35em;
  color: #000000;
  font-weight: 600;
  margin-bottom: 4px;
}

p.res-heading a {
  font-size: clamp(16px, 1.3vw, 18px);
  border-bottom: none;
  color: #000000;
  text-decoration: none;

}

p.res-heading:hover a {
  color: #E51743;
  border-bottom: 1px dashed #E51743;
}

p.description {
  margin-bottom: 0;
  font-size: clamp(16px, 1.3vw, 17px);
  line-height: 1.4em;
}

@media (max-width: 768px) {
  .latest-post {
    flex-direction: column;
    align-items: flex-start;
  }

  .latest-post img {
    width: 100%;
    min-height: 160px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .latest-post-text {
    padding: 0 12px 12px;
  }
}

.blog-box {
  border: 1px solid #d7d7d7;
  border-radius: 12px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
}

.blog-box img {
  display: none;
  width: 25%;
  min-height: 125px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 12px;
}

.blog-box-text {
  padding: 15px 25px;
}

.blog-box-text p {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.45em;
  color: #3e3e3e;
  margin-bottom: 20px;
}

.blog-box-text a {
  text-decoration: none;
  background: #E51743;
  padding: 6px 12px;
  color: #ffffff;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .blog-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-box img {
    width: 100%;
    min-height: 180px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .blog-box-text {
    padding: 12px 16px 16px;
  }
}

@media (max-width: 576px) {
  .blog-box-text a {
    font-size: 14px;
    padding: 6px 10px;
  }
}

.blog-pagination {
  text-align: center;
  margin-block: 2rem;
}

.blog-pagination a.disabled {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  background: #a7a7a7;
}

.blog-pagination a {
  background: #E51743;
  padding: 11px 29px;
  border-radius: 6px;
  color: #ffffff;
  margin-right: 11px;
  text-decoration: none;
}

@media (max-width: 400px) {
  .blog-pagination {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .blog-pagination a {
    margin-right: 0;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
  }
}

.res-pagination {
  margin-top: 35px;
  text-align: center;
}

.res-pagination a {
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px #d5d5d5;
  padding: 10px 15px;
  margin-right: 2px;
  margin-top: 13px;
  color: #E51743;
  text-decoration: none;
  font-weight: 600;
}

.res-pagination a.active {
  background: #E51743;
  color: #ffffff;
}

@media screen and (max-width: 568px) {
  .res-pagination a {
    padding: 5px 7px !important;
    margin-right: 2px;
    font-size: 10px;

  }

  .res-pagination {
    margin-top: 0;
  }
}

.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #0e2320;
  text-decoration: none;
  transition: color 0.3s ease;
}

.learn-more-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.learn-more-link:hover {
  color: #E51743;
}

.learn-more-link:hover i {
  transform: translateY(-3px);
}


/* card list */
.card-check-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

/* FLEX ALIGNMENT */
.card-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  /* space between icon & text */
  font-size: 15px;
  color: #222;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* ICON */
.card-check-list li::before {
  content: "âœ“";
  flex-shrink: 0;
  /* prevents icon from moving */
  width: 20px;
  height: 20px;
  background: #E51743;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  /* vertical alignment tweak */
}

/* LINK */
.card-check-list li a {
  color: #E51743;
  text-decoration: none;
  border-bottom: 1px dashed #E51743;
}

.card-check-list li a:hover {
  color: #0d6efd;
  border-bottom: none;
}

@media (max-width: 768px) {
  .card-check-list {
    display: flex;
    flex-direction: column;
    align-self: center;
    /* center each list item */
    justify-content: center;
  }

  .card-check-list li {
    justify-content: center;
    /* center icon + text together */
    text-align: center;
    width: 100%;
  }
}





/* bullets -list  */
ul.bullets {
  line-height: 1.6;
  margin-bottom: 0;
  padding-inline-start: 10px;
  margin-top: 10px;
  list-style: none;
}

ul.bullets li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 19px;
  line-height: 22px;
}

ul.bullets li:before {
  content: "\f04d";
  font-family: "FontAwesome";
  font-size: 9px;
  color: #E51743;
  position: absolute;
  left: 0;
  font-weight: 600;
  line-height: 20px;
  top: 2px;
}