/* ---------- Topbar ---------- */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/BricolageGrotesque24pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../inter-wwf/Inter18pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body{
  font-family: "Bricolage Grotesque";
  
}

h1{
  font-family: "Bricolage Grotesque" !important;

}

h2,h3,h4,h5,h6{
   font-family: "Bricolage Grotesque" !important;
}
p {
  font-family: "Inter", sans-serif !important;
  color: #000000;
}



/* ----------- Navbar Base ----------- */
.navbar {
  background: #000;
  border-bottom: 3px solid #FFBB00;
  padding: 0 10px;
  z-index: 100;
  
}
/* ---------- Navbar Links Gap & Responsive Font ---------- */
/* Center navbar links */
/* Center navbar links */
.navbar .navbar-nav {
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  gap: 15px; /* spacing between links */
}

/* Navbar links */
.navbar .nav-link {
  color: #fff;
  font-weight: 550;
  padding: 12px 16px;
  font-family: "Inter", sans-serif !important;
  font-size: 15px !important; /* fixed font size */
  position: relative;
  transition: all 0.3s ease;
}

/* Hover + active background */
.navbar .nav-link:hover,
.navbar .nav-item.show > .nav-link,
.navbar .nav-item.dropdown:hover > .nav-link {
  background-color: #FF0000;
  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;
}

/* ---------- Mega Menu ----------- */
.mega-menu, .mega-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 25px;
  min-width: 850px;
  opacity: 0;
  transform: translateY(-20px) scaleY(0.8);
  transform-origin: top center;
  transition: all 0.35s ease-in-out;
  pointer-events: none;
  box-shadow: 0 6px 15px rgba(0,0,0,.25);
  z-index: 1000;
}
/* Navbar link hover and active background */
.navbar .nav-link {
  transition: all 0.3s ease; /* smooth hover */
          /* optional rounded effect */
}
.section-title {
  display: block;                /* Ensures it sits on its own line */
  font-size: 18px;               /* Medium heading size */
  font-weight: 600;              /* Semi-bold text */
  color: #222;                   /* Dark neutral text color */
  margin-top: 20px;              /* Spacing above */
  margin-bottom: 10px;           /* Spacing below */
  text-transform: capitalize;    /* Capitalizes first letter of each word */
  position: relative;            /* Allows pseudo-element use */
            /* Small left padding for line accent */
}
.section-title a{
  color: #000;
  text-decoration: none;
}


/* Optional hover effect */
.section-title:hover {
  color: #ff0000;
  transition: color 0.3s ease;
}


/* On hover */
.navbar .nav-link:hover {
  background-color: #FF0000;  /* hover background */
  color: #fff !important;     /* text color */
}

/* When dropdown or mega menu is open (active) */
.navbar .nav-item.show > .nav-link,
.navbar .nav-item.dropdown:hover > .nav-link {
  background-color: #FF0000;  /* same as hover */
  color: #fff !important;     /* text color */
}



.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;
}

.has-submenu .nested-submenu {
  display: none;
}

.has-submenu.open .nested-submenu {
  display: block;
}


.mega-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Mega menu links */
.mega-menu ul li a {
  color: #000;
  text-decoration: none;
  font-size: 13px;
  display: inline-block;     /* inline-block adjusts height to content */
  position: relative;
  transition: color 0.3s;
  line-height: 1;            /* ensures no extra height */
  padding: 8px 0px;            /* small padding for spacing without increasing height */
}
.mega-menu .mega-li-text{
  font-size: 13px;
  line-height: 1;   
  padding: 8px 0px;  
  color: #000;
}

/* Hover bottom border using ::after */
.mega-menu ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;               /* thickness of hover border */
  width: 0;
  background: #FF0000;
  transition: width 0.3s ease;
}

/* On hover, span full width */
.mega-menu ul li a:hover::after {
  width: 100%;
}

/* Optional: change text color on hover */
.mega-menu ul li a:hover {
  color: #FF0000;
  font-weight: 800;
}

/* 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;
  }
}

/* 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: #FF0000;
}

.mega-desc {
  font-size: 14px;
  color: #000;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 400px;
  word-wrap: break-word;
}

/* Style for last line "Ready to get started?" */
.mega-menu .started {
  color: #000;    
  font-weight: 600;
  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: #FF0000;              /* 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: #FF0000;         /* underline color */
  transition: width 0.3s ease; /* animation */
}

/* Hover effect */
.mega-menu .lets-talk:hover {
  color: #000;                 /* text color on hover */
}

.mega-menu .lets-talk:hover::after {
  width: 100%;                 /* expand underline */
}
.mega-menu .lets-talk a{
 text-decoration: none;
 color: #ff0000;
}

/* Normal dropdowns */
.navbar .dropdown-menu {
  background: #fff;
  min-width: 170px;
  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;
}

.navbar .dropdown-menu .dropdown-item {
  color: #000;
  padding: 8px 20px;
  font-weight: 500;
  position: relative;
  display: block;
  font-size: 14px;
}

.navbar .dropdown-menu .dropdown-item span {
  position: relative;
  display: inline-block;
}
/* Remove border-radius from dropdown menus */
.nav-item .dropdown-menu {
  border-radius: 0 !important; /* removes rounded corners */
 
}


.navbar .dropdown-menu .dropdown-item span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #FF0000;
  transition: width 0.3s ease;
}

.navbar .dropdown-menu .dropdown-item:hover span {
  color: #FF0000;
  font-weight: 600;
}

.navbar .dropdown-menu .dropdown-item:hover span::after {
  width: 100%;
}
/* 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;
  }
}


/* 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: 1280px) {
  .navbar-expand-lg .navbar-toggler {
    display: block !important;
  }
  .navbar-expand-lg .navbar-collapse {
    display: none !important;
  }
}

@media (min-width: 1281px) {
  .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;             /* spacing between links when wrapped */
  }

  .navbar .nav-link {
    font-size: 13px !important;       /* slightly smaller font to fit */
    padding: 10px 12px;    /* reduce padding to save space */
  }
  

}

/* ====== Nested submenu style ====== */
.has-submenu {
  position: relative;
}

.submenu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.submenu-link:hover {
  color: #FF0000;
}

/* Plus / Minus icon next to text */
.submenu-toggle {
  font-size: 13px;
  color: #FF0000;
  margin-left: 8px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.has-submenu.open .submenu-toggle i {
  transform: rotate(180deg);
  color: #000;
}

.has-submenu .submenu-toggle i.fa-minus {
  display: none;
  color: #FF0000;
}

.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;
}

.has-submenu.open .submenu-toggle i.fa-minus {
  transform: rotate(180deg);
}
/* Nested submenu (hidden by default) */
.nested-submenu {
  display: none;
  list-style: none;
  padding-left: 18px;  /* ✅ adds left space for nested items */
  margin-top: 6px;

  transition: all 0.3s ease;
}

.nested-submenu.open {
  display: block;
}

/* Nested submenu links */
.nested-submenu li {
  padding-left: 15px;
}
.nested-submenu li a {
  color: #333;
  font-size: 12px;
  text-decoration: none;
  display: block;
  padding: 6px 0;
  transition: color 0.3s;
}

.nested-submenu li a:hover {
  color: #FF0000;
  font-weight: 600;
}

/* 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: #000;
  white-space: normal;
  font-family: "Inter", sans-serif !important;
}

/* Hide topbar in mobile */
@media(max-width: 991px) {
  .topbar { display:none; }
}

/* Logo */
.topbar img
 {
  height:55px;
  width:auto;
}
.offcanvas-header img,.navbar-brand img{
  height:40px;
  width:auto;
}



/* ---------- Search Box ---------- */
.search-box {
  border-radius:12px;
  border:1px solid #ccc;
  padding:6px 12px;
  position:relative;
  font-size:14px;
  background:#fff;
  font-family: "Inter", sans-serif !important;
}
.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;
  font-family: "Inter", sans-serif !important;
  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: #FF0000 !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;
  font-family: "Inter", sans-serif !important;
}
.btn-contact:hover {
  background-color: #FF0000 !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; font-family: Arial, sans-serif; }
.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:#FF0000;
  border-color:#FF0000 #FF0000 #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;
}

.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.3s forwards;
}


/* Remove border for last link */
.offcanvas .accordion-body a:last-child,
.offcanvas #tab-company .company-links ul li:last-child,
.offcanvas #tab-company > ul li:last-child {
  border-bottom: none;
}

/* Hover color */
.offcanvas .accordion-body a:hover,
.offcanvas #tab-company a:hover {
  color: #FF0000;
}

/* Accordion active button color */
.offcanvas .accordion-button:not(.collapsed) {
  color: #FF0000;
}

/* ---------- Stagger animation delays ---------- */
/* Services Tab */
.offcanvas #servicesAccordion .accordion-body a:nth-child(1) { animation-delay: 0.1s; }
.offcanvas #servicesAccordion .accordion-body a:nth-child(2) { animation-delay: 0.2s; }
.offcanvas #servicesAccordion .accordion-body a:nth-child(3) { animation-delay: 0.3s; }
.offcanvas #servicesAccordion .accordion-body a:nth-child(4) { animation-delay: 0.4s; }

/* Company Accordion links */
.offcanvas #companyServices .company-links ul li a:nth-child(1) { animation-delay: 0.1s; }
.offcanvas #companyServices .company-links ul li a:nth-child(2) { animation-delay: 0.2s; }
.offcanvas #companyServices .company-links ul li a:nth-child(3) { animation-delay: 0.3s; }
.offcanvas #companyServices .company-links ul li a:nth-child(4) { animation-delay: 0.4s; }
.offcanvas #companyServices .company-links ul li a:nth-child(5) { animation-delay: 0.5s; }
.offcanvas #companyServices .company-links ul li a:nth-child(6) { animation-delay: 0.6s; }
.offcanvas #companyServices .company-links ul li a:nth-child(7) { animation-delay: 0.7s; }
.offcanvas #companyServices .company-links ul li a:nth-child(8) { animation-delay: 0.8s; }

/* Company outside links */
.offcanvas #tab-company > ul li a:nth-child(1) { animation-delay: 0.1s; }
.offcanvas #tab-company > ul li a:nth-child(2) { animation-delay: 0.2s; }
.offcanvas #tab-company > ul li a:nth-child(3) { animation-delay: 0.3s; }
.offcanvas #tab-company > ul li a:nth-child(4) { animation-delay: 0.4s; }
.offcanvas #tab-company > ul li a:nth-child(5) { animation-delay: 0.5s; }
  /* Make the links inside accordion buttons full width and properly clickable */
  .accordion-button a.accordion-link {
    display: inline-block;
    width: 100%;
    color: inherit;
    text-decoration: none;
  }
  .accordion-button a.accordion-link:hover {
    text-decoration: underline;
  }

/* ---------- Keyframes ---------- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 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: #000;               /* 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: #FF0000;            /* 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: #FF0000;
}
/* 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: #FF0000;
}
/* Offcanvas Accordion Header Link Styling */
#offcanvasNav .accordion-header .accordion-link {
  color: #333;           /* Text color */
  
  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;   /* prevents word breaks */
}

/* Hover effect for header links */
#offcanvasNav .accordion-header .accordion-link:hover {
  color: #007bff;        /* Change color on hover */
  text-decoration: underline; /* Optional underline */
}

/* 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 */
  }
}



.video-banner-section {
  position: relative;
  overflow: hidden;
  height: 80vh; /* desktop default */
}

.video-banner-section .video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
  .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


/* ---------- Badge ---------- */
.who-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: "Inter", sans-serif !important;
  white-space: nowrap; /* prevent wrapping */
}
.happy-clients {
    color: #FF0000;
}
.counter-section h1{
  font-size: 48px;
}

.client-heading {
    font-size: 35px !important;
    line-height: 1.2;
}

/* ---------- Counter Labels ---------- */
.counter-label {
  background-color: #F4F3F8;
  color: #000;
  padding: 0.2rem 0.6rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;       /* prevent wrapping */
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

/* ---------- Counter Box ---------- */
.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;  /* center items + dividers */
  flex-wrap: nowrap;        /* prevent wrapping */
  background: #fff;
  box-shadow: 0 0 0 1px #E8E6F0 inset;
  border-radius: 1rem;
  padding: 1.5rem;
  gap: 0.5rem;
}

