@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

:root {
  --heading-font: "Rubik", sans-serif;
  --body-font: "Rubik", sans-serif;
  --theme-color: #011e6f;
  /* --theme-color: #022b50; */
  --secondary-color: #f1dcc6;
  --theme-bg-light: #f9f9f9;
  --body-text-color: #333435;
  --color-white: #ffffff;
  --color-dark: #111111;
  --color-green: #719430;
  --color-blue: #0049d0;
  --color-yellow: #f9cc47;
  --hero-overlay-color: #01060f;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all 0.5s ease-in-out;
  --transition2: all 0.3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: #111111;
  --footer-bg2: #181818;
  --footer-text-color: #f5faff;
}

body {
  /* padding-top: 100px; */
  color: var(--body-text-color);
  overflow-x: hidden !important;
  font-family: var(--body-font);
}

/* scrollTop */

#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: var(--theme-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  z-index: 1;
  cursor: pointer;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease-in-out;
}

#scrollTopBtn:hover {
  background-color: var(--theme-color);
}

/* p{
    text-align: justify;
    margin-bottom: 5px;
} */

.py-50 {
  padding: 50px 0px;
}

.py-80 {
  padding: 80px 0px;
}

@media (max-width: 768px) {
  .py-80 {
    padding: 40px 0px;
  }
}

a {
  color: var(--body-text-color);
}

/* a:hover {
  color: var(--color-white);
} */

img {
  max-width: 100%;
  height: auto;
}

.fas-icon {
  color: var(--theme-color);
}

ul {
  list-style-type: none;
  padding-left: 0px;
}

/* .card{
  background-color: var(--color-white);
  border: none;
  border-radius: 15px;
} */

/* Header Section */

.top-header {
  background-color: var(--theme-color);
  display: flex;
}

.top-header ul {
  margin-bottom: 0px;
  padding: 5px;
}

.top-header ul li {
  margin-right: 10px;
  color: var(--color-white);
  font-size: 14px;
}

.top-header a {
  color: var(--color-white);
  text-decoration: none;
}

.top-header a:hover {
  color: var(--color-white) !important;
}

.navbar .navbar-brand img {
  max-height: 50px;
}

@media (min-width: 992px) {
  #mainNav .container {
    position: relative;
  }

  .navbar {
    padding: 2.5rem 1rem 2.5rem 1rem;
  }

  .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition:
      transform 0.8s ease,
      left 0.8s ease;
    z-index: 30;
  }

  #navMenu {
    position: absolute;
    right: 50%;
    top: 0;
    height: 100%;
    transform: translateX(50%);
    opacity: 0;
    transition:
      transform 0.8s ease,
      right 0.8s ease,
      opacity 0.6s ease;
    display: block;
    z-index: 20;
  }

  #navMenu .navbar-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
  }

  .navbar-brand.move-left {
    left: 0;
    transform: translate(0, -50%);
  }

  #navMenu.move-right {
    right: 0;
    transform: translateX(0);
    opacity: 1;
  }

  .navbar-toggler {
    z-index: 40;
  }
}

.logo {
  max-height: 48px;
  display: block;
}

.navbar-nav.animate-items .nav-item {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s ease;
}

.navbar-nav.animate-items.show-items .nav-item {
  opacity: 1;
  transform: translateX(0);
}

.navbar-nav.animate-items .nav-item:nth-child(1) {
  transition-delay: 0.1s;
}

.navbar-nav.animate-items .nav-item:nth-child(2) {
  transition-delay: 0.2s;
}

.navbar-nav.animate-items .nav-item:nth-child(3) {
  transition-delay: 0.3s;
}

.navbar-nav.animate-items .nav-item:nth-child(4) {
  transition-delay: 0.4s;
}

.navbar-nav.animate-items .nav-item:nth-child(5) {
  transition-delay: 0.5s;
}

.navbar-nav.animate-items .nav-item:nth-child(6) {
  transition-delay: 0.6s;
}

.navbar-nav.animate-items .nav-item:nth-child(7) {
  transition-delay: 0.7s;
}

@media (min-width: 992px) {
  .hover-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .hover-dropdown .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }
}

.hero {
  min-height: 72vh;
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.45), rgba(10, 10, 10, 0.45)),
    url("https://images.unsplash.com/photo-1560184897-6d6a3b3b2b49?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
}

.property-card img {
  height: 200px;
  object-fit: cover;
}

.badge-price {
  font-size: 0.95rem;
}

.section-title {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23FF9D00' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler {
  border: none;
  background: transparent;
  font-size: 22px;
  color: #000000;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
}

@media (max-width: 768px) {
  .navbar-nav .nav-link {
    color: #000000 !important;
  }
}

.navbar-nav .nav-link {
  color: var(--color-dark) !important;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}

@media (max-width: 1024px) {
  .navbar-nav .nav-link {
    font-size: 12px;
  }
}

.navbar-nav .nav-link:hover {
  color: var(--theme-color) !important;
}

@media (max-width: 768px) {
  .nav-link {
    padding: 0px;
  }
}

@media (max-width: 991px) {
  .top-header {
    display: none;
  }

  .navbar .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0px;
  }

  .navbar-nav .nav-item {
    margin: 10px 0;
  }
}

.btn-outline {
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
}

