@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
:root {
  --brand: #B90000;
  --dark: #000000;
  --body-text-color: #000;
  --white: #ffffff;
  --body-font: "Poppins", sans-serif;
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
*::after, *::before {
  margin: 0%;
  padding: 0%;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  font-display: swap;
  line-height: 1.65;
  color: var(--body-text-color);
  font-size: 1rem;
}

.h1 {
  font-size: 2.875rem;
}

h2, .h2 {
  font-size: 4rem;
  font-weight: 600;
  color: var(--dark);
}

h3, .h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark);
}

h4, .h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5, .h5 {
  font-size: 1.25rem;
}

.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-15 {
  font-size: 0.937rem !important;
}

.bg-light {
  background-color: #F9F9F9 !important;
}

.bg-primary {
  background-color: var(--brand) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.img-hover {
  overflow: hidden;
  border-radius: 35%;
}
.img-hover img {
  transition: all 0.3s ease-in-out;
}
.img-hover:hover img {
  transform: scale(1.1);
}

.text-primary {
  color: var(--brand) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.text-55 {
  color: #555 !important;
}

.text-gray {
  color: var(--gray) !important;
}

.text-justify {
  text-align: justify;
}

.bgi {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--dark);
}
a:hover {
  color: var(--brand);
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  list-style-type: none;
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
}

.btn {
  font-weight: 500;
  font-display: swap;
  color: var(--dark);
  font-size: 1rem;
  border-radius: var(--border-radius);
  padding: 0 2rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  transition: all 0.4s ease-in-out;
}
.btn.height {
  min-height: 2.875rem;
}
.btn.height.sm {
  font-size: 0.875rem;
  min-height: 2.25rem;
}

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--secondary);
  border-color: var(--dark);
}

@media (max-width: 1399.99px) {
  .h1 {
    font-size: 2.5rem;
  }
  .h1.lg {
    font-size: 3.5rem;
  }
  .lead {
    font-size: 1.125rem;
  }
}
@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
  .h1 {
    font-size: 2.75rem;
  }
  h2, .h2 {
    font-size: 3rem;
  }
  h3, .h3 {
    font-size: 1.625rem;
  }
  h4, .h4 {
    font-size: 1.45rem;
  }
}
@media (max-width: 767.99px) {
  .h1 {
    font-size: 2.5rem;
  }
  h2, .h2 {
    font-size: 2.75rem;
  }
  h3, .h3 {
    font-size: 1.5rem;
  }
  h4, .h4 {
    font-size: 1.35rem;
  }
}
@media (max-width: 575.99px) {
  html {
    font-size: 87.5%;
  }
  .fs-13 {
    font-size: 11px;
  }
  .lead {
    font-size: 1rem;
  }
  .h1 {
    font-size: 2.5rem;
  }
  h2, .h2 {
    font-size: 2.25rem;
  }
  h3, .h3 {
    font-size: 1.5rem;
  }
  h4, .h4 {
    font-size: 1.35rem;
  }
  h5, .h5 {
    font-size: 1.067rem;
  }
  .btn {
    font-size: 0.937rem;
    padding: 0% 0.75rem;
  }
  .btn .arrow {
    width: 18px;
    height: 8px;
    background-size: contain;
  }
  .btn.height {
    min-height: 2.5rem;
  }
  .container {
    max-width: calc(100% - 20px);
  }
}
/*====================== Navigation Styles ===================*/
.scrolled-down {
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}

.scrolled-up {
  transform: translateY(0);
  background-color: var(--dark) !important;
  transition: all 0.3s ease-in-out;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 0.5rem 0 !important;
  z-index: 1030;
}
.scrolled-up .navbar-brand img {
  max-height: 2rem;
  width: auto;
}