/* Each counter item */
.counter-item {
  flex: 1 1 auto;           /* allow shrinking */
  min-width: 0;             /* prevent overflow */
  text-align: center;
}

/* Counter numbers */
.counter-item h3 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 0;
}

/* ---------- Divider ---------- */
.divider {
  width: 1px;
  height: 60px;             /* vertical height */
  background: #E8E6F0;
  margin: 0 1rem;
  flex-shrink: 0;           /* prevent collapsing */
}

/* ---------- Responsive: Mobile ---------- */
@media (max-width: 767px) {
  .counter-box {
    flex-direction: column;
    gap: 1rem;
  }
  .divider {
    display: none;          /* hide dividers on mobile */
  }
  .client-heading {
    font-size: 28px !important;
    line-height: 1.2;
}
.counter-section h1{
  font-size: 28px;
}


}

@media (max-width: 480px) {
  .counter-item h3 {
    font-size: 28px;
  }
  .counter-label {
    font-size: 0.7rem;
  }
}

/* ---------- Optional 1/5 column width for 8 logos ---------- */
@media (min-width: 992px) {
  .col-lg-1-5 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
/* Tablet view */
@media (max-width: 991px) {
  .video-banner-section {
    height: 60vh;
  }
}

/* Mobile view */
@media (max-width: 767px) {
  .video-banner-section {
    height: 45vh;
  }
}


.cs-breadcrumb-nav {
  padding: 10px 0;
}

.cs-breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

.cs-breadcrumb-item a {
  color: #ff0000;
  text-decoration: none;
}

.cs-breadcrumb-item a:hover {
  text-decoration: underline;
}

.cs-breadcrumb-item.active span {
  color: #6c757d;
  font-weight: 500;
}

.cs-breadcrumb-sep {
  margin: 0 8px;
  color: #6c757d;
}



/* =======================
   Top Rated Services Section
   ======================= */

.services-section {
  background: url('../images/top-rated-services/top-rated-section-bg.webp') center center/cover no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
  padding: 90px 20px;
}

/* Badge above heading */
.services-section .client-badge {
  background-color: #FFE785;
  color: #000;
  padding: 2px 10px;
  border-radius: 5px;
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif !important;
}

.services-section h2 {
  margin-bottom: 1rem;
  font-size: 40px;
  font-weight: 700;
}

.services-section p {
  font-size: 16px;
  margin-bottom: 3rem;
  max-width: 600px;
}

/* === Cards === */
.services-section .card {
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  color: #000;
  padding: 0.8rem;
  display: flex;               /* equal height support */
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.services-section .card:hover {
  box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

/* Card images */
.services-section .card img.card-img-top {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 1rem;
  display: block;
}

/* Card body */
/* Card body: center all content horizontally */
.services-section .card-body {
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    
    flex-grow: 1;
    text-align: center;    /* optional: center text */
}

.services-section .card-body h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: left;
}

.services-section .card-text {
  flex-grow: 1;                /* push buttons to bottom */
  margin-bottom: 1rem;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* === Bottom button row – no wrap but no scrollbar === */
.services-section .card-body .d-flex.gap-2 {
  margin-top: auto;
  align-items: center;
  width: 100%;
  text-align: center;
  flex-wrap: nowrap;        /* keep them on one line by default */
  justify-content: space-between; /* spread evenly inside card */
}

/* Let buttons shrink instead of overflowing */
.services-section .card-body .d-flex.gap-2 .btn {
  white-space: nowrap;      /* text never breaks */
  flex: 1 1 auto;           /* shrink if space is tight */
  min-width: 0;             /* allow real shrinking */
  text-overflow: ellipsis;  /* if text ever clips */
}


/* Buttons uniform size */
.services-section .btn-sm {
  font-size: 0.8rem;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  font-weight: 500 !important;
}

/* Optional: style for custom outline buttons */
.services-section .btn.custom-outline {
  border-width: 1px;
  font-weight: 500 !important;
  transition: all 0.3s ease;
}

.services-section .btn-outline-primary.custom-outline:hover {
  background-color: #d92323;   /* example red hover */
  border-color: #d92323;
  color: #fff;
}

.services-section .btn-outline-secondary.custom-outline:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .services-section h2 {
    font-size: 32px;
  }
  .services-section p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 60px 15px;
  }
  .services-section .card {
    padding: 0.6rem;
  }
  .services-section .btn-sm {
    font-size: 0.75rem;
    padding: 0.45rem 0.7rem;
  }
}
/* Tablet / iPad only */
@media (min-width: 768px) and (max-width: 1200px) {
  .services-section .card-body .d-flex.gap-2 {
    flex-wrap: wrap;
    justify-content: flex-start; /* optional: align left */
    gap: 0.5rem;                 /* spacing between wrapped buttons */
  }
  
  .services-section .card-body .d-flex.gap-2 .btn {
    flex: 1 1 auto;   /* buttons can shrink or take full width if needed */
  }
}
/* ---- Mid-large screens (≈1366px and below) ---- */
@media (max-width: 1400px) {
 
  /* Smaller text & tighter padding when wrapping */
  .services-section .card-body .d-flex.gap-2 .btn {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    font-size: 0.75rem;       /* ↓ font size */
    padding: 0.4rem 0.7rem;   /* optional tighter padding */
  }
}



/* ============================
   Industries Section Styles
============================ */

/* ============================
   Industries Section
============================ */
.industries-section {
  padding: 80px 20px;  /* desktop padding */
}

@media (max-width: 992px) {
  .industries-section {
    padding: 50px 15px; /* tablet padding */
  }
}

@media (max-width: 576px) {
  .industries-section {
    padding: 30px 10px; /* mobile padding */
  }
}

/* ============================
   Buttons / Outline
============================ */
.custom-outline {
  border-color: #BABABA !important;
  color: #333;
  font-weight: 600 !important;
}

.custom-outline:hover {
  background-color: #ff0000;
  color: #fff;
  border: none;
}

.text-white-100 {
  color: #ffffff !important;
}

.left-text {
  text-align: left !important;
}


/* ============================
   Industries Section
============================ */
.industries-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

@media (max-width: 992px) {
  .industries-section {
    padding: 50px 15px;
  }
}

@media (max-width: 576px) {
  .industries-section {
    padding: 30px 10px;
  }
}

/* Badge */
.who-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: "Inter", sans-serif !important;
}

/* ============================
   Industry Cards
============================ */
.industry-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.industry-card .card-img {
  width: 100%;
  height: auto;      /* responsive height */
  object-fit: cover;
  display: block;
}

/* Overlay */
.overlay-card {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  border-top-left-radius: 9%;
  border-top-right-radius: 9%;
  padding: 1rem;
  box-sizing: border-box;
}

.overlay-content h5 {
  font-size: 16px;
  margin: 0 0 0.3rem 0;
}

.overlay-content a {
  font-family: "Inter", sans-serif !important;
  font-size: 13px;
  transition: color .3s ease, transform .3s ease;
  display: inline-block;
}

.overlay-content a:hover {
  color: #ff0000 !important;
  transform: translateY(-2px); 
}

.overlay-content p {
  font-size: 12px;
  white-space: normal;
  word-wrap: break-word;
  margin-bottom: 0.5rem;
}

/* Icon Badge */
.icon-badge {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: #ff0000 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================
   Responsive Adjustments
============================ */
@media (max-width: 1024px) {
  .industry-card {
    height: auto;
  }

  .industry-card .card-img {
    max-height: 250px;
  }

  .overlay-card {
    padding: 0.8rem;
  }

  .overlay-content h5 {
    font-size: 15px;
  }

  .overlay-content a {
    font-size: 12px;
  }

  .overlay-content p {
    font-size: 11px;
  }

  .icon-badge {
    width: 45px;
    height: 45px;
  }
  /* Badge */
.who-badge {

  font-size: 0.6rem;
  
}

}

@media (max-width: 576px) {
  .industry-card .card-img {
    max-height: 200px;
  }

  .overlay-content h5 {
    font-size: 14px;
  }

  .overlay-content a {
    font-size: 11px;
  }

  .overlay-content p {
    font-size: 10px;
  }

  .icon-badge {
    width: 40px;
    height: 40px;
  }
}







/* Full Section Background */
.why-choose-us {
  position: relative;
  background: url("../images/why-choose-us/why-choose-us-section-bg.webp") 
              center center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: stretch;  /* left & right equal height */
  overflow: hidden;
}

/* Dark overlay */
.why-choose-us .bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* optional dark effect */
  z-index: 1;
}

/* Ensure container is above overlay */
.why-choose-us .container {
  position: relative;
  z-index: 2;
}

.video-col {
  padding: 0;
  display: flex;
}
.video-col .ratio {
  flex: 1;
}
.video-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* Play Button Style */
.play-btn {
  width: 70px;
  height: 70px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.play-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

/* Right Content Column */
.why-choose-us .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center; /* center vertically */
  padding: 80px !important;           /* section spacing */
  text-align: left;
  z-index: 2;
}

/* Right Content Column (default mobile-first) */
.why-choose-us .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical center */
  padding: 30px !important;             /* smaller padding for mobile */
  text-align: left;
  z-index: 2;
}

/* Prevent badge from stretching full width */
.why-choose-us .content-col .badge {
  align-self: flex-start; /* shrink to content */
  display: inline-block;  /* keeps inline size */
  background-color: #FFE785;
    padding: 0.35rem 0.75rem !important;
    border-radius: 0.25rem;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    font-family: "Inter", sans-serif !important;
    color: #000000;
}

/* Paragraph Limit */
.paragraph-limited {
  max-width: 400px;
  font-size: 16px;
}

/* Feature icons */
.feature-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}



