@charset "UTF-8";
/*
===========================================
  ZEM Security Services - Professional CSS
  Upgraded Design with Bootstrap 5
===========================================
*/

/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Jost:wght@400;500;600;700;800;900&family=Monoton&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --main-font-family: "Open Sans", sans-serif;
  --heading-font-family: "Jost", sans-serif;
  --monoton-font-family: "Monoton", cursive;

  /* Brand Colors - Dark Navy + Gold (Security Theme) */
  --main-color: #D4A017;        /* Gold */
  --main-color-light: #F5C842;  /* Light Gold */
  --optional-color: #0A1628;    /* Deep Navy */
  --accent-color: #1E3A5F;      /* Medium Navy */
  --white-color: #ffffff;
  --black-color: #0A1628;       /* Deep Navy for text */
  --dark-bg: #060F1E;           /* Darkest bg */
  --paragraph-color: #4A5568;
  --light-gray: #F7F8FA;
  --border-color: #E2E8F0;

  --font-size: 16px;
  --transition: .5s;
  --btn-gradient-color: linear-gradient(135deg, #D4A017 0%, #F5C842 50%, #D4A017 100%);
  --section-gradient: linear-gradient(180deg, #F7F8FA 0%, #ffffff 100%);
  --dark-gradient: linear-gradient(135deg, #0A1628 0%, #1E3A5F 100%);

  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.18);
  --shadow-gold: 0 8px 30px rgba(212, 160, 23, 0.3);
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--main-font-family);
  font-size: var(--font-size);
  color: var(--paragraph-color);
  background-color: var(--white-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: var(--transition);
  color: var(--black-color);
  display: inline-block;
}
a:hover, a:focus {
  color: var(--main-color);
  text-decoration: none;
}

button {
  outline: 0 !important;
}

p {
  margin-bottom: 15px;
  line-height: 1.85;
  color: var(--paragraph-color);
  font-weight: 400;
  font-family: var(--main-font-family);
  font-size: var(--font-size);
}
p:last-child { margin-bottom: 0; }

i { line-height: normal; }

.d-table { width: 100%; height: 100%; }
.d-table-cell { vertical-align: middle; }

img { max-width: 100%; height: auto; display: inline-block; }

/* ===== SPACING ===== */
.ptb-100 { padding-top: 100px; padding-bottom: 100px; }
.pt-100  { padding-top: 100px; }
.pb-100  { padding-bottom: 100px; }
.pb-75   { padding-bottom: 75px; }

/* ===== HEADINGS ===== */
.h1,.h2,.h3,.h4,.h5,.h6,
h1,h2,h3,h4,h5,h6 {
  color: var(--black-color);
  font-family: var(--heading-font-family);
  font-weight: 800;
  line-height: 1.3;
}
h1,h2,h3,h4,h5,h6 { margin-bottom: 15px; }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  z-index: 999999;
  background: var(--dark-gradient);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  left: 0;
  top: 0;
}

.preloader-logo {
  margin-bottom: 30px;
  animation: preloaderFadeIn 0.8s ease;
}

.preloader-logo h2 {
  color: var(--white-color);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}

.preloader-logo h2 span {
  color: var(--main-color);
}

.preloader-shield {
  width: 80px;
  height: 80px;
  position: relative;
  margin-bottom: 30px;
  animation: preloaderFadeIn 0.8s ease;
}

.preloader-shield svg {
  width: 100%;
  height: 100%;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.preloader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--btn-gradient-color);
  animation: preloaderSlide 1.8s ease-in-out infinite;
  border-radius: 10px;
}

.preloader-text {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 20px;
  animation: preloaderFadeIn 0.8s ease;
}

@keyframes preloaderSlide {
  0%   { left: -100%; }
  50%  { left: 0%; }
  100% { left: 100%; }
}

