﻿:root {
  --primary-color: #c10000;
  --secondary-color: #1c2a39;
  --secondary-color-light: #384c61;
  --link-color: #007bff;
  --light-color: #f0eee7;
  --red-color: #ff0000;
  --black-color: #000;
  --primary-font: "Open Sans", sans-serif;
  --secondary-font: "Montserrat", sans-serif;
}
b, strong {
    font-weight: 600;
}
/*====== Header ======*/
.header {
  position: sticky;
  top: 0;
  z-index: 99992;
}
.header-area {
  width: 100%;
  box-shadow: 0 2px 13px 0 rgba(0, 0, 0, 0.25);
  background-color: var(--secondary-color);
}

.header-top {
  padding: 10px 0;
}

.header-nav {
  background-color: var(--secondary-color-light);
}
.head-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.phone-box {
  display: flex;
  gap: 12px;
  align-items: center;
}

.phone-box .icon img {
  width: 40px;
}

.call-text p {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 5px;
    color:#fff;
}

.call-text a {
  font-size: 24px;
  font-weight: 800;
  line-height: normal;
  color: var(--red-color);
}
.call-text a:hover {
  color: var(--primary-color);
}
.middle-text {
  font-size: 20px;
  line-height: normal;
  font-weight: 700;
  color: #fff;
}
.site-logo img {
  width: 220px;
  height: auto;
}
@media (max-width: 767px) {
.middle-text {
    display: none;
}
}
/*=============================
    Button Styles
  =============================*/
.common-btn {
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: #fff !important;
  z-index: 1;
  transition: all 0.4s ease-in-out 0s;
  overflow: hidden;
  min-width: 170px;
  text-align: center;
  position: relative;
  background-color: var(--primary-color);
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
}
.common-btn:after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  transition: 0.4s;
  z-index: -1;
  opacity: 1;
  width: 20px;
  height: 20px;
  background: var(--tertiary-color);
  border-radius: 20px 0 0;
}

.common-btn:hover {
  color: #000 !important;
}

.common-btn:hover:after {
  width: 100%;
  height: 100%;
  border-radius: 0;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1399px) {
.site-logo img {
  width: 110px;
  height: auto;
}
}
@media (max-width: 1199px) {
    .common-btn {
        font-size: 16px;
        line-height: normal;
        min-width: 150px;
    }
}
@media (max-width: 991px) {
    .common-btn {
        font-size: 14px;
        min-width: 120px;
    }
}

@media (max-width: 575px) {
  .common-btn {
        padding: 10px 20px;
        font-size: 13px;
  }

    .common-btn:after {
        width: 13px;
        height: 13px;
    }
}
@media (max-width: 1199px) {
  .site-logo img {
    width: 130px;
  }
}

@media all and (max-width: 991px) {
  .header .header-area .header-top .container {
    max-width: 100%;
  }
  .phone-box .icon img {
    width: 32px;
  }
  .call-text p {
    font-size: 14px;
    margin-bottom: 3px;
  }

  .call-text a {
    font-size: 18px;
  }
  .phone-box {
    gap: 10px;
  }
}
@media all and (max-width: 767px) {
  .head-cta {
    gap: 15px;
  }
  .phone-box {
    gap: 5px;
  }
      .site-logo img {
        width: 100px;
    }
}
@media (max-width: 575px) {
  .head-btn-contact {
    display: none;
  }
  .phone-box .icon img {
    width: 28px;
  }
  .head-cta {
      gap: 10px;
  }
        .site-logo img {
        width: 85px;
    }
}

/*=====================================
    MOBILE SIDE NAVIGATION
=====================================*/
@media all and (min-width: 1200px) {
  .dvLeft {
    display: none;
  }
}