/* Tablet and above */
@media (min-width: 768px) {
  .why-choose-us .content-col {
    padding: 60px !important;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .why-choose-us .content-col {
    padding: 80px;
  }
}


 






.case-studies {
      background: linear-gradient(135deg, #10001D, #110A16);
  padding: 80px 20px; /* responsive padding */
}

.case-studies .learn-link {
  color: #FFE785;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  position: relative;        /* needed for pseudo-element */
  padding-bottom: 2px;
  transition: color 0.3s ease;
  font-size: 1rem;           /* base font size */
}

.case-studies .learn-link .small-arrow {
  font-size: 1.2rem;
  margin-left: 4px;
  display: inline-block;
  vertical-align: middle;
  transform: translateX(4px) rotate(-30deg);
  transition: transform 0.3s ease;
}

/* Add animated underline */
.case-studies .learn-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;                   /* start hidden */
  background-color: #fff;
  transition: width 0.3s ease; /* animate width */
}

/* Hover effects */
.case-studies .learn-link:hover {
  color: #fff;
}

.case-studies .learn-link:hover::after {
  width: 100%;                /* expand underline on hover */
}
.case-studies .study-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFE785 !important;  /* matches your link color */
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .case-studies .study-title {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .case-studies .study-title {
    font-size: 0.95rem;
  }
}

/* ======================== */
/* Responsive Adjustments */
/* ======================== */
@media (max-width: 1200px) {
  .case-studies {
    padding: 35px 20px;
  }
  .case-studies .learn-link {
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .case-studies {
    padding: 30px 15px;
  }
  .case-studies .learn-link {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .case-studies {
    padding: 25px 15px;
  }
  .case-studies .learn-link {
    font-size: 0.85rem;
  }
  .case-studies .learn-link .small-arrow {
    font-size: 1rem;
    transform: translateX(3px) rotate(-30deg);
  }
}

@media (max-width: 576px) {
  .case-studies {
    padding: 20px 10px;
  }
  .case-studies .learn-link {
    font-size: 0.8rem;
  }
  .case-studies .learn-link .small-arrow {
    font-size: 0.95rem;
    transform: translateX(2px) rotate(-30deg);
  }
}

.fashion-beneficiaries {
  padding: 3rem 0; /* py-5 equivalent */
  background-color: #fdf5ff69;
}


.fashion-beneficiaries p {
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px; /* limit paragraph width for readability */
  margin: 0 auto 1.5rem auto; /* center and spacing */
}

.fashion-beneficiaries ul {
  padding-left: 0;
  list-style: none;
}
.fashion-beneficiaries a{
  text-decoration: none;
  border-bottom: 1px dotted #ff0000;
  color: #ff0000;
}
.fashion-beneficiaries ul li {
  display: flex;           /* icon + text flex row */
  align-items: flex-start; /* icon aligns to top of text */
  gap: 0.5rem;  
  font-family: "Inter", sans-serif !important;           /* space between icon and text */
  margin-bottom: 0.75rem;  /* spacing between items */
  font-size: 15px;
  color: #222222;
}

.fashion-beneficiaries i {
     font-size: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.4rem;
    color: #ff0000;        /* red icon color */
}

@media (max-width: 767px) {
  .fashion-beneficiaries p {
    max-width: 100%; /* full width on small screens */
  }
}









.fashion-beneficiaries-banner ul {
  padding-left: 0;
  list-style: none;
}
.fashion-beneficiaries-banner a{
  text-decoration: none;
  border-bottom: 1px dotted #ff0000;
  color: #ff0000;
}
.fashion-beneficiaries-banner ul li {
  display: flex;           /* icon + text flex row */
  align-items: flex-start; /* icon aligns to top of text */
  gap: 0.5rem;  
  font-family: "Inter", sans-serif !important;           /* space between icon and text */
  margin-bottom: 0.75rem;  /* spacing between items */
  font-size: 15px;
  color: #222222;
}

.fashion-beneficiaries-banner i {
     font-size: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.4rem;
    color: #ff0000;        /* red icon color */
}



   /* ---------- Base Section ---------- */
.testmonial-section {
  background: #ffffff;
  padding: 120px 0;
  overflow: hidden;
}

/* ---------- Testimonial Container ---------- */
.testimonial-container {
  background: linear-gradient(
    180deg,
    #f8f6fe 0%,
    #f9f3fb 39%,
    #f6e8f7 68%,
    #e6dffb 100%
  );
  border-radius: 25px;
  padding: 40px 30px 87px;
  position: relative;
  overflow: hidden;
}

/* ---------- Swiper Slide ---------- */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 320px;
  height: 300px;
}

/* ---------- Testimonial Card ---------- */
.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* ---------- Inner Full Card ---------- */
.full-card {
  background-color: #fbfafe;
  border-radius: 8px;
  border: 1px solid #88868d2d;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  overflow: hidden; /* ✅ remove scroll */
}

/* ---------- Header ---------- */
.testimonial-header {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px dotted #c1bbda;
}

.testimonial-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #4b2da5;
}

.testimonial-header small {
  display: block;
  font-size: 13px;
  color: #777;
  margin-top: 3px;
}

/* ---------- Paragraph ---------- */
.testimonial-card p {
  font-size: 14px;
  margin: 0;
  color: #444;
  line-height: 1.6;
  overflow-wrap: break-word;
}

/* ---------- Swiper Controls ---------- */
.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 20px;
  left: 35%;
  width: 35%;
  padding: 0 40px;

}

.swiper-pagination {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  gap: 8px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #6c63ff;
  font-size: 20px;
  flex-shrink: 0;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: none;
  border-radius: 0;
  position: relative;
  margin: 0 4px;
}

/* ---------- Bullets ---------- */
.swiper-pagination-bullet::after {
  content: "✦";
  font-size: 25px;
  color: #a190c3;
  display: block;
  font-weight: 900;
  text-align: center;
  line-height: 1;
  transform: scale(1.2) rotate(90deg);
  transition: color 0.3s ease;
}

.swiper-pagination-bullet-active::after {
  color: #ff0000;
  animation: light-rotate 1.5s linear infinite;
}

/* ---------- Arrow Controls ---------- */
.swiper-controls .fa-arrow-left,
.swiper-controls .fa-arrow-right {
  font-size: 20px;
  color: #a190c3;
  cursor: pointer;
}

/* ---------- Responsive ---------- */

/* Medium screens */
@media (max-width: 1200px) {
  .swiper-slide {
    width: 280px;
    height: 280px;
  }
  .swiper-controls .fa-arrow-left,
  .swiper-controls .fa-arrow-right {
    display: none;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .swiper-slide {
    width: 250px;
    height: auto;
  }

  /* ✅ Keep gradient visible */
  .testimonial-container {
    background: linear-gradient(
      180deg,
      #F8F6FE 0%,
      #F9F3FB 39%,
      #F6E8F7 68%,
      #E6DFFB 100%
    ) !important;
    border-radius: 25px;
    box-shadow: none !important;
    padding: 40px 25px 60px;
  }

  /* ✅ Remove inner scroll but keep clean white cards */
  .testimonial-card {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 15px !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    height: auto !important;
    overflow: visible !important;
    padding: 15px;
  }

  /* ✅ Remove inner full-card scroll but keep spacing */
  .full-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    height: auto !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  /* ✅ Section background stays smooth */
  .testmonial-section {
    background: #f9f9ff !important;
  }

  .swiper-controls {
    bottom: 10px;
    left: 0;
    width: 100%;
    padding: 0 20px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .swiper-slide {
    width: 90%;
    height: auto;
  }

  .testimonial-container {
    padding: 30px 15px 50px;
  }
}

/* Small Mobiles */
@media (max-width: 576px) {
  .testimonial-card p {
    font-size: 13px;
  }

  .testimonial-header h4 {
    font-size: 14px;
  }

  .testimonial-header small {
    font-size: 12px;
  }

  .swiper-controls {
    left: 5%;
    width: 90%;
    padding: 0 10px;
  }

  .swiper-pagination-bullet::after {
    font-size: 20px;
  }
}










/* ======================= */
/* FAQ Section & Background */
/* ======================= */
.faq-section {
      background: linear-gradient(135deg, #10001D, #110A16);
  background-size: cover;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffff;
}
.faq-section p{
  color: #ffff;
}
.faq-section li{
  color: #ffff;
}
.faq-section .accordion-body{
  color: white;
}

/* ======================= */
/* FAQ Tabs Grid */
/* ======================= */
.faq-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  justify-content: center;
  padding: 0;
  list-style: none;
}

.faq-tabs .nav-item {
  width: 100%;
}

.faq-tabs .nav-link {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 15px;
  height: 65px;
  width: 100%;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  transition: 0.3s;
  text-align: left;
  overflow: hidden;
  color: #ffff;
  margin: 0 auto;
}

.faq-tabs .nav-link img.tab-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.faq-tabs .nav-link span {
  display: block;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.faq-tabs .nav-link:hover {
  border: 2px solid #ff0000;
  background-color: #FFFFFF;
  color: #222222;
}

/* ======================= */
/* Tab Content / Accordion */
/* ======================= */
.tab-content {
  margin-top: 30px;
}

.faq-section .accordion-button,
.faq-section .accordion-button:not(.collapsed) {
  background: none !important;
  box-shadow: none !important;
  font-size: 16px;
  font-weight: 500;
  padding-left: 15px;
  font-family: "Inter", sans-serif !important;
}

.faq-section .accordion-body {
  background: none !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 500;
  font-size: 14px;
}
.faq-section  a{
  color: #ff0000;
  text-decoration: none;
  border-bottom: 1px dotted #ff0000;
}

.faq-section .accordion-body ul {
    margin: 0 0 0.5rem 1.2rem; /* adjust bottom spacing and left padding */
    padding: 0;
}
.faq-section .accordion-body li {
    margin-bottom: 0.25rem; /* spacing between bullet points */
}

.faq-section .accordion-item {
  background: none;
  border: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none !important;
}
/* Active/Clicked Header turns red */
.faq-section .accordion-button:not(.collapsed) {
  color: #ff0000 !important;
  font-weight:600;
}
/* Custom Accordion Arrow only inside FAQ */
.faq-section .accordion-button::after {
  background-image: none !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078"; /* fa-chevron-down */
  font-size: 0.75rem;
  color: #fff;
  transition: transform 0.3s;
}
.accordion-button{
  color: #fff;
}

.faq-section .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* ======================= */
/* Contact Box Styling */
/* ======================= */
.contact-box {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  padding: 30px;
}

.contact-box h4 {
  margin-bottom: 20px;
  font-weight: 600;
}

/* 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;
}

.contact-box input::placeholder,
.contact-box textarea::placeholder {
  font-size: 14px;
  color: #878493;
  opacity: 1;
}
/* Style the select box like inputs */
.contact-box select.form-select {
    background-color: #FFFFFF !important;
    border: 1px solid #CCCCCC !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    color: #222222;
    font-family: "Inter", sans-serif !important;
    border-radius: 6px;
   font-size: 14px;
    appearance: none; /* remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

/* Select “placeholder” (first disabled option) */
.contact-box select.form-select option:first-child {
  font-size: 14px;
  color: #878493;
}

/* All other options styling */
.contact-box select.form-select option {
    color: #222222;
    font-size: 14px;
}

.form-control {
  background-color: #FFFFFF !important;
  border: 1px solid #CCCCCC !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  color: #222222;
  font-family: "Inter", sans-serif !important;
  border-radius: 6px;
}
.form-select {
    background-color: #FFFFFF !important;
    border: 1px solid #CCCCCC !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    color: #222222;
    font-family: "Inter", sans-serif !important;
    border-radius: 6px;
   
}


.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: #000;             /* 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)    */
/* ======================= */
.faq-card {
  background: #f9f9ff;
  border-radius: 10px;
  border: 1px solid #eee;
  padding: 20px;
  transition: 0.3s ease;
  height: 100%;
}

.faq-card:hover {
  background: #f0f4ff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-icon {
  font-size: 22px;
  color: #6c63ff;
  margin-right: 10px;
  flex-shrink: 0;
}

.faq-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.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: #ff0000;
  border: none;
  color: white;
}
.contact-box .form-label{
  color: white;
}

.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);
  }
}


/* ======================= */
/* Responsive Media Queries */
/* ======================= */

/* Tabs stack on tablet */
@media (max-width: 992px) {
  .faq-tabs {
    grid-template-columns: 1fr;
  }

  .faq-section .row.g-5 {
    flex-direction: column;
  }

  .faq-section .col-lg-7,
  .faq-section .col-lg-5 {
    max-width: 100%;
  }

  .contact-box {
    margin-top: 30px;
  }
}

/* Smaller screens adjustments */
@media (max-width: 576px) {
  .faq-tabs .nav-link {
    height: auto;
    padding: 12px;
    font-size: 14px;
    gap: 12px;
  }

  .faq-tabs .nav-link img.tab-icon {
    width: 24px;
    height: 24px;
  }

  .faq-section .accordion-button {
    font-size: 14px;
    padding: 10px;
  }

  .faq-section .accordion-body {
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-box .form-control {
    font-size: 14px;
  }

  .bt-dark1 {
    font-size: 14px;
    padding: 10px;
  }
}










 
 
/* =======================
   Footer Map
======================= */
.map-footer {
  background-color: #F4F8FB;
  padding: 80px 0 0;
  font-size: 14px;
  color: #6B7280;
}
 
 
.map-footer p {
  color: #6B7280;
  font-size: 15px;
  line-height: 1.7;
}
 
.map-footer-logo img {
  max-width: 200px;
  margin-bottom: 10px;
}
 
.map-footer-heading {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}
 
.map-footer-link {
  font-weight: 400;
  text-decoration: none;
  color: #6B7280;
  display: block;          
  line-height: 26px;
  position: relative;
  transition: color 0.3s ease;
  width: fit-content;       /* underline matches text length */
  margin-bottom: 7px;      
}
 
 
/* underline effect */
.map-footer-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #FF0000;
  transition: width 0.3s ease;
}
 
.map-footer-link:hover {
  color: #FF0000;
}
.map-footer-link:hover::after {
  width: 100%;
}
 
.map-footer-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
 
.map-footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 40px;
  height: 40px;
  color: #A2A2A2;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}
 
