/**
 * Advik RRealty - Main Stylesheet
 * 
 * Performance Optimizations:
 * - Images optimized with WebP format (picture element with fallbacks)
 * - Vendor CSS loaded non-blocking (preload + onload pattern)
 * - Critical CSS inlined, rest deferred
 * - Fonts preconnected for faster loading
 */

:root {
  --default-font: "Work Sans", sans-serif;
  --heading-font: "Hedvig Letters Serif", serif;
  --nav-font: "Work Sans", sans-serif;

}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #FFFBEC;
  /* Background color for the entire website, including individual sections */
  --default-color: #1a1a1a;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #191919;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #E7C873;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --white: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #1a1a1a;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #1a1a1a;
  /* The default color of the main navmenu links */
  --nav-hover-color: #E7C87320;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #E7C873;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f6f6f6;
  --white: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --white: #ffffff;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-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,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.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(--white);
  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(--white);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  border-radius: 12px;
  --background-color: #ffffff;
  --default-color: #1a1a1a;
  --heading-color: #1a1a1a;
  --contrast-color: #1a1a1a;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
  backdrop-filter: blur(100px);
  margin: 24px;
  box-shadow: -3px 5px 12px 0 rgba(31, 18, 1, 0.06), 0 2px 2px 0 rgba(31, 18, 1, 0.06), 0 0 1px 0 rgba(31, 18, 1, 0.32);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--default-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--accent-color);
}

.header .branding {
  min-height: 60px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading-color);
}

/* Header scrolled state: remove floating gap and radius when user scrolls */
.header.scrolled {
  margin: 0;
  border-radius: 0;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  box-shadow: 0 10px 30px rgba(2,6,23,0.12);
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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: 20px 15px;
    margin-left: 2px;
    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:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #1123c2;
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    border-radius : 0 0 10px 10px;
    overflow: hidden;
    left: 2px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    z-index: 99;
    box-shadow: -3px 5px 12px 0 rgba(31, 18, 1, 0.06), 0 2px 2px 0 rgba(31, 18, 1, 0.06), 0 0 1px 0 rgba(31, 18, 1, 0.32);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
    border-bottom :1px solid #eaeaea;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    margin: 0;
    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,
  .navmenu .dropdown ul li:hover .dropdown-toggle-wrapper > a{
    color: #1123c2;
    background-color: var(--nav-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;
  }
}

/* Mobile Navigation */
@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: 12px;
    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), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    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);
    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 .header {
    height: 100vh;
    margin: 0px !important;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--white);
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
    background: #FFFfff30;
    border-radius: 50%;
  }

  .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;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);

    box-shadow: -3px 5px 12px 0 rgba(31, 18, 1, 0.06), 0 2px 2px 0 rgba(31, 18, 1, 0.06), 0 0 1px 0 rgba(31, 18, 1, 0.32);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: rgba(13, 15, 102, 0.88);
  background: linear-gradient(140deg, #fffdf6 0%, #f8efd8 60%, #fff8e8 100%);
  font-size: 14px;
  padding: 0 0 28px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(231, 200, 115, 0.55);
}

.footer::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 200, 115, 0.2) 0%, transparent 72%);
  pointer-events: none;
}

.footer .footer-top {
  padding-top: 56px;
  position: relative;
  z-index: 1;
}

.footer .footer-shell {
  max-width: 860px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(13, 15, 102, 0.12);
  box-shadow: 0 16px 42px rgba(13, 15, 102, 0.12);
}

.footer .footer-map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(13, 15, 102, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

.footer .footer-map-wrap iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
  filter: none;
}

.footer .copyright {
  padding-top: 22px;
  position: relative;
  z-index: 1;
}

.footer .copyright p {
  margin-bottom: 0;
  color: rgba(13, 15, 102, 0.86);
  letter-spacing: 0.2px;
}