.btn-outline:hover {
  color: var(--theme-color) !important;
  border: 1px solid var(--theme-color);
}

.social-header ul li {
  color: var(--color-dark);
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 2px 5px;
}

.social-header ul li a {
  color: var(--color-dark);
}

.social-header ul li a:hover {
  color: var(--color-dark) !important;
}

.navbar {
  /* width: 90%; */
  /* margin: 10px auto; */
  background-color: var(--color-white);
  font-family: var(--heading-font);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  /* border-radius: 35px; */
}

.navbar-toggler:focus {
  border: none;
  box-shadow: none;
}

/* @media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
    }
  } */

@media (max-width: 510px) {
  .navbar {
    width: 100%;
    border-radius: 0px;
    margin: 0px;
  }
}

.toggler-iocn {
  color: var(--theme-color);
}

.nav-link {
  color: var(--body-text-color);
  font-size: 16px;
  font-weight: 600;
}

@media (min-width: 992px) and (max-width: 1025px) {
  .nav-link {
    font-size: 14px;
  }
}

.top-header {
  padding: 5px 0;
  font-size: 12px;
}

.top-header a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.top-header a:hover {
  color: #ffc107;
}

.top-social a {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.top-contact i,
.top-social i {
  font-size: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .top-header .d-flex {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .top-contact {
    justify-content: center;
  }

  .top-social {
    justify-content: center;
  }
}

.btn-theme {
  background-color: var(--theme-color);
  color: var(--color-white);
  font-size: 14px;
  border: none;
  text-decoration: none;
  /* border-radius: 25px; */
  padding: 6px 12px;
}

.btn-theme i {
  vertical-align: middle;
}

.btn-theme:hover {
  color: var(--color-white) !important;
  background-color: var(--color-dark);
}

.btn-dark {
  font-size: 14px;
}

.modal-content {
  border-radius: 14px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-title {
  color: #1a3c6e;
  font-weight: 700;
  font-size: 1.4rem;
}

.form-control1 {
  border-radius: 8px;
  border: 1.5px solid #d0d8e8;
  font-size: 0.875rem;
  height: 42px;
  transition: border-color 0.2s;
}

.form-control1:focus {
  border-color: #1a3c6e;
  box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.12);
}

.form-control1::placeholder {
  color: #aab3c2;
}

.note-text {
  font-size: 0.75rem;
  color: #777;
}

.form-check-input1:checked {
  background-color: #1a3c6e;
  border-color: #1a3c6e;
}

.form-check-input1:focus {
  box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.12);
}

.btn-register {
  background: #1a3c6e;
  color: #fff;
  border-radius: 8px;
  height: 44px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  transition: background 0.2s;
}

.btn-register:hover {
  background: #142f58;
  color: #fff;
}

.toggle-pwd {
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  color: #999;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.toggle-pwd:hover {
  color: #1a3c6e;
}

.login-link {
  font-size: 0.85rem;
  color: #555;
}

.login-link a {
  font-weight: 500;
}

/* ===== PLAYER CARD ===== */
.player-card {
  position: relative;
  width: 100%;
  /* max-width: 480px; */
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8); */
}

/* Video */
.player-card video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  cursor: pointer;
}

/* Center Play Button */
.center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    opacity 0.3s,
    transform 0.2s;
  z-index: 10;
}

.center-btn:hover {
  transform: translate(-50%, -60%) scale(1.1);
}

.center-btn i {
  font-size: 18px;
  color: #fff;
  margin-left: 4px;
}

.center-btn.playing {
  opacity: 0;
  pointer-events: none;
}

/* Title Overlay */
.title-overlay {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  padding: 30px 14px 8px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

.title-overlay .sub {
  font-size: 10px;
  color: #bbb;
  letter-spacing: 1.5px;
  font-weight: 500;
  text-transform: uppercase;
}

.title-overlay .main {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* Controls Bar */
.controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.72);
  padding: 5px 10px 8px;
  z-index: 10;
}

/* Progress Bar */
.progress-wrap {
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  margin-bottom: 7px;
  cursor: pointer;
}

.progress-fill {
  height: 100%;
  background: #1e90ff;
  border-radius: 2px;
  width: 0%;
  position: relative;
  transition: width 0.1s linear;
}

.progress-fill::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -4px;
  width: 12px;
  height: 12px;
  background: #1e90ff;
  border-radius: 50%;
}

/* Controls Row */
.ctrl-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ctrl-row .ctrl-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  line-height: 1;
}

.ctrl-row .ctrl-btn:hover {
  color: #1e90ff;
}

.time-display {
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  min-width: 72px;
}

.spacer {
  flex: 1;
}

/* Volume Slider */
.vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  cursor: pointer;
}

.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1e90ff;
  cursor: pointer;
}

.vol-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1e90ff;
  cursor: pointer;
  border: none;
}