.map-footer-social-icons a:hover {
  color: #FF0000;
  /* transform: translateY(-2px); */
}
 
.map-footer-social-icons a i {
  font-size: 22px;
}
 
.map-footer-certifications img {
  max-height: 70px;
  margin-right: 16px;
}
 
.footer-bottom {
  background-color: #111;
  color: #fff;
}
 
.footer-bottom p {
  margin: 0;
  font-size: 14px;
}
 
.footer-bottom a {
  position: relative;
  display: inline-block;
  color: #1a73e8;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-bottom a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #FF0000;
  transition: width 0.3s ease;
}
 
.footer-bottom a:hover {
  color: #FF0000;
}
.footer-bottom a:hover::after {
  width: 100%;
}
 
 





/* ============  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: 48px;
  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;
  font-family: "Inter", sans-serif !important;
}

/* 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, #ff0000); /* 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: 48px;
  }
}

/* ---------- 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: 42px;
  }
   .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: 32px;
  }
    .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;
  }
}





/* ==============================
   Stats Counter Section Styling
   ============================== */

/* Container (wraps all counters) */
.stats-container {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  box-shadow: 0 0 0 1px #E8E6F0 inset;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}

/* Individual counter item */
.stats-item {
  text-align: center;
  flex: 1 1 22%;
  max-width: 22%;
  padding: 0 0.5rem;
  position: relative;
  box-sizing: border-box;
}
.counter-para  a{
  text-decoration: none;
  border-bottom: 1px dotted #ff0000;
  color: #ff0000;
}
/* Label above number */
.stats-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  background: #F4F3F8;
  color: #000;
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif !important;
  white-space: nowrap;
}

/* Counter number */
.stats-item h3 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  color: #3b1f92;
  font-family: "Bricolage Grotesque";
}

/* Divider between counters */
.stats-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background: #E8E6F0;
}

/* ==============================
   Responsive Adjustments
   ============================== */

/* Tablet screens (below 1024px behaves like d-col-md-6) */
@media (max-width: 1024px) {
  .stats-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  /* Counter number */
.stats-item h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  color: #3b1f92;
  font-family: "Bricolage Grotesque";
}

  .stats-item {
    flex: 1 1 45%;   /* two items per row */
    max-width: 45%;
    margin-bottom: 1.5rem;
  }

  .stats-item:not(:last-child)::after {
    display: none;
  }
}

/* Mobile screens (below 768px = d-col-12) */
@media (max-width: 767px) {
  .stats-container {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .stats-item {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .stats-item:not(:last-child)::after {
    display: none;
  }
}
/* Tablet screens (below 1024px behaves like d-col-md-6) */
@media (max-width: 1240px) {
 /* Counter number */
.stats-item h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  color: #3b1f92;
  font-family: "Bricolage Grotesque";
}

}











/* Section background */
/* Section background */
.process-section {
  background: radial-gradient(circle at center, #FFFFFF, #F7EBFF);
  padding: 60px 0;  /* top & bottom padding */

}



/* Card styling */
.process-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 20px;
  height: 100%;
  
}



/* Card text */
.process-card h6 {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 14px;
  color: #6c757d;
}







  /* Section styles */
    .features-section {
    
      padding: 80px 0;      /* top and bottom spacing */
    }
    .features-header {
      text-align: center;
      margin-bottom: 50px;
    }
    .features-header h6 {
      background: #ffeb3b;
      display: inline-block;
      padding: 4px 12px;
      border-radius: 4px;
      font-weight: bold;
    }
    .features-header h2 {
      font-weight: 700;
      margin-top: 15px;
    }
    .features-header p {
      color: #000000;
      font-size: 16px;
    }
    .features-header p a {
    color: #ff0000; /* link color */
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px dotted #ff0000; /* dotted border */
    padding: 2px 4px; /* optional spacing inside border */
    border-radius: 2px; /* optional rounded corners */
}

   .feature-box {
  background: #fff;
  border-radius: 8px;
  padding:25px;
  box-shadow: 3px 2px 10px 0 rgba(13, 13, 13, 0.05); /* ✅ custom shadow */
  height: 100%;
  transition: transform 0.2s;
}

    .feature-box h3 a{
      text-decoration: none;
      color: #000000;
      border-bottom: 1px dotted #000000;
    }
      .feature-box h3 a:hover{
     text-decoration: none;
      color: #000000;
      border-bottom: 1px dotted #ff0000;
    }
     .features-section p a{
      text-decoration: none;
      color: #ff0000;
      border-bottom: 1px dotted #ff0000;
    }
      .features-section p a:hover{
     text-decoration: none;
      color: #000000;
      border-bottom: 1px dotted #ff0000;
    }
  .feature-icon img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px; /* already here */
}
.feature-icon-img{
    width: 80px;
  height: auto;
  margin-bottom: 15px; /* already here */
}
/* Add extra spacing between icon and heading */
.feature-box h3 {
  font-weight: 600;
  font-size: 18px;
  margin: 45px 0 10px; /* ⬅ top margin added */
}

    .feature-box p {
      font-size: 14px;
      color: #000000;
      text-align: justify;
    }
    /* underline links */
    .feature-box p a {
     color: #ff0000; /* link color */
    text-decoration:none;
    transition: color 0.3s ease;
    border-bottom: 1px dotted #ff0000; /* dotted border */
    padding: 2px 4px; /* optional spacing inside border */
    border-radius: 2px; /* optional rounded corners */
    }










/* Project Section */
.px-project-section {
  background: linear-gradient(135deg, #10001D, #110A16);
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}

/* Portfolio images */
.px-portfolio-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 3px 2px 10px rgba(13,13,13,0.05);
  z-index: 9999;
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.px-portfolio-card img {
  display: block;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.px-portfolio-card:hover img {
  transform: scale(1.05);
}

.px-portfolio-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255,0,0,0.65);
  color: #fff;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* Switch Buttons */
.px-switch-button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #fff;
  color: #ff0000;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

/* Lightbox */
.px-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.px-lightbox-img {
  max-width: 90%;
  max-height: 90%;
  animation: zoomIn 0.3s ease;
  border-radius: none !important; /* Remove rounded corners */
}
/* Remove this if you won’t use badges anymore */
.px-portfolio-badge {
  display: none;
}


@keyframes zoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.px-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.px-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 50px;
  cursor: pointer;
}

.px-prev { left: 30px; }
.px-next { right: 30px; }
.px-benefit-card h5 a {
    color: #fff; /* note: use #fff instead of #ffff */
    text-decoration:none;
    transition: color 0.3s ease;
    border-bottom: 1px dotted #fff; /* dotted border */
    padding: 2px 4px; /* optional: gives space between text and border */
    border-radius: 2px; /* optional: slightly rounded corners */
}
.px-benefit-card p a{
   color: #fff; /* note: use #fff instead of #ffff */
    text-decoration:none;
    transition: color 0.3s ease;
    border-bottom: 1px dotted #fff; /* dotted border */
    padding: 2px 4px; /* optional: gives space between text and border */
    border-radius: 2px; /* optional: slightly rounded corners */
    font-weight: 600;
}
.px-project-section p a{
  text-decoration: none;
  border-bottom: 1px dotted #fff;
  color: white;
}

.px-benefit-card h5 a:hover {
  border-bottom: 1px dotted #fff; /* dotted border */
  color: #a21c1c;             /* darker red on hover */
}


.px-switch-top {
  top: 30%;
  z-index: 9999;
}

.px-switch-bottom {
  top: 48%;
  z-index: 9999;
}