@media all and (max-width: 1199px) {
  /*=====================================
      SCROLLBAR (VERTICAL ONLY)
  =====================================*/
  .overflow-nav::-webkit-scrollbar {
    width: 6px;
    height: 0;
  }

  .overflow-nav::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 20px;
  }

  .overflow-nav::-webkit-scrollbar-track {
    background: transparent;
  }

  /*=====================================
      HAMBURGER
  =====================================*/
  .menu-icon {
    display: flex;
    margin-left: auto;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
  }

  .menu-icon-in {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    transition: 0.4s;
  }

  .menu-icon-in span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 30px;
    transition: 0.4s;
  }

  .menu-icon-in span:nth-child(1) {
    top: 0;
  }
  .menu-icon-in span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-icon-in span:nth-child(3) {
    bottom: 0;
  }

  .menu-icon-in.open span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
  }

  .menu-icon-in.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-icon-in.open span:nth-child(3) {
    bottom: 9px;
    transform: rotate(-45deg);
  }
.ulka-arrow {position: absolute;top: 0;right: 0;cursor: pointer;padding: 10px;color: var(--heading-color);}

.ulka-arrow i {
    font-weight: 700;
    font-size: 18px;
}
  /*=====================================
      SIDEBAR
  =====================================*/
  .dvLeft {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 100%;
    height: 100vh;
    background: var(--secondary-color);
    opacity: 0.7;
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 90px 15px 30px;
    transition: 0.45s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.45);
  }

  .dvLeft.open {
    left: 0;
  }

  /*=====================================
      OVERLAY
  =====================================*/
  .mask-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);

    z-index: 999;

    opacity: 0;
    visibility: hidden;

    transition: 0.4s;
  }

  .mask-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  body.no-scroll {
    overflow: hidden;
  }

  /*=====================================
      MENU RESET
  =====================================*/
  .ulka-menu,
  .ulka-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .ulka-menu .menu-item {
    position: relative;
  }

  /*=====================================
      TOP LEVEL MENU
  =====================================*/
  .ulka-menu > .menu-item > .menu-link {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
        color: var(--heading-color);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        padding: 10px;
        transition: 0.3s ease;
        overflow: hidden;
        word-break: break-word;
        background-color: #ffffff;
        margin-bottom: 3px;
        border-radius: 3px;
  }


  .ulka-menu > .menu-item > .menu-link:hover {
    color: var(--primary-color);
  }

  .ulka-menu > .menu-item > .menu-link{
    padding-right: 42px;
  }

  .ulka-menu > .menu-item > .menu-link.active,
    .menu-item>a.menu-link:has(+span .fa-minus) {
    background: var(--primary-color);
    color: #fff !important;
}
.menu-item>a.menu-link.active + .ulka-arrow{
        color: #fff !important;
    }

  /*=====================================
      SUB MENU
  =====================================*/
  .ulka-menu .sub-menu{
    display: none;
  }
  .ulka-menu .sub-menu.show,
    .menu-item:has(> .menu-link.active) > .sub-menu {
    background-color: #005bb4;
    width: 100%;
    max-width: 100%;
    display: block;
    margin-top: -2px;
  }

  .ulka-menu .sub-menu.show .menu-item,
  .menu-item:has(> .menu-link.active) > .sub-menu .menu-item {
    border-bottom: 1px solid var(--heading-color);
}
.ulka-menu .sub-menu.show .menu-item:last-child{
   border-bottom:none;
}

  .ulka-menu .sub-menu .menu-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    padding: 10px;
    padding-left: 20px;
    transition: 0.3s;
  }

  .ulka-menu .sub-menu .menu-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
  }
  ul.sub-menu.show .menu-link.active,
  .menu-item:has(> .menu-link.active) > .sub-menu .menu-link.active {
    color: var(--secondary-color);
  }
}
  /*=====================================
      MOBILE FULL WIDTH
  =====================================*/
  @media all and (max-width: 767px) {
    .dvLeft {
      left: -100%;
      padding-top: 90px;
    }

    .ulka-menu .sub-menu .menu-link {
      font-size: 1.4rem;
    }
  }