/* Fullscreen Custom Styles */
.player-card:fullscreen {
  max-width: none !important;
  width: 100% !important;
  height: 100% !important;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-card:fullscreen video {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  object-fit: contain;
  aspect-ratio: auto;
}

/* In fullscreen, position title at the top, controls at the bottom */
.player-card:fullscreen .title-overlay {
  top: 20px;
  bottom: auto;
  background: linear-gradient(rgba(0, 0, 0, 0.7), transparent);
  padding: 20px;
}

.player-card:fullscreen .controls-bar {
  bottom: 20px;
  left: 20px;
  right: 20px;
  width: calc(100% - 40px);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 15px;
}

.player-card:fullscreen .center-btn {
  width: 80px;
  height: 80px;
}

.player-card:fullscreen .center-btn i {
  font-size: 36px;
}

/* Settings Menu */
.settings-menu {
  position: absolute;
  bottom: 50px;
  right: 15px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  width: 180px;
  z-index: 100;
  display: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  font-family: inherit;
  padding: 5px 0;
}

.settings-menu.active {
  display: block;
}

.settings-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.settings-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #1e90ff;
}

.settings-item i {
  width: 18px;
  text-align: center;
  margin-right: 8px;
}

.settings-item.back-btn {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  justify-content: flex-start;
}

.settings-item.speed-opt {
  justify-content: space-between;
  padding-left: 20px;
}

.settings-item.speed-opt.active {
  color: #1e90ff;
  font-weight: bold;
  background: rgba(30, 144, 255, 0.1);
}

/* In fullscreen, adjust settings menu position */
.player-card:fullscreen .settings-menu {
  bottom: 75px;
  right: 25px;
  width: 200px;
}

/* Banner */

.hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.display .display-5 {
  font-weight: 600;
  font-size: 40px;
}

.banner img {
  height: 300px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .banner img {
    height: 100%;
    border-radius: 10px;
  }
}

@media (max-width: 510px) {
  .display .display-5 {
    font-size: 16px;
  }
}