/* Medium screens: tablets */
@media (max-width: 992px) {
  .px-switch-top {
    top: 40%;        /* lower for better visibility */
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .px-switch-bottom {
    top: 55%;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* Small screens: mobile */
@media (max-width: 798px) {
    .px-switch-top {
        top: 45%;
        left: 34%;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

  .px-switch-bottom {
    top: 45%;
    bottom: 34px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* Benefit Cards */
.px-benefit-card {
  background: linear-gradient(180deg, #290055, #10011D);
  border-radius: 12px;
  padding: 30px 20px;
  
  box-shadow: 3px 2px 10px rgba(0,0,0,0.3);
}

.px-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 3px 6px 20px rgba(0,0,0,0.5);
}

.px-benefit-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.px-benefit-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.897);
}

.px-benefit-icon {
  width: 60px;
}

.px-section-header {
  text-align: center;
}

.px-section-subtext {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  color: white;
  font-size: 14px;
}
.px-section-subtext a {
    color: #fff; /* text color */
    text-decoration:none;
    transition: color 0.3s ease;
    border-bottom: 1px dotted #fff; /* dotted border */
    padding: 2px 4px; /* optional spacing inside border */
    border-radius: 2px; /* optional rounded corners */
}


/* Center Circle */
.px-center-circle {
  position: absolute;
  top: -20%;
  left: 40%;
  width: 300px;
  height: 300px;
  z-index: 5;
}

.px-center-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Red Buttons */
.btn-red {
  background-color: #ff0000;
  color: #fff;
  border: none;
}

.btn-red:hover {
  background-color: white;
  color: #000;
}

/* Left images margin for desktop */
.left-margin-desktop {
  margin-left: 110px; /* margin for desktop left images */
}

/* Mobile adjustments: full-width left images */
@media (max-width: 767.98px) {
  .left-margin-desktop {
    margin-left: 0; /* touch body edges */
  }
}






   .pricing-name-card {
     
      color: #1a1a1a;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 50px 20px;
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .pricing-header h2 {
      font-size: 34px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .pricing-header p {
      color: #555;
      font-size: 1rem;
    }

    .pricing-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .pricing-card {
      background: #fdf5ff86;
      border-radius: 12px;
      padding: 30px;
          width: 300px;
      box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: transform 0.3s ease;
    }


    .pricing-card.highlight {
      background: #3b0d57;
      color: white;
      position: relative;
    }

    .pricing-card .badge {
      font-size: 0.75rem;
      font-weight: 600;
      padding: 8px 10px;
      border-radius: 5px;
      background: #FFE785;
      color: #000000;
      align-self: flex-start;
    }

    .pricing-card.highlight .badge {
      background: #FFE785;
      color: #1a1a1a;
    }

    .pricing-card h3 {
      font-size: 1.5rem;
      margin-bottom: 5px;
      font-weight: 600;
    }

    .pricing-card p {
      color: inherit;
    }

    .feature-list {
      list-style: none;
      padding-left: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .feature-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
    }

    .feature-list li i {
      font-size: 16px;
    }

    /* Yes features */
    .feature-yes i {
      color: #00c853;
    }

    /* No features */
    .feature-no i {
      color: #999;
    }

    /* Highlight yes features */
    .pricing-card.highlight .feature-yes i {
      color: #00ff9f;
    }

    .price-btn {
      margin-top: 20px;
      text-align: center;
    }

    .price-btn button {
      padding: 10px 20px;
      border: none;
      border-radius: 8px;
      background: #707070;
      color: white;
      font-weight: 600;
      cursor: pointer;
      width: 100%;
      transition: background 0.3s;
    }

    .price-btn button:hover {
      background: #ff0000;
      color: white;
    }

    .pricing-card.highlight .price-btn button {
      background: #ff1c1c;
    }

    .pricing-card.highlight .price-btn button:hover {
      background: white;
      color: #ff0000;
    }

 /* Tablet: 2 per row */
@media (max-width: 991px) {
  .pricing-card {
    width: 45%;
  }
}

/* Mobile: 1 per row */
@media (max-width: 600px) {
  .pricing-card {
    width: 100%;
  }
}





.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 20px 0;
 
}

.marquee-track {
  display: inline-block;
  /* Duplicate logos to make continuous scroll */
  animation: scroll 10s linear infinite; /* slower scroll */
}

.marquee-track img {
  display: inline-block;
  margin: 0 30px;
           /* change height as needed */
  max-height: 80px;      /* prevent oversized images */
  object-fit: contain;   /* keep aspect ratio */
  filter: grayscale(0.1);
  transition: transform 0.3s;
}


.marquee-track img:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* half-width for smooth loop */
}








  .unique-card {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 8px;
  
  height: 100%;          /* stretch to match tallest sibling */
}
.unique-card-page{
  background-color: #f9f9ff;
  padding: 60px;
}

.unique-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;          /* fills remaining space so buttons align */
}
.unique-card-title a.unique-card-link {
  color: #050051;                  /* title color */
  text-decoration: none;           /* remove default underline */
  border-bottom: 1px dotted #050051; /* dotted underline effect */
  padding-bottom: 2px;             /* space between text and border */
  transition: border-color 0.3s;
}

.unique-card-title a.unique-card-link:hover {
  border-color: #ff0000;           /* change dotted color on hover */
}
.unique-card-body a{
  color: #ff0000;                  /* title color */
  text-decoration: none;           /* remove default underline */
  border-bottom: 1px dotted #ff0000; /* dotted underline effect */
  padding-bottom: 2px;             /* space between text and border */
  transition: border-color 0.3s;
}
.unique-card-video {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.unique-card-video video {
  width: 100%;
  height: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  object-fit: cover;
  transition: transform 0.4s ease;
}


.unique-card-video:hover video {
  transform: scale(1.05);
}




.video-object-schema span[itemprop="description"],
.video-object-schema span[itemprop="name"] {
  display: none !important;
  visibility: hidden;
}


  

    .unique-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  
  border-bottom-left-radius: 0 !important;   /* Keeps bottom corners square */
  border-bottom-right-radius: 0;
}
.unique-card-img-first{

   width: 100%;
  height: 280px;
  object-fit: cover;
  
  border-bottom-left-radius: 0 !important;   /* Keeps bottom corners square */
  border-bottom-right-radius: 0;
}

 
    .unique-card-title {
      font-size: 18px;
      margin-bottom: 10px;
      color: #002060;
      font-weight: 600;
    }

    .unique-card-text {
      font-size: 14px;
      margin-bottom: 15px;
      color: #222;
      flex-grow: 1;
      text-align: justify;
    }

    .unique-btn {
      padding: 6px 14px;
      border: 1px solid #ccc;
      background: #fff;
      color: #333;
      font-size: 14px;
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s;
      align-self: flex-start;
    }

    .unique-btn:hover {
      background: #ff0000;
      color: #fff;
      border-color: #ff0000;
    }
    .unique-card-page p a{
      text-decoration: none;
      border-bottom: 1px dotted #ff0000;
      color: #ff0000;

    }

    .unique-btn-red {
      background: #ff0000;
      color: #fff;
      border-color: #ff0000;
    }

    .unique-btn-red:hover {
      background: darkred;
      border-color: darkred;
    }

    /* Constrain paragraph width and center it */
.paragraph-text {
  max-width: 700px;  /* adjust as needed */
  text-align: justify;
  text-align: center;  /* optional: keep justified text */
}
/* Medium screens */
@media (max-width: 991px) {
    .unique-card-page {
        padding: 30px;
    }
    .unique-card-img-first{

   width: 100%;
  height: 200px;
  object-fit: cover;
  
  border-bottom-left-radius: 0 !important;   /* Keeps bottom corners square */
  border-bottom-right-radius: 0;
}

}

/* Small screens */
@media (max-width: 767px) {
    .unique-card-page {
        padding: 20px;
    }
    .client-heading {
    font-size: 25px;
    line-height: 1.2;
}

}

/* Extra small screens */
@media (max-width: 480px) {
    .unique-card-page {
        padding: 15px;
    }
    
}





/* Section background */
.photo-section {
  background-color: #f0f2f8;  /* your desired color */
  position: relative;
  padding: 60px;
}

/* Tilted Card Container */
.tilted-cards {
  display: flex;
   margin-bottom: 20px;
  justify-content: center;
  gap: 20px;
             /* space between cards */
}

/* Individual Card */
.tilted-card {
  background: #fff;
  flex: 1 1 220px;      /* grow/shrink, min width 220px */
  max-width: 250px;      /* optional max width */
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.075);
  cursor: pointer;
  text-align: center;
  
  transition: transform 0.4s, box-shadow 0.4s;
}

.tilted-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}



.tilted-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.tilted-card p {
  font-size: 0.85rem;
  color: #555;
  margin: 0;
}
.tilted-card a{
  text-decoration: none;
  border-bottom: 1px dotted #ff0000;
  color: #ff0000;
}

@media (max-width: 768px) {
  .tilted-cards {
    display: flex;          /* keep flex */
    flex-wrap: wrap;        /* allow wrapping */
    justify-content: center;
    gap: 20px;              /* now gap works */
  }
  .tilted-card {
    flex: 1 1 45%;          /* 2 cards per row */
  }
}







/* ---------- Base Section ---------- */
.casestudies-section {
  padding: 60px 0;
}

.casestudies-row {
  display: flex;
  gap: 2rem;
  position: relative;
}

/* ---------- Left Side (Before/After Images) ---------- */
.casestudies-content {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
}

.casestudies-content .card {
  position: sticky;
  top: 20px;
  margin-top: -20px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.casestudies-content .card + .card {
  margin-top: 30px;
}

/* ---------- Right Side (Sticky Cards with Text) ---------- */
.casestudies-img-wrapper {
  flex: 1;
  position: relative;
}

.sticky-card {
  position: sticky;
  top: 20px;
  margin-top: -20px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.sticky-card + .sticky-card {
  margin-top: 30px;
}

/* ---------- Remove Borders and Shadows ---------- */
.casestudies-content .card,
.casestudies-content .card img,
.sticky-card {
  border: none !important;
  box-shadow: none !important;
}

/* ---------- Sticky Card Typography ---------- */
.sticky-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.sticky-card h3 a {
  text-decoration: none;
  color: #000000;
  border-bottom: 1px dotted #000;
}

.sticky-card h3 a:hover {
  color: #ff0000;
  border-bottom: 1px dotted #ff0000;
}
.sticky-card a {
  text-decoration: none;
  color: #ff0000;
  border-bottom: 1px dotted #ff0000;
}

.sticky-card h3 a:hover {
  color: #ff0000;
  border-bottom: 1px dotted #ff0000;
}

/* ---------- Buttons ---------- */
.service-buttons {
  margin-top: 30px;
  margin-bottom: 30px;
}

.service-buttons a {
  background: #ff0000;
  padding: 10px 24px;
  border-radius: 9px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

.service-buttons a:hover {
  background: #2c3238;
}

/* ---------- Lists ---------- */
.sticky-card ul.bullets li {
  margin-bottom: 0.75rem;
  font-family: "Inter", sans-serif !important;
  
}

.sticky-card p {
  margin-bottom: 1rem;
}

.sticky-card ul.bullets {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 0.5rem;
}

/* ---------- Image Sizes ---------- */
.casestudies-content .card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* ---------- Responsive (Medium Screens) ---------- */
@media (max-width: 1024px) {
  .casestudies-content .card img {
    height: 400px !important;
  }
}

/* ---------- Responsive (Mobile Screens) ---------- */
@media (max-width: 768px) {
  .casestudies-row {
    flex-direction: column;
  }

  .casestudies-img-wrapper,
  .casestudies-content {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .sticky-card,
  .casestudies-content .card {
    position: relative;
    top: auto;
    margin-top: 20px;
  }

  .casestudies-img-wrapper {
    margin-bottom: 20px;
  }

  .casestudies-content .card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

.before-after-slider {
  position: relative;
  width: 100%;
  height: 360px; /* default desktop height */
  overflow: hidden;
  border-radius: 10px;
}

/* Before image */
.before-after-slider img.before {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Track overlay */
.track-overlay {
  position: absolute;
  top: 0; 
  left: 0;
  width: 50%; /* default 50% */
  height: 100%;
  background: #00000034;
  pointer-events: none;
  z-index: 2;
}

/* Slider handle */
.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px; height: 30px;
  background: #ffdd57;
  border-radius: 50%;
  border: 2px solid #000;
  transform: translate(-50%, -50%);
  cursor: grab;
  z-index: 4;
}

/* ===========================
   Responsive for smaller screens
   =========================== */
@media (max-width: 1024px) {
  .before-after-slider {
    height: 300px; /* reduce height for tablets */
  }
}

@media (max-width: 768px) {
  .before-after-slider {
    height: auto;
    aspect-ratio: 4 / 3; /* maintain aspect ratio */
  }

  /* Optional: hide handle for very small screens */
  .slider-handle {
    width: 20px;
    height: 20px;
  }
}















/* ============ ABOUT US HERO SECTION ============ */
.aboutus-hero-section {
  position: relative;
  overflow: hidden;
  background-color: #FFF5F5;
}

/* ---------- Top Gradient Banner with HTML images ---------- */
.aboutus-top {
  position: relative;
  padding: 8% 20px 20%; /* responsive top and bottom padding */
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.aboutus-top img.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.aboutus-top::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
}

.aboutus-top .container {
  position: relative;
  z-index: 2;
}

.aboutus-top h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.aboutus-top p {
  max-width: 850px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 auto;
}

/* ---------- Floating White Card ---------- */
.aboutus-card-wrapper {
  position: relative;
  margin-top: -15%; /* responsive negative margin */
  z-index: 5;
}

.aboutus-card {
  background: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  overflow: hidden;
 
}

/* ---------- Left image Column ---------- */
.aboutus-image-column {
  flex: 1 1 50%;
  position: relative;
  background: url('../images/banner/Hero-Section.png') center center / cover no-repeat;
  min-height: 500px;
  height: 100%;
  display: block; /* ensure visible on large screens */
}




/* ---------- Card Content Column ---------- */
.aboutus-card-content {
  flex: 1 1 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aboutus-card p {
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}

.aboutus-card .btn-danger {
  background-color: #ff0000;
  border: none;
  transition: all 0.3s ease;
  margin-top: 20px;
  color: #fff;
}

.aboutus-card .btn-danger:hover {
  background-color: #000;
  color: #fff;
}
/* ============ ABOUT US HERO SECTION ============ */
.aboutus-hero-section {
  position: relative;
  overflow: hidden;
  background-color: #FFF5F5;
}

/* ---------- Top Gradient Banner with HTML images ---------- */
.aboutus-top {
  position: relative;
  padding: 8% 20px 20%; /* responsive top and bottom padding */
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.aboutus-top img.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.aboutus-top::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
}

.aboutus-top .container {
  position: relative;
  z-index: 2;
}

.aboutus-top h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}


.aboutus-top p {
  max-width: 850px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 auto;
}

/* ---------- Contact Card Styles ---------- */
.contact-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 30px 20px;

  /* Make all cards equal height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  max-width: 350px;
  flex: 1 1 300px;
  min-height: 320px; /* set minimum height to maintain uniformity */
}

.contact-link {
  display: flex;             /* use flex so icon aligns properly */
  align-items: flex-start;   /* top-align icon with text */
  gap: 8px;                  /* spacing between icon and text */
  font-size: 0.9rem;
  color: #000;               /* set text color to black */
  text-decoration: none;
  word-break: break-word;
   font-family: "Inter", sans-serif !important;
}

.contact-link i {
  color: #9585FF;               /* make the icon black as well */
  flex-shrink: 0;            /* prevent icon from shrinking */
  font-size: 1rem;
  margin-top: 3px;           /* optional, aligns with wrapped text */
}

.contact-link:hover {
  color: #ff0000;            /* change color on hover if needed */
}

.contact-link:hover i {
  color: #ff0000;            /* icon also changes on hover */
}




.contact-card .icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.contact-card h5 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}



/* ---------- Responsive Adjustments ---------- */
@media (max-width: 992px) {
  .aboutus-card-wrapper {
    margin-top: -10%;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .aboutus-card-wrapper {
    margin-top: -8%;
  }
  .contact-card h5 {
    font-size: 1.1rem;
  }
  .contact-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .aboutus-card-wrapper {
    margin-top: -5%;
    gap: 15px;
  }
  .contact-card h5 {
    font-size: 1rem;
  }
  .contact-card p {
    font-size: 0.85rem;
  }
}

/* ---------- Responsive Styles ---------- */

/* ---------- Large Screens ---------- */
@media (min-width: 993px) {
  .aboutus-card {
    flex-direction: row;
  }
  .aboutus-images-column,
  .aboutus-image-column {
    display: block; /* show images on large screens */
    min-height: 450px !important;
  }
}

/* ---------- Medium & Smaller Screens ---------- */
@media (max-width: 992px) {
  .aboutus-card {
    flex-direction: column;
  }

  .aboutus-card-content {
    width: 100%;
    flex: none;
    padding: 20px;
    text-align: center;
  }

  /* hide all image columns on smaller screens */
  .aboutus-images-column,
  .aboutus-image-column {
    display: none;
  }
}

/* Small Screens */
@media (max-width: 768px) {
  .aboutus-card-wrapper {
    margin-top: -10%;
  }

  .aboutus-top h1 {
    font-size: 2rem;
  }
}

/* Extra Small Screens */
@media (max-width: 576px) {
  .aboutus-card-wrapper {
    margin-top: -8%;
  }

  .aboutus-card p {
    font-size: 0.9rem;
  }

  .aboutus-top h1 {
    font-size: 1.6rem;
  }
}














  /* Section styling */
    .lead-tabs-section {
      padding: 110px 0;
      background:#FFF5F5;
    }

    /* Tabs container */
    .lead-tabs-nav {
      justify-content: center;
      border: none;
      background-color: #F6E0E0;
      border-radius: 50px;
      display: inline-flex;
      padding: 4px 15px;
      position: relative;
    }

    .lead-tabs-nav .lead-tab-link {
      border: none;
      color: #19093E;
      border-radius: 50px;
      padding: 10px 45px;
      
      transition: color 0.3s;
      position: relative;
      z-index: 2;
      cursor: pointer;
    }

    .lead-tabs-nav .lead-tab-link.active {
      color: #C90000;
      font-weight: 700;
    }

    .lead-tab-slider {
      position: absolute;
      bottom: 5px;
      left: 0;
      height: calc(100% - 10px);
      width: 0;
      background-color: #fff;
      border-radius: 50px;
      
      z-index: 1;
      transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    }

    /* Tab content container */
    .lead-tab-content-wrapper {
      margin-top: 40px;
    }

    /* Hide inactive tab panes */
    .lead-tab-pane {
      display: none;
    }
    .lead-tab-pane.active {
      display: flex;
    }

    /* Card row */
    .lead-tab-row {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      min-height: 500px;
      height: 100%;
      display: flex;
      align-items: stretch;
      width: 100%;
    }

    /* images side */
    .lead-images-side {
      background-size: cover;
      background-position: center;
      flex: 1;
      height: auto !important;
      min-height: 500px;
      display: flex;
      align-items: stretch;
      position: relative;
    }

    .lead-images-side::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 40%;
    }

    /* Text side */
    .lead-text-side {
      background: rgba(255,255,255,0.95);
      padding: 50px;
      backdrop-filter: blur(3px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: left;
      text-align: justify;
    }

    .lead-highlight-box {
      background-color: #f6f6f6;
      padding: 15px;
      border-radius: 10px;
      font-size: 15px;
      color: #66697F;
      margin-top: 20px;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .lead-tab-row {
        flex-direction: column;
        height: auto;
      }
      .lead-images-side {
        height: 300px !important;
        min-height: 300px;
        order: 1;
      }
      .lead-text-side {
        order: 2;
      }
    }

    @media (max-width: 798px) {
      .lead-tab-row {
        flex-direction: column;
        height: auto;
      }
      .lead-images-side {
        height: 300px !important;
        min-height: 300px;
        order: 1;
      }
      .lead-text-side {
        order: 2;
      }
      .lead-tab-slider {
        display: none;
      }
    }















.legacy-main-section {
  padding: 90px 0;
}


.legacy-info-card {
  background: #fafafa;
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.legacy-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.legacy-info-card img {
  width: 48px;
  margin-bottom: 15px;
}

.legacy-info-card h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.legacy-info-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}






.how-we-work-section {
  padding: 90px 0;
  background: #fff;
}

.work-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.work-step {
  background: #fafafa;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.work-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.step-number {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #C90000;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.work-step h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.work-step p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .work-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .how-we-work-section {
    padding: 50px 0;
  }

  .work-steps {
    grid-template-columns: 1fr;
  }

  .work-step {
    padding: 20px;
  }
}











    .work-section {
      padding: 80px 0;
      text-align: center;
    }


    .work-section p.description {
      color: #000;
      font-size: 0.95rem;
      max-width: 690px;
      margin: 0 auto 50px;
    }

    .work-card {
      background-color: #F6F6F6;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: row;
      align-items: stretch; /* stretch children to equal height */
      transition: box-shadow 0.3s;
      margin-bottom: 30px;
      min-height: 250px; /* adjust based on content */
    }

    .work-card:hover {
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .work-card img {
      width: 45%;

      object-fit: cover; /* cover the container */
      border-radius: 0;
    }

    .work-card-content {
      padding: 25px;
      width: 55%;
      text-align: left;
    }

    .work-card-content h5 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .work-card-content p {
      font-size: 0.9rem;
      color: #555;
      margin-bottom: 15px;
      text-align: justify;
    }

    .work-card-content ul {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .work-card-content ul li {
      font-size: 0.875rem;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
    }

    .work-card-content ul li::before {
      content: "✔";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      background-color: #46FF5B;
      color: #000;
      border-radius: 50%;
      margin-right: 10px;
      font-size: 0.7rem;
      font-weight: bold;
      flex-shrink: 0;
    }

    .work-card-btn-custom {
      font-size: 0.875rem;
      font-weight: 500;
      padding: 8px 20px;
      border-radius: 40px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
    }

  .work-card-btn-red {
  background-color: #A3A3A3; /* default gray */
  color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* smooth animation */
}

.work-card-btn-red:hover {
  background-color: #FF0004; /* bright red on hover */
  color: #fff;
  transform: translateY(-2px); /* slight lift */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* subtle shadow */
}


    .work-card-btn-gray {
      background-color: #FF0004;
      color: #fff;
    }
   


    @media (max-width: 992px) {
  .work-card {
    flex-direction: column;
  }
  .work-card img,
  .work-card-content {
    width: 100%;
  }
 
  .work-card-content a.work-card-btn-custom {
    display: inline-block;
    margin: 0 auto; /* center the button */
  }
}













/* 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: #ff0000;
    }

    .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: #ff0000;
      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: #ff0000;
      transition: width 0.4s ease;
    }

    .keep-reading:hover {
      color: #ff0000;
    }

    .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; }

/* 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 { margin-top: 103px; position: sticky; top: 100px; align-self: flex-start; height: fit-content; padding-left: 60px; }
.sidebar-card img { width: 100%; border-radius: 6px; margin-bottom: 20px; height: 290px; }

/* 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: #FF0000; 
  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: #FF0000;
  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: #ff0000;
  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; }
}






















/* ---------- Floating Icons ---------- */
.floating-contact-icons {
  position: fixed;
  top: 40%;       /* desktop default */
  right: 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: 50px;
  height: 50px;
  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: 24px; z-index: 2; }

/* Label */
.contact-icon .label {
  position: absolute;
  right: 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.whatsapp { background-color: #25d366; color: #fff; }
.contact-icon.email { background-color: #0072c6; color: #fff; }
.contact-icon.phone { background-color: #ff4b2b; 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; }
}

@media (max-width: 768px) {
  .floating-contact-icons {
    display: none;
  }
}








  



/* =================== Section Styling =================== */
.tech-section {
  text-align: center;
  padding: 60px 20px;
}


/* =================== Grid Layout =================== */
.tech-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1400px;
  margin: 0 auto;
}

/* =================== Card Styling =================== */
.tech-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tech-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.tech-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

















   /* ==========================
       SEO Video Section Styling
       ========================== */
    .seo-video-section {
      padding: 80px 0;
    }

    .seo-text-block {
      max-width: 550px;
    }

    .seo-text-block p {
      color: #555;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .seo-action-btn {
      background-color: #ff0000;
      border: none;
      padding: 10px 25px;
      font-weight: 600;
      border-radius: 6px;
      color: #fff;
      transition: 0.3s;
    }

    .seo-action-btn:hover {
      background-color: #cc0000;
    }

    /* ==========================
       Video Styling
       ========================== */
    .seo-video-wrapper {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      
    }

    .seo-video-poster {
      width: 100%;
      border-radius: 20px;
      display: block;
      cursor: pointer;
      height:380px;
    }

    .play-btn-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(0, 0, 0, 0.6);
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s ease;
      cursor: pointer;
    }

    .play-btn-overlay:hover {
      background: rgba(255, 0, 0, 0.8);
    }

    .play-btn-overlay::before {
      content: '';
      border-style: solid;
      border-width: 15px 0 15px 25px;
      border-color: transparent transparent transparent white;
      margin-left: 5px;
    }

    .seo-video-wrapper video {
      width: 100%;
      border-radius: 20px;
      display: none;
    }

    /* Hide Schema Info Text */
    .seo-schema-wrapper span {
      display: none !important;
    }

    @media (max-width: 991px) {
      .seo-text-block {
        text-align: center;
        margin-bottom: 40px;
      }
       .seo-video-poster {
      width: 100%;
      border-radius: 20px;
      display: block;
      cursor: pointer;
      height:auto;
    }
    }












        .proofreading-wrapper {
      padding: 20px 0;
    }

    .proof-subheading {
      color: #2b7be6;
      font-weight: 600;
    }

    .proof-description {
      color: #4b637a;
      max-width: 40rem;
    }

    /* ✅ Feature List */
    .proof-feature-item {
      display: flex;
      gap: .75rem;
      align-items: flex-start;
      margin-bottom: .9rem;
     
      color: #0b2340;
    }
     .proofreading-wrapper p a{
      text-decoration: none;
      border-bottom: 1px dotted #ff0000;
      color: #ff0000;
     }

     .proof-feature-item a{
      text-decoration: none;
      border-bottom: 1px dotted #ff0000;
      color: #ff0000;
     }
    .proof-feature-item i {
      color: #ff0000;
      font-size: 1rem;
      margin-top: 4px;
    }

    .proof-feature-item p {
      margin: 0;
      color: #0b2340;
      font-size: 14px;
    }

    .proof-cta {
      margin-top: 1.5rem;
    }

    .proof-btn {
      background: #ff0000;
      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;
    }
    }

    @media (max-width: 575px) {
      .proofreading-wrapper {
        padding: 3rem 0;
      }
      .proof-title {
        font-size: 1.6rem;
      }
    }


















      .samples-section {
    padding: 90px 0;
  }

  .samples-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }

  .samples-header h2 {
    font-weight: 700;
    color: #2d1975;
    margin: 0;
  }

  .samples-header a {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .samples-header a:hover {
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    transform: translateY(-2px);
  }

  .sample-video-box {
    position: relative;
    overflow: hidden;
    border-radius: 14px;

    cursor: pointer;
   
  }

  .sample-video-box img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
    transition: transform 0.6s ease;
  }

  .sample-video-box:hover img {
    transform: scale(1.08);
  }

  .sample-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
  }

  .sample-video-box:hover .sample-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.9));
  }

  .sample-play-btn {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff4141, #ff6b6b);
    border: none;
    box-shadow: 0 0 25px rgba(255, 65, 65, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
  }

  .sample-play-btn::before {
    content: "";
    position: absolute;
    left: 36px;
    top: 26px;
    border-style: solid;
    border-width: 18px 0 18px 30px;
    border-color: transparent transparent transparent #fff;
    z-index: 2;
  }

  .sample-play-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 65, 65, 0.4);
    animation: pulse-glow 1.6s infinite;
  }

  .sample-play-btn:hover {
    transform: scale(1.12);
  }

  @keyframes pulse-glow {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(1.8);
      opacity: 0;
    }
  }

  .sample-caption {
    position: absolute;
    bottom: 9px;
    text-align: center;
    width: 100%;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 12px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
  }

  iframe.sample-iframe {
    width: 100%;
    height: 360px;
    border: none;
    border-radius: 14px;
  }

  @media (max-width: 768px) {
    .sample-play-btn {
      width: 70px;
      height: 70px;
    }
    .sample-play-btn::before {
      left: 28px;
      top: 20px;
      border-width: 12px 0 12px 20px;
    }
    iframe.sample-iframe {
      height: 230px;
    }
    .samples-header {
      flex-direction: column;
      text-align: center;
      gap: 15px;
    }
  }
















    /* Section Styling */
        .kindle-section {
            padding: 60px 0;
        }

     

        .kindle-header p {
            font-size: 16px;
            color: #666;
            max-width: 800px;
            margin: 10px auto 0;
        }

        /* Card Styling */
        .kindle-card {
            background: #fff;
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .kindle-card img {
            margin-bottom: 10px;
        }

        .kindle-card p {
            font-weight: bold;
            margin: 0;
            color: #333;
        }

        .kindle-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        @media (max-width: 768px) {
            .kindle-card {
                flex: 0 0 45%;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            .kindle-card {
                flex: 0 0 100%;
            }
        }


           /* Section styling */
    .who-section {
      padding: 80px 0;
      text-align: center;
    }

   

    /* Card container */
    .who-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .who-card {
      background: #f9f9f9;
      border-radius: 12px;
      padding: 30px 20px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      flex: 1 1 180px;
      max-width: 220px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      min-height: 260px;
    }

    .who-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .who-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
    }

    .who-title {
      font-weight: 600;
      font-size: 16px;
      line-height: 1.4;
      color: #2c2c2c;
    }

    /* Responsive tweaks */
    @media (max-width: 991px){
      .who-section h2 {
        font-size: 32px;
      }

      .who-card {
        max-width: 200px;
        padding: 25px 15px;
      }

      .who-icon {
        width: 80px;
        height: 80px;
      }
    }

    @media (max-width: 575px){
      .who-card {
        flex: 1 1 100%;
      }
    }














     /* -------- HERO AREA -------- */
    .re-hero-area {
      padding: 80px 0;
      background: #F5F5F5;
    }

    .re-hero-img {
      border-radius: 16px;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .re-hero-text p {
      color: #000;
      margin: 15px 0 25px;
      font-size: 0.95rem;
    }

    .re-hero-text .re-btn-primary {
      padding: 10px 25px;
      border-radius: 8px;
      font-weight: 600;
      background: #e63946;
      border: none;
      color: #fff;
    }

    /* -------- SLIDER AREA -------- */
    .re-slider-area {
      position: relative;
      padding: 60px 0;
      background-color: #F5F5F5;
    }

    .re-service-box {
      border: none;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      background: #fff;
      transition: all 0.4s ease;
      height: 100%;
    }

    .re-service-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .re-service-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .re-service-box h3 {
      font-weight: 600;
      color: #050051;
      font-size: 1.2rem;
    }

    .re-service-box p {
      font-size: 0.9rem;
      color: #000;
    }

    .re-btn-outline {
      font-size: 0.85rem;
      border-radius: 8px;
    }

    .re-btn-outline:hover {
      color: #fff;
      background-color: #ff0000;
      border: none;
    }

    /* Carousel Controls */
    .re-prev-btn, .re-next-btn {
      width: 50px;
      height: 50px;
      top: 45%;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .re-prev-btn:hover, .re-next-btn:hover {
      background: #ff0000;
    }

    .re-prev-icon,
    .re-next-icon {
      filter: invert(1);
    }

    /* -------- RESPONSIVE -------- */
    @media (max-width: 991px) {
      .re-hero-area .row {
        flex-direction: column-reverse;
      }

      .re-hero-area {
        text-align: center;
        padding: 50px 0;
      }

      .re-hero-text {
        margin-top: 20px;
      }
    }

    /* MOBILE & TABLET: make carousel static grid */
    @media (max-width: 991px) {
      #reServiceCarousel .carousel-inner {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
      }
      #reServiceCarousel .carousel-item {
        display: contents;
      }
      .re-prev-btn,
      .re-next-btn {
        display: none;
      }
    }

    @media (max-width: 575px) {
      .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }













      /* ---------- HERO SECTION ---------- */
    .hero-edit-area {
      padding: 80px 0;
      
      position: relative;
    }

    .hero-edit-img {
      border-radius: 16px;
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: relative;
    }

    .hero-edit-video-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
    }

    .hero-edit-play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(255, 0, 0, 0.85);
      color: #fff;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 2;
    }

    .hero-edit-play-btn:hover {
      background: #e63946;
      transform: translate(-50%, -50%) scale(1.1);
    }

    .hero-edit-play-btn i {
      font-size: 28px;
    }

    .hero-edit-video {
      width: 100%;
      height: 100%;
      border: none;
      display: none;
      border-radius: 16px;
    }

    .hero-edit-text p {
      color: #000;
      margin: 15px 0 25px;
      font-size: 0.95rem;
    }

    .hero-edit-btn-primary {
      padding: 10px 25px;
      border-radius: 8px;
      font-weight: 600;
      background: #e63946;
      border: none;
      color: #fff;
    }

    /* ---------- CAROUSEL SECTION ---------- */
    .edit-carousel-area {
      position: relative;
      padding: 60px 0;
    
    }

    .edit-service-box {
      border: none;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      background: #fff;
      transition: all 0.4s ease;
      height: 100%;
    }

    .edit-service-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .edit-service-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .edit-service-box h3 {
      font-weight: 600;
      color: #050051;
      font-size: 1.2rem;
    }

    .edit-service-box p {
      font-size: 0.9rem;
      color: #000;
    }

    .edit-btn-outline {
      font-size: 0.85rem;
      border-radius: 8px;
    }

    .edit-btn-outline:hover {
      color: #fff;
      background-color: #ff0000;
      border: none;
    }

    .edit-prev-btn, .edit-next-btn {
      width: 50px;
      height: 50px;
      top: 45%;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .edit-prev-btn:hover, .edit-next-btn:hover {
      background: #ff0000;
      color: #fff;
    }

    .edit-prev-icon,
    .edit-next-icon {
      filter: invert(1);
    }

    @media (max-width: 991px) {
      .hero-edit-area .row {
        flex-direction: column-reverse;
      }
      .hero-edit-area {
        text-align: center;
        padding: 50px 0;
      }
      .hero-edit-text {
        margin-top: 20px;
      }
      #editServiceCarousel .carousel-inner {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
      }
      #editServiceCarousel .carousel-item {
        display: contents;
      }
      .edit-prev-btn, .edit-next-btn {
        display: none;
      }
    }

    @media (max-width: 575px) {
  .edit-carousel-area .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}





