/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400..800&display=swap");
/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #ff0000;
  --secondary: #333333;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "DM Sans", sans-serif;
}

section {
  position: relative;
  /* padding: 6rem 0; */
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
  font-family: "Wix Madefor Display", sans-serif;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/*  */

/* Cursor Start */

.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 204, 0, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.15s ease;
  transform: translate(-60%, -60%);
  background: rgba(255, 204, 0, 0.05);
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #ffcc00;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.8), 0 0 20px rgba(255, 204, 0, 0.4);
  transition: all 0.05s ease;
}

/* Hover */
.cursor.hover {
  width: 60px;
  height: 60px;
  background: rgba(255, 204, 0, 0.15);
  border-color: #ffcc00;
}

.cursor-dot.hover {
  width: 12px;
  height: 12px;
  box-shadow: 0 0 20px #ffcc00, 0 0 40px rgba(255, 204, 0, 0.6);
}

/* Click */
.cursor.click {
  width: 30px;
  height: 30px;
  background: rgba(255, 204, 0, 0.3);
}

.cursor-dot.click {
  width: 6px;
  height: 6px;
}

/* Hide on mobile */
@media (max-width: 768px) {
  .cursor,
  .cursor-dot {
    display: none;
  }
}

.demo-btn {
  padding: 15px 30px;
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin: 100px;
  font-size: 18px;
}

/* Search icon styling Start */
/* .search-trigger {
  color: #2c3e50;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s;
  display: inline-block;
  text-decoration: none;
}

.search-trigger:hover {
  color: #3498db;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px;
}

.search-box-wrapper {
  width: 90%;
  max-width: 600px;
}

.search-input-container {
  display: flex;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.search-input {
  flex: 1;
  padding: 20px;
  font-size: 18px;
  border: none;
  outline: none;
  font-family: inherit;
}

.search-close {
  border: none;
  outline: unset;
  padding: 0 25px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
  border-radius: 0 0 0 40px !important;
}

.search-close:hover {
  background: #c0392b;
} */

.search_bar {
  width: 100%;
  height: 45px;
  padding: 12px;
  border-radius: 30px;
  outline: unset;
}

/* Search icon styling end */

/* Main content default hidden for GSAP reveal */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  padding: 40px 0;
}

.logo-container {
  text-align: center;
  margin-top: 60px;
  position: absolute;
  left: 49%;
  top: 30%;
  transform: translate(-50%, -50%);
}