.hero .carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.display-3 {
  font-size: calc(1rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.carousel-caption {
  right: 0;
}

.site-heading span {
  color: var(--color-dark);
  font-weight: 500;
  font-size: 22px;
}

.site-title {
  color: var(--theme-dark);
}

.banner-img {
  width: 100%;
  height: 625px;
}

@media (max-width: 320px) {
  .banner-img {
    height: 375px;
  }
}

@media (max-width: 375px) {
  .banner-img {
    height: 440px;
  }
}

@media (max-width: 510px) {
  .banner-img {
    height: 500px;
  }
}

@media (max-width: 510px) {
  body {
    padding-top: 70px;
  }

  .hero-section p {
    font-size: 12px !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .pt-rem {
    padding-top: 7rem !important;
  }
}

@media (min-width: 1024px) {
  .pt-rem {
    padding-top: 10rem !important;
  }
}

@media (max-width: 767px) {
  .pt-rem {
    padding-top: 30px !important;
  }
}

.pt-rem {
  padding-top: 150px;
}

.btn-dark {
  background-color: #000;
  border: #000;
  color: #fff;
}

.btn-dark:hover {
  background-color: #000;
  color: #fff;
}

.hero-section {
  position: relative;
  isolation: isolate;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #022b507d;
  z-index: 0;
}

/* .hero-section > * {
  position: relative;
  z-index: 1;
} */

.hero-section>*:not(.hero-bg):not(.hero-overlay) {
  position: relative;
  z-index: 3;
}

@keyframes bgZoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

/* About Us */

.about-law {
  background: #f9f9f9;
}

.about-tag {
  color: var(--theme-color);
  letter-spacing: 1px;
}

.about-law h2 {
  line-height: 1.3;
}

.about-law p {
  color: #555;
  font-size: 16px;
}

.about-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.about-image-box img {
  width: 100% !important;
  transition: transform 0.6s ease;
}

.about-image-box:hover img {
  transform: scale(1.05);
}

/* Our Value */

.process-card {
  border-radius: 16px;
  padding: 30px 28px;
  color: #000;
  border: 2px solid rgba(255, 255, 255, 0.05) !important;
}

.process-card h4 {
  font-weight: 600;
}

.process-card p {
  color: #b5b5b5;
  margin-bottom: 0;
  line-height: 1.6;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color);
  font-size: 18px;
}

.step-no {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 14px;
  color: #888;
  font-weight: 500;
}

.values-fixed {
  position: sticky;
  top: 100px;
}

.values-fixed img {
  animation: moveX 4s ease-in-out infinite alternate;
}

@keyframes moveX {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(100px);
  }

  100% {
    transform: translateX(0);
  }
}

.values-scroll {
  height: 500px;
  overflow: hidden;
  position: relative;
}

.values-scroll-inner {
  display: flex;
  flex-direction: column;
  animation: scrollUp 20s linear infinite;
}

.values-scroll:hover .values-scroll-inner {
  animation-play-state: paused;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.values .card {
  border-radius: 10px;
  margin-bottom: 20px;
}

.values .text-muted {
  font-size: 14px;
}

.values .text-muted {
  height: 90px;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 576px) {
  .values .text-muted {
    height: 210px;
  }
}

@media (min-width: 768px) and (max-width: 990px) {
  .values .text-muted {
    height: 120px !important;
  }
}

/* What we are */

.we-offer {
  background-color: #000;
}

.we-offer .card {
  height: 300px;
  padding: 20px;
  border-radius: 20px;
}

@media (max-width: 997px) {
  .we-offer .card {
    margin-bottom: 20px;
  }

  .we-offer .margin {
    margin-top: 0px !important;
  }
}

.we-offer .icon {
  color: var(--theme-color);
}

.we-offer .margin {
  margin-top: -30px;
}

.we-offer .card {
  height: 300px;
  padding: 20px;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  transition: all 0.4s ease;
}

.we-offer h2,
.we-offer h5 {
  color: #ffffff;
}

.we-offer p {
  color: rgba(255, 255, 255, 0.75) !important;
}

.we-offer hr {
  border-color: rgba(255, 255, 255, 0.15);
}

.we-offer .icon img {
  width: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.we-offer .card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 12px 45px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

@keyframes floatForward {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-16px) scale(1.04);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes floatBackward {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(10px) scale(0.96);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.we-offer .card {
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: transform;
}

.we-offer .col-md-6:nth-child(1) .card,
.we-offer .col-md-6:nth-child(3) .card,
.we-offer .col-md-6:nth-child(4) .card,
.we-offer .col-md-6:nth-child(6) .card {
  animation-name: floatForward;
}

.we-offer .col-md-6:nth-child(2) .card,
.we-offer .col-md-6:nth-child(5) .card {
  animation-name: floatBackward;
}

.we-offer .col-md-6:nth-child(1) .card {
  animation-delay: 0s;
}

.we-offer .col-md-6:nth-child(2) .card {
  animation-delay: 1s;
}

.we-offer .col-md-6:nth-child(3) .card {
  animation-delay: 2s;
}

.we-offer .col-md-6:nth-child(4) .card {
  animation-delay: 0.5s;
}

.we-offer .col-md-6:nth-child(5) .card {
  animation-delay: 1.5s;
}

.we-offer .col-md-6:nth-child(6) .card {
  animation-delay: 2.5s;
}

@media (max-width: 768px) {
  .we-offer .card {
    animation: none;
  }
}

/* Contact Section */

.contact img {
  height: auto;
  border-radius: 10px;
}

@media (min-width: 1024px) {
  .contact img {
    height: 600px;
    width: 100%;
  }
}

.form-minimal {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 12px 0;
  box-shadow: none;
}

.form-minimal:focus {
  border-color: var(--theme-color);
  box-shadow: none;
}

.form-select.form-minimal {
  background-position: right 0 center;
}

/* Our Partners */

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.brand-marquee h3 {
  font-size: 60px;
  font-weight: 400;
}

@media (max-width: 425px) {
  .brand-marquee h3 {
    font-size: 30px;
  }
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
}

.marquee-left {
  animation: scroll-left 20s linear infinite;
}

.marquee-right {
  animation: scroll-right 20s linear infinite;
}

.brand-pill img {
  max-height: 55px;
  width: auto;
  /* filter: grayscale(100%); */
  /* opacity: 0.7; */
  transition: 0.3s ease;
}

.brand-pill img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

/*---------footer---------*/

.site-footer {
  background: #f7f7f5;
  border-top: 3px solid var(--theme-color);
  padding-top: 60px;
  position: relative;
  font-family: "Inter", sans-serif;
}

.newsletter-wrap {
  top: -90px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.newsletter-box {
  background: var(--theme-color);
  border-radius: 18px;
  padding: 40px 50px;
  width: 85%;
  max-width: 1100px;
  display: flex;
  gap: 40px;
  color: #fff;
}

@media (max-width: 425px) {
  .newsletter-box {
    width: 100%;
    padding: 40px 5px;
  }

  .newsletter-form input {
    padding: 10px 0px !important;
  }
}

.newsletter-left h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.newsletter-left p {
  font-size: 14px;
  color: #cfdedd;
  max-width: 420px;
}

.newsletter-right {
  margin-left: auto;
  max-width: 360px;
}

.newsletter-right label {
  font-size: 12px;
  display: block;
  margin-bottom: 6px;
  color: #cfdedd;
}

.newsletter-form {
  display: flex;
  background: #265783e8;
  border-radius: 50px;
  padding: 4px;
}

.newsletter-form input {
  border: none;
  background: transparent;
  padding: 10px 16px;
  flex: 1;
  color: #fff;
  outline: none;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: #a7c6c4;
}

.newsletter-form button {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.newsletter-right small {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: #aac9c7;
}

.newsletter-right small a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  padding: 60px 0 60px;
}

.footer-brand h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  color: #666;
  max-width: 240px;
}

.site-footer h6 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul li a {
  text-decoration: none;
  font-size: 14px;
  color: #666;
}

.site-footer ul li a:hover {
  color: #000;
}

@media (max-width: 510px) {
  .newsletter-box {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .newsletter-right {
    margin-left: 0;
    max-width: 100%;
  }

  .newsletter-wrap {
    top: -130px;
  }
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffffff;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--theme-color);
  color: #fff;
  transform: translateY(-3px);
}

footer h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}

footer h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 2px;
}

.about-footer li i {
  position: absolute;
  left: 0;
}

.about-footer li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 40px;
}

.about-footer ul {
  margin-top: 25px;
}

footer a {
  color: #000;
}

footer a:hover {
  color: #ed1b24;
}

.footer-title {
  width: fit-content;
  border-bottom: 2px solid var(--theme-color);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

ul.footer-social li {
  display: inline;
  margin-right: 16px;
}

ul.footer-social i {
  width: 30px;
  height: 30px;
  background: #fff;
  color: #222026;
  text-align: center;
  line-height: 30px;
  border-radius: 30px;
  font-size: 16px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 800;
}

ul.footer-contact li {
  margin-right: 16px;
  margin-bottom: 10px;
}

ul.footer-contact i {
  width: 30px;
  height: 30px;
  background: #fff;
  color: #222026;
  text-align: center;
  line-height: 30px;
  border-radius: 30px;
  font-size: 16px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 800;
}

ul.footer-social li:last-child {
  margin-right: 0px;
}

ul.footer-social i:hover {
  background: var(--theme-color);
  color: #fff;
}

.page-more-info li {
  margin-bottom: 10px;
}

footer .table td:first-child {
  font-weight: 600;
  padding-left: 33px;
}

footer .table td:last-child {
  text-align: right;
}

footer .table td {
  padding: 0px;
  border: 0;
}

footer .table td i {
  position: absolute;
  left: 0px;
  font-size: 21px;
  top: 6px;
}

footer .table td {
  position: relative;
  padding: 4px 0;
}

.footer-logo td {
  padding-right: 4px !important;
}

.footer-logo td:last-child {
  padding-right: 0px !important;
}

footer hr {
  border-color: #9294a0;
}

.footer-bottom p {
  text-align: right;
}

/* .footer-bottom {
  margin-top: 30px;
} */
.open-hours hr {
  margin: 30px 0;
}

.footer-ul a {
  text-decoration: none;
}

.copyright {
  position: relative;
  padding: 5px 0;
  /* border-bottom: 5px solid var(--theme-color); */
  z-index: 1;
}

.copyright p {
  padding: 5px !important;
  margin-bottom: 0px;
}

/* //////////////////// Pages //////////////////////// */

/* About Us Page*/

.about-intro {
  background-color: #ffffff;
}

.about-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--theme-color);
  font-weight: 600;
  margin-bottom: 24px;
  font-family: "Inter", sans-serif;
}

