/* ==========================================================================
   Font Faces (Urbanist)
   ========================================================================== */

@font-face {
  font-family: UrbanistThin;
  src: url("../fonts/Urbanist/Urbanist-Thin.ttf");
}

@font-face {
  font-family: UrbanistThinItalic;
  src: url("../fonts/Urbanist/Urbanist-ThinItalic.ttf");
}

@font-face {
  font-family: UrbanistExtraLight;
  src: url("../fonts/Urbanist/Urbanist-ExtraLight.ttf");
}

@font-face {
  font-family: UrbanistExtraLightItalic;
  src: url("../fonts/Urbanist/Urbanist-ExtraLightItalic.ttf");
}

@font-face {
  font-family: UrbanistLight;
  src: url("../fonts/Urbanist/Urbanist-Light.ttf");
}

@font-face {
  font-family: UrbanistLightItalic;
  src: url("../fonts/Urbanist/Urbanist-LightItalic.ttf");
}

@font-face {
  font-family: UrbanistRegular;
  src: url("../fonts/Urbanist/Urbanist-Regular.ttf");
}

@font-face {
  font-family: UrbanistItalic;
  src: url("../fonts/Urbanist/Urbanist-Italic.ttf");
}

@font-face {
  font-family: UrbanistMedium;
  src: url("../fonts/Urbanist/Urbanist-Medium.ttf");
}

@font-face {
  font-family: UrbanistMediumItalic;
  src: url("../fonts/Urbanist/Urbanist-MediumItalic.ttf");
}

@font-face {
  font-family: UrbanistSemiBold;
  src: url("../fonts/Urbanist/Urbanist-SemiBold.ttf");
}

@font-face {
  font-family: UrbanistSemiBoldItalic;
  src: url("../fonts/Urbanist/Urbanist-SemiBoldItalic.ttf");
}

@font-face {
  font-family: UrbanistBold;
  src: url("../fonts/Urbanist/Urbanist-Bold.ttf");
}

@font-face {
  font-family: UrbanistBoldItalic;
  src: url("../fonts/Urbanist/Urbanist-BoldItalic.ttf");
}

@font-face {
  font-family: UrbanistExtraBold;
  src: url("../fonts/Urbanist/Urbanist-ExtraBold.ttf");
}

@font-face {
  font-family: UrbanistExtraBoldItalic;
  src: url("../fonts/Urbanist/Urbanist-ExtraBoldItalic.ttf");
}

@font-face {
  font-family: UrbanistBlack;
  src: url("../fonts/Urbanist/Urbanist-Black.ttf");
}

@font-face {
  font-family: UrbanistBlackItalic;
  src: url("../fonts/Urbanist/Urbanist-BlackItalic.ttf");
}

/* ==========================================================================
   Font Faces (Space Grotesk - Headings)
   ========================================================================== */

@font-face {
  font-family: SpaceGroteskLight;
  src: url("../fonts/Space_Grotesk/SpaceGrotesk-Light.ttf");
}

@font-face {
  font-family: SpaceGroteskRegular;
  src: url("../fonts/Space_Grotesk/SpaceGrotesk-Regular.ttf");
}

@font-face {
  font-family: SpaceGroteskMedium;
  src: url("../fonts/Space_Grotesk/SpaceGrotesk-Medium.ttf");
}

@font-face {
  font-family: SpaceGroteskSemiBold;
  src: url("../fonts/Space_Grotesk/SpaceGrotesk-SemiBold.ttf");
}

@font-face {
  font-family: SpaceGroteskBold;
  src: url("../fonts/Space_Grotesk/SpaceGrotesk-Bold.ttf");
}