@media (max-width: 767px) {
  .footer {
    padding-bottom: 24px;
  }

  .footer .footer-top {
    padding-top: 40px;
  }

  .footer .footer-shell {
    padding: 8px;
    border-radius: 24px;
  }

  .footer .footer-map-wrap iframe {
    height: 220px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  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 Button
--------------------------------------------------------------*/
.fab-group {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999999;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-direction: column;
}

.scroll-top {
  visibility: hidden;
  opacity: 0;
  background-color: var(--accent-color);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top i {
  font-size: 28px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 18px 36px rgba(0,0,0,0.22); }
.scroll-top.active { visibility: visible; opacity: 1; }

/* WhatsApp Floating Action Button */
.whatsapp-fab {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  box-shadow: 0 8px 20px rgba(2,6,23,0.12);
}
.whatsapp-fab img.wa-icon { width: 72%; height: 72%; display: block; }
.whatsapp-fab:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 18px 36px rgba(2,6,23,0.18); }
.whatsapp-fab:active { transform: translateY(-2px) scale(0.99); box-shadow: 0 6px 18px rgba(2,6,23,0.10); }

@media (max-width: 576px) {
  .fab-group { right: 12px; bottom: 12px; gap: 8px; }
  .whatsapp-fab { width: 64px; height: 64px; }
  .whatsapp-fab img.wa-icon { width: 64%; height: 64%; }
  .scroll-top { width: 48px; height: 48px; }
}

/*--------------------------------------------------------------
# Founder Page Styles
--------------------------------------------------------------*/
.founder-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.995));
  color: var(--default-color);
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(12, 10, 8, 0.06);
  display: flex;
  gap: 28px;
  align-items: flex-start;
  border-left: 6px solid var(--accent-color); 
  position: relative;
  z-index: 2;
  flex-direction: column;
}

.founder-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo picture {
  width: 220px;
  height: 220px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo picture img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(12, 10, 8, 0.12);
}

.founder-photo img {
  width: 220px;
  height: 220px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(12, 10, 8, 0.12);
}

.founder-content h2 {
  font-size: 1.5rem;
  margin: 0 0 12px 0;
  font-weight: 700;
  color: var(--heading-color);
}

.founder-content p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.85;
  margin-bottom: 0.9rem;
}

.founder-content .signature {
  margin-top: 18px;
  font-style: normal;
  font-weight: 600;
  color: var(--default-color);
}

@media (max-width: 767px) {
  .founder-card {
    padding: 18px;
    gap: 16px;
  }

  .founder-photo picture {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
  }

  .founder-photo picture img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    object-fit: cover;
  }

  .founder-photo img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    object-fit: cover;
  }

  .founder-content h2 {
    font-size: 1.25rem;
  }
}

/* Language switcher removed (not in use) */

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* Ensure content sits below fixed header on inner pages */
body.inner-page .main {
  margin-top: 120px;
}

@media (max-width: 767px) {
  body.inner-page .main {
    margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 100px 0;
  overflow: clip;

}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 160px 0 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero:before {
  content: "";
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.86) 90%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 46px;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--heading-color);
}

.btn-get-started {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 16px 30px;
  margin: 32px 0 0 0;
  transition: 0.5s;
  border-radius: 12px;
}

.btn-get-started:hover {
  background: #FFFDF1;
  color: #1a1a1a;
  border: 1px solid var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
  }

  .title-w {
    font-size: 40px !important;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--default-color);
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 30px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 25px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .card {
  background-color: var(--white);
  color: var(--default-color);
  
  box-shadow: -3px 5px 12px 0 rgba(31, 18, 1, 0.06), 0 2px 2px 0 rgba(31, 18, 1, 0.06), 0 0 1px 0 rgba(31, 18, 1, 0.32);
  border: 1px solid #1a1a1a20;
  border-radius: 12px;
  padding: 40px;
  margin: -1px;
}

.cards .card span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-color);
}

.cards .card h4 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.cards .card p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
  margin: 0;
  padding: 0;
}
.vision h3 {
  font-size: 32px;
  font-weight: 500;
  color: #342003;
  
}
.mission h3{
  font-size: 32px;
  font-weight: 500;
  color: #342003;
}
/* Vision & Mission Cards */
.vision-mission {
  padding-top: 0;
}
.vision-mission .vm-card {
  background: linear-gradient(180deg, var(--white) 0%, color-mix(in srgb, var(--white), var(--accent-color) 3%) 100%);
  border-radius: 16px;
  padding: 28px 28px;
  box-shadow: -6px 10px 30px rgba(31,18,1,0.06);
  border: 1px solid #1a1a1a10;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vision-mission .vm-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: 0 6px 18px rgba(231,200,115,0.12);
}
.vision-mission h3 {
  margin: 0;
  font-size: 26px;
  color: #342003;
}
.vision-mission .vm-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin: 0;
}
.vision-mission .vm-list {
  margin: 0;
  padding-left: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: grid;
  gap: 8px;
}
.vision-mission .vm-list li {
  line-height: 1.5;
}