/*====== Top Navigation =====*/
@media (min-width: 1200px) {
  /* ===============================
   BASE MENU
=============================== */
  .top-navigation .navbar {
    padding: 0;
  }
  .ulka-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .ulka-menu > .menu-item {
    position: relative;
    padding: 0 1.5rem;
  }

  .ulka-menu > .menu-item:first-child {
    padding-left: 0;
  }

  .ulka-menu > .menu-item:last-child {
    padding-right: 0;
  }
span.ulka-arrow {
    display: none;
}
  /* ===============================
   LINKS
=============================== */
  .ulka-menu .menu-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 0;
    font-size: 1.6rem;
    line-height: normal;
    font-weight: 500;
    font-family: var(--primary-font);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
  }

  /* Hover underline effect (same as old) */
  .ulka-menu > .menu-item > .menu-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 1px;
    background: var(--secondary-color);
    box-shadow: 0 0 3px 1px #fff;
    transform: scaleX(0);
    visibility: hidden;
    transition: 0.25s linear;
  }

  .ulka-menu .menu-item:hover > .menu-link::before {
    transform: scaleX(1);
    visibility: visible;
  }

  /* Hover color */
  .ulka-menu .menu-item:hover > .menu-link {
    color: #fff;
  }

  /* Active */
  .ulka-menu .menu-link.active,
  .ulka-menu .has-children > .menu-link.active::after {
    color: var(--link-color);
  }

  .ulka-menu .menu-link i {
    font-size: 14px;
}

  /* ===============================
   DROPDOWN
=============================== */
  .ulka-menu .sub-menu {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;
    background: #fff;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
    z-index: 99;
  }

  /* Show dropdown */
  .ulka-menu .menu-item:hover > .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }

  /* Dropdown items */
  .ulka-menu .sub-menu .menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .ulka-menu .sub-menu .menu-item:last-child {
    border-bottom: 0;
  }

  .ulka-menu .sub-menu .menu-link {
    color: #000;
    padding: 10px 14px;
    font-size: 1.5rem;
    display: block;
    transition: 0.3s;
  }

  /* Hover dropdown */
  .ulka-menu .sub-menu .menu-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
  }

  /* ===============================
   DROPDOWN ARROW
=============================== */
  .ulka-menu .has-children > .menu-link::after {
    content: "\f107";
    font-family: "FontAwesome";
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #fff;
  }
  li.menu-item.has-children .menu-link {
    padding-right: 20px;
  }
  /* Hover arrow color */
  .ulka-menu .menu-item:hover > .menu-link::after {
    color: #fff;
  }

  /* ===============================
   SUB DROPDOWN (LEVEL 2)
=============================== */
  .ulka-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
  }

  .ulka-menu .sub-menu .has-children > .menu-link::after {
    content: "\f0da";
    right: 10px;
    color: #000;
  }

  .ulka-menu .sub-menu .menu-item:hover > .menu-link::after {
    color: var(--primary-color);
  }

  /* ===============================
   OPTIONAL: ALIGN RIGHT MENU
=============================== */
  .ulka-menu.menu-headermenu {
    justify-content: flex-end;
  }

  /* ===== MENU ITEM DIVIDER (UPDATED FOR NEW DOM) ===== */
  .ulka-menu > .menu-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -1px;
    width: 1px;
    height: 100%;

    background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0)
    );
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .ulka-menu .menu-link {
    font-size: 1.4rem;
  }
  .ulka-menu > .menu-item {
    padding: 0 1.5rem;
  }
}
/*========== Footer ==========*/
.footer {
  background-color: var(--secondary-color);
}

.footer-top {
  padding: 40px 0;
}

.footer-logo img {
  max-width: 120px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  background: var(--navy-color);
  color: white;
  padding-block: 15px;
  border-top: 1px solid #484d46;
  font-size: 14px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}

.powered-by img {
  max-width: 20px;
  margin: 0 2px;
}

.powered-by a {
  color: #febb02 !important;
  text-decoration: none;
}

.footer-bottom p,
.footer-copyright {
  margin-bottom: 3px;
}
.social-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, 32px);
  justify-content: end;
  gap: 10px;
}