.about-heading {
  font-family: "Playfair Display", serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.15;
  color: #0b1a2b;
  margin-bottom: 0;
}

.about-description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #737b87;
  max-width: 420px;
}

@media (max-width: 991px) {
  .about-heading {
    font-size: 42px;
  }
}

.about-exact {
  min-height: 100vh;
  overflow: hidden;
  font-family: "Playfair Display", serif;
}

.about-left {
  background: var(--theme-color);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 80px;
}

.about-left ul li {
  color: #cfd6df !important;
}

.about-left ul li i {
  color: #caa45d !important;
}

.about-content {
  max-width: 520px;
}

.quote-icon {
  font-size: 48px;
  color: #caa45d;
  display: block;
  margin-bottom: 10px;
}

.about-title {
  font-size: 36px !important;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-text {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #cfd6df;
  line-height: 1.8;
  margin-bottom: 20px;
}

.stars {
  color: #caa45d;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.author-name {
  font-size: 40px;
}

.about-right {
  position: relative;
}

.about-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-glass {
  position: absolute;
  bottom: 60px;
  left: 60px;
  max-width: 300px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 6px;
  color: #fff;
}

.about-glass small {
  letter-spacing: 1px;
  opacity: 0.7;
}

.about-glass h5 {
  margin-top: 8px;
  margin-bottom: 6px;
  font-weight: 600;
}

.about-glass p {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .about-left {
    padding: 50px 30px;
  }

  .about-glass {
    left: 5px;
    bottom: 30px;
  }
}

.why-choose {
  background: #f9f9f9;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.why-item.left {
  flex-direction: row-reverse;
  text-align: right;
}

.why-item.left .text-box {
  max-width: 260px;
}

.why-item.right {
  flex-direction: row;
  text-align: left;
}

.why-item.right .text-box {
  max-width: 260px;
}

.icon-box {
  flex-shrink: 0;
}

.icon-box i {
  font-size: 28px;
  color: var(--theme-color);
  margin-top: 3px;
}

.text-box h5 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 6px;
}

.text-box p {
  font-size: 14px;
  color: #8b8b8b;
  line-height: 1.7;
}

.line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--theme-color);
  margin-bottom: 10px;
}

.why-center-img {
  max-width: 280px;
  border-radius: 15px;
}

@media (max-width: 991px) {
  .why-item {
    flex-direction: column !important;
    text-align: center !important;
  }

  .text-box {
    max-width: 100% !important;
  }
}

.team-section {
  background-color: rgb(245, 247, 251) !important;
}

.team-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 500;
  color: #0b1a2b;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.team-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-glass {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 20px;
  background: #ffffff26;
  backdrop-filter: blur(6px);
  text-align: center;
  border-radius: 4px;
}

.team-glass h5 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 4px;
}

.team-glass span {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
}

@media (max-width: 991px) {
  .team-title {
    font-size: 36px;
  }

  .team-card img {
    height: 360px;
  }
}

.stats-editorial {
  font-family: "Playfair Display", serif;
}