@media (max-width: 991px) {
  .vision-mission .vm-card {
    padding: 22px;
  }
  .vision-mission h3 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .vision-mission .vm-card {
    padding: 18px;
    gap: 10px;
  }
  .vision-mission .vm-icon {
    width: 52px;
    height: 52px;
  }
  .vision-mission h3 {
    font-size: 20px;
  }
}
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--white);
  text-align: center;
  
  box-shadow: -3px 5px 12px 0 rgba(31, 18, 1, 0.06), 0 2px 2px 0 rgba(31, 18, 1, 0.06), 0 0 1px 0 rgba(31, 18, 1, 0.32);
  border: 1px solid #1a1a1a20;
  border-radius: 12px;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.services .service-item:hover .icon {
  background: var(--white);
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .icon::before {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}

.services .service-item:hover h3,
.services .service-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 70%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}



/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

.portfolio {
    background: linear-gradient(135deg, #020328 0%, #0b145f 60%, #1a1002 100%);
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 40px auto;
  list-style: none;
  text-align: center;
  color: var(--white);
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--default-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  
  font-family: var(--default-font);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item img {
  border-radius: 12px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/* Property Card styles (replaces image gallery) */
.portfolio .property-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: -6px 12px 30px rgba(2,6,23,0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}
.portfolio .property-card:hover {
  transform: translateY(-6px);
  box-shadow: -10px 20px 40px rgba(2,6,23,0.22);
}
.portfolio .property-card .card-media {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
}
.portfolio .property-card .swiper-card,
.portfolio .property-card .swiper-card .swiper-wrapper,
.portfolio .property-card .swiper-card .swiper-slide {
  height: 400px;
}
.portfolio .property-card .swiper-card .swiper-slide {
  background-size: cover;
  background-position: center;
}

/* Pagination bullets visible above overlay */
.portfolio .property-card .swiper-pagination {
  position: absolute;
  z-index: 99;
  right: 12px;
  top: 12px;
  display: flex;
  gap: 8px;
  justify-content: end;
  padding: 12px 24px 0 0;
}
.portfolio .property-card .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.85);
  opacity: 1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, opacity 0.18s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
/* Active bullet */
.portfolio .property-card .swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.05);
  opacity: 1;
}
.portfolio .property-card .card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 12px;
  border-radius: 22px;
  font-weight: 700;
  z-index: 3;
  font-size: 12px;
  letter-spacing: 0.6px;
}
.portfolio .property-card .badge-possession {
  background: #1123c2; /* distinct color for possession */
  color: var(--white);
}
.portfolio .property-card .badge-completed {
  background: #1d1d1d; /* distinct color for completed */
  color: var(--white);
} 
.portfolio .property-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12) 30%, rgba(0,0,0) 100%);
  z-index: 2;
}
.portfolio .property-card .card-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 72px; /* leave room for action button */
  z-index: 4;
  color: var(--white);
}
.portfolio .property-card .card-info h4 {
  margin: 0;
  font-size: 22px;
  color: var(--white);
  font-family: var(--default-font);
}

/* Vision & Mission Section */
.vision-mission .section-title {
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.vision-mission .vm-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  box-shadow: -6px 12px 30px rgba(2,6,23,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vision-mission .vm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.vision-mission .vm-title {
  margin: 0;
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
}
.vision-mission .vm-desc {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}
@media (max-width: 767px) {
  .vision-mission .vm-card { padding: 18px; }
  .vision-mission .vm-icon { width: 56px; height: 56px; font-size: 22px; }
}

/* Mission-specific styling */
.vm-card--mission {
  position: relative;
  background: linear-gradient(180deg, color-mix(in srgb, var(--white), transparent 6%), var(--white));
  padding: 28px 24px 20px 36px;
  overflow: visible;
}
.vm-card--mission .vm-accent-bar {
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 6px;
  background: var(--accent-color);
  border-radius: 4px;
}
.vm-card--mission .vm-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px 0;
  display: grid;
  gap: 12px;
}
.vm-card--mission .vm-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.vm-card--mission .vm-bullet {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: var(--contrast-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.vm-card--mission .vm-small {
  margin-top: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 14px;
  line-height: 1.5;
}
.vm-card--mission .vm-cta { margin-top: 6px; }
.vm-card--mission .btn-enquire { padding: 8px 14px; font-size: 14px; }

@media (max-width: 767px) {
  .vm-card--mission { padding-left: 20px; }
  .vm-card--mission .vm-bullet { min-width: 30px; height: 30px; font-size: 13px; }
}

/* About Card (image replacement) */
.about-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 10%);
  box-shadow: -6px 12px 30px rgba(2,6,23,0.10);
}
.about-card .about-media {
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center;
  display: block;
}
.about-card .about-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  z-index: 4;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.about-card .about-overlay {
  position: absolute;
  left: 16px;
  bottom: 20px;
  z-index: 4;
  color: var(--white);
  text-shadow: 0 8px 20px rgba(0,0,0,0.45);
}
.about-card .about-title {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 36px;
  letter-spacing: 0.2px;
  color: var(--white);
}
@media (max-width: 991px) {
  .about-card .about-media { height: 340px; }
  .about-card .about-title { font-size: 30px; }
}
@media (max-width: 575px) {
  .about-card .about-media { height: 260px; }
  .about-card .about-title { font-size: 22px; }
  .about-card .about-badge { padding: 6px 10px; font-size: 12px; }
}
.portfolio .property-card .card-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 14px;
  color: var(--white);
  opacity: 0.95;
}