:root {
  /* Normal Weights */
  --font-100: UrbanistThin;
  --font-200: UrbanistExtraLight;
  --font-300: UrbanistLight;
  --font-400: UrbanistRegular;
  --font-500: UrbanistMedium;
  --font-600: UrbanistSemiBold;
  --font-700: UrbanistBold;
  --font-800: UrbanistExtraBold;
  --font-900: UrbanistBlack;

  /* Italic Weights */
  --font-100-italic: UrbanistThinItalic;
  --font-200-italic: UrbanistExtraLightItalic;
  --font-300-italic: UrbanistLightItalic;
  --font-400-italic: UrbanistItalic;
  --font-500-italic: UrbanistMediumItalic;
  --font-600-italic: UrbanistSemiBoldItalic;
  --font-700-italic: UrbanistBoldItalic;
  --font-800-italic: UrbanistExtraBoldItalic;
  --font-900-italic: UrbanistBlackItalic;

  --font-heading-300: SpaceGroteskLight;
  --font-heading-400: SpaceGroteskRegular;
  --font-heading-500: SpaceGroteskMedium;
  --font-heading-600: SpaceGroteskSemiBold;
  --font-heading-700: SpaceGroteskBold;
  /* ========== COLORS ========== */
  --primary: #0a1b2d;
  --secondary: #0098f1;

  --gradient: linear-gradient(90deg, #a07b2c 0%, #fbf39f 100%);
  /* ========== TRANSITIONS ========== */
  --transition-fast: all 0.25s ease;

  /* ========== BORDER RADIUS ========== */
  --radius-sm: 13px;
  --radius-lg: 50px;

  /* ========== RESPONSIVE HEADING SIZE ========== */
  /* Auto scales between 28px and 56px */
  --main-heading-size: clamp(28px, calc(1.8rem + 2vw), 56px);
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: var(--font-400);
}

html,
body {
  font-family: var(--font-400);
}

a {
  text-decoration: none;
  transition: 0.3s ease 0s;
  color: var(--bs-black);
}

a:hover {
  color: var(--primary);
}

input,
button,
textarea {
  outline: none;
  border: 0px;
  background: none;
}

.webkit {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.webkit_1 {
  -webkit-line-clamp: 1;
}

.webkit_2 {
  -webkit-line-clamp: 2;
}

.webkit_3 {
  -webkit-line-clamp: 3;
}

.webkit_4 {
  -webkit-line-clamp: 4;
}

.hide {
  display: none !important;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.img-box {
  margin: 0px;
}

.img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.img-box-content img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: 0.3s;
}

li.nav-item.dropdown.navdesktop ul {
  flex-direction: column;
  top: 100%;
  left: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  gap: 7px;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

body {
  margin: 0;
  padding: 0;
  font-size: 15px;
  background: #fff;
  font-family: var(--font-400);
  line-height: 1.5;
  color: #6a7382;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
  color: #000001;
  margin-top: 0;
  line-height: 1.5;
  font-family: var(--font-heading-500);
}

p {
  margin-bottom: 15px;
  color: #5b5b5b;
  font-size: 16px;
}

/* Navbar */

.navbar-nav li {
  bottom: 0;
}

.navbar-nav li a {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff !important;
  display: inline-block;
  position: relative;
}

.navbar-nav li a:hover {
  color: #ffffff !important;
}

.navbar-nav .nav-link.active {
  color: #ffffff !important;
}

.header.sticky li a {
  /* color: white !important; */
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav .nav-link::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--primary);
  transition:
    width 0.3s ease 0s,
    left 0.3s ease 0s;
  width: 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
  left: 0;
}

ul.dropdown-menu {
  padding: 0;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
  background: white !important;
  color: #000001 !important;
}

.navbar-brand img {
  /* width: 245px;
  height: 115px; */
  width: auto;
  transition: 0.6s;
}

.navbar-nav li a {
  font-size: 1rem;
  font-weight: 400;
  color: #000001;
  border-radius: 5px;
}

.offcanvas {
  background-color: #000001;
}

.offcanvas .navbar-nav .dropdown-menu {
  margin-top: 10px;
  border-radius: 8px;
}

.offcanvas .navbar-nav .dropdown-menu li {
  padding: 10px 0;
}

.offcanvas .navbar-nav .dropdown-menu li:hover,
.offcanvas .navbar-nav .dropdown-menu li:hover a {
  border-radius: 8px;
}

.offcanvas .btn-close svg {
  fill: white;
}

.offcanvas-header>img {
  width: 15rem;
}

.dropdown-menu {
  background-color: var(--primary);
  border-radius: 0px;
}

.dropdown-item {
  background: none !important;
}

.dropdown-menu li {
  width: 100%;
  border-radius: 5px;
}

/* section */

section {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* header */
.header {
  z-index: 999;
  transition: 0.6s;
  background: transparent;
}

header.sticky {
  /* padding: 0px 0px; */
  /* position: fixed; */
  width: 100%;
  z-index: 999;
  background: transparent;
}

header.sticky #navbarNav {
  border-bottom: 0px !important;
}

header.sticky img {
  width: auto;
  transition: all 0.5s ease-in-out;
}

/* End */

/* partner */
.client {
  padding-top: 25px;
  padding-bottom: 24px;
  margin-top: -98px;
  background: white;
  backdrop-filter: blur(50px);
}

.client img {
  margin: auto;
}

/* end */

/* contact us */

.contact-us {
  padding-top: 60px;
  padding-bottom: 70px;
  background: url("../images/contact-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

/* end */

/* form */
/* Works for Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-control {
  resize: none;
  display: block;
  width: 100%;
  padding: 16px 15px;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #1e1e1e42;
  color: #1e1e1e !important;
  background-color: transparent;
}

.form-control:focus {
  background-color: transparent;
  border-color: var(--primary);
  box-shadow: none !important;
  outline: none !important;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #1e1e1e !important;
  font-weight: 400;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #1e1e1e !important;
  font-weight: 400;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #1e1e1e !important;
  font-weight: 400;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: white !important;
  font-weight: 400;
}

/* end */

/* Button */

.btn-theme {
  border: 2px solid var(--secondary);
  padding: 10px 35px;
  display: inline-block;
  font-weight: 500;
  background: var(--secondary);
  color: white;
  transition: all ease-in-out 0.3s;
  font-size: 1rem;
  font-family: var(--font-400);
}

.btn-theme:hover {
  border: 2px solid var(--secondary);
  background: transparent;
  color: var(--secondary);
}

.btn-check:focus+.btn,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.theme-primary-border {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.theme-primary-border:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn-main {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* end */

/* footer */
.footer {
  padding-top: 35px;
  padding-bottom: 25px;
  background: #000001;
}

.footer-logo p {
  color: white;
  margin-top: 20px;
  font-size: 1rem;
}

.footer-links>h6 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0;
  margin-top: 20px;
}

.footer-links>p {
  color: white;
  font-size: 1rem;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-links>ul {
  padding-left: 18px;
}

.footer-links>ul>li {
  padding: 20px 0px 0 0px;
  list-style-type: disclosure-closed;
  color: white;
  transition: all ease-in-out 0.3s;
}

.footer-links>ul>li:hover {
  color: var(--primary);
}

.footer-links>ul>li>a {
  text-decoration: none;
  font-size: 1rem;
  color: white;
  font-weight: 400;
  transition: all ease-in-out 0.3s;
}

.footer-links>ul>li>a:hover {
  color: var(--primary);
}

.social>p>span {
  margin: 0;
  margin-right: 15px;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
}

.social>p>a {
  color: var(--primary);
  margin: 0 5px;
  font-size: 1.2rem;
  transition: all ease-in-out 0.3s;
  background: white;
  padding: 10px 16px;
  border-radius: 30px;
}

.social>p>a:hover {
  color: #ffffff;
  background: var(--primary);
}

.footer-bootom-links>span {
  margin: 0;
  margin-right: 15px;
  color: white;
  font-size: 1rem;
  font-weight: 400;
}

/* end */

.animate-up {
  animation: up 3s ease-in-out infinite;
}

@keyframes up {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }

  100% {
    transform: translateY(0);
  }
}

.animate-zoom {
  animation: zoom-in-zoom-out 3s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(0.9);
    transition: all 0.5s ease-in-out;
  }

  30% {
    transform: scale(1);
    transition: all 0.7s ease-in-out;
  }

  50% {
    transform: scale(1.2);
    transition: all 0.7s ease-in-out;
  }

  50% {
    transform: scale(1);
    transition: all 0.7s ease-in-out;
  }

  100% {
    transform: scale(0.9);
    transition: all 0.7s ease-in-out;
  }
}

.footer-logo .trust-img {
  width: 10rem;
}

.navbar-dark .navbar-nav .nav-link {
  padding: 0;
  padding-bottom: 4px;
}

ul.navbar-nav {
  gap: 22px;
}

/* =========================================== Custom Css ===========================================  */

.top-bar {
  background: var(--primary);
  padding: 10px 0;
}

.top-warpper {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.social-media {
  display: flex;
  align-items: center;
  gap: 20px;
}

li.nav-item a {
  color: black !important;
}

li.nav-item .nav-link.active,
li.nav-item .nav-link:hover {
  color: black !important;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 21px;
  padding: 10px 20px;
  background: white;
}

.hero-section {
  background-image: url(../images/hero-bg.png);
  padding-top: 240px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 150px;
  background-attachment: fixed;
}

.whole-header {
  position: absolute;
  width: 100%;
}

header .navbar {
  padding: 0;
}

.main-hours span {
  color: var(--secondary);
}

.main-hours {
  color: #cccccc;
}

.social-media a {
  color: #cccccc;
}

.hero-content {
  display: flex;
  /* align-items: center; */
  justify-content: space-around;
  gap: 17px;
  margin-bottom: -180px;
  align-items: flex-start;
}

.hero-content h1 {
  color: white;
  font-size: 46px;
  font-family: var(--font-heading-600);
  margin-top: 0;
  margin-top: 70px;
}

/* 1. Establish the 3D space around the image */
.hero-content .img-box-content {
  perspective: 1200px;
  /* Gives the depth required for 3D elements */
}

/* 2. Create the 3D container and assign the smooth animation loop */
.shield-3d-container {
  display: inline-block;
  transform-style: preserve-3d;
  animation: floatAndTilt3d 6s ease-in-out infinite alternate;
  will-change: transform;
}

/* 3. Style the image inside to project forward and cast a dynamic shadow */
.shield-3d-container img {
  display: block;
  max-width: 100%;
  height: auto;

  /* Pushes the graphic forward in 3D space */
  transform: translateZ(50px);

  /* Deep, realistic ambient shadow underneath the shield */
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5));

  /* Smooth transition for when the user hovers over it */
  transition:
    filter 0.4s ease,
    transform 0.4s ease;
}

/* 4. Interactive Hover: The shield responds slightly when hovered */
.shield-3d-container:hover img {
  transform: translateZ(80px) scale(1.03);
  /* Pops out even further */
  filter: drop-shadow(0 45px 50px rgba(0, 0, 0, 0.65));
  /* Shadow deepens */
}

/* 5. The 3D Animation Loop */
@keyframes floatAndTilt3d {
  0% {
    /* Starts slightly tilted down and left, sitting at normal height */
    transform: rotateX(-8deg) rotateY(-10deg) translateY(0px);
  }

  50% {
    /* Midpoint: Tilts upward and right while floating up slightly */
    transform: rotateX(8deg) rotateY(12deg) translateY(-12px);
  }

  100% {
    /* Ends tilted slightly down-right, pulled forward */
    transform: rotateX(-5deg) rotateY(8deg) translateY(4px);
  }
}

/* Ensure the text blocks line up perfectly and handle the clipping boundary */
.hero-text {
  overflow: hidden;
  /* Multi-layered curtain effect */
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

/* The actual text styling and entry animation settings */
.hero-text span {
  display: block;
  opacity: 0;
  will-change: transform, opacity;

  /* Using a custom cubic-bezier for a luxury, premium slowdown effect.
       Duration is 1.4s so it feels intentional, smooth, and elegant.
    */
  animation: textRevealFromCenter 1.4s cubic-bezier(0.25, 1, 0.3, 1) forwards;
}

/* Left text delays slightly so the eye tracks the layout left-to-right */
.left-text span {
  animation-delay: 0.2s;
}

/* Right text comes in a fraction later */
.right-text span {
  animation-delay: 0.4s;
}

/* The Animation Keyframes:
   Starts slightly lower and shifted toward the center shield, 
   then glides flawlessly into its natural position.
*/
@keyframes textRevealFromCenter {
  0% {
    opacity: 0;
    /* Starts pushed down (25px) and slightly inward toward the center */
    transform: translateY(25px) scale(0.98);
  }

  40% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Section Base & Typography Setup */
.sec-01 {
  padding: 60px 0;
  background-color: #ffffff;
}

.sec-01 .main-heading {
  font-size: 40px;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 20px;
}

.sec-01 .main-desc {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.sec-01 .security-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* Custom Tabs Container Mockup Match */
.custom-tabs-container {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: #ffffff;
}

.custom-tabs-nav {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  background-color: #ffffff;
}

.custom-tab-btn {
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  border-right: 1px solid #e0e0e0;
  transition: all 0.2s ease-in-out;
  background-color: #ffffff;
}

/* Match active state line behavior from the graphic */
.custom-tab-btn.active {
  color: var(--secondary) !important;
  background-color: #ffffff;
  border-bottom: 2px solid #ffffff;
  margin-bottom: -1px;
  position: relative;
  z-index: 5;
}

.custom-tabs-content {
  padding: 25px;
}

.custom-tab-pane {
  display: none;
}

.custom-tab-pane.active {
  display: block;
}

.custom-tab-pane p {
  color: #555555;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.custom-tab-pane p.sub-text {
  font-size: 0.85rem;
  color: #777777;
  margin-bottom: 0;
}

/* Bottom Feature Cards Outer Box */
.sec-01-cards {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 35px;
  background-color: #ffffff;
}

/* Feature Cards Design */
.feature-card .icon-box {
  width: 56px;
  height: 56px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.feature-card .icon-box i {
  font-size: 29px;
  line-height: 1;
  color: black;
}

.feature-card .card-text-wrapper h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.feature-card .card-text-wrapper p {
  color: #666666;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.sec-01 .row {
  align-items: center;
}

/* Base Section Setup */
.sec-02 {
  padding: 80px 0;
  background-color: #f9f9f9;
  /* Subtle off-white background matching the image container */
}

/* Center heading strictly via the section parent selector as requested */
.sec-02 .main-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 15px;
}

.sec-02 .sec-02-desc {
  color: #666666;
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.6;
}

/* Pristine Grid Cards Structure */
.sec-02 .service-card {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 40px 30px;
  height: 100%;
  /* Smooth, minimal clean shadow drop */
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  background: #ffffff;
  border: 1px solid #dadada;
  box-shadow: 0px 10px 20px rgba(49, 49, 49, 0.05);
}

/* Clean UI Hover feedback */
.sec-02 .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

/* Icon Configuration matching your assets layout */
.sec-02 .service-card .icon-box {
  width: 65px;
  height: 65px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-02 .service-card .icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Inside Typography */
.sec-02 .service-card .card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
  letter-spacing: -0.3px;
}

.sec-02 .service-card .card-text {
  font-size: 0.88rem;
  color: #777777;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Base Section Layout */
.sec-03 {
  padding: 100px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.sec-03 .main-heading {
  font-size: 2.75rem;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.sec-03 .sec-03-content p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Structural Grid Cards Styling */
.why-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 35px 30px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

/* Icon Box handling the custom layout gradient */
.why-card .gradient-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-image: var(--gradient);
  /* Dynamic layout injection */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  margin-bottom: 25px;
}

.why-card .gradient-icon-box i {
  font-size: 22px;
  font-weight: bold;
}

/* Card Micro-Typography */
.why-card .why-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

.why-card .why-card-text {
  font-size: 0.88rem;
  color: #777777;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Clean Inline Read More Link UI */
.why-card .why-read-more {
  font-size: 0.9rem;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  transition: gap 0.2s ease;
}

.why-card .why-read-more i {
  font-size: 16px;
  margin-top: 1px;
}

.why-card .why-read-more:hover {
  color: #000000;
  gap: 6px;
}

/* Universal Styles for Edge-to-Edge Viewports */
.edge-bleed-section {
  width: 100%;
  background-color: #f9f9f9;
  /* Crisp divide lines between sections */
  padding: revert-layer;
}

/* Background alternative contrast matching image sequence */
.sec-05 {
  background-color: #fafafa;
}

/* Target Headings inside these sections safely without global footprint updates */
.edge-bleed-section .main-heading {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #000000;
  letter-spacing: -0.5px;
}

/* Content Container Controls */
.bleed-content-box {
  width: 100%;
  max-width: 620px;
  /* Forces nice text hierarchy wrapping limits */
  margin: 0 auto;
  /* Keeps it perfectly centered relative to its column container */
}

.bleed-content-box p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
}

.bleed-content-box p.small {
  font-size: 0.88rem;
  color: #777777 !important;
}

/* The Core Image Box Logic: Forces fill and corner touch layout bounds */
.bleed-img-box {
  width: 100%;
  height: 100%;
  min-height: 520px;
  /* Guarantees strong height presence on complex desktop wide scales */
  position: relative;
  overflow: hidden;
}

.edge-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keeps image correctly cropped and centered automatically */
  position: absolute;
  top: 0;
  left: 0;
}

/* CTA Container Background Base Rules */
.sec-07-cta {
  padding: 60px 0;
  background: linear-gradient(90deg, #0098f1 0%, #00588b 100%);
  position: relative;
  overflow: hidden;
}

/* Typography scale layout adjustments */
.sec-07-cta .cta-heading {
  font-size: 2.25rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.sec-07-cta .cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ==========================================================================
   BUTTONS STYLING
   ========================================================================== */

/* 1. Primary Gradient Button */
.btn-cta-gradient {
  background: var(--gradient);
  color: #000000 !important;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); */
}

.btn-cta-gradient i {
  font-size: 18px;
  transition: transform 0.25s ease;
}

/* Hover: Lift effect and slight icon shift */
.btn-cta-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  opacity: 0.95;
}

.btn-cta-gradient:hover i {
  transform: translate(2px, -2px);
}

/* 2. Secondary Ghost Outline Button */
.btn-cta-outline {
  background: transparent;
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 26px;
  /* Inset balanced to match master border width */
  border-radius: 4px;
  border: 2px solid #ffffff;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover: Fills background complete solid white, text flips color tone */
.btn-cta-outline:hover {
  background-color: #ffffff;
  color: #00588b !important;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Base Layout Setup */
.testimonials {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Force horizontal section header centering without touching global styles */
.testimonials .main-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* Card Box-Model Parameters matching the mockup design layout */
.testimonial-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 40px 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.25s ease;
  box-shadow: 0px 10px 20px rgba(49, 49, 49, 0.05);
  height: 350px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Star Ratings Colors */
.stars-container i {
  color: #ff9900;
  /* Warm golden star fill tone */
  font-size: 1.15rem;
  margin-right: 2px;
}

/* Mute the empty un-filled star for 4-star variance formatting */
.stars-container.rating-4 i:last-child {
  color: #cbd5e1;
}

/* Body Text Block Quotes Formatting */
.testimonial-quote {
  font-size: 0.95rem;
  color: #444444;
  line-height: 1.6;
  font-style: normal;
  margin-bottom: 0;
  max-height: 300px;
  overflow-y: auto;
  /* 'scroll' ki jagah 'auto' behtar hai taake scrollbar sirf zaroorat par dikhe */

  /* Modern Browsers (Firefox wagera) ke liye */
  scrollbar-color: #808080 #ffffff;
  /* Pehla color gray (scroller), doosra white (background) */
  scrollbar-width: thin;
}

/* Chrome, Safari aur Edge ke liye (Yeh likhna zaroori hai kyunki scrollbar-color sab pe kaam nahi karta) */
.testimonial-quote::-webkit-scrollbar {
  width: 4px;
  /* Scrollbar ki lambai/chaorai */
}

.testimonial-quote::-webkit-scrollbar-thumb {
  background-color: #808080;
  /* Scroller ka color gray */
  border-radius: 10px;
}

.testimonial-quote::-webkit-scrollbar-track {
  background-color: transparent;
  /* Background ko transparent ya white (#ffffff) kar dein */
}

/* User Identity Structural Architecture */
.user-profile-meta {
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}

.profile-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  /* background-color: #0098f1; */
  /* In case fallback visualization is needed */
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info .user-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2px;
}

.profile-info .user-designation {
  font-size: 0.8rem;
  color: #777777;
  margin-bottom: 0;
  line-height: 1.4;
}

.clients {
  background: #f9f9f9;
}

.main-heading {
  font-size: 40px;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 20px;
}

.clients .img-box-content {
  background: #ffffff;
  box-shadow: 0px 20px 50px rgba(49, 49, 49, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 21px;
  transition: 0.3s ease-in;
}

.clients .img-box-content img {
  height: 100px !important;
  object-fit: scale-down;
}

.clients .img-box-content:hover {
  transform: translateY(-4px);
}

.clients-heading {
  margin-bottom: 50px;
}

/* Layout Positioning System */
.sec-08-contact {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}

/* Push upper layer relative content above the absolute map canvas overlay */
.contact-upper-content {
  position: relative;
  z-index: 10;
  /* padding: 80px 0 60px 0; */
  background: linear-gradient(180deg,
      #ffffff 40%,
      rgba(255, 255, 255, 0.85) 75%,
      rgba(255, 255, 255, 0) 100%);
}

/* Left Typography Formatting Styles */
.sec-08-contact .main-heading {
  font-size: 2.75rem;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.contact-sub-desc {
  color: #555555;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 520px;
}

/* Contact Meta Channels Row Block UI design */
.meta-item .meta-icon-box {
  width: 44px;
  height: 44px;
  background-color: var(--gradient);
  background-color: #d4af37;
  /* Clean fallback gold tone if variable isn't globally declared */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}

.meta-item .meta-icon-box i {
  font-size: 20px;
}

.meta-text-box h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}

.meta-text-box p {
  font-size: 0.9rem;
  color: #555555;
  margin-bottom: 0;
}

.meta-text-box p a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.meta-text-box p a:hover {
  color: #0098f1;
}

/* Right Side Lead Submission Card Styling layout structure */
.floating-contact-card {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 45px 40px;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
  border: 1px solid #f0f0f0;
}

.floating-contact-card .form-block-title {
  font-size: 1.75rem;
  color: #000000;
  letter-spacing: -0.3px;
  text-align: center !important;
  width: 100%;
}

/* Input Form Controls Field Validation Structural States Styling */
.form-validate-input {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #000000;
  transition: all 0.25s ease-in-out;
}

.form-validate-input:focus {
  background-color: #ffffff;
  border-color: #0098f1;
  box-shadow: 0 0 0 3px rgba(0, 152, 241, 0.15);
  outline: none;
}

/* Instant visual validation status checks */
.form-validate-input.is-invalid {
  border-color: #dc3545 !important;
  background-color: #fff8f8;
}

.form-validate-input.is-valid {
  border-color: #198754 !important;
}

/* Bottom Full Layout Map Wrapper Container */
.contact-map-background-canvas {
  width: 100%;
  margin-top: -230px;
  /* Pulls map structurally behind the content shadows cleanly */
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  /* height: 480px; */
}

.contact-map-background-canvas iframe {
  display: block;
  min-height: 480px;
}

.contact-main {
  background: white;
  padding: 40px;
  border-radius: 15px;
  background: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Base Footer Structural Configuration */
.footer {
  background-color: var(--primary);
  /* Image context dark navy color tone token injection */
  padding: 80px 0 30px 0;
  color: #a0aec0;
  /* Soft grey text readability setting */
  font-size: 0.92rem;
  overflow: hidden;
}

/* Brand Area Styling */
.footer-logo {
  max-height: 85px;
  width: auto;
  object-fit: contain;
}

.footer .brand-desc {
  line-height: 1.6;
  color: #b2c1d3;
  max-width: 440px;
}

/* Inlined Newsletter Input Form Component Block */
.footer-newsletter-box {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 6px 12px;
  background-color: rgba(255, 255, 255, 0.03);
  max-width: 440px;
}

.newsletter-input {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  width: 100%;
  padding: 8px 4px;
  font-size: 0.9rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-submit-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  padding: 0 4px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.newsletter-submit-btn:hover {
  color: #0098f1;
}

/* Timing Layout Content Rows */
.open-hours-text {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
}

.open-hours-text .highlight-blue {
  color: #0098f1;
  /* Matches the graphic highlight style */
  font-weight: 600;
}

/* Block Grid Social Media Links Component Group */
.social-icon-btn {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-btn:hover {
  background-color: #0098f1;
  color: #ffffff;
  transform: translateY(-2px);
  border-color: #0098f1;
}

/* Hyperlink Navigation Systems Columns Content */
.footer-block-heading {
  font-size: 1.25rem;
  position: relative;
  letter-spacing: -0.3px;
}

.footer-links-list li a {
  color: #b2c1d3;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.footer-links-list li a i {
  font-size: 16px;
  color: #d4af37;
  transition: transform 0.2s ease;
}

.footer-links-list li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-links-list li a:hover i {
  color: #0098f1;
}

/* Dark Consolidated Horizontal Contact Badge Bar layout block box rules */
.footer-contact-badge-bar {
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 24px;
  border-radius: 4px;
  width: 100%;
  margin-top: auto;
  background: rgba(255, 255, 255, 0.1);
}

.badge-gold-icon {
  color: #d4af37;
  /* Warm graphic golden icon tint value setup */
  font-size: 1.25rem;
}

.badge-text-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}

.badge-text-link:hover {
  color: white;
  text-decoration: underline;
}

.badge-bar-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 0 10px;
}

/* Separation Rule Customizing */
.footer-divider-line {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 40px 0 25px 0;
  opacity: 1;
}

/* Bottom Bar Sub-Footer Text Mechanics styling rules */
.footer-bottom-row {
  color: #8a9cae;
  font-size: 0.85rem;
}

.sub-footer-link {
  color: #8a9cae;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sub-footer-link:hover {
  color: #ffffff;
}

.hero-content.other-hero-section-content {
  margin: 0;
  flex-direction: column;
  gap: 7px;
}

.hero-content.other-hero-section-content h1 {
  line-height: 1.2;
  margin: 0;
}

.hero-content.other-hero-section-content p {
  color: #ffffff9c;
}

.mission-card {
  padding: 17px;
  background: #f9f9f9;
  padding: 35px;
  background: #f9f9f9;
  border: 1px solid #dadada;
  box-shadow: 0px 10px 20px rgba(49, 49, 49, 0.05);
  border-radius: 0px;
  margin-bottom: 20px;
}

.mission-card h5 {
  font-size: 30px;
  font-family: var(--font-heading-700);
}

.mission-card p {
  /* color: #5B5B5B; */
}

.mission-card ul {
  padding: 0;
  list-style-position: inside;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #5b5b5b;
}

.mission-card ul li::marker {
  color: var(--secondary);
}

.about-us-section {
  background-image: url(../images/about-us-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 0;
}

.about-us-img {
  transform: translateX(100px);
  margin-left: -50px;
}

.about-us-content p {
  color: #ffffffb5;
}

/* Container Layout */
.check-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  width: 100%;
  max-width: 800px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.check-icon-box {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.check-icon-box i {
  color: #000000;
  font-size: 22px;
  font-weight: 600;
}

.check-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

section.hero-section.other-hero-section {
  margin: 0;
}

.about-us-content {
  padding: 30px 0;
}

.security-guard {
  background-image: url(../images/security-guard-bg.png);
}

.service-secction-01 {
  background: #f9f9f9;
}

/* Checklist Container Spacing */
.check-list-wrapper {
  margin-top: 30px;
  margin-bottom: 35px;
  width: 100%;
}

/* Row Dividers */
.check-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e9ecef;
}

/* Remove divider on final item to perfectly match image_3a19cc.jpg */
.check-list-item:last-child {
  border-bottom: none;
}

/* Gradient Badge Wrapper */
.check-list-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Remix Icon Inner Element Settings */
.check-list-icon i {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
}

/* Row Text Settings */
.check-list-text {
  font-size: 15px;
  color: #495057;
  font-weight: 500;
}

.service-card.service-sec-03-card {
  flex-direction: column;
  display: flex;
  align-items: center;
  text-align: center;
}

/* Section Layout Tweaks */
.training {
  padding: 80px 0;
}

.training-desc {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.6;
  margin-top: 15px;
  margin-bottom: 35px;
}

/* Steps Layout Container */
.training-steps-wrapper {
  width: 100%;
}

/* Individual Step Row Styling */
.training-step-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid #e9ecef;
}

/* Remove bottom border from the final item to match image_2e397b.png */
.training-step-item:last-child {
  border-bottom: none;
}

/* Large Number Gradient Text Configuration */
.step-number {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: sans-serif;
  /* Adjust font family to match your primary theme font */
  min-width: 45px;
  /* Ensures vertical alignment when typography widths change slightly */
}

/* Text Content Area */
.step-text-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Inner Heading */
.step-title {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

/* Inner Description Description */
.step-desc {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.4;
  margin: 0;
}

/* Base Section Wrapper */
.training-fluid-sec {
  width: 100%;
  overflow: hidden;
  padding: 0;
}

/* 2-Column Edge to Edge Grid Setup */
.training-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  align-items: center;
}

/* Left Image Box: Absolutely flush with no gaps */
.training-left-flush {
  width: 100%;
  height: 100%;
  display: flex;
}

.training-left-flush img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures image covers area beautifully without warp distortion */
  display: block;
}

/* Right Content Box: Has padding so text aligns like standard containers */
.training-right-content {
  padding-left: 8%;
  /* Adjust to mimic your main container margins on the right side */
  padding-right: 5%;
  display: flex;
  justify-content: flex-start;
}

/* Restricts content width so it looks crisp and readable */
.content-inner-box {
  max-width: 580px;
  width: 100%;
}

/* Headings & Descriptions */
.training-desc {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.6;
  margin-top: 20px;
  margin-bottom: 35px;
}

/* Steps Layout Box */
.training-steps-wrapper {
  width: 100%;
}

/* Row Dividers */
.training-step-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #e9ecef;
}

.training-step-item:last-child {
  border-bottom: none;
}

/* Large Number Style with Gradient Masking */
.step-number {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-width: 50px;
}

/* Step Typography */
.step-text-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

.step-desc {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
  margin: 0;
}

/* Base Section Setup */
.faqs {
  background-color: #f9f9f9;
  /* Light background styling matching image_209e35.png */
  padding: 50px 0;
}

/* Sticky Sidebar Column Logic */
.faq-sticky-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
  /* Offset spacing from top viewport window edge when scrolling */
  margin-bottom: 40px;
}

/* Sidebar Text Layout styling */
.heading {
  font-size: 32px;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 20px;
}

.faq-side-desc {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Right FAQ Stack Layout Container */
.faq-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Gap between static card cards */
}

/* Pure CSS Always-Open Cards Layout (No Toggle JavaScript Required) */
.faq-static-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  /* Extremely fine drop shadow elevation */
  transition: transform 0.3s ease;
}

/* Typography settings for content blocks */
.faq-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-card-text {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

#navbarNav>ul>li.nav-item.dropdown.navdesktop>ul>li>a {
  color: white !important;
}

/* Container segment matching the bright secondary color ribbon look */
.hero-bottom-main {
  background-color: var(--secondary);
  /* Applied bright blue style from image_74375c.png */
  padding: 24px 0;
  width: 100%;
}

/* Individual alignment wrappers */
.hero-contact-row {
  width: 100%;
}

.hero-info-item {
  flex: 1;
  min-width: 220px;
  /* Ensures balanced wrap tracking on tablet viewports */
}

/* Rounded translucent background badges behind icons */
.info-icon-badge {
  width: 42px;
  height: 42px;
  background-color: rgba(255,
      255,
      255,
      0.15);
  /* Soft brightened contrast circle layer */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.info-icon-badge i {
  font-size: 1.15rem;
}

/* Text layout formatting stacked properties */
.info-text-block {
  display: flex;
  flex-direction: column;
}

.info-text-block .info-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: none;
  font-weight: 400;
  line-height: 1.3;
}

.info-text-block .info-value {
  font-size: 1rem;
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.4;
  transition: opacity 0.2s ease;
}

/* Interactive link effects */
a.info-value:hover {
  opacity: 0.85;
}

/* Section Wrapper Layout Configuration */
.contact-form-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

/* Master card structural configuration layout */
.contact-card-wrapper {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
  border: 1px solid #edf2f7;
  height: 100%;
}

/* 1. Request Form Card Left Typography Specifics */
.form-main-card .sub-title {
  color: var(--secondary);
  /* Light blue brand identifier label */
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.form-main-card .form-heading {
  font-size: 2.25rem;
  color: #000000;
  letter-spacing: -0.5px;
}

/* Input Fields styling components architecture */
.contact-form-section .form-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 6px;
}

.contact-form-section .input-style {
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 0.92rem;
  color: #000000;
  transition: all 0.2s ease-in-out;
}

.contact-form-section .input-style:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 152, 241, 0.15);
  outline: none;
}

.contact-form-section .check-label-text {
  font-size: 0.85rem;
  color: #718096;
  line-height: 1.5;
}

.contact-form-section .security-notice {
  font-size: 0.8rem;
  color: #718096;
}

/* Theme Button Overrides inside form wrapper context */
.contact-form-section .btn-theme {
  background-color: var(--secondary);
  color: #ffffff;
  border: none;
  transition: background-color 0.2s ease;
}

.contact-form-section .btn-theme:hover {
  background-color: #0080cc;
  /* Slightly darkens on hover interaction matrices */
  color: #ffffff;
}

/* 2. Sidebar Info Container Blocks Structuring Rules */
.info-white-card {
  height: auto;
}

/* Icon layout headers boxes variance structural classes */
.header-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.header-icon-box.blue-variant {
  background-color: rgba(0, 152, 241, 0.1);
  color: var(--secondary);
}

.header-icon-box.plain-variant {
  background-color: #f1f5f9;
  color: #000000;
}

.header-icon-box.dark-variant {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.card-inner-title {
  font-size: 1.35rem;
  color: #000000;
}

/* Key Value Row Blocks Items structural listings formatting rows */
.info-data-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.info-data-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-data-list .label {
  font-size: 0.9rem;
  color: #718096;
}

.info-data-list .value {
  font-size: 0.92rem;
  color: #1a202c;
  font-weight: 500;
}

.info-data-list .emergency-color {
  color: #10b981;
  /* Highlighting green seen in image_7442fd.png layout */
}

/* Office Navigation Component Tab Button styles formatting layout rules */
.city-selector-bar {
  border-bottom: 1px solid #edf2f7;
  padding-bottom: 12px;
}

.btn-city {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #4a5568;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 500;
}

.btn-city.active,
.btn-city:hover {
  background-color: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
}

.office-location-content .office-name {
  font-size: 1.05rem;
  color: #000000;
}

.office-location-content .office-address {
  font-size: 0.88rem;
  color: #718096;
  line-height: 1.5;
}

.office-phone-link {
  color: var(--secondary);
  text-decoration: none;
  font-size: 0.95rem;
}

/* 3. Dark Mode Office Timing Component styling wrapper rules configurations */
.info-dark-card {
  background-color: var(--primary);
  /* Deep blue-black identity background assignment injection */
  border: none;
  height: auto;
}

.info-dark-card .info-data-list li {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.info-dark-card .emergency-active-color {
  color: #10b981;
}

.dark-card-alert-banner {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-card-alert-banner i {
  color: #a0aec0;
  font-size: 1.1rem;
}

.small-alert-text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #cbd5e1;
}

/* Custom Modal Frame enhancement */
.modal-custom-card {
  border-radius: 8px !important;
  overflow: visible;
  /* Allows close button to sit cleanly slightly off-edge */
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Beautiful Rounded Close Button Layout */
.modal-close-trigger {
  top: 6px;
  right: 6px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  z-index: 1056;
  border: 2px solid #ffffff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.modal-close-trigger:hover {
  transform: scale(1.1);
  color: #ffffff;
  opacity: 0.95;
}

.modal-close-trigger i {
  font-size: 18px;
  font-weight: bold;
}

/* Subtitle styling below the header */
.form-block-subtitle {
  font-size: 0.88rem;
  line-height: 1.4;
  color: #64748b !important;
}

/* ==========================================================================
   INFINITE PULSE ZOOM IN / ZOOM OUT ANIMATION
   ========================================================================== */
.animated-pulse-text {
  display: inline-block;
  /* Essential for transform animations to scale correctly */
  animation: smoothZoomPulse 2.5s infinite ease-in-out;
  transform-origin: left center;
  /* Keeps text alignment anchored nicely */
}

@keyframes smoothZoomPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
    /* Soft, non-aggressive premium zoom peak */
  }

  100% {
    transform: scale(1);
  }
}

#navbarNav>ul>li.nav-item.dropdown.navdesktop>ul>li>a:hover {
  color: black !important;
}

/* Container positioning context */
.custom-dropdown-wrapper {
  position: relative;
}

/* Arrow rotation decoration */
.custom-dropdown-wrapper .dropdown-arrow {
  font-size: 14px;
  display: inline-block;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.custom-dropdown-wrapper:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Content Area */
.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 620px;
  background-color: var(--primary);
  /* Dark primary background */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
  z-index: 1000;
}

/* Smooth reveal display rule */
.custom-dropdown-wrapper:hover .custom-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* 2-Column Grid Alignment */
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* Grid Interactive Elements */
.dropdown-grid-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  text-decoration: none !important;
  border-radius: 8px;
  background: transparent;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

/* Item Heading Text */
.dropdown-grid-item .item-content h6 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  transition: color 0.25s ease;
}

/* Icon Frame container */
.dropdown-grid-item .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--secondary);
  /* Light accents */
  font-size: 18px;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

/* Hover States & Fluid Elevations */
.dropdown-grid-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateX(3px);
}

.dropdown-grid-item:hover .icon-box {
  background-color: var(--secondary);
  color: var(--primary);
}

.dropdown-grid-item:hover .item-content h6 {
  color: var(--secondary);
}

.dropdown-grid a.dropdown-grid-item {
  flex-direction: row;
  display: flex;
  align-items: center;
}

/* Responsive Handling for Mobile Views */
/* Persistent Highlight for the Active Sub-service Link Content */
.dropdown-grid-item.active-inner {
  background-color: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--secondary);
  border-radius: 0 8px 8px 0;
}

.dropdown-grid-item.active-inner .icon-box {
  background-color: var(--secondary);
  color: var(--primary);
}

.dropdown-grid-item.active-inner .item-content h6 {
  color: var(--secondary);
}

.executive-sevice {
  background-image: url(../images/executive-bg-img.png);
}

.armed-sevice {
  background-image: url(../images/armed-bg.png);
}

.event-sevice {
  background-image: url(../images/event-bg.png);
}

.cctv-sevice {
  background-image: url(../images/cctv-bg.png);
}

.electronic-sevice {
  background-image: url(../images/electronic-bg.png);
}

.access-sevice {
  background-image: url(../images/access-bg.png);
}

.reception-sevice {
  background-image: url(../images/reception-bg.png);
}

.bulletproof-sevice {
  background-image: url(../images/bulletproof-bg.png);
}

.consultancy-sevice {
  background-image: url(../images/consultancy-bg.png);
}

/* Base container overrides */
.custom-menu-body {
  background-color: #11141a !important;
  padding: 25px 30px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Master List Resets */
.custom-nav-list,
.custom-sub-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Primary Navigation Items */
.custom-nav-list>li {
  margin-bottom: 8px;
}

.custom-nav-item {
  display: block;
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none !important;
  padding: 10px 0;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.custom-nav-item:hover,
.custom-nav-item.active {
  color: #ffc107 !important;
  padding-left: 5px;
}

/* --- CUSTOM DROPDOWN SPACING FIX --- */

.custom-toggle-input {
  display: none !important;
  visibility: hidden !important;
}

.custom-dropdown-section {
  margin: 5px 0;
  padding: 5px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.custom-dropdown-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 0;
  margin-bottom: 0;
  /* Clear bottom margins */
  cursor: pointer;
  user-select: none;
  transition: color 0.25s ease;
}

.custom-dropdown-title:hover {
  color: #ffc107;
}

.custom-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-right: 5px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide animation layout engine container */
.custom-sub-list-container {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Inner menu list styles */
.custom-sub-list {
  min-height: 0;
  padding-left: 15px !important;
  border-left: 2px solid rgba(255, 255, 255, 0.05);
}

.custom-sub-list li {
  padding: 0;
  margin: 0;
}

.custom-sub-item {
  display: block;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.95rem;
  text-decoration: none !important;
  padding: 8px 0;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.custom-sub-item:hover,
.custom-sub-item.active {
  color: #ffc107 !important;
  transform: translateX(4px);
}

/* --- ACTIVE TRIGGERS --- */

.custom-dropdown-section:has(.custom-toggle-input:checked) .custom-arrow {
  transform: rotate(-135deg);
}

.custom-dropdown-section:has(.custom-toggle-input:checked) .custom-dropdown-title {
  color: #ffc107;
}

/* Expand layout row explicitly on checked action */
.custom-dropdown-section:has(.custom-toggle-input:checked) .custom-sub-list-container {
  grid-template-rows: 1fr;
  margin-top: 5px;
  margin-bottom: 10px;
}

/* Bottom Actions Layout */
.custom-action-box {
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.custom-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 6px;
  margin-bottom: 12px;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.custom-btn.btn-outline {
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
}

.custom-btn.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

.custom-btn.btn-solid {
  color: #11141a !important;
  background-color: #ffffff;
  margin-bottom: 0;
}

.custom-btn.btn-solid:hover {
  background-color: #ffc107;
}

.navbar-dark .navbar-toggler {
  background: var(--primary);
  height: 40px;
  width: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
}

section.service-sec-02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-newsletter-box input::placeholder {
  color: #ffffff4d !important;
}

/* --- Desktop Layout Defaults --- */
@media (min-width: 992px) {
  .mobile-layout {
    display: none !important;
  }

  /* Your existing desktop styles for .hero-content, .left-text, etc. go here */
}

/* --- Mobile Responsive Design (Below 991px) --- */
@media (max-width: 991px) {
  .desktop-layout {
    display: none !important;
  }

  .hero-section {
    margin-bottom: 60px;
  }

  .mobile-layout {
    display: flex;
    flex-direction: row;
    /* Aligns items side-by-side */
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 40px 0;
  }

  .mobile-text-col {
    flex: 1;
    text-align: left;
    /* Keeps text on the left */
  }

  .mobile-img-col {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* Pushes the image to the right */
  }

  .mobile-img-col img {
    max-width: 100%;
    height: auto;
  }
}

/* --- Optional Extra: Stack vertically on very small screens (phones) --- */
@media (max-width: 576px) {
  .mobile-layout {
    flex-direction: column;
    /* Stacks text on top of image for narrow screens */
    text-align: center;
  }

  .mobile-text-col {
    text-align: center;
  }

  .mobile-img-col {
    justify-content: center;
    margin-top: 20px;
  }
}

section.about-us-section .check-item {
  align-items: flex-start;
}

section.about-us-section .check-item strong {
  color: white;
  font-family: var(--font-800);
}

/* ==========================================================================
   Leopard Security Services - Premium Legal Container Styling
   ========================================================================== */

/* Page Content Container Layout */
.legal-page-container {
  padding: 80px 0;
  color: var(--primary);
}

.legal-content-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.01);
}

/* Document Typography Elements */
.legal-section-block {
  margin-bottom: 40px;
}

.legal-section-block h2 {
  font-family: var(--font-heading-600);
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--primary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 8px;
}

.legal-section-block p {
  font-family: var(--font-400);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--primary);
  opacity: 0.85;
  margin-bottom: 16px;
}

/* Custom Unordered Bullet Layouts */
.legal-bullet-list {
  margin: 20px 0;
  padding-left: 20px;
  list-style: none;
}

.legal-bullet-list li {
  font-family: var(--font-400);
  font-size: 1.05rem;
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
  opacity: 0.85;
}

.legal-bullet-list li::before {
  content: "ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Operational Contact Grid Card */
.legal-footer-panel {
  background: var(--primary);
  color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  margin-top: 60px;
}

.legal-footer-panel h3 {
  font-family: var(--font-heading-600);
  font-size: 1.5rem;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 12px;
}

.legal-footer-panel p {
  font-family: var(--font-400);
  opacity: 0.7;
  margin-bottom: 30px;
}

.legal-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

.meta-field-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-field-box label {
  font-family: var(--font-300);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.5;
}

/* Fully Clickable Action Anchors */
.legal-action-link {
  color: var(--primary);
  font-family: var(--font-600);
  text-decoration: none;
  border-bottom: 1px dashed var(--primary);
  transition: opacity 0.2s ease;
}

.legal-action-link:hover {
  opacity: 0.7;
}

.panel-action-link {
  color: #ffffff !important;
  font-family: var(--font-heading-500);
  font-size: 1.1rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.panel-action-link:hover {
  opacity: 0.8;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .legal-content-card {
    padding: 30px 20px;
  }

  .legal-meta-grid {
    flex-direction: column;
    gap: 20px;
  }
}

.legal-footer-panel p {
  color: white;
}

/* ==========================================================================
   THANK YOU PAGE PREMIUM STYLING
   ========================================================================== */

/* Page wrapper using your exact brand primary color */
.thank-you-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--primary);
  color: #ffffff;
}

/* Header container tracking layout grid */
.custom-header {
  padding: 40px 0 20px 0;
  width: 100%;
}

.custom-header .logo-wrapper img {
  max-height: 65px;
  width: auto;
  object-fit: contain;
}

/* Main centered block layout */
.thank-you-body {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

/* Heading using your responsive size clamp and Space Grotesk Bold */
.thank-you-title {
  font-family: var(--font-heading-700), sans-serif;
  font-size: var(--main-heading-size);
  line-height: 1.2;
  color: #ffffff;
}

/* Applying your custom gold gradient to the text */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Subtitle using Urbanist Regular/Medium */
.thank-you-subtitle {
  font-family: var(--font-400), sans-serif;
  font-size: clamp(16px, calc(1rem + 0.5vw), 20px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* Premium Button using your color codes, variables and radius config */
.btn-custom-theme {
  font-family: var(--font-700), sans-serif;
  display: inline-block;
  padding: 16px 45px;
  background: var(--gradient);
  color: var(--primary) !important;
  text-decoration: none !important;
  border-radius: var(--radius-sm);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition-fast);
}

.btn-custom-theme:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(251, 243, 159, 0.2);
  opacity: 0.95;
}

/* Floating animation layout for home-img.png */
.image-wrapper {
  margin-top: 3rem;
}

.animate-zoom {
  animation: floatImage 4s ease-in-out infinite;
  max-height: 320px;
  width: auto;
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Layout structural helper */
.bottom-spacer {
  height: 125px;
  visibility: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bottom-spacer {
    display: none;
  }

  .custom-header {
    text-align: center;
    padding: 30px 0;
  }

  .custom-header .logo-wrapper {
    text-align: center !important;
  }

  .animate-zoom {
    max-height: 240px;
  }
}

button#servicesDropdown {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #000000;
  transition: all 0.25s ease-in-out;
}

.form-control::placeholder {
  color: #cecece !important;
}

.form-select {
  padding: 15px;
  resize: none;
  display: block;
  width: 100%;
  padding: 16px 15px;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #1e1e1e42;
  color: #1e1e1e !important;
  background-color: transparent;
  color: #b1b1b1 !important;
}

.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;

  /* Smooth shadow and transitions */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Remix Icon sizing inside the button */
.whatsapp-btn i {
  font-size: 30px;
}

/* Hover effects */
.whatsapp-btn:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
}

/* Tooltip Styling */
.whatsapp-tooltip {
  position: absolute;
  left: 68px;
  /* Pushes it to the left of the button */
  background-color: #1f2937;
  color: #ffffff;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

  /* Hidden by default */
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show tooltip when hovering over the button */
.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

.modal-body.p-4 .contact-card-wrapper {
  border: 0;
  padding: 0;
  padding: 12px;
}

section.sec-08-contact .floating-contact-card {
  padding: 0;
}

.contact-main .row {
  align-items: flex-start !important;
}

/* ========================================= Q/A SHEET CSS ============================================ */
.why-card .why-read-more {
  display: none;
}


/* Container for pagination and navigation at the bottom */
.swiper-controls-bottom {
  position: relative;
  width: 100%;
}

/* Override default Swiper absolute positions for buttons */
.swiper-controls-bottom .static-nav {
  position: static;
  margin: 0;
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  /* Light background for the buttons */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: var(--secondary);
  color: white;
}

/* Optional hover state for your navigation arrows */
.swiper-controls-bottom .static-nav:hover {
  background: #000000;
  color: #ffffff;
}

/* Shrink Swiper arrow pseudo-elements to fit the custom button circles */
.swiper-controls-bottom .static-nav::after {
  font-size: 16px;
  font-weight: bold;
}

/* Keep pagination elements naturally layouted inside the flex container */
.swiper-controls-bottom .static-pagination {
  position: static;
  width: auto;
}

.swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 5px;
}

.swiper-pagination-bullet {
  background: var(--secondary);
  transition: .3s ease-in;
}