.social-icons img {
  background: #fff;
  padding: 5px;
  border-radius: 8px;
  box-shadow: 0 0 3px 0 #00000038;
  width: 32px;
}
.socialMediaLinks {
  display: grid;
  grid-template-columns: repeat(auto-fit, 32px);
  justify-content: center;
  gap: 20px;
}
.footer-items.social {
  text-align: center;
}

.footer-items .title-xs {
  margin-bottom: 15px;
  font-size: 20px;
  color: #fff;
}
.footer-items a {
    font-weight: 600;
}
ul.footer-nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 20px;
    margin-bottom: 0;
    justify-content: center;
}
ul.footer-nav a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}
@media (max-width: 991px) {
  .footer-logo {
    text-align: center;
  }
  .footer-items {
    text-align: center;
}
}
/*====== CTA ====*/
.common-sec.cta {
  background-color: var(--secondary-color);
  border-bottom: 3px solid #ffffff;
  color: #fff;
}
.cta-sec {
  background-color: var(--secondary-color) !important;
}
.cta-box {
  padding: 40px;
  background-color: var(--secondary-color);
  border-radius: 20px;
  max-width: 1050px;
  margin: auto;
  text-align: center;
}
.cta-box p,
.cta-sec p {
  font-size: 18px;
}
.ctaBtn {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

span.dot-box img {
  max-width: 22px;
}

.ctaBtn .main-btn {
  border: 2px solid #ffffff;
  background-color: var(--red-color);
  min-width: 160px;
}

.ctaBtn .main-btn:hover {
  border: 2px solid #fff;
  background-color: var(--primary-color);
}
.cta-fluid {
    text-align: center;
    background-color: var(--secondary-color) !important;
}
.cta-fluid p {
    font-size: 18px;
    line-height: normal;
}
.cta-fluid .ctaBtn .main-btn {
  padding: 12px 20px;
  font-size: 18px;
}

@media (max-width: 575px) {
  .ctaBtn .main-btn {
    min-width: 150px;
    font-size: 15px;
    padding: 8px 15px;
  }
  .cta-fluid p {
    font-size: 16px;
}
}
@media (max-width: 425px) {
  .common-box .content {
    padding: 15px;
  }
}
a.main-btn.call img {
  width: 15px;
  margin-right: 3px;
  margin-bottom: 3px;
}
/*===== Hero Section ====*/
.slider-wrapper {
  background: radial-gradient(at center center, rgb(255 0 0 / 40%) 0%, rgba(255, 0, 0, 0.7) 100%);
  position: relative;
  width: 100%;
  background-image: url(https://cdn.ulka.dev/tenants/b47543f1a2fd4aa99e158b9677d368b6/484d02b487674a0e9da8a92f1ecf801f/images/sell-alarm-company-hero-banner.jpg?v=5);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
}
.slider-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(at center center, rgb(255 0 0 / 40%) 0%, rgba(255, 0, 0, 0.7) 100%);
}
.slider-text {
  text-align: center;
  position: relative;
}

.slider-text p {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-shadow: rgb(31 35 35 / 50%) -3px 3px 5px;
}

.slider-text .mega-heading {
  font-size: 55px;
  position: relative;
  line-height: normal;
  letter-spacing: 1px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: rgb(31 35 35 / 50%) -3px 3px 5px;
}

.slider-text .main-btn {
  margin-top: 20px;
}

.section-bridge {
  position: relative;
  margin-top: -75px;
  background-color: transparent;
}
.bridge-box {
  display: inline-block;
  background: var(--secondary-color);
  color: #ffffff;
  font-weight: 900;
  font-size: 75px;
  line-height: normal;
  padding: 25px 45px;
  text-transform: uppercase;
  border-radius: 30px;
  border: 5px solid #ffb4b2;
  text-align: center;
  letter-spacing: 3px;
  -webkit-text-fill-color: var(--primary-color);
  -webkit-text-stroke-width: 2px;
}

@media (max-width: 1330px) {
  .slider-text .mega-heading {
    font-size: 45px;
  }
  .slider-text p {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .slider-text .mega-heading {
    font-size: 40px;
  }
  .slider-text p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .slider-wrapper {
    height: 400px;
  }
  .slider-text .mega-heading {
    font-size: 30px;
  }
  .slider-text p {
    font-size: 16px;
  }
  .section-bridge {
    margin-top: -45px;
  }
  .bridge-box {
    font-size: 4rem;
    padding: 20px 30px;
  }
}

@media (max-width: 575px) {
  .bridge-box {
    font-size: 3.5rem;
  }
  .slider-text a.main-btn {
    font-size: 13px;
    padding: 10px 15px;
    margin-top: 10px;
  }
  a.main-btn img {
    width: 8px;
    margin-left: 3px;
  }
}
/*======= Service Box & Card =======*/
.service-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    display: block;
    height: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    z-index: 1;
    background: rgb(220 237 184 / 20%);
    border: 1px solid #f1f3ed;
    color: var(--black-color) !important;
    transition: 0.3s;
}
a.service-card:hover {
    background: rgb(220 237 184 / 50%);
}
.card__title {
  display: flex;
  gap: 15px;
  align-items: center;
}

.card__title img {
  width: 50px;
}

.card__title .title-sm {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
}

.card__body {
  margin-top: 10px;
}

@media (max-width: 1199px) {
.card__title .title-sm {
    font-size: 18px;
}
.service-card {
    padding: 20px;
}
.card__title img {
    width: 40px;
}
.card__title {
    gap: 10px;
}
}
@media (max-width: 767px) {
.card__title .title-sm {
    font-size: 16px;
}
}
/*==== FAQs ===*/
.details-block details {
background-color: #e8f3fd;
    border-radius: 10px;
    border: 1px solid #cce3f9;
}

.details-block details + details {
  margin-top: 15px;
}

.details-block details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.details-block details summary:after {
  font-size: 20px;
  text-align: center;
}

.details-block details summary:after {
  content: "+";
}

.details-block details[open] summary:after {
  content: "-";
}

.details-block details[open] .expand {
  padding-left: 15px;
  position: relative;
  margin: 0 20px 15px 20px;
  border-left: 2px solid #7ba4ff;
}
/*====== Video Btn =======*/
.video-box {
  position: relative;
}

.video-box img {
  border-radius: 5px;
  width: 100%;
}

.video-btn {
  position: absolute;
  text-align: center;
  color: inherit;
  font-size: 25px;
  border: none;
  height: 65px;
  width: 100px;
  border-radius: 50% / 15%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none !important;
  background-color: rgb(220 53 69 / 90%);
  box-shadow: none;
  transition: 0.5s;
}

.video-btn .fa-play {
  color: #fff;
  position: relative;
  z-index: 99;
  -webkit-transition: color 0.5s;
  transition: 0.5s;
  text-decoration: none;
  line-height: 80px;
}

.video-btn:hover {
  color: inherit;
  background-color: red;
}

.video-btn:hover .fa-play {
  color: #fff;
}

.video-btn:before,
.video-btn:after {
  display: none;
}
@media (max-width: 575px) {
  .video-btn {
    font-size: 20px;
    height: 50px;
    width: 80px;
  }
}

/*Contact Form*/
.contact-box {
    position: relative;
    overflow: hidden;
    padding: 50px;
    border-radius: 30px;
    background-image: url('https://cdn.ulka.dev/tenants/b47543f1a2fd4aa99e158b9677d368b6/484d02b487674a0e9da8a92f1ecf801f/images/online-notary-services.jpg?v=5');
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    color: #e6e6e6;
}

.contact-box h1,
.contact-box [class*="title-"] {
    color: #e6e6e6;
}

.contact-box::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #000000;
    opacity: 0.73;
}