@keyframes preloaderFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== DEFAULT BUTTON ===== */
.default-btn {
  padding: 15px 38px;
  text-align: center;
  color: var(--black-color) !important;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 8px;
  z-index: 0;
  background: var(--btn-gradient-color);
  box-shadow: var(--shadow-gold);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--heading-font-family);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
}
.default-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dark-gradient);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.default-btn:hover {
  color: var(--white-color) !important;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.default-btn:hover::before {
  transform: scaleX(1);
}

/* Outline button variant */
.outline-btn {
  padding: 13px 36px;
  text-align: center;
  color: var(--main-color) !important;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 2px solid var(--main-color);
  background: transparent;
  font-family: var(--heading-font-family);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.outline-btn:hover {
  background: var(--btn-gradient-color);
  color: var(--black-color) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ===== SECTION TITLE ===== */
.section-title {
  max-width: 650px;
  margin: 0 auto 55px;
  text-align: center;
  position: relative;
}
.section-title .section-bg-text {
  color: rgba(10, 22, 40, 0.04);
  font-size: 90px;
  font-family: var(--monoton-font-family);
  font-weight: 400;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  z-index: -1;
  line-height: 0;
  pointer-events: none;
}
.section-title .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: var(--main-color);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.section-title .section-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--main-color);
  border-radius: 50%;
}
.section-title span {
  font-size: 13px;
  color: var(--main-color);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
  font-family: var(--heading-font-family);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-title h2 {
  font-size: 40px;
  margin-bottom: 0;
  line-height: 1.25;
  position: relative;
  color: var(--black-color);
}
.section-title h2 b {
  background: var(--btn-gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title h2 .overlay {
  position: absolute;
  left: 0; top: 0;
  background: var(--btn-gradient-color);
  width: 100%; height: 100%;
  z-index: 1;
}
.section-title p {
  margin-top: 18px;
  font-size: 16px;
  color: var(--paragraph-color);
  line-height: 1.8;
}

/* ===== MAIN BANNER AREA ===== */
.main-banner-area {
  position: relative;
  overflow: hidden;
  background: var(--dark-gradient);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}

.main-banner-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A017' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.main-banner-area .container-fluid {
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
  z-index: 2;
}

/* Gold accent line on left of banner */
.main-banner-area::after {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  width: 4px;
  height: 60%;
  background: var(--btn-gradient-color);
  border-radius: 0 4px 4px 0;
}

.main-banner-content {
  padding-right: 40px;
}

.main-banner-content .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: var(--main-color);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 25px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.main-banner-content .badge-pill i {
  font-size: 16px;
}

.main-banner-content h1 {
  font-size: 52px !important;
  line-height: 1.15;
  color: var(--white-color);
  font-weight: 900;
  margin-bottom: 18px;
  position: relative;
}

.main-banner-content h1 .text-gold {
  color: var(--main-color);
  display: block;
}

.main-banner-content h4 {
  font-size: 22px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  margin-bottom: 25px;
  font-style: italic;
  border-left: 3px solid var(--main-color);
  padding-left: 15px;
}

.main-banner-content p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 35px;
}

.banner-stats {
  display: flex;
  gap: 35px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.banner-stat-item {
  text-align: center;
}

.banner-stat-item .stat-number {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--main-color);
  font-family: var(--heading-font-family);
  line-height: 1;
}

.banner-stat-item .stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
}

.banner-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}

/* Banner Image */
.main-banner-image {
  position: relative;
  text-align: center;
  padding: 20px;
}

.main-banner-image::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(212, 160, 23, 0.08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.main-banner-image img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  max-height: 580px;
}

.banner-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.banner-circle img {
  animation: rotateme 20s linear infinite;
  opacity: 0.3;
}

/* Banner Decorations */
.banner-shape-1,
.banner-shape-2 {
  position: absolute;
  z-index: 1;
  opacity: 0.08;
}
.banner-shape-1 { top: 0; right: 0; }
.banner-shape-2 { bottom: 0; left: 0; }

.banner-dot-shape-1,
.banner-dot-shape-2,
.banner-dot-shape-3,
.banner-dot-shape-4,
.banner-dot-shape-5 {
  position: absolute;
  z-index: 1;
  opacity: 0.4;
}

.lines {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  margin: auto;
  width: 90vw;
  z-index: 0;
}
.lines .line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0; left: 50%;
  background: rgba(212, 160, 23, 0.08);
  overflow: hidden;
}
.lines .line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%; left: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(212,160,23,0.4) 75%, rgba(212,160,23,0.4) 100%);
  animation: run 15s 0s infinite;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  border-radius: 50%;
}
.lines .line:nth-child(1) { margin-left: -25%; }
.lines .line:nth-child(2) { margin-left: 0; }
.lines .line:nth-child(3) { margin-left: 25%; }

@keyframes run {
  0%   { top: -50%; }
  100% { top: 110%; }
}

/* ===== FEATURES AREA ===== */
.features-area {
  position: relative;
  padding-top: 0;
}

.features-inner-box {
  background: var(--white-color);
  border-radius: var(--border-radius-lg);
  padding: 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.single-features-card {
  background: var(--white-color);
  border-radius: var(--border-radius-lg);
  padding: 40px 35px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: 100%;
  cursor: default;
}

.single-features-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--btn-gradient-color);
  transition: width 0.4s ease;
}

