:root {
  --default-font: "Tajawal", sans-serif;
  --heading-font: "Tajawal", sans-serif;
  --nav-font: "Tajawal", sans-serif;
}
:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #151515;
  --accent-color: #0D7377;
  --surface-color: #ffffff;
  --contrast-color: #312f2f;
}
.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}
.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}
:root { scroll-behavior: smooth; }
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
h1, h2, h3, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}
@keyframes php-email-form-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.header {
  --background-color: rgba(0, 0, 0, 0.8);
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header .logo { line-height: 1; }
.header .logo img { max-height: 36px; margin-right: 8px; }
.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}
.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}
.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 10 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}
@media (max-width: 1200px) {
  .header .logo { order: 1; }
  .header .btn-getstarted { order: 2; margin: 0 15px 0 0; padding: 6px 15px; }
  .header .navmenu { order: 3; }
}
.scrolled .header { box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1); }
@media (min-width: 992px) {
  .header .container-fluid {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .ure-logo-side { flex: unset; }
  .ure-logo-side:last-of-type { justify-content: flex-end; display: flex; }
  .ure-navmenu { justify-self: center; }
}
.ure-navmenu a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 4px;
  transition: background 0.3s;
  white-space: nowrap;
}
.ure-navmenu a:hover { background-color: var(--accent-color); }
@media (max-width: 991px) {
  .header .container-fluid { justify-content: space-between !important; }
}
.ure-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: absolute;
  right: 16px;
}
.ure-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}
.ure-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ure-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.ure-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.ure-mobile-menu {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(1,30,96,0.98), rgba(0,0,0,0.97));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 24px;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ure-mobile-menu.open {
  max-height: 500px;
  padding: 16px 24px 20px;
}
.ure-mobile-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(-8px);
  transition: color 0.25s, opacity 0.3s ease, transform 0.3s ease;
}
.ure-mobile-menu a::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-color);
  flex-shrink: 0;
  opacity: 0.7;
}
.ure-mobile-menu a:last-of-type { border-bottom: none; }
.ure-mobile-menu a:hover { color: #ffffff; }
.ure-mobile-menu.open a:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:0.05s; }
.ure-mobile-menu.open a:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.10s; }
.ure-mobile-menu.open a:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.15s; }
.ure-mobile-menu.open a:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:0.20s; }
.ure-mobile-menu.open a:nth-child(5) { opacity:1; transform:translateY(0); transition-delay:0.25s; }
.ure-mobile-cta {
  display: block !important;
  text-align: center;
  margin-top: 16px;
  padding: 12px !important;
  background: var(--accent-color) !important;
  border: none !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(1,30,96,0.5);
  transition: background 0.25s, transform 0.2s !important;
}
.ure-mobile-cta::before { display: none !important; }
.ure-mobile-menu.open .ure-mobile-cta { opacity:1; transform:translateY(0); transition-delay:0.30s; }
.ure-mobile-cta:hover { background: #0a2e8a !important; transform: translateY(-1px) !important; }
.ure-mobile-logo {
  text-align: center;
  padding: 18px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 6px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease 0.35s, transform 0.3s ease 0.35s;
}
.ure-mobile-menu.open .ure-mobile-logo { opacity:1; transform:translateY(0); }
.ure-mobile-logo img { max-height: 34px; opacity: 0.85; }
#alertContainer {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10000;
  width: 350px;
}
#alertContainer .alert {
  margin-bottom: 10px;
  max-width: 350px;
  padding: 12px 16px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.floating-icons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}