.navbar {
  z-index: 999;
  padding: 1rem 0;
}
.navbar .nav-item .nav-link {
  font-size: 1.125rem;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item .nav-link:hover {
  color: var(--brand);
}
.navbar .nav-item.active .nav-link.btn-primary {
  color: var(--white);
  background-color: var(--dark);
}
.navbar .nav-link.btn-primary:hover, .navbar .nav-link.btn-primary:focus, .navbar .nav-link.btn-primary:active {
  color: var(--brand) !important;
}
.navbar .navbar-toggler {
  border: 1px solid transparent;
  position: relative;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.hamburger ._line{
  width: 36px;
  height: 3px;
  background-color: #ecf0f1;
  display: block;
  margin: 8px auto;border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover{
  cursor: pointer;
}

/* ONE */

.navbar-toggler:not(.collapsed) .hamburger ._line:nth-child(2){
  opacity: 0;
}

.navbar-toggler:not(.collapsed) .hamburger ._line:nth-child(1){
  -webkit-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  -o-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .hamburger ._line:nth-child(3){
  -webkit-transform: translateY(-13px) rotate(-45deg);
  -ms-transform: translateY(-13px) rotate(-45deg);
  -o-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) rotate(-45deg);
}


@media (max-width: 991px) {
  .navbar .navbar-collapse {
    background-color: var(--dark);
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .navbar {
    padding: 1rem 0;
  }
  .navbar .navbar-brand img {
    max-height: 2.5rem;
    width: auto;
  }
}
footer {
  background: #EEE;
}

@media (min-width: 992px) {
  footer .container {
    min-height: 3rem;
  }
  footer .logo {
    position: absolute;
    top: 0%;
    left: 0%;
  }
}
/*---------------------- Back to Top Css --------------*/
.backTop {
  bottom: 1rem;
  right: 1rem;
  width: 3rem;
  min-height: auto;
  height: 3rem;
  background-color: var(--brand);
  z-index: 999;
  display: none;
  border: 2px solid var(--white);
}
.backTop:hover, .backTop:focus, .backTop:active {
  background-color: var(--dark);
}
.backTop.show {
  display: flex;
}

@media (max-width: 575.99px) {
  footer .logo img {
    max-height: 2.5rem;
    width: auto;
  }
}
.header__wrapper {
  background-color: rgba(5, 80, 123, 0.09);
  min-height: 100vh;
}
.header__wrapper .right__aligned__box, .header__wrapper .thumb__box {
  min-height: calc(100vh - 10rem);
}
.header__wrapper .h1 {
  font-size: 4rem;
}
.header__wrapper .overlay {
  background-color: #000;
  opacity: 0.4;
}

@media (min-width: 2000px) {
  .header__wrapper {
    min-height: 1080px;
  }
  .header__wrapper .right__aligned__box, .header__wrapper .thumb__box {
    min-height: calc(1080px - 10rem);
  }
}
@media (max-width: 992px) {
  .header__wrapper {
    padding: 4rem 0 2rem 0;
  }
  .header__wrapper .h1 {
    font-size: 3rem;
  }
  .header__wrapper .right__aligned__box, .header__wrapper .thumb__box {
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .header__wrapper .h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 575px) {
  .header__wrapper .h1 {
    font-size: 2.25rem;
  }
}
@media (min-width: 992px) {
  .header__wrapper .h1 {
    white-space: nowrap;
  }
  .right__aligned__box {
    position: absolute;
    top: 0%;
    left: 0%;
  }
  .right__aligned__box.col--5 {
    width: 45vw;
  }
}
.line {
  position: relative;
  display: inline-block;
}
.line::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #B90000;
  display: inline-block;
  position: absolute;
  bottom: 0%;
  left: 0;
}

.page__header {
  min-height: 13rem;
  border: 1px solid #707070;
}

@media (max-width: 576px) {
  .page__header {
    min-height: 10rem;
    padding: 4rem 0;
  }
  .page__header .h1 {
    font-size: 2.5rem;
  }
}
.top__title {
  color: #383838;
  font-size: 2.25rem !important;
}

.map {
  overflow: hidden;
  position: relative;
  width: 100%;
  background-color: #ccc;
  max-height: 27rem;
}
.map::after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0px;
}

.galleryItem {
  position: relative;
}
.galleryItem::after {
  content: "";
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  display: block;
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--eye) no-repeat center center/2rem;
  background-color: rgba(0, 0, 0, 0.7098039216);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.galleryItem:hover::after {
  opacity: 1;
  visibility: visible;
}

.services__offered__wraper .services__offered__box {
  padding: 3.5rem 2.25rem;
  border: 1px solid #707070;
  transition: all 0.5s ease-in-out;
}
.services__offered__wraper .services__offered__box h3 {
  color: #2C2C2C;
}
.services__offered__wraper .services__offered__box p {
  color: #2C2C2C;
}
.services__offered__wraper .services__offered__box .title__mini__box {
  height: 3.25rem;
}
.services__offered__wraper .services__offered__box .mini__text {
  height: calc(100% - 3.25rem);
}
.services__offered__wraper .services__offered__box:hover {
  background-color: var(--brand);
}
.services__offered__wraper .services__offered__box:hover h3 {
  color: var(--white);
}
.services__offered__wraper .services__offered__box:hover p {
  color: var(--white);
}

@media (max-width: 575px) {
  .services__offered__wraper .services__offered__box {
    padding: 1.5rem 1.25rem;
  }
}
.contact__wrapper .form-control, .contact__wrapper .form-select {
  height: 3.25rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #CBCBCB;
  border-radius: 12px;
  font-weight: 500;
  padding-left: 1.125rem;
  background-color: #FFFFFF;
}
.contact__wrapper .form-control::-moz-placeholder, .contact__wrapper .form-select::-moz-placeholder {
  color: rgba(51, 51, 51, 0.2);
}
.contact__wrapper .form-control::placeholder, .contact__wrapper .form-select::placeholder {
  color: rgba(51, 51, 51, 0.2);
}
.contact__wrapper textarea.form-control {
  height: auto;
  padding-top: 1rem;
}
.contact__wrapper .btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  border-width: 2px;
  font-size: 1.25rem;
  min-height: 3.5rem;
}
.contact__wrapper .btn-primary:hover {
  color: #019E57;
  background-color: transparent;
}

.error {
  padding-top: 0.25rem;
}/*# sourceMappingURL=style.css.map */

.owner-photo-wrap { padding: 10px; }
.owner-photo-elevated {
  position: relative;
  background: radial-gradient(130% 130% at 0% 0%, rgba(86,148,254,.18), transparent 55%),
              radial-gradient(120% 120% at 100% 0%, rgba(255,154,80,.16), transparent 55%),
              #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 30px rgba(22,28,45,.08), 0 2px 8px rgba(22,28,45,.06);
}
.owner-photo-img {
  aspect-ratio: 4/4;
  filter: saturate(1.05) contrast(1.02);
  display: block;
}
.owner-photo-elevated::before {
  /* thin gradient ring */
  content:"";
  position:absolute; inset:0;
  border-radius: 20px;
  padding:1px;
  background: linear-gradient(120deg,#56b4ff,rgba(255,154,80,.85));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events:none;
}
/* animated soft orbs behind the photo */
.orb {
  position: absolute; filter: blur(18px); opacity:.55; z-index:0;
  border-radius: 999px;
  animation: floaty 12s ease-in-out infinite;
}
.orb-1 { width:130px; height:130px; background: rgba(86,148,254,.45); top:-20px; left:-20px; animation-delay: .2s; }
.orb-2 { width:160px; height:160px; background: rgba(255,154,80,.45); bottom:-24px; right:-24px; animation-delay: 1s; }
@keyframes floaty {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(6px,-8px,0) scale(1.06); }
}

/* Carousel polish */
.owner-carousel .carousel-card img { display:block; object-fit: cover; }
.prev-btn, .next-btn {
  width: 40px; height: 40px; background:var(--primaryColor); color:#fff; opacity:.95;
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
}
.prev-btn:hover, .next-btn:hover { transform: translateY(-1px); }
.owner-pagination .swiper-pagination-bullet { width:8px; height:8px; background: rgba(0,0,0,.25); opacity:1; }
.owner-pagination .swiper-pagination-bullet-active { background:#0f172a; }

/* Responsive tweaks */
@media (max-width: 992px){
  .owner-carousel .carousel-card img { height: 240px; }
}

/* Dark mode */
@media (prefers-color-scheme: dark){
  .owner-photo-elevated { background:#0f1115; border-color: rgba(255,255,255,.08); }
  .prev-btn, .next-btn { background:#fff; color:#111; }
  .owner-pagination .swiper-pagination-bullet { background: rgba(255,255,255,.35); }
  .owner-pagination .swiper-pagination-bullet-active { background:#fff; }
}

/* keep your previous .orb styles if you already added them; this keeps the same look */
.owner-photo-wrap { position: relative; padding: 10px; }
.orb { position:absolute; border-radius:50%; opacity:.55; filter: blur(25px); animation: floaty 12s ease-in-out infinite; z-index:0; }
.orb-1{ width:160px; height:160px; background: rgba(86,148,254,.45); top:-30px; left:-20px; animation-delay:.2s;}
.orb-2{ width:190px; height:190px; background: rgba(255,154,80,.45); bottom:-30px; right:-20px; animation-delay:1s;}
.orb-3{ width:140px; height:140px; background: rgba(120,80,255,.35); top:45%; left:78%; transform:translate(-50%,-50%); animation-delay:2.2s;}
@keyframes floaty{0%,100%{transform:translate3d(0,0,0) scale(1)}50%{transform:translate3d(8px,-10px,0) scale(1.06)}}

/* square profile card */
.owner-photo-card{
  position: relative;
  z-index: 1;               /* above the orbs */
  background:#fff;
  border-radius: 20px;      /* rounded corners */
  /* gradient ring using mask (keeps clean inner edge) */
  padding: 2px;             /* ring thickness */
  background: linear-gradient(135deg,#56b4ff,#ff9a50);
  box-shadow: 0 14px 30px rgba(22,28,45,.08), 0 3px 10px rgba(22,28,45,.06);
  max-width: 100%;
  /* optional fixed ratio so every photo looks consistent */
  aspect-ratio: 4/4;
  display: grid;
  place-items: stretch;
}
.owner-photo-card::before{
  /* subtle inner border */
  content:"";
  position:absolute; inset:0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,.65));
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
  pointer-events:none;
  opacity:.5;
}
.owner-photo-img-sq{
  width:100%; height:100%;
  object-fit: cover;
  border-radius: 18px;      /* inner radius (ring visible) */
  display:block;
  background:#f5f7fb;       /* graceful fallback */
  /* mild polish */
  filter: saturate(1.03) contrast(1.02);
}

/* hover (optional, classy) */
.owner-photo-card:hover{ transform: translateY(-2px); transition: transform .25s ease; }

/* dark mode */
@media (prefers-color-scheme: dark){
  .owner-photo-card{ background: linear-gradient(135deg,#6abfff,#ffb07a); box-shadow: 0 14px 30px rgba(0,0,0,.35), 0 3px 10px rgba(0,0,0,.2); }
  .owner-photo-card::before{ background: linear-gradient(180deg, rgba(15,17,21,.92), rgba(15,17,21,.86)); }
}

/* spacing if not using Bootstrap's gap */
.carousel-controls { display:flex; justify-content:center; gap:16px; margin-top:12px; }

/* disable zoom / dragging / long-press save on images */
.owner-carousel img {
  pointer-events: none;         /* no right-click interactions */
  touch-action: none;           /* prevents pinch-zoom */
  -webkit-user-drag: none;      /* Safari/Chrome: block dragging */
  user-select: none;            /* text/image selection disabled */
}
/* Owner – layout & visuals */
.owner-area { background:#f8fafc; }
.owner-card, .owner-pill { background:#fff; border:1px solid #eef0f6; border-radius:18px; box-shadow:0 6px 18px rgba(19,33,68,.06); }

.owner-bullets li { margin:.35rem 0; }

/* Portrait: subtle gradient border + rounded corners */
.owner-portrait {
  border-radius:20px; padding:2px; margin:0;
  background:linear-gradient(135deg,#63a3ff,#ffd26f);
  box-shadow:0 10px 30px rgba(20,38,66,.08);
}
.owner-portrait img{
  display:block; width:100%; height:auto; border-radius:18px; background:#fff; object-fit:cover;
}

/* Media frame (uses Bootstrap 5 .ratio) */
.owner-media { border-radius:16px; overflow:hidden; box-shadow:0 10px 28px rgba(16,24,40,.12); }
.owner-media img{ width:100%; height:100%; }

/* Carousel controls */
.btn-circle{ width:42px; height:42px; border-radius:50%; padding:0; line-height:1; }
.owner-nav .btn{ transition:transform .15s ease, opacity .2s; }
.owner-nav .btn:hover{ transform:translateY(-1px); opacity:.92; }

/* Auto-hide controls when only one slide */
.owner-carousel.is-single .owner-nav { display:none; }
img {
  pointer-events: none !important;     /* disables right-click drag */
  user-select: none !important;        /* disables selection */
  -webkit-user-drag: none !important;  /* disables drag on Safari/Chrome */
  -webkit-touch-callout: none !important; /* disables iOS image callout */
}