.stat-card {
  min-height: 320px;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-card small {
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
}

.stat-card h3 {
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 12px;
}

.stat-card p {
  font-size: 14px;
  line-height: 1.8;
  font-family: "Inter", sans-serif;
  max-width: 260px;
}

.stat-card.dark {
  background: var(--theme-color);
  color: #ffffff;
}

.stat-card.dark small {
  color: #9fb2c9;
}

.stat-card.light {
  background: var(--secondary-color);
  color: #1c1c1c;
}

.stat-card.light small {
  color: var(--theme-color);
}

.stat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

@media (max-width: 991px) {

  .stat-card,
  .stat-image img {
    min-height: 260px;
  }

  .stat-card h3 {
    font-size: 36px;
  }
}

/* Contact Us Page */

.contact-map {
  padding-bottom: 50px;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border-radius: 15px !important;
}

.help-card {
  width: 80%;
  background-color: var(--theme-color);
  border-radius: 20px;
  padding: 15px;
}

@media (max-width: 768px) {
  .help-card {
    width: 100%;
  }
}

.contact-box {
  background-color: #3e5876;
  border-radius: 14px;
  padding: 14px 16px;
}

.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact small {
  font-size: 18px;
}

.contact a {
  color: #fff;
  text-decoration: none;
}

.contact .icon-box i {
  font-size: 28px;
  color: #cadef5 !important;
}

.social-icons {
  justify-content: space-around;
}

.social-icons i {
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}

.social-icons i:hover {
  transform: translateY(-2px);
  opacity: 1;
}

/* Panel Page */

.tools-section {
  background-color: #f6faf4;
}

.tool-card h3 {
  height: 65px !important;
}

.tool-card {
  padding: 28px;
  border-radius: 18px;
  height: 100%;
  transition: all 0.3s ease;
}

.tool-card i {
  font-size: 40px;
}

.tool-card h6 {
  font-size: 16px;
}

.tool-card p {
  font-size: 14px;
  line-height: 1.5;
}

.active-card {
  background-color: var(--theme-color);
}

.light-green {
  background-color: var(--secondary-color);
  color: var(--theme-color);
}

.tool-card:hover {
  transform: translateY(-6px);
}

.criteria-modern {
  background: #fff;
}

.criteria-glass {
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 32px;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.04);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.criteria-glass:hover {
  transform: translateY(-4px);

  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.08),
    0 6px 12px rgba(0, 0, 0, 0.05);
}

.criteria-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.icon-pill {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.criteria-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bg-blue {
  background-color: var(--theme-color);
}

.bg-beach {
  background-color: var(--secondary-color);
  color: var(--theme-color);
}

.criteria-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: #444;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.criteria-items li:last-child {
  border-bottom: none;
}

.criteria-items i {
  color: var(--theme-color);
  font-size: 14px;
  margin-top: 5px;
}

/* Filing Process */

.main-timeline {
  position: relative;
}

.main-timeline:before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: #c6c6c6;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.main-timeline .timeline {
  margin-bottom: 40px;
  position: relative;
}

.main-timeline .timeline:after {
  content: "";
  display: block;
  clear: both;
}

.main-timeline .icon {
  width: 18px;
  height: 18px;
  line-height: 18px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.main-timeline .icon:before,
.main-timeline .icon:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.33s ease-out 0s;
}

.main-timeline .icon:before {
  background: #fff;
  border: 2px solid #232323;
  left: -3px;
}

.main-timeline .icon:after {
  border: 2px solid #c6c6c6;
  left: 3px;
}

.main-timeline .timeline:hover .icon:before {
  left: 3px;
}

.main-timeline .timeline:hover .icon:after {
  left: 0px;
}

.main-timeline .date-content {
  width: 50%;
  float: left;
  position: relative;
}

.main-timeline .date-content:before {
  content: "";
  width: 36.5%;
  height: 2px;
  background: #c6c6c6;
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
}

.main-timeline .date-outer,
.main-timeline .date {
  overflow: hidden;
  border-radius: 50%;
}

.main-timeline .date img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.main-timeline .date {
  position: absolute;
  inset: 0;
  display: flex;
}

.main-timeline .date-outer:before,
.main-timeline .date-outer:after {
  pointer-events: none;
}

.main-timeline .date-outer {
  width: 125px;
  height: 125px;
  font-size: 16px;
  text-align: center;
  margin: auto;
  z-index: 1;
}

.main-timeline .date-outer:before,
.main-timeline .date-outer:after {
  content: "";
  width: 125px;
  height: 125px;
  margin: 0 auto;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.33s ease-out 0s;
}

.main-timeline .date-outer:before {
  background: #fff;
  left: -6px;
}

.main-timeline .date-outer:after {
  border: 2px solid #c6c6c6;
}

.main-timeline .timeline:hover .date-outer:before {
  left: 6px;
}

.main-timeline .timeline:hover .date-outer:after {
  left: 0px;
}