.single-features-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: rgba(212, 160, 23, 0.3);
}

.single-features-card:hover::before {
  width: 100%;
  opacity: 0.04;
}

.features-image {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.features-image a {
  display: inline-block;
}

.features-image img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  transition: var(--transition);
}

.single-features-card:hover .features-image img {
  transform: scale(1.1) rotate(5deg);
}

.single-features-card .content {
  position: relative;
  z-index: 1;
}

.single-features-card .content h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--black-color);
  transition: var(--transition);
}

.single-features-card .content h3 a {
  color: inherit;
}

.single-features-card:hover .content h3 {
  color: var(--main-color);
}

.single-features-card .content p {
  font-size: 15px;
  color: var(--paragraph-color);
  line-height: 1.75;
  margin: 0;
}

.single-features-card .hover-content {
  display: none;
}

/* Feature number badge */
.single-features-card .feature-number {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: rgba(212, 160, 23, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--main-color);
  font-family: var(--heading-font-family);
}

/* ===== ABOUT AREA ===== */
.about-area {
  position: relative;
  overflow: hidden;
}

.about-wrap-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.about-wrap-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark-gradient);
  opacity: 0.15;
  z-index: 1;
  transition: var(--transition);
}

.about-wrap-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
}

.about-wrap-image:hover img {
  transform: scale(1.03);
}

/* Gold border frame */
.about-wrap-image::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  border: 2px solid var(--main-color);
  border-radius: var(--border-radius-lg);
  z-index: -1;
  opacity: 0.5;
}

/* Image badge overlay */
.about-wrap-image .image-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: var(--btn-gradient-color);
  padding: 15px 25px;
  border-radius: var(--border-radius);
  z-index: 3;
  box-shadow: var(--shadow-md);
}

.about-wrap-image .image-badge .badge-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--black-color);
  font-family: var(--heading-font-family);
  line-height: 1;
}

.about-wrap-image .image-badge .badge-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(10, 22, 40, 0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-wrap-content {
  padding-left: 40px;
  position: relative;
}

.about-bg-text {
  font-size: 80px;
  font-family: var(--monoton-font-family);
  color: rgba(10, 22, 40, 0.03);
  position: absolute;
  top: -20px;
  left: 40px;
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.about-wrap-content > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.35);
  color: var(--main-color);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-wrap-content > span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--main-color);
  border-radius: 50%;
  display: inline-block;
}

.about-wrap-content h3 {
  font-size: 34px;
  color: var(--black-color);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.25;
  position: relative;
}

.about-wrap-content h3 .overlay {
  position: absolute;
  left: 0; top: 0;
  background: var(--btn-gradient-color);
  width: 100%; height: 100%;
  z-index: 1;
}

.about-wrap-content p {
  color: var(--paragraph-color);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 25px;
}

/* Check list (Why Choose Us) */
.list-style {
  padding: 0;
  margin: 0;
}

.list-style li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  margin-bottom: 12px;
  background: var(--light-gray);
  border-radius: 10px;
  border-left: 4px solid var(--main-color);
  font-size: 16px;
  font-weight: 600;
  color: var(--black-color);
  font-family: var(--heading-font-family);
  transition: var(--transition);
}

.list-style li:hover {
  background: rgba(212, 160, 23, 0.08);
  transform: translateX(5px);
}

.list-style li i {
  width: 28px;
  height: 28px;
  background: var(--btn-gradient-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-color);
  font-size: 15px;
  flex-shrink: 0;
}

.about-circle-shape {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.05;
}

/* ===== SERVICES AREA ===== */
.services-area {
  position: relative;
  overflow: hidden;
}

.services-area.bg-with-14042C-color {
  background: var(--dark-gradient);
  position: relative;
}

.services-area.bg-with-14042C-color::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4A017' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.services-area.bg-with-14042C-color .section-title span,
.services-area.bg-with-14042C-color .section-title h2 {
  color: var(--white-color);
}

.services-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.services-content {
  padding: 40px;
}

.services-content h3 a,
.services-content h2 a {
  color: var(--white-color);
  font-size: 24px;
  font-weight: 800;
}

/* ===== CHOOSE / WHY US AREA ===== */
.choose-area.bg-with-F5F5F5-color {
  background: var(--light-gray);
}

.single-choose-card {
  background: var(--white-color);
  border-radius: var(--border-radius-lg);
  padding: 40px 35px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.single-choose-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--btn-gradient-color);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.single-choose-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: rgba(212, 160, 23, 0.3);
}

.single-choose-card:hover::after {
  transform: scaleX(1);
}