/* SECTION */
    .floorplan-section {
      width: 100%;
      margin: 0;
      padding: 0;
      overflow: hidden;
    }

    .floorplan-row {
      display: flex;
      flex-wrap: nowrap;
      width: 100%;
      height: 70vh; /* adjust total height here */
    }

    /* LEFT IMAGE COLUMN */
    .floorplan-left {
      flex: 0 0 55%;
      position: relative;
    }
    .floorplan-left img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* RIGHT CONTENT COLUMN */
    .floorplan-right {
      flex: 0 0 45%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      padding: 50px;
      background-color: #AD9B8D;
    }

    .floorplan-right .inner {
      max-width: 500px;
    }

    .floorplan-right h2 {
      font-size: 2rem;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .floorplan-right p {
      color: #fff;
      margin-bottom: 18px;
    }

    .floorplan-right .btn-primary {
      background: #ff1f1f;
      border: none;
      padding: 10px 26px;
      font-weight: 700;
    }

    /* ✅ Responsive Fix */
    @media (max-width: 991px) {
      .floorplan-row {
        flex-direction: column;
        height: auto;
      }

      .floorplan-left,
      .floorplan-right {
        flex: 0 0 auto;
        width: 100%;
      }

      /* ✅ Change the stacking order */
      .floorplan-right {
        order: 1; /* content first */
        padding: 40px;
        text-align: center;
      }

      .floorplan-left {
        order: 2; /* image second */
      }

      .floorplan-left img {
        height: 320px;
      }
    }


       /* =====================
       GLOBAL SECTION STYLES
    ====================== */
    .property-section {
      background-color: #0b0716;
      color: #fff;
      padding: 80px 0;
    }

    .property-section .section-label {
      display: inline-block;
      background-color: #f8e46e;
      color: #000;
      font-size: 13px;
      font-weight: 500;
      padding: 6px 14px;
      border-radius: 5px;
      margin-bottom: 20px;
    }

    .property-section h2 {
      font-weight: 700;
      font-size: 2rem;
      line-height: 1.3;
    }

    /* List style */
    .service-list {
      display: flex;
      flex-wrap: wrap;
      margin-top: 25px;
    }

    .service-list ul {
      list-style: none;
      padding: 0;
      margin: 0 40px 0 0;
    }

   .service-list li {
  font-size: 15px;
  color:white;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-left: 35px; /* space for the circle */
  font-family: "Inter", sans-serif !important;
}

.service-list li::before {
  content: "\f00c"; /* Font Awesome check icon */
  font-family: "Font Awesome 6 Free"; 
  font-weight: 900; /* required for solid icons */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #46FF5B; /* circle color */
  color: #000;               /* icon color */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

    /* Right Image */
    .property-section .image-wrapper img {
      width: 100%;
      border-radius: 20px;
      object-fit: cover;
    }

    /* Responsive tweaks */
    @media (max-width: 991px) {
      .property-section {
        text-align: center;
      }
      .service-list {
        justify-content: center;
      }
      .service-list ul {
        margin: 0 20px;
      }
    }






    .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;
  font-family: "Inter", sans-serif !important;
}

.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:#0D0C10;
  color:#fff;
  border:none;
  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; }
}



  .client-page {
    padding: 60px 0;
  }

 
  .client-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    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;
  }

  .client-card img {
    max-height: 65px;
    object-fit:fill;
    transition: transform 0.3s ease;
  }

  .client-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }

  .client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: center;
  }

  @media(max-width: 576px){
    .client-card {
      height: 80px;
      padding: 15px;
    }
    .client-card img {
      max-height: 40px;
    }
  }



 .terms {
    padding: 60px;
    background: #ffffff;
    box-shadow: 0px 4px 23px 1px #e8e8e8;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 25px;
}