.contact-box > * {
    position: relative;
    z-index: 1;
}

.contact-box .box {
    display: grid;
    gap: 15px;
    margin-top: 20px;
    grid-template-columns: 45px 1fr;
}

.contact-box .box .icon {
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--heading-color);
    font-size: 18px;
}

.box .text p {
    font-size: 14px;
}

.contact-box .box .text a {
    font-size: 18px;
    font-weight: 500;
}

.contact-box .box.social .socialMediaLinks {
    justify-content: start;
}

.contact-box .box.social hr {
    margin: 15px 0;
}

.ulka-form-container {
    padding: 30px;
    background: rgb(255 255 255 / 10%);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ulka-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ulka-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-basis: 49%;
}

.ulka-field-group:has(.ulka-textarea),
.ulka-form-actions {
  flex-basis: 100%;
}

.ulka-label {
    font-size: 15px;
    font-weight: 600 !important;
    color: var(--secondary-color);
    letter-spacing: 0.3px;
}

.ulka-required {
    color: var(--red-color) !important;
    margin-left: 2px;
}
.review-card_cta {
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
    font-weight: 700;
}

.review-card_cta a:hover {
    text-decoration: underline;
}
@media (max-width: 575px) {
.review-card_cta {
    margin-top: 25px;
    font-size: 18px;
}
.review-card_cta a {
    white-space: wrap;
}
}
/* Premium Dark Inputs */
.ulka-input,
.ulka-textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 20px !important;
    border: 1px solid rgb(0 0 0 / 15%) !important;
    border-radius: 8px !important;
    background: rgb(255 255 255 / 30%) !important;
    font-size: 16px;
    color: #000 !important;
    transition: all 0.25s ease-in-out;
    outline: none;
    box-shadow: inset 0 0 4px -0.5px rgb(212 212 212 / 50%);
}

