.elementor-73 .elementor-element.elementor-element-b19f30d{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-5dddc80 *//* ================================
   MAIN SECTION WRAPPER
================================ */
.oxford-brass-locksmith {
  position: relative;
  padding: 140px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #ffffff;
  background: #002147;
  overflow: hidden;
}

/* =================================
   DUAL BENDED BACKGROUND LAYERS
================================= */

/* Brass Wave Layer */
.oxford-brass-locksmith::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -10%;
  width: 120%;
  height: 420px;
  background: linear-gradient(135deg, #B5A642, #8f8433);
  border-radius: 0 0 60% 60%;
  transform: rotate(-4deg);
  z-index: 1;
}

/* Oxford Blue Secondary Curve */
.oxford-brass-locksmith::after {
  content: "";
  position: absolute;
  bottom: -220px;
  right: -15%;
  width: 130%;
  height: 450px;
  background: linear-gradient(135deg, #001830, #002147);
  border-radius: 60% 60% 0 0;
  transform: rotate(5deg);
  z-index: 1;
}

.ob-container {
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* =================================
   HERO SECTION
================================= */
.ob-hero {
  display: flex;
  gap: 70px;
  align-items: center;
  margin-bottom: 120px;
}

.ob-hero-left {
  flex: 2;
}

.ob-hero-right {
  flex: 1;
}

.ob-hero h1 {
  font-size: 44px;
  line-height: 1.3;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #ffffff, #B5A642);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ob-hero p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 22px;
  color: #e0e6ed;
}

/* Hero Floating Glass Panel */
.hero-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(181, 166, 66, 0.5);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  transition: 0.4s ease;
}

.hero-panel:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(181, 166, 66, 0.3);
}

/* =================================
   SECTION TITLE
================================= */
.ob-section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 70px;
  letter-spacing: 1px;
  color: #B5A642;
  position: relative;
}

.ob-section-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(to right, #B5A642, #ffffff);
  display: block;
  margin: 18px auto 0;
  border-radius: 4px;
}

/* =================================
   SERVICES GRID
================================= */
.ob-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 120px;
}

.ob-card {
  background: linear-gradient(145deg, #001830, #002147);
  border: 1px solid rgba(181,166,66,0.4);
  border-radius: 22px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Brass Glow Accent */
.ob-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(181,166,66,0.5), transparent 70%);
  border-radius: 50%;
  transition: 0.4s ease;
}

.ob-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
  border-color: #B5A642;
}

.ob-card:hover::before {
  transform: scale(1.4);
}

.ob-card h3 a {
  color: #B5A642;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
}

.ob-card h3 a:hover {
  color: #ffffff;
}

.ob-card p {
  margin-top: 18px;
  line-height: 1.8;
  font-size: 16px;
  color: #d7dde4;
}

/* =================================
   TRUST GRID
================================= */
.ob-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.trust-box {
  background: rgba(0, 24, 48, 0.9);
  border: 1px solid rgba(181,166,66,0.3);
  padding: 35px;
  border-radius: 18px;
  transition: all 0.4s ease;
  position: relative;
}

.trust-box:hover {
  background: rgba(181,166,66,0.08);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(181,166,66,0.2);
}

.trust-box h4 {
  margin-bottom: 14px;
  color: #B5A642;
  font-size: 20px;
}

.trust-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #d7dde4;
}

/* =================================
   RESPONSIVE
================================= */
@media (max-width: 1000px) {
  .ob-hero {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .oxford-brass-locksmith {
    padding: 100px 20px;
  }

  .ob-hero h1 {
    font-size: 32px;
  }

  .ob-section-title {
    font-size: 28px;
  }
}/* End custom CSS */