/* Enquire button within property cards */
.portfolio .property-card .card-actions {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 6;
  display: flex;
  justify-content: flex-start;
}
.portfolio .btn-enquire {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(2,6,23,0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.portfolio .btn-enquire:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(2,6,23,0.18);
}



@media (max-width: 575px) {
  .portfolio .property-card .card-badge {
    top: 10px;
    left: 10px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
  }
  .portfolio .property-card .card-info h4 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  background: #fff;
}
.team .member {
  background-color: var(--white);
  box-shadow: -3px 5px 12px 0 rgba(31, 18, 1, 0.06), 0 2px 2px 0 rgba(31, 18, 1, 0.06), 0 0 1px 0 rgba(31, 18, 1, 0.32);
  border: 1px solid #1a1a1a20;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 12px;
}
/* Founder hierarchy styling: larger, centered on desktop */
.team .member.founder {
  transform: translateY(-8px);
  padding: 36px 20px;
  border-radius: 16px;
  box-shadow: -8px 18px 40px rgba(31,18,1,0.08);
}
.team .member.founder picture {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin: 10px auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member.founder picture img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.team .member.founder img {
  width: 120px;
  height: 120px;
  aspect-ratio: 1 / 1;
  margin: 10px auto 18px auto;
  border-radius: 12px;
  border: none;
  object-fit: cover;
}
.team .member.founder .member-content h4 {
  font-size: 22px;
}
.team .member.founder .member-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (min-width: 992px) {
  .team .member {
    align-items: stretch;
  }
  .team .member img {
    max-width: 60%;
    margin: 24px auto;
  }
  .team .member.founder {
    width: 100%;
    margin-bottom: 32px;
  }
  /* ensure the two lower members appear side-by-side and balanced */
  .team .row.mt-4 > .col-md-6 {
    display: flex;
  }
  .team .row.mt-4 .member {
    flex: 1;
  }
}

/* Desktop: image left, content right for team cards */
@media (min-width: 768px) {
  .team .member {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
    padding: 20px;
  }

  .team .member picture {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .team .member picture img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    margin: 0;
  }
  .team .member img {
    width: 160px;
    height: 160px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    margin: 0;
    flex-shrink: 0;
  }
  .team .member .member-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }
  .team .member .member-content h4 {
    margin-top: 0;
    font-size: 20px;
  }
  .team .member .member-content p {
    margin: 8px 0 0 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
  }
  .team .member.founder picture {
    width: 200px;
    height: 200px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }
  .team .member.founder img {
    width: 200px;
    height: 200px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }
  .team .member.founder {
    padding: 28px;
  }
}

@media (max-width: 767px) {
  .team .member picture {
    flex-shrink: 0;
    width: 60%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .team .member picture img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    margin: 0;
  }

  .team .member img {
    max-width: 60%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    margin: 24px auto;
    object-fit: cover;
  }
  .team .member {
    text-align: center;
    display: block;
    padding: 20px;
  }
  .team .member .member-content {
    text-align: center;
  }
}

.team .member img {
  border-radius: 12px;
  max-width: 60%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 30px 0;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: var(--background-color);
}
.contact .info-item {
  background-color: var(--white);
  padding: 20px 0 30px 0;
  border-radius: 12px;
  box-shadow: -3px 5px 12px 0 rgba(31, 18, 1, 0.06), 0 2px 2px 0 rgba(31, 18, 1, 0.06), 0 0 1px 0 rgba(31, 18, 1, 0.32);
}

.contact .info-item a {
  margin-top: 24px;
  
  border-radius: 50%;

}

.contact .info-item .map {
  color: var(--white);
  background: #1307c6;
}
.contact .info-item .call {
  color: var(--white);
   background: #04a01e;
}
.contact .info-item .mail {
  color: var(--white);
   background: #a87903;
}

.contact .info-item a i {
  font-size: 20px;
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--white);
  height: 100%;
  padding: 30px;

  box-shadow: -3px 5px 12px 0 rgba(31, 18, 1, 0.06), 0 2px 2px 0 rgba(31, 18, 1, 0.06), 0 0 1px 0 rgba(31, 18, 1, 0.32);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Contact CTA Section
--------------------------------------------------------------*/
.contact-cta {
  background: linear-gradient(135deg, #020328 0%, #0b145f 60%, #1a1002 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 200, 115, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-cta::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 29, 204, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.contact-cta .inner {
  position: relative;
  z-index: 1;
}

.contact-cta-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 14px;
}

.contact-cta h2 {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.2;
}

.contact-cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 34px;
  max-width: 520px;
}