section.terms-page {
    margin-top: 30px;
}

.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;
    }
}



/* ====== MODERN COUNTRY CARDS ====== */
.country-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
    border-top: 4px solid #0d3b66;
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.country-card img {
    width: 55px;
    margin-bottom: 12px;
}


/* ====== 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;
}








.section-security {
    padding: 80px 0;
    background: #f9fafc;
}



.section-subtext {
    font-size: 17px;
    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 #ff0000;
    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: #ff0000;
    flex-shrink: 0;
}

.security-card span {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.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);
}









.promo-banner {
    width: 100%;
    padding: 80px 0;
    background-image: url("../images/soft-dev-page-images/contact-banner-center.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    
    overflow: hidden;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 0, 60, 0.45);
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-content h3 {
    font-size: 32px;
    color: #fff;
    line-height: 1.5;
   
    margin: 0 auto 25px;
    font-weight: 600;
}

.promo-btn {
    display: inline-block;
    background: #ff1a1a;
    color: #fff;
    padding: 15px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.promo-btn:hover {
    background: #e00000;
}






.env-section {
    padding: 100px 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;
}
}








/* SECTION STYLING */
.cert-section {
    padding: 100px 0;
    background: #f9fafc;
    font-family: 'Poppins', sans-serif;
}


/* 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 */
    }
}






.techToolsSection {
    padding: 80px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    background: #f8f8fb;
}

/* Tabs */
.techTabs {
    border-bottom: none;
}

.techTabs .techTabBtn {
    border: none;
    border-radius: 50px;
    background: #EEEAF8;
    color: #5238A1;
    margin: 0 5px;
    padding: 8px 20px;
    transition: 0.3s;
}
.techTabs .techTabBtn.active {
    background: #7b68ee;
    color: #fff;
    border: none;
}

/* Tab Content */
.techTabContent {
    position: relative;
    min-height: 220px;
}
.techTabPane {
    display: none;
    padding: 30px 0;
}
.techTabPane.active {
    display: block;
}