.logo-container img {
  max-width: 100%;
  width: 100%;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

/* Counter Styles - Now at bottom */
.counter-wrapper {
  text-align: center;
  margin-bottom: 60px;
  /* position: relative; */
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.counter {
  font-size: 30px;
  font-weight: 500;
  /* works now */
  color: #ffffff;
  letter-spacing: 2px;
  /* font-family: Arial, sans-serif; */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.counter::after {
  /* content: '%'; */
  font-size: 40px;
  font-weight: 500;
  margin-left: 5px;
}

.tagline {
  font-size: 14px;
  color: #aaaaaa;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 15px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.tagline::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

/* Loading Bar */
.loading-bar {
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}

.loading-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* PRELOADER */

/* Header */
.header-actions .btn-gradient {
  background: linear-gradient(90deg, #dc3545 0%, #3f51b5 100%);
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.header-actions i {
  font-size: 1.2rem;
  cursor: pointer;
  font-weight: 400;
}

a.mx-2.basket {
  position: relative;
}

a.mx-2.basket i.fal.fa-shopping-basket {
  color: #2c3a55;
}

.form-inline.header-actions.d-flex.align-items-center ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: 1rem;
}

a.mx-2.basket span {
  width: 18px;
  height: 18px;
  background: #eb3437;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  color: var(--white);
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  margin: auto;
}

/* Hero Section */
.hero-section {
  height: 600px;
  min-height: 600px;
  overflow: hidden;
  background-color: #000;
  padding: 0 8rem 0 9rem;
}

.hero-section .main-heading {
  font-size: 4.25rem;
}

.hero-section .contact-card span.d-block.small {
  font-size: 1.125rem;
  font-weight: 300;
}

.hero-section .contact-card span.font-weight-bold {
  font-size: 1.25rem;
  font-weight: 600 !important;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 1;
}

.z-index-2 {
  position: relative;
  z-index: 2;
}

header.header-area a.nav-link.text-secondary {
  color: #2c3a55 !important;
  font-weight: 500;
}

header.header-area ul.navbar-nav.mx-auto.text-uppercase.font-weight-bold {
  gap: 2rem;
}

.themeBtn {
  background: linear-gradient(90deg, #dc3545 0%, #3f51b5 100%);
  font-size: 1.125rem;
  font-weight: 500;
  display: inline-block;
  padding: 1.0625rem 2.625rem;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* CCTV Overlay UI */
.cctv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  padding: 1.875rem 1.875rem 1.875rem 1.875rem;
}

.corner {
  position: absolute;
  width: 3.125rem;
  height: 3.125rem;
  border-color: rgba(255, 255, 255, 0.5);
  border-style: solid;
  border-width: 0;
}

.top-left {
  top: 2.5rem;
  left: 2.5rem;
  border-top-width: 3px;
  border-left-width: 3px;
}

.top-right {
  top: 2.5rem;
  right: 2.5rem;
  border-top-width: 3px;
  border-right-width: 3px;
}

.bottom-left {
  bottom: 2.5rem;
  left: 2.5rem;
  border-bottom-width: 3px;
  border-left-width: 3px;
}

.bottom-right {
  bottom: 2.5rem;
  right: 2.5rem;
  border-bottom-width: 3px;
  border-right-width: 3px;
}

.rec-indicator {
  position: absolute;
  top: 3.4375rem;
  left: 3.75rem;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.rec-dot {
  width: 0.75rem;
  height: 0.75rem;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: blink 1s infinite;
}

.timestamp {
  position: absolute;
  top: 3.4375rem;
  right: 3.75rem;
  color: white;
  font-weight: 500;
  font-size: 1.1rem;
  /* font-family: monospace; */
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Hero Content */
.welcome-badge {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 5px 1.25rem;
  border-radius: 50px;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.3);
}

.main-heading {
  font-size: 3.5rem;
  line-height: 1.1;
}

.btn-gradient {
  background: linear-gradient(90deg, #ff3b3b 0%, #3b55e6 100%);
  border: none;
  transition: transform 0.2s;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  color: white;
}

/* Contact Cards */

.ready-imag {
  border-radius: 15px;
  overflow: hidden;
}

.contact-card {
  background: rgb(255 255 255 / 10%);
  backdrop-filter: blur(5px);
  min-width: 280px;
  border-radius: 10px;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  border: 1px solid rgb(255 255 255 / 10%);
  color: #fff;
}

.contact-card .icon {
  font-size: 2rem;
  opacity: 0.8;
}

/* --- Section al47na --- */
.core-services-section {
  padding: 5rem 0;
  background-color: #fff;
}

.swipwer.serviceSlider {
  overflow-x: hidden;
  margin-right: -29rem;
}

/* Header Styling */
.badge-wrapper {
  display: inline-block;
}

.custom-badge {
  display: inline-block;
  padding: 6px 1.5rem;
  border-radius: 50px;
  border: 1px solid #dcdcdc;
  color: #d87c82;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  background-color: #fff;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2639;
}

.text-gradient {
  background: linear-gradient(90deg, #8e44ad, #3498db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  max-width: 650px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #9aa0a6;
}

/* Card Styling */
.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 20px;
}

.service-card .card-overlay {
  /* flex-direction: unset; */
  /* align-items: center; */
  /* justify-content: space-between; */
  z-index: 1;
}

.service-card .card-overlay .service-name {
  flex-shrink: 0;
  font-size: 2.25rem;
  color: var(--white);
  font-weight: 400;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.img-wrapper {
  height: 100%;
  width: 100%;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.875rem 1.875rem 1.875rem 1.875rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    transparent 100%
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-name {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.625rem;
}

.service-info {
  font-size: 0.85rem;
  margin-bottom: 0;
  opacity: 0.9;
  max-width: 90%;
  line-height: 1.4;
}

/* --- Section f470b2 --- */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
font-family: 'Poppins', sans-serif;
background-color: #F8F9FE;
} */

.features-section {
  padding: 5rem 0 5rem 0;
  background-color: #f7f7fa;
}

/* Header Tag Style */
.feature-tag {
  /* border: 1px solid #EAEAEA;
border-radius: 50px;
padding: 6px 20px;
color: #F06A75;
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 1px;
background-color: #fff;
box-shadow: 0 2px 5px rgba(0,0,0,0.02); */
  display: inline-block;
  padding: 6px 1.25rem;
  border: 1px solid #cfcfde;
  border-radius: 50px;
  color: #de3856;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: transparent;
  background: linear-gradient(135deg, #e6556e 0%, #7d5fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Main Title Style */
.section-title {
  font-weight: 700;
  color: #1f2230;
  font-size: 2.5rem;
  line-height: 1.3;
}

.highlight-text {
  color: #7f7fbd;
}

/* Card Styles */
.feature-card {
  background: #8f91ab;
  border-radius: 20px;
  padding: 3.125rem 1.875rem 2.5rem 3.125rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2230;
  margin-bottom: 25px;
  line-height: 1.4;
}

/* Icon Container */
.icon-box {
  width: 4.375rem;
  height: 4.375rem;
  background-color: #f9fafc;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5625rem auto;
}

.icon-box img {
  border-radius: 8px;
  opacity: 0.8;
}

.card-text {
  color: #9a9ca5;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.875rem;
  max-width: 90%;
}

.card-divider {
  width: 100%;
  height: 1px;
  background-color: #f0f0f0;
  margin-bottom: 1.875rem;
  margin-top: auto;
}

/* Button Style */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 6px 6px 1.5625rem;
  border: 1px solid #eaeaea;
  border-radius: 50px;
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more-btn .btn-icon {
  width: 2rem;
  height: 2rem;
  background-color: #26283b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.9375rem;
  font-size: 0.75rem;
}

.read-more-btn:hover {
  border-color: #26283b;
  color: #1f2230;
  text-decoration: none;
}

/* --- Section em2vc4 --- */
.about-section {
  padding: 5rem 0 5rem 0;
  /* font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; */
  background-color: #fff;
}

/* Main Left Image */
.main-image-wrapper {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.main-image-wrapper img {
  object-fit: cover;
  height: 100%;
  border-radius: 30px;
}

/* Badge Style */
.custom-badge {
  display: inline-block;
  padding: 6px 1rem;
  border: 1px solid #dcdceb;
  border-radius: 50px;
  color: #7b7b9d;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Heading Style */
.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.2;
}

/* Gradient Text */
.text-gradient {
  background: linear-gradient(90deg, #c53c6c 0%, #3f68be 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Description Text */
.description-text {
  color: #6c757d;
  line-height: 1.8;
  font-size: 0.95rem;
  text-align: justify;
}

/* Feature List */
.feature-list .feature-item {
  color: #6c757d;
  font-size: 0.95rem;
  /* margin-bottom: 12px; */
  position: relative;
  padding-left: 0;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
  width: 77%;
  padding: 0.9rem 0;
}

/* Bottom Area: Button */
.btn-about {
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  border: 1px solid #ced4da;
  border-radius: 50px;
  color: #343a40;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-about:hover {
  border-color: #1a202c;
  color: #000;
}

.icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #1f2937;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.btn-about:hover .icon-circle {
  transform: rotate(45deg);
  background-color: #000;
}

/* Small Image */
.small-image-wrapper {
  width: 9.375rem;
  height: 9.375rem;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  position: absolute;
  right: 0;
  bottom: 40px;
}

.small-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Section o0kv9 --- */
/* body {
  font-family: 'Poppins', sans-serif;
} */

.products-section {
  background-color: #f8f8fc;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Header Styles */
.custom-badge {
  display: inline-block;
  padding: 6px 1.125rem;
  border: 1px solid #dce0f5;
  border-radius: 50px;
  color: #e37b7b;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  background-color: transparent;
  text-transform: uppercase;
}

.section-title {
  color: #1b1b3a;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-top: 0.9375rem;
}

.text-gradient {
  background: linear-gradient(90deg, #ff4a57 0%, #3f51b5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.description-text {
  font-size: 0.95rem;
  line-height: 1.6;
  /* color: #8c8cbe !important; */
  /* max-width: 500px; */
  /* margin-left: auto; */
}

/* Product Card Styles */
.product-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 0 0;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.card-img-wrapper {
  /* height: 200px; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.card-img-wrapper img {
  height: 17.1875rem;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.product-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1b1b3a;
  line-height: 1.4;
  margin-bottom: 0;
  padding-right: 0.625rem;
}

.price-block {
  min-width: 3.75rem;
}

.current-price {
  color: #b1b5d1;
  font-weight: 500;
  font-size: 0.9rem;
}

.old-price {
  text-decoration: line-through;
  color: #b1b5d1;
  font-size: 0.8rem;
  display: block;
}

/* Override price color for drill where it is split */
.price-block .current-price {
  color: #b1b5d1;
}

/* Actually in the design, single prices look like light grey, but let's check closely. 
 Wait, the prices in the design are light grey ($90.00), 
 but the $120.00 is darker? Hard to tell exact logic. 
 Let's maintain a subtle hierarchy. */

.price-block .current-price {
  color: #aeb2d1;
}

/* Specific adjustment for active price if old price exists */
.price-block .old-price + .current-price {
  color: #aeb2d1;
}

.add-to-cart {
  color: #ff4a57;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.add-to-cart:hover {
  color: #d6303d;
  text-decoration: none;
}

/* --- Section jpw9ha --- */
.portfolio-section {
  padding: 5rem 0 5rem 0;
  background-color: #fff;
  /* font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; */
}

/* Badge Style */
.custom-badge {
  display: inline-block;
  color: #ff7575;
  border: 1px solid #ffd1d1;
  border-radius: 50px;
  padding: 6px 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: transparent;
}

/* Main Heading Style */
.main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2b4a;
  line-height: 1.3;
  margin-top: 0.9375rem;
}

/* Highlight Text Color */
.text-highlight {
  color: #7b7ce4;
}

/* Image Styling */
.custom-rounded {
  border-radius: 20px;
  width: 100%;
  height: 23.75rem;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-rounded:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* --- Section ei7rg --- */
.support-section {
  padding: 5rem 0 5rem 0;
  background-color: #f8f9fe;
  /* font-family: 'Poppins', sans-serif; */
  overflow: hidden;
}

/* Badge Style */
.custom-badge {
  display: inline-block;
  padding: 6px 1.25rem;
  border: 1px solid #cfcfde;
  border-radius: 50px;
  color: #de3856;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: transparent;
  background: linear-gradient(135deg, #e6556e 0%, #7d5fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Typography */
.section-title {
  color: #1a1e38;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.25;
}

.text-highlight {
  color: #de3856;
}

.section-desc {
  color: #8da2b5;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 95%;
}

/* Feature Icons */
.feature-icon {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(222, 56, 86, 0.3);
}

.gradient-1 {
  background: linear-gradient(135deg, #de3856 0%, #4a5db5 100%);
}

.gradient-2 {
  background: linear-gradient(135deg, #de3856 0%, #4a5db5 100%);
}

.feature-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1e38;
  margin-bottom: 5px;
}

.feature-text {
  font-size: 0.85rem;
  color: #8da2b5;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Contact Button */
.btn-contact {
  display: inline-flex;
  align-items: center;
  padding: 6px 6px 6px 1.875rem;
  border: 1px solid #1a1e38;
  border-radius: 50px;
  color: #1a1e38;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: #1a1e38;
}

.btn-icon {
  width: 40px;
  height: 40px;
  background-color: #1a1e38;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.25rem;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.btn-contact:hover .btn-icon {
  transform: rotate(0deg);
}

/* Image Styling */
.support-image-wrapper img {
  border-radius: 20px;
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.1);
width: 100%;
height: auto;
object-fit: cover; */
}

/* --- Section 55p72f --- */
/* General Section Styles */
.cctv-section {
  background-color: #f9f9fc;
  padding: 5rem 0 5rem 0;
  /* font-family: 'Poppins', sans-serif; */
  color: #333;
  overflow: hidden;
}

/* Image Comparison Slider */
.comparison-slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  user-select: none;
  background: #000;
}

.img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Ensure overlay image doesn't squash */
  max-width: none;
  border-radius: 20px;
}

/* Day vision is the overlay, starts at 50% width */
.img-wrapper.day {
  width: 50%;
  z-index: 2;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
}

/* Labels */
.vision-label {
  position: absolute;
  background: #fff;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  z-index: 3;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.day-label {
  top: 1.875rem;
  left: 1.875rem;
}

.night-label {
  bottom: 1.875rem;
  right: 1.875rem;
  background: #fff;
  color: #000;
}

/* Slider Handle */
.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.125rem;
  height: 3.125rem;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 4;
  cursor: col-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.handle-arrow {
  font-weight: bold;
  color: #fff;
  margin: 0 2px;
  font-size: 1.2rem;
  line-height: 1;
}

/* Right Column Typography */
.tagline {
  border: 1px solid #ff9db0;
  color: #ff5e78;
  padding: 4px 0.9375rem;
  border-radius: 20px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 94, 120, 0.05);
}

.main-heading {
  font-weight: 700;
  font-size: 2.5rem;
  color: #1a2b4b;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, #e6556e 0%, #7d5fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Progress Bars */
.progress-label {
  font-weight: 600;
  color: #1a2b4b;
  font-size: 0.95rem;
}

.progress-val {
  font-weight: 700;
  color: #1a2b4b;
}

.progress {
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.gradient-bar {
  background: linear-gradient(90deg, #ff4d4d 0%, #3366cc 100%);
  border-radius: 4px;
}

/* Button */
.btn-custom {
  border: 1px solid #cacedb;
  color: #1a2b4b;
  padding: 0.625rem 1.5625rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-custom:hover {
  background: #1a2b4b;
  color: #fff;
  border-color: #1a2b4b;
}

.btn-icon {
  background: #1a2b4b;
  color: #fff;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: background 0.3s;
}

.btn-custom:hover .btn-icon {
  background: #fff;
  color: #1a2b4b;
}

/* Floating Camera */
.floating-camera {
  position: absolute;
  bottom: 1.875rem;
  right: 3.125rem;
  width: 200px;
  height: auto;
  z-index: 10;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

/* --- Section 8jhx29 --- */
/* body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
} */

.tag-pill {
  border: 1px solid #aebcd5;
  border-radius: 50px;
  padding: 6px 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e6556e;
  background: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-heading {
  font-weight: 700;
  color: #1e266d;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.text-highlight {
  color: #bd4860;
  /* Muted pink/red from image */
}

/* Feature Cards */
.feature-card {
  background-color: #fff;
  padding: 1.5625rem 1.5625rem 1.5625rem 1.5625rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.icon-wrapper img {
  width: 3.125rem;
  height: 3.125rem;
  object-fit: contain;
}

.text-wrapper h5 {
  color: #2c3456;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.text-wrapper p {
  color: #8fa1b3;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Center Column with Watermark */
.center-visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
}

.watermark-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.watermark-bg span {
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px #eef0f5;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.8;
}

.main-camera-img {
  z-index: 1;
  max-height: 550px;
  /* Slightly tilted or just placed naturally */
}

/* --- Section ktz4x --- */
/* body {
font-family: 'Poppins', sans-serif;
} */

.faq-section {
  background-color: #1f1f1f;
  padding: 5rem 0 5rem 0;
  color: #fff;
}

/* Left Column Styles */
.badge-pill-custom {
  background-color: #fff;
  color: #333;
  display: inline-block;
  padding: 6px 1.125rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.faq-heading {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #fff;
}

.text-highlight {
  color: #e63946;
}

.contact-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.5625rem;
  margin-top: 1.875rem;
  max-width: 350px;
  color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-box .icon-wrapper {
  width: 3.125rem;
  height: 3.125rem;
  background: linear-gradient(135deg, #ff5f6d 0%, #3f7bfd 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.9375rem;
  flex-shrink: 0;
}

.contact-box .icon-wrapper i {
  color: #fff;
  font-size: 1.2rem;
  transform: rotate(90deg);
}

.contact-number {
  color: #e63946;
  font-weight: 700;
}

/* Accordion Styles */
.accordion .card {
  background: transparent;
  border: none;
  margin-bottom: 0.9375rem;
}

.accordion .card-header {
  background-color: #fff;
  border: none;
  border-radius: 8px !important;
  padding: 0;
  transition: all 0.3s ease;
}

.accordion .card-header button.btn-link {
  color: #333;
  text-decoration: none;
  padding: 1.125rem 1.5625rem;
  font-weight: 600;
  font-size: 1rem;
}

.accordion .card-header button.btn-link:hover {
  text-decoration: none;
}

/* Active State Styles */
.accordion .card-header.active-header {
  background: linear-gradient(90deg, #f9484a 0%, #3b82f6 100%);
}

.accordion .card-header.active-header button.btn-link {
  color: #fff;
}

.accordion .card-body {
  background: transparent;
  color: #fff !important;
  padding: 0.9375rem 5px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.accordion .card-header i {
  font-size: 0.85rem;
  transition: transform 0.3s;
}

/* --- Section ihqv6s --- */
/* body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
} */

.testimonial-section {
  background-color: #f9faff;
  overflow: hidden;
}

.badge-pill-custom {
  border: 1px solid #ea4c5a;
  color: #ea4c5a;
  padding: 6px 1.125rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.section-title {
  font-weight: 700;
  color: #1c1c3c;
  line-height: 1.2;
}

.text-highlight {
  color: #ea4c5a;
}

.review-summary-badge {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.swipwer.serviceSlider {
  overflow-x: hidden;
}

/* Swiper Styles */
.swiper-container {
  padding: 2.5rem 1.25rem 3.75rem 1.25rem;
  margin: 0 -1.25rem;
  /* Slight overflow correction */
}

.testimonial-section .swiper-slide {
  width: 600px;
  height: auto;
  transition: all 0.3s ease;
  opacity: 0.4;
  transform: scale(0.9);
}

.testimonial-section .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

/* Card Styles */
.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  display: flex;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
  height: 100%;
  position: relative;
}

.card-left {
  flex: 0 0 140px;
  border-right: 1px solid #f0f0f0;
  margin-right: 1.875rem;
  padding-right: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.card-right {
  flex: 1;
  position: relative;
  padding-bottom: 20px;
}

.avatar {
  width: 4.375rem;
  height: 4.375rem;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-name {
  font-weight: 700;
  color: #1c1c3c;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.author-role {
  font-style: italic;
}

.rating-number {
  color: #1c1c3c;
  margin-top: auto;
}

.review-text {
  font-style: italic;
  line-height: 1.6;
  color: #6c757d;
  font-weight: 400;
}

.quote-icon {
  position: absolute;
  bottom: -10px;
  right: 0;
  color: #ffeff1;
  z-index: 0;
}

/* --- Section 3hb54 --- */
/* body {
font-family: 'Poppins', sans-serif;
} */

.stats-section {
  background-color: #f7f7fa;
  padding: 80px 0;
}

.stat-box {
  padding: 0 0.9375rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1e3b;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e9ecef;
  position: relative;
}

.stat-number {
  font-size: 4rem;
  font-weight: 600;
  color: #1a1e3b;
  line-height: 1;
  margin-right: 0.9375rem;
  letter-spacing: -1px;
}

.stat-suffix {
  background: linear-gradient(135deg, #d93d59 0%, #d93d59 30%, #5d4695 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
  margin-left: 2px;
}

.stat-desc {
  font-size: 0.75rem;
  color: #aeb0c2;
  line-height: 1.4;
  margin: 0;
  max-width: 140px;
}

/* --- Section ms3xy --- */
/* Import Font similar to design (e.g., Poppins) */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap'); */

.latest-news-section {
  /* font-family: 'Poppins', sans-serif; */
  background-color: #fff;
}

/* Header Styling */
.section-badge {
  border: 1px solid #e0e4eb;
  border-radius: 50px;
  padding: 6px 1.5rem;
  background-color: #fff;
}

.badge-text {
  color: #e65b65;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  color: #1f2b48;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.3;
  margin-top: 10px;
}

.highlight-text {
  color: #8e65b7;
  /* Purple hue from screenshot */
}

/* Card Base Styling */
.news-card {
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

/* Image Card Specifics */
.image-card {
  background-size: cover;
  background-position: center;
  position: relative;
  border: none;
}

.card-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

/* White Card Specifics */
.white-card {
  background-color: #fff;
  border: 1px solid #f0f2f5;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

/* Author Block */
.author-img {
  width: 45px;
  height: 45px;
  object-fit: cover;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e65b65;
}

.white-card .author-name {
  color: #e65b65;
}

.image-card .author-name {
  /* Override for image card: Screenshot shows red name even on dark, but description requested exact match. 
   Looking closely at crop 2, name 'Lorem Ipsum Co' is red. */
  color: #e65b65;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.author-role {
  font-size: 0.75rem;
  font-weight: 400;
}

/* Post Content */
.post-date {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.post-title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
}

/* Tags */
.custom-tag {
  display: inline-block;
  padding: 6px 1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-white {
  background-color: #fff;
  color: #1f2b48;
}

.tag-light {
  background-color: #f4f6f9;
  color: #5c677d;
}

/* --- Section zhxz1 --- */
.footer-section {
  background-color: #172038;
  padding: 80px 0 30px;
  /* font-family: 'Poppins', sans-serif; */
  overflow: hidden;
}

.privacy-policy ul {
  display: flex;
  gap: 1rem;
}

.privacy-policy ul li a {
  color: #fff;
}

.privacy-policy ul li a:hover {
  color: red;
}

.footer-logo {
  font-size: 2rem;
  letter-spacing: 1px;
}

.footer-desc {
  max-width: 400px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.bg-watermark {
  position: absolute;
  top: -20px;
  right: 10px;
  /* opacity: 0.05; */
  width: 250px;
  pointer-events: none;
  z-index: 0;
}

.footer-heading {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: #fff;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-links a.active {
  color: #ff3b3b;
}

.subscribe-form .form-control {
  background-color: #2c3652;
  border: none;
  border-radius: 50px;
  color: #fff;
  padding: 1.5625rem 1.25rem;
  font-size: 0.9rem;
}

.subscribe-form .form-control::placeholder {
  color: #6c757d;
}

.subscribe-form .form-control:focus {
  box-shadow: none;
  background-color: #344061;
}

.subscribe-form button {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #d15b75;
  font-size: 1.1rem;
  text-decoration: none;
}

.subscribe-form button:hover {
  color: #ff3b3b;
}

.copyright-area {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
}

.text-danger {
  color: #ff3b3b !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.service-card .card-overlay .service-info {
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 300;
  width: 60%;
}

.service-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(20 32 60 / 40%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.feature-list .feature-item:last-child {
  border: 0;
}

.product-card .card-body {
  margin: 0 1rem 1rem;
}

.portfolio-item img {
  border-radius: 20px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.portfolio-section .row {
  gap: 1.5rem 0;
}

.msdn {
  width: 100% !important;
  object-fit: contain !important;
}

/* innerpages Start */

.innerBan .overlay {
  position: absolute;
  text-align: left;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.innerBan h2 {
  font-size: 68px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
}

.innerBan {
  position: relative;
}

.description-text.abtdescription {
  font-size: 1.125rem;
}

.abtdescription + .abtdescription {
  margin-top: 2rem;
}

figure.videofig {
  position: relative;
}

figure.videofig a i {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: auto;
  color: #c0637b;
  font-size: 1.5rem;
}

.support-section.reliblesec {
  background: #fff;
}

section.cctv-section.cctvabtsec {
  background: #fff;
}

.feature-card.text-center {
  display: flex;
  flex-direction: column;
}

section.features-section.service-features .card-text {
  width: 64%;
}

section.features-section.service-features .icon-box {
  margin: 2rem 0;
}

section.features-section.service-features {
  border-radius: 30px;
  margin: 0 3.125rem;
}

section.service-sec1 .description-text {
  width: 80%;
}

.corewraps figure {
  position: relative;
}

.corewraps figure img {
  height: 30rem;
  border-radius: 30px;
}

.corecntnt {
  position: absolute;
  bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 4.6875rem;
  right: 2.5rem;
}

.corecntnt h3 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #fff;
}

.corecntnt p {
  font-size: 1.125rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  width: 43%;
}

.corewraps {
  margin-bottom: 1.875rem;
}

section.service-sec1 {
  padding: 5rem 0 3rem;
}

ul.testistar {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 0.625rem;
}

ul.testistar li a i {
  color: #ed8a19;
}

.testimonial-wraps p {
  font-size: 1.25rem;
  color: #556171;
  line-height: 1.5;
  border-bottom: 1px solid #5561715e;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  font-weight: 300;
  font-style: italic;
}

.userwrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.userwrap h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #eb3437;
}

.userwrap h3 span {
  display: block;
  color: #556171;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 5px;
}

.testimonial-wraps {
  border: 1px solid rgb(85 97 113 / 14%);
  border-radius: 45px;
  padding: 2.51rem 2.5rem;
  margin-bottom: 1.875rem;
}

section.testimonial-section.position-relative.tetsimonialpage {
  background: #fff;
  padding: 5rem 0;
}

section.faq-section.faq-page {
  background: #fff;
}

section.faq-section.faq-page .accordion .card-body {
  color: #000 !important;
}

.faq-page .faq-heading {
  color: #2c3a55;
}

section.faq-section.faq-page .contact-box {
  background: #f7f7fa;
}

.faq-page .accordion .card-header.active-header button.btn-link {
  background: linear-gradient(
    90deg,
    rgb(249, 72, 74) 0%,
    rgb(59, 130, 246) 100%
  );
}

section.faq-section.faq-page .accordion .card-header {
  background: #f7f7fa;
  color: #2c3a55;
}

.readyform .form-control {
  background-color: #f4f4f4;
  border: 1px solid #e0e0e0;
  box-shadow: unset;
  height: 49px;
  border-radius: 5px;
  outline: unset;
  margin: 0;
}

.readyform label {
  color: #696969;
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  margin: 1.0625rem 0 8px;
}

.readyform textarea.form-control {
  height: 168px;
}

.readyform .form-group {
  margin: 0 0 0 0;
}

.readyform button {
  background-color: #0b0e14;
  margin-top: 2.5rem;
  padding: 1.1875rem 2.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white);
  border: unset;
}

.ready-sec {
  padding: 6rem 0;
}

.btn-gradient:hover {
  background: #000;
  color: #fff;
}

.hero-btns .btn-gradient:hover {
  background: #fff;
  color: #000 !important;
}

.hero-btns .text-dark:hover {
  background: #d93d52 !important;
  color: #fff !important;
  border-color: transparent;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #eb3437;
}

.themeBtn:hover {
}

header.header-area a.nav-link.text-secondary:hover {
  color: #eb3437 !important;
}

/* access-control-sec  css start  */
.access-control-sec {
  padding: 6rem 0;
}

.access-control-sec p {
  font-size: 1.1rem;
}

/* access-control-sec  css end  */

/* privacy .privacy-policy sec css start  */
section.privacy-policy-sec {
  padding: 6rem 0;
}

.privacy-policy-sec p {
  font-size: 1.4rem;
  color: #000;
}

.privacy-policy-sec .main-two {
  font-size: 1.8rem;
  margin-top: 1.6rem;
}

/* privacy .privacy-policy sec css end  */

/* Marquee Container */
.brand-marquee-container {
  background: white;
  padding: 2.5rem 0 2.5rem 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

/* Gradient Overlays for Smooth Edge */
.brand-marquee-container::before,
.brand-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brand-marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, white, transparent);
}

.brand-marquee-container::after {
  right: 0;
  background: linear-gradient(-90deg, white, transparent);
}

/* Marquee Wrapper */
.brand-marquee {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
  gap: 40px;
  padding: 0 20px;
}

/* Pause on Hover */
.brand-marquee-container:hover .brand-marquee {
  animation-play-state: paused;
}

/* Brand Items */
.brand-marquee figure {
  margin: 0;
  flex: 0 0 auto;
  width: 9.375rem;
  height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.brand-marquee figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
  background: white;
}

/* Images */
.brand-marquee figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.7;
  transition: all 0.3s ease;
}

.brand-marquee figure:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.stats-section {
  padding: 4rem 4rem;
}

/* Masonry Layout - Exactly as you want */
.masanory-layout {
  margin-top: 30px;
  columns: 3;
  column-gap: 20px;
}

.masanory-layout figure {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.masanory-layout figure img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

/* Hover Effect */
.masanory-layout figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.masanory-layout figure:hover img {
  transform: scale(1.05);
}

/* Optional Overlay */
.masanory-layout figure a {
  display: block;
  position: relative;
  text-decoration: none;
}

.masanory-layout figure a::after {
  content: "🔍";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(255, 255, 255, 0.9);
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s ease;
  z-index: 2;
}

.masanory-layout figure:hover a::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Main Container */
.services-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 25px 0;
}

/* Main Label */
.services-main-label {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 12px;
  position: relative;
}

/* Grid Layout */
.services-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

/* Checkbox Item */
.service-checkbox-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-checkbox-item:hover {
  background: linear-gradient(
    90deg,
    rgba(220, 53, 69, 0.05) 0%,
    rgba(63, 81, 181, 0.05) 100%
  );
  border-color: transparent;
  border-image: linear-gradient(90deg, #dc3545 0%, #3f51b5 100%);
  border-image-slice: 1;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(63, 81, 181, 0.15);
}

/* Hide Default Checkbox */
.service-check-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

/* Custom Checkbox Label */
.service-check-label {
  position: relative;
  padding-left: 35px;
  font-size: 1rem;
  color: #495057;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  line-height: 1.4;
  transition: all 0.3s ease;
}

/* Custom Checkbox Design */
.service-check-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 2px solid #ced4da;
  border-radius: 6px;
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Hover State */
.service-checkbox-item:hover .service-check-label::before {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Checked State */
.service-check-input:checked + .service-check-label {
  background: linear-gradient(90deg, #dc3545 0%, #3f51b5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.service-check-input:checked + .service-check-label::before {
  content: "✓";
  background: linear-gradient(90deg, #dc3545 0%, #3f51b5 100%);
  border-color: transparent;
  color: white;
  font-size: 0.875rem;
  line-height: 22px;
  text-align: center;
  font-weight: bold;
}

/* Focus State for Accessibility */
.service-check-input:focus + .service-check-label::before {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
  outline: none;
}

/* Checked Item Background */
.service-check-input:checked ~ .service-checkbox-item {
  background: linear-gradient(
    90deg,
    rgba(220, 53, 69, 0.03) 0%,
    rgba(63, 81, 181, 0.03) 100%
  );
  border-color: transparent;
  border-image: linear-gradient(90deg, #dc3545 0%, #3f51b5 100%);
  border-image-slice: 1;
}

/* Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-checkbox-item {
  animation: slideIn 0.3s ease forwards;
  opacity: 0;
}

.service-checkbox-item:nth-child(1) {
  animation-delay: 0.05s;
}
.service-checkbox-item:nth-child(2) {
  animation-delay: 0.1s;
}
.service-checkbox-item:nth-child(3) {
  animation-delay: 0.15s;
}
.service-checkbox-item:nth-child(4) {
  animation-delay: 0.2s;
}
.service-checkbox-item:nth-child(5) {
  animation-delay: 0.25s;
}
.service-checkbox-item:nth-child(6) {
  animation-delay: 0.3s;
}
.service-checkbox-item:nth-child(7) {
  animation-delay: 0.35s;
}
.service-checkbox-item:nth-child(8) {
  animation-delay: 0.4s;
}

.mySwiperNew .swiper-button-next::after,
.mySwiperNew .swiper-button-prev::after {
  display: none;
}
.themeBtn::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(45deg, rgb(0 0 0 / 76%), #3f51b5);
  z-index: 0;
  transition: 0.6s ease;
  transform: scale(0);
  z-index: -1;
}

.themeBtn:hover::before {
  transform: scale(1.5);
}

.themeBtn:hover {
  color: var(--white);
}

.btn-about:hover {
  color: #fff;
  background-color: #000;
}

.btn-about:hover .icon-circle {
  background-color: #fff;
}

.btn-about:hover .icon-circle svg {
  filter: brightness(0);
}