.floating-icons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out;
  text-decoration: none;
}
.floating-icons a.phone { background: #fff; }
.floating-icons a img { width: 28px; height: 28px; }
.floating-icons a:hover { transform: scale(1.1); }
.index-page .header { --background-color: rgba(0, 0, 0, 0); }
.index-page { padding: 0 !important; }
.index-page.scrolled .header { --background-color: rgba(0, 0, 0, 0.8); }
@media (min-width: 1200px) {
  .navmenu { padding: 0; }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li { position: relative; }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a { padding-right: 0; }
  .navmenu li:hover>a, .navmenu .active, .navmenu .active:focus { color: var(--nav-hover-color); }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li { min-width: 200px; }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i { font-size: 12px; }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a { background-color: var(--nav-dropdown-hover-color); }
  .navmenu .dropdown:hover>ul { opacity: 1; top: 100%; visibility: visible; }
  .navmenu .dropdown .dropdown ul { top: 0; left: -90%; visibility: hidden; }
  .navmenu .dropdown .dropdown:hover>ul { opacity: 1; top: 0; left: -100%; visibility: visible; }
}
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu { padding: 0; z-index: 9997; }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }
  .navmenu a i:hover, .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }
  .navmenu a:hover, .navmenu .active, .navmenu .active:focus {
    background-color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i, .navmenu .active:focus i { transform: rotate(180deg); }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul { background-color: rgba(33, 37, 41, 0.1); }
  .navmenu .dropdown>.dropdown-active { display: block; background-color: rgba(33, 37, 41, 0.03); }
  .mobile-nav-active { overflow: hidden; }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu>ul { display: block; }
}
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}
.footer .footer-top { padding: 50px 0; background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 10%); }
.footer .footer-about .logo { line-height: 1; margin-bottom: 10px; }
.footer .footer-about .logo img { max-height: 40px; margin-right: 6px; }
.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.footer .footer-about p { font-size: 14px; font-family: var(--heading-font); }
.footer .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--default-color) 5%, white 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}
.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
.footer .footer-links { margin-bottom: 30px; }
.footer .footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer .footer-links ul i { margin-right: 4px; font-size: 12px; line-height: 0; color: var(--accent-color); }
.footer .footer-links ul li { padding: 10px 0; display: flex; align-items: center; }
.footer .footer-links ul li:first-child { padding-top: 0; }
.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}
.footer .footer-links ul a:hover { color: var(--accent-color); }
.footer .footer-contact p { margin-bottom: 5px; }
.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  transition: 0.3s;
}
.footer .footer-newsletter .newsletter-form:focus-within { border-color: var(--accent-color); }
.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  color: var(--default-color);
}
.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible { outline: none; }
.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.footer .copyright { padding: 30px 0; }
.footer .copyright p { margin-bottom: 0; }
.footer .credits { margin-top: 5px; font-size: 13px; }
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  transition: all 0.6s ease-out;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}
@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.scroll-top i { font-size: 24px; color:white; line-height: 0; }
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}
.scroll-top.active { visibility: visible; opacity: 1; }
@media screen and (max-width: 768px) { [data-aos-delay] { transition-delay: 0 !important; } }
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}
.page-title .heading { padding: 80px 0; border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); }
.page-title .heading h1 { font-size: 38px; font-weight: 700; }
.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}
.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}
.page-title nav ol li+li { padding-left: 10px; }
.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 80px;
  overflow: clip;
}
@media (max-width: 1199px) { section, .section { scroll-margin-top: 58px; } }
.section-title { padding-bottom: 60px; position: relative; }
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}
.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero .container { position: relative; z-index: 3; }
.hero h2 {
  margin: 0;
  font-size: 45px;
  font-weight: 700;
  font-family: var(--nav-font);
}
.hero h2 span { color: var(--accent-color); }
.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .icon-box i { font-size: 32px; line-height: 1; color: var(--accent-color); }
.hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}
.hero .icon-box h3 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: ease-in-out 0.3s;
}
.hero .icon-box:hover { border-color: var(--accent-color); }
.hero .icon-box:hover h3 a { color: var(--accent-color); }
.modal-body { background-color: transparent !important; padding: 0 !important; }
@media (max-width: 768px) {
  .hero h2 { font-size: 32px; }
  .hero p { font-size: 18px; }
  .two-images-section, .footer-newsletter { display: flex; flex-direction: column; align-items: center; }
}
.about .content h3 { font-size: 1.75rem; font-weight: 700; }
.about .content .fst-italic { color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%); }
.about .content ul { list-style: none; padding: 0; }
.about .content ul li { padding: 10px 0 0 0; display: flex; }
.about .content ul i { color: var(--accent-color); margin-right: 0.5rem; line-height: 1.2; font-size: 1.25rem; }
.about .content p:last-child { margin-bottom: 0; }
.clients .swiper-slide img { opacity: 0.5; transition: 0.3s; filter: grayscale(100); }
.clients .swiper-slide img:hover { filter: none; opacity: 1; }
.clients .swiper-wrapper { height: auto; }
.clients .swiper-pagination { margin-top: 20px; position: relative; }
.clients .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.clients .swiper-pagination .swiper-pagination-bullet-active { background-color: var(--accent-color); }
.features .features-image { position: relative; min-height: 400px; }
.features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.features .features-item h4 { font-size: 20px; font-weight: 700; margin: 0 0 5px 0; }
.features .features-item i { font-size: 48px; color: var(--accent-color); margin-right: 20px; line-height: 0; }
.features .features-item p { font-size: 15px; color: color-mix(in srgb, var(--default-color), transparent 20%); margin: 0; }
.contact .info-item+.info-item { margin-top: 40px; }
.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}
.contact .info-item h3 { padding: 0; font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.contact .info-item p { padding: 0; margin-bottom: 0; font-size: 14px; }
.contact .php-email-form { height: 100%; }
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus { border-color: var(--accent-color); }
.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.btn-register {
  display: inline-block;
  background: linear-gradient(135deg, #0D7377, #2E8B57);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(1, 30, 96, 0.35);
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
}
.btn-register:hover {
  background: linear-gradient(135deg, #2E8B57, #0D7377);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(1, 30, 96, 0.5);
  color: #ffffff;
}
.two-images-section { text-align: center; padding: 40px 20px; }
.two-images-section .section-text { margin-bottom: 30px; }
.two-images-section .section-text h2 { font-size: 4rem; font-weight: bold; margin-bottom: 10px; color: #555; }
.two-images-section .section-text p { font-size: 1.1rem; color: #555; }
.two-images { display: flex; justify-content: center; align-items: center; width: 80%; gap: 20px; }
.two-images .img-wrap { flex: 1; max-width: 50%; text-align: center; }
.two-images img { width: 100%; height: auto; object-fit: cover; display: inline-block; border-radius: 10px; }
@media (max-width: 768px) {
  section, .section { padding-bottom: 20px; }
  .section-title { padding-bottom: 20px; }
  .margin-mob-5 { margin-bottom: 25px; }
  .two-images { flex-direction: column; gap: 15px; }
  .two-images .img-wrap { max-width: 100%; }
}
.custom-register-form { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.custom-register-form .form-control { border: 2px solid #ddd; border-radius: 8px; padding: 12px 15px; font-size: 1rem; transition: 0.3s; }
.custom-register-form .form-control:focus { border-color: #31353d; box-shadow: 0 0 8px rgba(49,53,61,0.2); outline: none; }
.projects .row { display: flex; justify-content: space-around; }
.btn-div { width: 100%; display: flex; justify-content: center; align-items: center; }
.custom-register-form .btn-register {
  margin-top: 20px;
  background: linear-gradient(135deg, #0D7377, #2E8B57);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 14px 40px;
  border: none;
  border-radius: 50px;
  transition: 0.3s;
  width: 100%;
  box-shadow: 0 6px 18px rgba(1, 30, 96, 0.35);
}
.custom-register-form .btn-register:hover {
  background: linear-gradient(135deg, #2E8B57, #0D7377);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(1, 30, 96, 0.5);
}
.custom-register-form .form-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #31353d;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  text-align: center;
}
.personas { padding: 80px 0; background: #f9f9f9; }
.personas h2 { color: #31353d; }
.persona-box { background: #fff; border-radius: 12px; padding: 25px 15px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; }
.persona-box:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); }
.persona-icon { font-size: 40px; color: #FFD15C; margin-bottom: 10px; }
.icon-box i { font-size: 32px; font-weight: bold; display: block; color: #c81e2c; margin-bottom: 10px; }
.icon-box h3 a { color: #31353d; font-size: 18px; text-decoration: none; }
.headline { font-size: 3rem; font-weight: 700; text-align: center; color: #31353d; margin-bottom: 20px; position: relative; }
.headline::after { content: ""; display: block; width: 80px; height: 4px; background: linear-gradient(135deg, #c81e2c, #c81e2c); margin: 10px auto 0 auto; border-radius: 2px; }
.clients-row { display: flex; justify-content: center; align-items: flex-start; gap: 40px; flex-wrap: wrap; text-align: center; }
.client-item { display: flex; flex-direction: column; align-items: center; }
.client-item img { width: 320px; height: auto; transition: transform 0.3s ease; }
.client-item img:hover { transform: scale(1.05); }
.client-text { margin-top: 10px; font-size: 1rem; color: #333; }
.projects .project-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(1, 30, 96, 0.15);
  transition: all 0.35s ease;
  height: 100%;
}
.projects .project-card:hover { transform: translateY(-8px); box-shadow: 0 16px 36px rgba(1, 30, 96, 0.25); }
.projects .project-card img { width: 100%; height: 200px; object-fit: cover; }
.project-content { height: 100%; padding: 22px; text-align: right; }
.project-content h3 { color: #0D7377; font-weight: 700; margin-bottom: 8px; text-align: center; }
.project-content .location { font-size: 14px; color: #666; margin-bottom: 12px; }
.project-desc { font-size: 14px; line-height: 1.8; color: #444; margin: 8px 0 12px; }
.project-content .features { list-style: none; padding: 0; margin: 0 0 16px; }
.project-content .features li { font-size: 14px; margin-bottom: 6px; position: relative; padding-right: 18px; }
.project-content .features li::before { content: "✓"; position: absolute; right: 0; color: #0D7377; font-weight: bold; }
.new-launch-section { padding: 80px 0; background: linear-gradient(135deg, #0A5C5F, #0D7377); color: #ffffff; }
.launch-tag { display: inline-block; background: #ffffff; color: #0D7377; padding: 6px 18px; border-radius: 30px; font-size: 14px; font-weight: bold; margin-bottom: 18px; }
.new-launch-section h2 { font-size: 36px; font-weight: 800; margin-bottom: 8px; color: #ffffff; }
.new-launch-section h4 { font-size: 18px; margin-bottom: 20px; opacity: 0.9; }
.launch-desc { font-size: 15px; line-height: 1.9; margin-bottom: 20px; }
.launch-features { list-style: none; padding: 0; margin-bottom: 20px; }
.launch-features li { margin-bottom: 8px; padding-right: 20px; position: relative; }
.launch-features li::before { content: "✓"; position: absolute; right: 0; color: #ffd15c; font-weight: bold; }
.launch-units { font-size: 14px; margin-bottom: 25px; }
.launch-image { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }
.launch-image img { width: 100%; height: 420px; object-fit: cover; }
@media (max-width: 991px) { .new-launch-section { text-align: center; } .launch-features li { padding-right: 0; } }
.lavista-mini-locations { padding: 25px 0; background: #ffffff; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.lavista-mini-locations h4 { font-size: 18px; font-weight: 700; color: #0D7377; margin-bottom: 5px; }
.lavista-mini-locations p { font-size: 14px; color: #666; margin: 0; }
.locations-list { display: flex; flex-wrap: wrap; gap: 10px; }
.locations-list a, .locations-list span {
  background: #f0f7f5;
  color: #0D7377;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  display: inline-block;
  transition: all 0.5s ease-in-out, color 0.5s ease;
  text-decoration: none;
}
.locations-list a:hover {
  background: #0D7377;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 115, 119, 0.15);
}
.locations-list a:active { transform: translateY(0); filter: brightness(0.9); }
.locations-list .location-new { background: linear-gradient(135deg, #0D7377, #2E8B57); color: #ffffff; font-weight: 700; position: relative; }
.locations-list .location-new small { background: #a8e6cf; color: #0D7377; font-size: 10px; font-weight: bold; padding: 2px 8px; border-radius: 10px; margin-right: 6px; }
.ure-gallery-section { padding: 80px 0; background: linear-gradient(160deg, #f0f7f5 0%, #ffffff 50%, #e8f5e9 100%); }
.ure-gallery-header { text-align: center; margin-bottom: 48px; }
.ure-gallery-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #2E8B57; margin-bottom: 8px; opacity: 0.75; }
.ure-gallery-title { font-size: 36px; font-weight: 800; color: #0D7377; margin-bottom: 12px; }
.ure-gallery-line { width: 50px; height: 3px; background: linear-gradient(90deg, #ffd15c, #ffb300); border-radius: 2px; margin: 0 auto 14px; }
.ure-gallery-sub { font-size: 15px; color: #666; margin: 0; }
.ure-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 12px; }
.ure-gallery-wide { grid-column: span 2; }
.ure-gallery-tall { grid-row: span 2; }
.ure-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  display: block;
  cursor: pointer;
}
.ure-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ure-gallery-item:hover img { transform: scale(1.08); }
.ure-gallery-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(1, 30, 96, 0.75) 100%); display: flex; align-items: flex-end; padding: 16px; opacity: 0; transition: opacity 0.35s ease; }
.ure-gallery-item:hover .ure-gallery-overlay { opacity: 1; }
.ure-gallery-overlay span { color: #ffffff; font-size: 15px; font-weight: 700; }
@media (max-width: 991px) { .ure-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } }
@media (max-width: 576px) { .ure-gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; gap: 8px; } .ure-gallery-title { font-size: 26px; } }
