.elementor-12672 .elementor-element.elementor-element-3837cf43{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-12672 .elementor-element.elementor-element-2591c61e a{color:var( --e-global-color-0e3b5b8 );}/* Start custom CSS for text-editor, class: .elementor-element-2591c61e */body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #000;
  color: #fff;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(to bottom, #000 40%, #a9b6b4 120%);
  padding: 60px 30px 180px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero h1 {
  font-size: 64px;
  color: #ffffff;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p.subtext {
  color: #cfcfcf;
  font-size: 17px;
  max-width: 600px;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Call Now (Yellow Gradient) */
.btn-primary {
  background: linear-gradient(135deg, #ffcc00 0%, #ffaa00 100%);
  color: #000 !important;
  box-shadow: 0 8px 24px rgba(255, 204, 0, 0.6);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffd633 0%, #ff9900 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 204, 0, 0.8);
}

/* Book Online (Transparent) */
.btn-secondary {
  background: transparent;
  color: #fff !important;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* --- SERVICES SECTION --- */
.service-overlap {
  background: #eeeeee;
  color: #000;
  border-radius: 40px 40px 0 0;
  padding: 30px 30px 30px;
  position: relative;
  z-index: 5;
  margin-top: -120px;
}

.service-container {
  max-width: 1100px;
  margin: 0 auto;
}

.service-overlap h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0f172a;
}

/* 3-column grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 2fr;
  }
  .hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 600pxar) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* --- ABOUT SECTION --- */
.about-section {
  padding: 120px 20px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* --- LEFT SIDE --- */
.about-label {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1e3a8a;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  background: #e8ecff;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
}

.about-left h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 35px;
}

.about-left h2 .highlight {
  color: #2563ff;
}

.about-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Blue→Black Gradient Button */
.btn-gradient {
  background: linear-gradient(135deg, #2563ff 0%, #000000 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 99, 255, 0.4);
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #1e4ed8 0%, #000000 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 255, 0.6);
}

/* Outline Button */
.btn-outline {
  border: 2px solid #d1d5db;
  color: #1e3a8a;
  background: #fff;
}

.btn-outline:hover {
  border-color: #1e3a8a;
  background: #f0f3ff;
}

/* --- RIGHT SIDE --- */
.about-tabs {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
  align-items: center;
}

.about-tabs .tab {
  font-weight: 600;
  font-size: 16px;
  color: #94a3b8;
  position: relative;
  padding-bottom: 4px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.about-tabs .tab.active {
  color: #2563ff;
}

.about-tabs .tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #2563ff;
}

.about-text {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  max-width: 420px;
  transition: opacity 0.3s ease;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .about-left h2 {
    font-size: 34px;
  }

  .about-text {
    margin: 0 auto;
  }

  .about-tabs {
    justify-content: center;
  }
}

/* --- WHY CHOOSE FAST LOCKSMITH --- */
.why-choose {
  padding: 10px 30px 60px;
  text-align: center;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1e3a8a;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  background: #e8ecff;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
}

.why-choose h2 {
  font-size: 38px;
  line-height: 1.3;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 60px;
}

.why-choose h2 .highlight {
  color: #2563ff;
}

/* --- GRID LAYOUT --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* --- CARD WITH SVG BACKGROUND --- */
.why-card,
.service-card {
  position: relative;
  background-color: rgba(169, 182, 181, 0.1);
  background-image: var(--pattern-svg);
  background-attachment: fixed;
  background-size: contain;
  overflow: hidden;
}

.why-card::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2); /* Soft overlay for readability */
  border-radius: inherit;
  z-index: 0;
}

.why-card > *,
.service-card > * {
  position: relative;
  z-index: 1;
}

/* --- WHY CARD STYLES --- */
.why-card {
  border-radius: 22px;
  padding: 50px 25px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  color: #0f172a;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0f172a;
}

.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #111827;
}

/* --- RESPONSIVE --- */
@media (max-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* === GLOBAL SVG PATTERN === */
:root {
  --pattern-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 1000'%3E%3Cg fill-opacity='0.87'%3E%3Ccircle fill='%23A9B6B5' cx='50' cy='0' r='50'/%3E%3Cg fill='%23adb9b8' %3E%3Ccircle cx='0' cy='50' r='50'/%3E%3Ccircle cx='100' cy='50' r='50'/%3E%3C/g%3E%3Ccircle fill='%23b2bdbb' cx='50' cy='100' r='50'/%3E%3Cg fill='%23b6c0be' %3E%3Ccircle cx='0' cy='150' r='50'/%3E%3Ccircle cx='100' cy='150' r='50'/%3E%3C/g%3E%3Ccircle fill='%23bac4c1' cx='50' cy='200' r='50'/%3E%3Cg fill='%23bfc7c4' %3E%3Ccircle cx='0' cy='250' r='50'/%3E%3Ccircle cx='100' cy='250' r='50'/%3E%3C/g%3E%3Ccircle fill='%23c3cac7' cx='50' cy='300' r='50'/%3E%3Cg fill='%23c7ceca' %3E%3Ccircle cx='0' cy='350' r='50'/%3E%3Ccircle cx='100' cy='350' r='50'/%3E%3C/g%3E%3Ccircle fill='%23cbd1cd' cx='50' cy='400' r='50'/%3E%3Cg fill='%23d0d5d0' %3E%3Ccircle cx='0' cy='450' r='50'/%3E%3Ccircle cx='100' cy='450' r='50'/%3E%3C/g%3E%3Ccircle fill='%23d4d8d4' cx='50' cy='500' r='50'/%3E%3Cg fill='%23d8dbd7' %3E%3Ccircle cx='0' cy='550' r='50'/%3E%3Ccircle cx='100' cy='550' r='50'/%3E%3C/g%3E%3Ccircle fill='%23dddfda' cx='50' cy='600' r='50'/%3E%3Cg fill='%23e1e2dd' %3E%3Ccircle cx='0' cy='650' r='50'/%3E%3Ccircle cx='100' cy='650' r='50'/%3E%3C/g%3E%3Ccircle fill='%23e5e6e0' cx='50' cy='700' r='50'/%3E%3Cg fill='%23eae9e3' %3E%3Ccircle cx='0' cy='750' r='50'/%3E%3Ccircle cx='100' cy='750' r='50'/%3E%3C/g%3E%3Ccircle fill='%23eeece6' cx='50' cy='800' r='50'/%3E%3Cg fill='%23f2f0e9' %3E%3Ccircle cx='0' cy='850' r='50'/%3E%3Ccircle cx='100' cy='850' r='50'/%3E%3C/g%3E%3Ccircle fill='%23f6f3ec' cx='50' cy='900' r='50'/%3E%3Cg fill='%23fbf7ef' %3E%3Ccircle cx='0' cy='950' r='50'/%3E%3Ccircle cx='100' cy='950' r='50'/%3E%3C/g%3E%3Ccircle fill='%23FFFAF2' cx='50' cy='1000' r='50'/%3E%3C/g%3E%3C/svg%3E");
}


/* DROPDOWN SECTION */
.areas-section {
  text-align: center;
  padding: 3rem 20px;
}
.areas-section h2 {
  color: #194979;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.dropdown-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropbtn {
  background: rgba(25,73,121,0.08);
  color: #000;
  border: 2px solid rgba(25,73,121,0.15);
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dropbtn:hover {
  background: #facc15;
  color: #111;
  border-color: #facc15;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  min-width: 260px;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  border-radius: 12px;
  z-index: 1000;
  text-align: left;
  padding: 6px 0;
}
.dropdown-content a {
  color: #194979;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-weight: 500;
  transition: background 0.2s ease;
}
.dropdown-content a:hover {
  background-color: #f1f5f9;
  color: #000;
}
.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content::-webkit-scrollbar {
  width: 8px;
}
.dropdown-content::-webkit-scrollbar-thumb {
  background: rgba(25,73,121,0.3);
  border-radius: 10px;
}
.dropdown-content::-webkit-scrollbar-thumb:hover {
  background: rgba(25,73,121,0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-split {
    text-align: center;
  }
  .hero-left h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
  .dropdown-container {
    flex-direction: column;
  }
}/* End custom CSS */