.main-timeline .date {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-timeline .date-outer {
  position: relative;
}

.main-timeline .date img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.main-timeline .timeline:hover .date img {
  transform: scale(1.08);
  transition: 0.4s ease;
}

.main-timeline .month {
  font-size: 18px;
  font-weight: 700;
}

.main-timeline .year {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #232323;
  line-height: 36px;
}

.main-timeline .timeline-content {
  width: 50%;
  padding: 20px 0 20px 50px;
  float: right;
}

.main-timeline .title {
  font-size: 19px;
  font-weight: 700;
  line-height: 24px;
  margin: 0 0 15px 0;
}

.main-timeline .description {
  margin-bottom: 0;
}

.main-timeline .timeline:nth-child(2n) .date-content {
  float: right;
}

.main-timeline .timeline:nth-child(2n) .date-content:before {
  left: 10px;
}

.main-timeline .timeline:nth-child(2n) .timeline-content {
  padding: 20px 50px 20px 0;
  text-align: right;
}

@media only screen and (max-width: 991px) {
  .main-timeline .date-content {
    margin-top: 35px;
  }

  .main-timeline .date-content:before {
    width: 22.5%;
  }

  .main-timeline .timeline-content {
    padding: 10px 0 10px 30px;
  }

  .main-timeline .title {
    font-size: 17px;
  }

  .main-timeline .timeline:nth-child(2n) .timeline-content {
    padding: 10px 30px 10px 0;
  }
}

@media only screen and (max-width: 767px) {
  .main-timeline:before {
    margin: 0;
    left: 7px;
  }

  .main-timeline .timeline {
    margin-bottom: 20px;
  }

  .main-timeline .timeline:last-child {
    margin-bottom: 0;
  }

  .main-timeline .icon {
    margin: auto 0;
  }

  .main-timeline .date-content {
    width: 95%;
    float: right;
    margin-top: 0;
  }

  .main-timeline .date-content:before {
    display: none;
  }

  .main-timeline .date-outer {
    width: 110px;
    height: 110px;
  }

  .main-timeline .date-outer:before,
  .main-timeline .date-outer:after {
    width: 110px;
    height: 110px;
  }

  .main-timeline .year {
    font-size: 24px;
  }

  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(2n) .timeline-content {
    width: 95%;
    text-align: center;
    padding: 10px 0;
  }

  .main-timeline .title {
    margin-bottom: 10px;
  }
}

.date i {
  font-size: 40px;
  color: var(--theme-color);
}

/* Infrastructure */

.infrastructure-card {
  background: var(--theme-color);
  border-radius: 22px;
  padding: 24px;
  color: #fff;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.infrastructure-card-1 {
  background: var(--secondary-color);
  border-radius: 22px;
  padding: 24px;
  color: var(--theme-color);
  position: relative;
  height: 100%;
  overflow: hidden;
}

.infrastructure-content h3 {
  font-weight: 600;
  margin-bottom: 6px;
}

.infrastructure-content p {
  font-size: 14px;
  opacity: 0.9;
}

.infrastructure-image {
  margin-top: 24px;
  border-radius: 16px 16px 0 16px;
  overflow: hidden;
}

.infrastructure-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.infrastructure-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: var(--theme-color);
  border-radius: 22px 0 0 0;
}

.infrastructure-card-1::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: var(--secondary-color);
  border-radius: 22px 0 0 0;
}

.corner-icon {
  position: absolute;
  bottom: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #000;
  z-index: 2;
  cursor: pointer;
}

.infrastructure-card-1 .corner-icon {
  position: absolute;
  bottom: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  background: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #fff;
  z-index: 2;
  cursor: pointer;
}

.infrastructure-card:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}

.infrastructure-card-1:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}

.infrastructure-card:hover .corner-icon {
  background: #fff;
}

.infrastructure-card-1:hover .corner-icon {
  background: #000;
}

/* Fees & Costs */

.slyso-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.slyso-banner {
  position: relative;
  height: 250px;
}

.slyso-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slyso-logo {
  position: absolute;
  left: 20px;
  top: 200px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
}

.slyso-logo i {
  color: #fff;
  font-size: 40px;
}

.slyso-card .card-body {
  padding: 20px;
}

.slyso-desc {
  height: 65px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.slyso-link {
  text-decoration: none;
  font-size: 14px;
  color: #111;
}

/* Documents Available */

.download-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.download-content {
  height: 130px;
}

.download-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.icon-box {
  width: 72px;
  height: 72px;
  background: var(--theme-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  font-size: 30px;
}

.icon-box i {
  color: #fff;
}

.download-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.download-card p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 25px;
}

.btn-download {
  background: var(--theme-color);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 500;
  border: none;
  transition: 0.3s ease;
}

.btn-download:hover {
  background: #000;
  color: #fff;
  transform: scale(1.05);
}

/* Rules Procedures */

.custom-accordion {
  border-radius: 6px;
  padding: 5px 0;
}

.acc-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--theme-color);
}

.acc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.acc-header h5 {
  font-size: 22px;
  font-weight: 600;
  color: #1f2d3d;
  margin: 0;
}

.acc-icon {
  font-size: 22px;
  font-weight: 600;
  color: #1f2d3d;
}

.acc-body {
  margin-top: 14px;
  font-size: 16px;
  color: #5a6f85;
  max-width: 90%;
  display: none;
}

.acc-item.active .acc-body {
  display: block;
}

.acc-item:last-child {
  border-bottom: none;
}

.award-card {
  background: #f7f8fb;
  border-radius: 16px;
  padding: 22px 26px;
  height: 100%;
}

.award-badge {
  display: flex;
  gap: 18px;
  align-items: center;
}

.award-laurel {
  width: 70px;
}

.award-content h5 {
  font-size: 18px;
  font-weight: 600;
}

.award-content p {
  font-size: 14px;
  color: #6b7585;
  margin: 0;
}

/* Services */

.arb-image-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.arb-image-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.arb-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.arb-image-overlay h3 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}