.contact-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-dark:hover {
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(231, 200, 115, 0.35);
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-cta-ghost:hover {
  border-color: var(--accent-color);
  background: rgba(231, 200, 115, 0.08);
  color: #fff;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(231, 200, 115, 0.18);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-card-icon.addr {
  background: rgba(19, 7, 198, 0.35);
  color: #a0aaff;
}

.contact-card-icon.call {
  background: rgba(4, 160, 30, 0.25);
  color: #5de87a;
}

.contact-card-icon.mail {
  background: rgba(168, 121, 3, 0.3);
  color: var(--accent-color);
}

.contact-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 5px;
}

.contact-card-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 10px;
  line-height: 1.5;
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-card-link:hover {
  opacity: 0.75;
  color: var(--accent-color);
}

@media (max-width: 767px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-cta-btns {
    flex-direction: column;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}



/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--white);
  padding: 10px 30px;
  
  
  box-shadow: -3px 5px 12px 0 rgba(31, 18, 1, 0.06), 0 2px 2px 0 rgba(31, 18, 1, 0.06), 0 0 1px 0 rgba(31, 18, 1, 0.32);
  border: 1px solid #1a1a1a20;
  border-radius: 12px;
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--white);
  padding: 30px;

  box-shadow: -3px 5px 12px 0 rgba(31, 18, 1, 0.06), 0 2px 2px 0 rgba(31, 18, 1, 0.06), 0 0 1px 0 rgba(31, 18, 1, 0.32);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  
  
  box-shadow: -3px 5px 12px 0 rgba(31, 18, 1, 0.06), 0 2px 2px 0 rgba(31, 18, 1, 0.06), 0 0 1px 0 rgba(31, 18, 1, 0.32);
  border: 1px solid #1a1a1a20;
  border-radius: 12px;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}



.title-g {
  font-family: var(--heading-font);
  font-size: 50px;
    background: linear-gradient(135deg, #020328 0%, #0b145f 60%, #1a1002 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-w {
  font-family: var(--heading-font);
  color: var(--white);
  margin: 0;
  font-size: 60px;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.desc-b {
  color: #1A1A1A;
  font-family: "Work Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 158.333% */
  margin-top: 16px;
}

.desc-w {
  color: var(--white);
  font-family: "Work Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 158.333% */
  margin-top: 16px;
}

.title-b-sm {
  font-family: var(--heading-font);
  color: var(--default-color);
  margin: 0;
  font-size: 40px;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
/******** Middle section CSS End *******/

/***** responsive css Start ******/

@media (min-width: 992px) and (max-width: 1199px) {
  /* -------- Landing page ------- */

  .game-section .item {
    margin: 0 12px 60px;
    width: 260px;
    height: 360px;
  }
  .game-section .item.active {
    width: 400px;
  }
  .game-section .item-desc {
    transform: translateY(calc(100% - 46px));
    -webkit-transform: translateY(calc(100% - 46px));
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  
  /* -------- Landing page ------- */
  .game-section {
    padding: 50px 30px 40px;
  }
  .game-section .item {
    margin: 0 12px 60px;
    width: 240px;
    height: 330px;
  }
  .game-section .item.active {
    width: 360px;
  }
  .game-section .item-desc {
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
}

@media (max-width: 767px) {
 

  /* -------- Landing page ------- */
  .game-section {
    padding: 30px 15px 20px;
  }
  .game-section .item {
    margin: 0 10px 40px;
    width: 200px;
    height: 280px;
  }
  .game-section .item.active {
    width: 270px;
    box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
  }
  .game-section .item-desc {
    padding: 0 14px 5px;
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
}