/* Icon Grid */
.techIconGrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

/* Animation */
.techIconGrid img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}
.techIconGrid img.animate {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 576px) {
    .techTabs {
        gap: 12px !important;
        padding: 0 10px;
        flex-wrap: wrap;
    }

    .techTabBtn {
        margin: 5px 8px;
    }
}







    /* 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: #ff0000;
  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;
}

















.gallery-section-new {
    padding: 70px 0;
    font-family: 'Poppins', sans-serif;
}


.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%;
    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.5;
    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;
    }
}












/* SECTION */
.map-features-section {
  padding: 80px 0;
  background: #f9fafc;
}

.map-features-section h2 {
  font-weight: 700;
  margin-bottom: 40px;
}

/* FEATURE CARD */
.map-feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.map-feature-card:hover {
  transform: translateY(-6px);
}

.map-feature-card img {
  max-width: 85px;
  margin-bottom: 15px;
}

.map-feature-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

/* MOBILE FIX */
@media (max-width: 575px) {
  .map-feature-card {
    padding: 25px 15px;
  }
}














/* =================== News Section =================== */
.news-section {
  padding: 80px 0;
}

.news-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.news-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1b1b1b;
}

.news-section .section-header p {
  font-size: 1rem;
  color: #6c757d;
}

/* =================== News Cards =================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.news-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover img {
  transform: scale(1.05);
}

.news-card-content {
  padding: 20px;
}

.news-card-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.news-card-content p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

.news-card-content a.read-more {
  font-weight: 500;
  color: #0d6efd;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s ease;
}

.news-card-content a.read-more:hover {
  border-bottom: 1px solid #0d6efd;
}

/* Optional: Ribbon / Tag */
.news-card .news-tag {
  position: absolute;
  top: 15px;
  left: -40px;
  background: #0d6efd;
  color: #fff;
  padding: 5px 60px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(-45deg);
}












/* =================== Events Section =================== */
.events-section {
  padding: 80px 0;
}


/* =================== Event Cards =================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.event-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.event-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-card:hover img {
  transform: scale(1.05);
}

.event-card-content {
  padding: 20px;
}

.event-card-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.event-card-content p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
}

.event-date {
  font-size: 0.85rem;
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.event-card-content a.read-more {
  font-weight: 500;
  color: #0d6efd;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s ease;
}

.event-card-content a.read-more:hover {
  border-bottom: 1px solid #0d6efd;
}








/* Smaller image specifically for zig-zag sections */
.proof-image-sm {
  max-width: 420px;   /* controls image width */
  width: 100%;
}

.proof-image-sm img {
  width: 100%;
  height: auto;       /* ❌ remove fixed height */
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
section.terms-page.sitemap {
    padding: 49px 0px;
    background: #f6f6f6;
}
.terms h3 a{
  color: #000;
  text-decoration: none;
}
.terms h3 a:hover{
  color: #007bff;
}


/* Modern Features Section */
.modern-features-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.modern-features-section h2 {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 1rem;
}

.modern-features-section > p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
}

/* Feature Card */
.modern-feature-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
  height: 100%;
}

.modern-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Image Container */
.modern-feature-img-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modern-feature-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.modern-feature-card:hover .modern-feature-img-container img {
  transform: scale(1.05);
}

/* Title */
.modern-feature-title {
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.4;
}

/* Description */
.modern-feature-desc {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modern-features-section {
    padding: 60px 0;
  }
  
  .modern-features-section h2 {
    font-size: 2rem;
  }
  
  .modern-feature-img-container {
    height: 180px;
  }
  
  .modern-feature-title {
    font-size: 1.1rem;
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .modern-feature-img-container {
    height: 160px;
  }
  
  .modern-feature-card {
    padding: 20px;
  }
}

    .network-section {
            padding: 5rem 0;
            background-color: #f8f9fa;
        }
        
        .network-heading {
            color: #000000;
            margin-bottom: 3rem;
            font-weight: 800;
            font-size: 35px;
            text-align: center;
        }
        
        .network-card {
            background-color: white;
            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;
        }
        
        .network-title {
            color: #1a365d;
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 10px;
        }
        
        .network-badge {
            display: inline-block;
            background: linear-gradient(90deg, #2d74da, #e53e3e);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 15px;
        }
        
        @media (max-width: 768px) {
            .network-section {
                padding: 3rem 1rem;
            }
            
            .network-heading {
                font-size: 2rem;
            }
            
            .network-image-container {
                width: 140px;
                height: 140px;
            }
            
            .network-image {
                width: 80px;
                height: 80px;
            }
        }


















/* -------------------------------Resources css--------------------------------------- */

    /* ===== Page Header ===== */
.resource-title-section {
  background: linear-gradient(175deg, #c31432, #240b36);
}
.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: #0D6EFD;
}

/* 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 #ff0000;
  color: #ff0000;
}
.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 #ff0000;
  color: #ff0000;
}

.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;

}
@media (min-width:1200px){
.article-section .container{
    max-width: calc(100% - 100px);
}
}
 /* arcticle section */

@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; 
}

.article-section h2 { font-size: clamp(1.5rem, 2.5vw + 1rem, 2rem); margin-bottom: 20px; }
.article-section h3 { font-size: clamp(1.3rem, 2vw + 0.8rem, 1.6rem); margin-bottom: 15px;}
.article-section h4 { font-size: clamp(1.1rem, 1.8vw + 0.7rem, 1.4rem); }
.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: clamp(1rem, 1.2vw + 0.3rem, 1.1rem);
    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 {
  font-family: "Inter", sans-serif !important;
  color: #000;
  line-height: 1.8;
  font-size: clamp(1rem, 2vw, 1.05rem);
  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.8;
}

ol.small-ol li::before {
  content: counter(ol-counter) ".";
  color: #ff0000;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}

/* ===========================================
   ✅ BULLET LIST (.bullets) - small
   =========================================== */

.article-section ul.bullets{
  list-style: none;
  
  padding-left: 15px;
  margin: 10px 0 26px;
}

.article-section ul.bullets li{
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.8;
}

.article-section  ul.bullets li::before{
  content: "\f04d"; /* FontAwesome play icon */
  font-family: "FontAwesome";
  font-size: 10px;
  color: #ff0000;
  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: #ff0000;
  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: #ff0000;
  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: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
   =========================================== */

.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;
}

/* Active / opened state */
.resource-faq .accordion-button:not(.collapsed),
.faq-page .accordion-button:not(.collapsed) {
  color: #ff0000;
  background-color: #fff;
}

/* Remove default Bootstrap icon */
.resource-faq .accordion-button::after,
.faq-page .accordion-button::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 23px;
  margin-left: auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  transition: all 0.3s ease;

  /* Default PLUS icon */
  background-image: url('data:image/svg+xml;utf8,<svg width="22" height="23" viewBox="0 0 22 23" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 7.56738V15.5674M7 11.5674H15M21 11.5674C21 17.0902 16.5228 21.5674 11 21.5674C5.47715 21.5674 1 17.0902 1 11.5674C1 6.04454 5.47715 1.56738 11 1.56738C16.5228 1.56738 21 6.04454 21 11.5674Z" stroke="%23071A34" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

/* MINUS icon when expanded */
.resource-faq .accordion-button:not(.collapsed)::after,
.faq-page .accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml;utf8,<svg width="22" height="23" viewBox="0 0 22 23" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 11.5674H15M21 11.5674C21 17.0902 16.5228 21.5674 11 21.5674C5.47715 21.5674 1 17.0902 1 11.5674C1 6.04454 5.47715 1.56738 11 1.56738C16.5228 1.56738 21 6.04454 21 11.5674Z" stroke="%23071A34" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

/* Accordion body */
.resource-faq .accordion-body,
.faq-page .accordion-body {
  background: #fafafa;
  border-left: 3px solid #ff0000;
  padding: 1rem;
  text-align: justify;
  color: #000;
}

/* Hover effect */
.resource-faq .accordion-button:hover,
.faq-page .accordion-button:hover {
  color: #ff0000;
}

/* 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;
}
@media (max-width: 992px) {
  .resource-sidebar {
    position: static;
    margin-top: 2rem;
    padding-left: 0px;
  }
}

.recent-post-section {
                height: auto;
                width: auto;
                background-color: #fff;
                border-radius: 12px
            }

            .widget-section {
                margin-bottom: 0px
            }      
.sidebar-blog-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem !important;
}

.popular_image {
    height: 100%;
    width: 30%;
}

.text_post {
    padding-left: 20px;
    margin-top: 0px;
    width: 70%;
    line-height: 22px;
}

.popular_image img {
    width: 100%;
    background-position: center;
    object-fit: cover;
    background-size: cover;
}

p.sidebar-heading-text {
    font-size: 27px;
    padding: 10px 0px;
    font-family: "Bricolage Grotesque"!important;
    color: #000000;
    text-transform: uppercase;
   
}
.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: #ff0000;
            }
/* 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;
  margin-top: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    margin-right: 8px;
}

.social-icons a[aria-label="Facebook"] {
    background-color: #3b5998;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a[aria-label="Facebook"]:hover {
    background-color: #2d4373; /* darker shade */
    transform: scale(1.1);
}

/* X (formerly Twitter) */
.social-icons a[aria-label="X"] {
    background-color: #000; /* X brand color */
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a[aria-label="X"]:hover {
    background-color: #111; /* slightly lighter black */
    transform: scale(1.1);
}

/* LinkedIn */
.social-icons a[aria-label="LinkedIn"] {
    background-color: #0077b5;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a[aria-label="LinkedIn"]:hover {
    background-color: #005983; /* darker blue */
    transform: scale(1.1);
}

/* WhatsApp */
.social-icons a[aria-label="WhatsApp"] {
    background-color: #25d366;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a[aria-label="WhatsApp"]:hover {
    background-color: #1da851; /* darker green */
    transform: scale(1.1);
}

/* Optional: smaller spacing for mobile */
@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: #3b0d57;
    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: #ff0000;
    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: linear-gradient(175deg, #c31432, #240b36);
}
.case-study-banner h1{
  max-width: 1330px;
  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 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: #FF0000;
  color: white;
}
.case-feature-box .cs-btn:hover {
  background: none;
  outline: 1px solid #ff0000;
}
.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: #ff0000;
}
.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, #c31432, #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, #c31432, #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: #333;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-weight: 600;
}

.category-content p {
  color: #555;
  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: #c31432;
  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: #ff0000;
  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: #ff0000; /* 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: #b63c3e; /* darker red on hover */
  border-bottom: 2px solid #b63c3e;
  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: #ff0000;
}
.faq-page .accordion-body p{
  line-height: 1.8rem;
}

/* ===============================
   Resource Before/After Slider
=============================== */


/* .resource-before-after-slider {
  position: relative;
  width: 100%;            
  max-width: 100%;        
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  touch-action: none;    
}

.resource-before-after-slider img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.resource-before-after-slider .resource-track-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  transition: width 0.15s ease;
}

.resource-before-after-slider .resource-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.resource-before-after-slider .resource-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  background: #ffffff;
  border: 2px solid #222;
  border-radius: 50%;
  cursor: ew-resize;
  z-index: 3;
  box-shadow: 0 0 6px rgba(0,0,0,0.4);
  transition: background 0.2s ease;
}

.resource-before-after-slider .resource-slider-handle:hover {
  background: #f0f0f0;
}

@media (max-width: 768px) {
  .resource-before-after-slider {
    margin: 1.5rem 0;
  }

  .resource-before-after-slider .resource-slider-handle {
    width: 22px;
    height: 22px;
  }
} */


/* ======================== */
h2.case-heading {
  font-size: clamp(1.2em, 2.5vw, 1.7em);
  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: #ff0000;
  text-decoration: none;
   border-bottom: 1px dotted #ff0000;
}
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: #ff0000; /* 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 */
.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: #ff0000;
    color: #ffffff;
    float: left;
    margin-top: 12px;
    padding: 2px 20px;
}
p.heading {
    font-size: 20px;
    font-weight: 600;
    padding: 10px 0;
}