.choose-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--black-color);
  margin-bottom: 15px;
  transition: var(--transition);
}

.single-choose-card:hover .choose-content h3 {
  color: var(--main-color);
}

.choose-content h3 a {
  color: inherit;
}

.choose-content p {
  font-size: 15px;
  color: var(--paragraph-color);
  line-height: 1.75;
}

/* ===== OVERVIEW/STATS AREA ===== */
.overview-area {
  background: var(--dark-gradient);
  position: relative;
  overflow: hidden;
}

.overview-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A017' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.overview-card {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.overview-card:hover {
  background: rgba(212, 160, 23, 0.08);
  border-color: var(--main-color);
  transform: translateY(-8px);
}

.overview-card h3 {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.overview-card span {
  font-size: 52px;
  font-weight: 900;
  color: var(--main-color);
  font-family: var(--heading-font-family);
  line-height: 1;
  display: block;
}

.overview-card span a {
  color: inherit;
}

/* ===== TESTIMONIALS AREA ===== */
.testimonials-area {
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.testimonials-area::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--btn-gradient-color);
}

.single-testimonials-card {
  background: var(--white-color);
  border-radius: var(--border-radius-lg);
  padding: 40px 35px;
  margin: 15px 10px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.single-testimonials-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 80px;
  color: rgba(212, 160, 23, 0.12);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 900;
}

.single-testimonials-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 160, 23, 0.3);
  transform: translateY(-5px);
}

.single-testimonials-card p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--paragraph-color);
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.info-item-box {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.info-item-box img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(212, 160, 23, 0.3);
}

.info-item-box .avatar-placeholder {
  width: 55px;
  height: 55px;
  background: var(--btn-gradient-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--black-color);
  flex-shrink: 0;
}

.info-item-box h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--black-color);
  margin-bottom: 5px;
  line-height: 1;
}

.info-item-box h4 span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--main-color);
  margin-top: 4px;
  font-style: italic;
  font-family: var(--main-font-family);
}

.rating-list {
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
  display: flex;
  gap: 3px;
}

.rating-list li i {
  color: var(--main-color);
  font-size: 14px;
}

.rating-list li i.ri-star-line {
  color: rgba(212, 160, 23, 0.35);
}

/* ===== GO TOP BUTTON ===== */
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 25px;
  color: var(--black-color);
  background: var(--btn-gradient-color);
  z-index: 9999;
  width: 50px;
  text-align: center;
  height: 50px;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  font-size: 22px;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}
.go-top i {
  position: absolute;
  right: 0; left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 26px;
  margin: 0 auto;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
.go-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ===== SECURITY TRUST BADGES SECTION ===== */
.trust-badges-area {
  padding: 40px 0;
  background: var(--white-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 20px;
}

.trust-badge-item i {
  font-size: 28px;
  color: var(--main-color);
}

.trust-badge-item span {
  font-size: 14px;
  font-weight: 700;
  color: var(--black-color);
  font-family: var(--heading-font-family);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== ANIMATIONS ===== */
@keyframes rotateme {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes moveleftbounce {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(8px); }
  100% { transform: translateX(0); }
}

@keyframes animationFramesOne {
  0%   { transform: translate(0px, 0px) rotate(0deg); }
  20%  { transform: translate(73px, -1px) rotate(36deg); }
  40%  { transform: translate(141px, 72px) rotate(72deg); }
  60%  { transform: translate(83px, 122px) rotate(108deg); }
  80%  { transform: translate(-40px, 72px) rotate(144deg); }
  100% { transform: translate(0px, 0px) rotate(0deg); }
}

/* ===== MISC UTILITY ===== */
.bg-with-F5F5F5-color { background: var(--light-gray); }
.bg-with-14042C-color { background: var(--dark-gradient); }

/* ===== PAGINATION ===== */
.pagination-area {
  margin-top: 30px;
  text-align: center;
}
.pagination-area .page-numbers {
  display: inline-block;
  width: 45px; height: 45px;
  line-height: 43px;
  background: var(--white-color);
  border: 2px solid var(--border-color);
  color: var(--black-color);
  text-align: center;
  border-radius: 50px;
  margin: 0 3px;
  font-size: var(--font-size);
  font-weight: 700;
  font-family: var(--heading-font-family);
  transition: var(--transition);
}
.pagination-area .page-numbers:hover,
.pagination-area .page-numbers.current {
  color: var(--black-color);
  background: var(--btn-gradient-color);
  border-color: var(--main-color);
  box-shadow: var(--shadow-gold);
}

/* ===== MAP ===== */
.map-location iframe {
  height: 450px;
  width: 100%;
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}