.ulka-input::placeholder,
.ulka-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.ulka-input:focus,
.ulka-textarea:focus {
  background: rgb(255 255 255 / 80%) !important;
  box-shadow: inset 0 0 4px -0.5px rgb(37 99 235);
}

.ulka-form-actions {
    margin-top: 0!important;
}
.ulka-submit-button {
    padding: 12px 32px !important;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none !important;
    border-radius: 12px !important; /* Match field radius for consistency */
    background: var(--primary-color) !important;
    color: #fff !important;
    width: auto !important;
    min-width:160px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
        margin: auto;
}

.ulka-submit-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(163, 230, 53, 0.3);
}

.ulka-submit-button:active {
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .ulka-form-container {
        padding: 20px;
    }
.ulka-field-group {
    flex-basis: 100%;
}
}

@media (max-width: 768px) {
    /* Collapse Grid to Single Column on Tablet/Mobile */
    .ulka-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ulka-field-group:has(.ulka-textarea),
    .ulka-form-actions {
        grid-column: span 1;
    }
}

@media (max-width: 575px) {
    .contact-box {
        padding: 15px;
        border-radius: 10px;
    }
    .ulka-label {
    font-size: 16px;
}
}


/*======== Trust Bar =========*/
.whyChoose-common-box {
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  gap: 10px;
  border-radius: 10px;
  background-color: #1c2a39;
  color: #fff;
  display: grid;
  grid-template-columns: 65px 1fr;
}

.whyChoose-common-box .img-box img {
  width: 50px;
}

.whyChoose-common-box .content {
  font-size: 18px;
}

.whyChoose-common-box .img-box {
  margin-bottom: 0;
}

.whyChoose-common-box .img-box span {
  padding: 12px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
}
@media (max-width: 575px) {
  .whyChoose-common-box .content {
    font-size: 16px;
  }
}

span.sub-text {
  font-size: 24px;
  font-weight: 500;
  color: var(--red-color);
  position: relative;
  display: inline-flex;
  padding-left: 35px;
}

span.sub-text::before {
  background-color: var(--red-color);
  content: "";
  width: 24px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.curved-box {
  position: relative;
}

.curved-box.common-sec:nth-child(even):before,
.curved-box.common-sec,
.curved-box {
  background-color: #e7f3ff;
}

.curved-box .video-btn {
  z-index: 999;
}

.curved-box .video-btn,
.review-card.video-testimonial .video-btn,
.video-sec .video-btn,
.video-box.red-bg .video-btn {
  background-color: var(--red-color);
}

.curved-box .video-btn .fa-play,
.video-testimonial .video-btn .fa-play,
.video-box.red-bg .video-btn .fa-play {
  color: #fff;
}

.curved-box .video-btn:hover,
.video-testimonial .video-btn:hover,
.video-sec .video-btn:hover,
.video-box.red-bg .video-btn:hover {
  background-color: red;
}

.curved-box-img .video-btn {
  left: 98%;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  font-size: 36px;
  border: 5px solid #fff;
}

.curved-box-img .video-btn .fa-play {
  line-height: 70px;
}

.video-sec .common-box {
  background-color: #e4eeff;
  border: 1px solid #cfdef9;
}

.video-sec .common-box > .content {
  font-weight: 500;
  font-size: 14px;
}

.curved-box-img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  object-position: top;
}