.arb-heading {
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.manage-item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 12px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.manage-item i {
  color: var(--theme-color);
  font-size: 30px;
  margin-top: 3px;
}

.manage-item {
  transition: transform 0.3s ease;
}

.manage-item:hover {
  transform: translateY(-5px);
}

.work-card {
  background: #fff;
  padding: 15px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.work-icon {
  margin: 0 auto 18px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card:hover img {
  transform: scale(1.1);
  transition: 0.3s;
}

.work-card h5 {
  font-weight: 600;
  height: 60px;
  margin-bottom: 8px;
}

@media (max-width: 510px) {
  .work-card h5 {
    height: 60px;
  }
}

@media (min-width: 768px) and (max-width: 998px) {
  .work-card h5 {
    height: 70px;
  }
}

.work-card p {
  font-size: 15px;
  color: #555;
}

/* Infraucture Sub pages */

.property-section .gallery-pic .property-pic {
  height: 378px;
  width: 100%;
  border-radius: 20px;
}

.carousel-item img {
  border-radius: 20px;
}

.property-section .gallery-pic .propert-pic {
  height: 184px;
  width: 100%;
}

.property-section .camera-pic {
  position: relative;
}

.property-section .camera-pic .camera-btn {
  position: absolute;
  bottom: 5%;
  display: flex;
  gap: 10px;
  right: 10%;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 18px;
  color: #fff;
  padding: 5px 10px;
  text-decoration: none;
  align-items: center;
}

.property-section .modal .modal-dialog .modal-content {
  width: 100%;
  max-width: unset;
}

.property-section .modal .modal-dialog .modal-content .modal-body .whole-modal-pic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.property-detail .detail-box {
  background: #f8f8f8;
}

.property-detail .detail-box i {
  color: var(--theme-color);
  font-size: 24px;
}

.single-pic img {
  border-radius: 20px;
}

/*Technology & ODR platform Page*/

.values-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.values-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.values-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.values-section .section-header h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--theme-color);
  border-radius: 2px;
}

.values-section .section-header p {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

.values-section .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.values-section .value-card-one {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  text-align: center;
  padding: 40px 25px;
  position: relative;
  z-index: 1;
}

.values-section .value-card-one:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color);
  transition: height 0.5s ease;
  z-index: -1;
}

.values-section .value-card-one:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.values-section .value-card-one:hover:before {
  height: 100%;
}

.values-section .value-card-one:hover .icon-wrapper {
  background: white;
  transform: rotateY(180deg);
}

.values-section .value-card-one:hover i {
  color: var(--theme-color);
}

.values-section .value-card-one:hover h3,
.values-section .value-card-one:hover p {
  color: white;
}

.values-section .icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.values-section .icon-wrapper i {
  font-size: 36px;
  color: white;
  transition: color 0.4s ease;
}

.values-section .value-card-one h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
  transition: color 0.4s ease;
}

.values-section .value-card-one p {
  color: #6c757d;
  transition: color 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.values-section .value-card-one {
  animation: fadeInUp 0.8s ease forwards;
}

.values-section .value-card-one:nth-child(1) {
  animation-delay: 0.2s;
}

.values-section .value-card-one:nth-child(2) {
  animation-delay: 0.3s;
}

.values-section .value-card-one:nth-child(3) {
  animation-delay: 0.4s;
}

.values-section .value-card-one:nth-child(4) {
  animation-delay: 0.5s;
}

.values-section .value-card-one:nth-child(5) {
  animation-delay: 0.6s;
}

@media (max-width: 992px) {
  .values-section .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .values-section .section-header h2 {
    font-size: 2rem;
  }

  .values-section .value-card-one {
    padding: 30px 20px;
  }

  .values-section .values-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .values-section .values-grid {
    grid-template-columns: 1fr;
  }

  .values-section .section-header h2 {
    font-size: 1.8rem;
  }

  .values-section.section-header p {
    font-size: 1rem;
  }
}

.modal-work {
  padding: 50px 0;
  text-align: center;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  position: relative;
}

.modal-work .section-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.modal-work .section-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 60px;
}

.modal-work .process-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1100px;
  margin: auto;
}

.modal-work .progress-line {
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 6px;
  background: #ddd;
  border-radius: 3px;
  z-index: 1;
}

.modal-work .progress-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 0%;
  background: var(--theme-color);
  border-radius: 3px;
  z-index: 2;
  animation: progressGrow 6s linear forwards;
}

@keyframes progressGrow {
  to {
    width: 100%;
  }
}

.modal-work .process-step {
  position: relative;
  width: 18%;
  z-index: 2;
}

.modal-work .step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--theme-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(106, 17, 203, 0.3);
  transition: transform 0.3s ease;
}

.modal-work .process-step:hover .step-circle {
  transform: scale(1.1) rotate(10deg);
  background: var(--theme-color);
}

.modal-work .step-content {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.modal-work .step-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.modal-work .step-content h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.modal-work .step-content p {
  font-size: 0.95rem;
  color: #666;
}

@media (max-width: 992px) {
  .modal-work .process-flow {
    flex-direction: column;
  }

  .modal-work .progress-line {
    display: none;
  }

  .modal-work .process-step {
    width: 100%;
    margin-bottom: 40px;
  }
}