.curved-box-img::after,
.curved-box-img::before {
  content: "";
  display: block;
  background: var(--red);
  width: calc(100% + 30px);
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 12px;
  left: -15px;
}

.curved-box-img::after {
  background: #fff;
  z-index: 1;
  top: 17px;
}

.curved-box-text {
  padding-left: 30px;
  padding-right: 0;
}

.curved-box-col {
  position: relative;
  padding: 0;
}

.curved-box-img {
  position: relative;
  padding-top: 30px;
}

.curved-box-img img,
.curved-box-img::after,
.curved-box-img::before {
  clip-path: ellipse(100% 100% at bottom);
}

@media (min-width: 2100px) {
  .video-btn {
    left: 70%;
  }
}

@media (min-width: 992px) {
  .curved-box > .container > .row {
    min-height: 450px;
  }
}

@media (min-width: 992px) {
  .curved-box-col {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
  }
}

@media (min-width: 992px) {
  .curved-box-img {
    padding-left: 30px;
    padding-top: 0;
  }

  .flex-lg-row-reverse .curved-box-img {
    padding-right: 30px;
    padding-left: 0;
  }

  .flex-lg-row-reverse .curved-box-col {
    left: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .curved-box-img img,
  .curved-box-img::after,
  .curved-box-img::before {
    clip-path: ellipse(100% 50vw at right);
  }

  .flex-lg-row-reverse .curved-box-img img,
  .flex-lg-row-reverse .curved-box-img::after,
  .flex-lg-row-reverse .curved-box-img::before {
    clip-path: ellipse(100% 50vw at left);
  }
}

@media (min-width: 1200px) {
  .curved-box-img img,
  .curved-box-img::after,
  .curved-box-img::before {
    clip-path: ellipse(100% 45vw at right);
  }

  .flex-lg-row-reverse .curved-box-img img,
  .flex-lg-row-reverse .curved-box-img::after,
  .flex-lg-row-reverse .curved-box-img::before {
    clip-path: ellipse(100% 45vw at left);
  }
}

@media (max-width: 991.98px) {
  .curved-box-img img {
    height: 320px;
  }

  .curved-box-text {
    padding-left: 0;
  }

  .curved-box-img .video-btn {
    left: 50%;
    top: 5%;
  }

  .curved-box-img img {
    height: 375px;
  }
}

@media (min-width: 992px) {
  .curved-box-img::after,
  .curved-box-img::before {
    width: 100%;
    top: 0;
    left: 0;
  }

  .flex-lg-row-reverse .curved-box-img::after,
  .flex-lg-row-reverse .curved-box-img::before {
    right: 0;
  }
}

@media (min-width: 992px) {
  .curved-box-img::after {
    left: 7.5px;
    top: 0;
  }

  .flex-lg-row-reverse .curved-box-img::after {
    left: -7.5px;
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .curved-box-img img {
    height: 320px;
  }
}
/*======= About Tim ======*/
.rows__grid {
  display: grid;
  grid-template-columns: auto 375px;
  grid-gap: 20px;
}

.rows__content {
  padding: 30px;
  border: 1px solid #ededed;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: rgb(160 160 160 / 15%) 0px 5px 10px 0px;
}
.rows__image img {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.08),
    inset 0 -8px 18px rgba(28, 42, 57, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  max-width: 500px;
  margin: auto;
}

@media (max-width: 991px) {
  .rows__grid {
    grid-template-columns: 1fr;
  }
}