/* Navbar styles */
    .navbar {
      padding: 0.5rem 2rem;
    }

    .right-nav {
      z-index: 5;
    }

    /* Navbar links */
    .navbar-nav .nav-link {
      font-weight: 600;
      color: #000;
      margin-right: 10px;
      position: relative;
      padding: 8px 12px;
    }

    /* Active "Home" */
    .home-link {
      background: #1d89e2;
      color: #fff !important;
      border-radius: 2px;
      width: 100%;
    }

    /* Fix right side */
    .navbar .navbar-nav {
      position: fixed;
      right: 2rem;
      top: 15px;
      background: #fff;
    }

    li.nav-item {
      border-right: 1px solid #1d89e2;
      position: relative;
    }

    li.nav-item:hover {
      background-color: #1d89e2;
    }

    a.nav-link:hover {
      color: white;
    }

    .logo img {
      max-width: 300px;
    }

    /* Dropdown toggle checkbox (hidden) */
    .dropdown-toggle-checkbox {
      display: none;
    }

    /* Dropdown label with arrow */
    .dropdown-label {
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
      font-weight: 600;
      color: #000;
      padding: 8px 12px;
    }

    /* Arrow style */
    .arrow {
      font-size: 20px;
      color: #1d89e2;
      transition: transform 0.2s ease;
    }

    .arrow:hover{
      color: white;
    }

    label.nav-link.dropdown-label:hover{
      color: white;
    }
    

    /* Rotate arrow when active */
    .dropdown-toggle-checkbox:checked + .dropdown-label .arrow {
      transform: rotate(180deg);
    }

    /* Submenu default hidden */
    .sub-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      list-style: none;
      padding: 8px 12px;
      margin: 0;
      border: 1px solid #ddd;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      z-index: 10;
      min-width: 180px;
    }

    /* Show submenu when checkbox is checked */
    .dropdown-toggle-checkbox:checked + .dropdown-label + .sub-menu {
      display: block;
    }

    /* Submenu link styles */
    .sub-menu li a {
      display: block;
      padding: 5px 10px;
      color: #000;
      text-decoration: none;
      font-weight: 500;
    }

    .sub-menu li a:hover {
      background-color: #1d89e2;
      color: #fff;
    }

/* Hero Section Background */
    /* ====== Base Hero Section ====== */
    .hero-section {
      position: relative;
      height: 65vh;
      background: url("/assets/d31ff127fc234a64a3f45b143b7605b1.avif") no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      overflow: hidden;
    }

    /* ====== Blue Triangle Overlay ====== */
    .overlay-triangle {
      position: relative;
      width: 60%;
      height: 100%;
      background: #1d89e2;
      clip-path: polygon(35% 0, 87% 50%, 35% 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.9;
      color: #fff;
    }

    /* ====== Text & Button ====== */
    .hero-content {
      padding: 40px;
      text-align: left;
      max-width: 350px;
      z-index: 2;
    }

    .hero-content h2 {
      font-size: 2rem;
      line-height: 1.4;
      margin-bottom: 20px;
    }

    .hero-btn {
      display: block;
      width: 60%;
      background: #fff;
      color: #1d89e2 !important;
      font-weight: 600;
      border-radius: 2px;
      text-align: center;
      text-decoration: none;
      transition: 0.3s;
      padding: 10px 0;
    }

    .hero-btn:hover {
      background: black;
      color: white !important;
    }

    /* ===============================
       RESPONSIVE BREAKPOINTS
    =============================== */

    /* --- 1200px --- */
    @media (max-width: 1200px) {
      .overlay-triangle {
        width: 65%;
        height: 65%;
        clip-path: polygon(32% 0, 88% 50%, 32% 100%);
      }
      .hero-content {
        padding: 35px;
      }
      .hero-content h2 {
        font-size: 1.9rem;
      }
    }

    /* --- 991px --- */
    @media (max-width: 991px) {
      .hero-section {
        height: 60vh;
        justify-content: center;
      }
      .overlay-triangle {
        width: 75%;
        height: 60%;
        clip-path: polygon(25% 0, 100% 50%, 25% 100%);
      }
      .hero-content {
        text-align: center;
        padding: 30px;
        max-width: 320px;
      }
      .hero-content h2 {
        font-size: 1.6rem;
      }
      .hero-btn {
        width: 70%;
        margin: 0 auto;
      }
      
      .navbar-nav > li > a {
       border-right:none !important;
      }
    }

    /* --- 768px --- */
    @media (max-width: 768px) {
      .hero-section {
        height: auto;
        padding: 40px 0;
      }
      .overlay-triangle {
        width: 100%;
        background: rgba(29, 137, 226, 0.95);
        clip-path: none;
        border-radius: 0;
        padding: 35px 0;
      }
      .hero-content {
        padding: 15px 20px;
        max-width: 100%;
      }
      .hero-content h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
      }
      .hero-btn {
        width: 90%;
        padding: 10px 0;
        font-size: 0.95rem;
      }
    }
/* Section Title */
.section-title {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #1d89e2;
}

/* Service Item */
.service-item {
  position: relative;
  overflow: hidden;
  width: 200px;
  height: 200px;
  margin: auto;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.services-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* Text Overlay */
.service-item .overlay {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 4px 10px;
  font-weight: 600;
  border-radius: 3px;
  font-size: 0.9rem;
}

.service-item .overlay a {
    text-decoration: none !important;
    color: white;
}

/* Hover Effect - Circle to Square */
.service-item:hover {
  border-radius: 0%;
}

.service-item:hover img {
  border-radius: 0%;
}

/* Footer Logo */
.footer-logo {
  max-height: 100px;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin: 0 6px;
  font-size: 22px;
  color: #fff;
  background: #3b5998;
  /* default for facebook */
  padding: 8px 12px;
  border-radius: 4px;
  transition: 0.3s;
}

/* Specific colors */
.social-icons a:nth-child(1) {
  background: #3b5998;
  /* Facebook */
}

.social-icons a:nth-child(2) {
  background: #c4302b;
  /* YouTube */
}

.social-icons a:nth-child(3) {
  background: #e1306c;
  /* Instagram */
}

.social-icons a:hover {
  opacity: 0.8;
}

/* Contact Info */
.contact-info p {
  margin: 5px 0;
  font-size: 18px;
  color: #002244;
  font-weight: 700;
}

/* Service Hero Section */
.service-hero {
  position: relative;
  background: url('./assets/f9d75c_576dbe5649e84ca58548f14c23d827eb~mv2.avif') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-overlay {
  position: absolute;
  top: 0;
  width: 60%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.service-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.service-content h1 {
  font-size: 60px;
  line-height: 1.3;
  text-align: justify;
  width: 105%;
}

.service-content p {
  font-size: 16px;
  text-align: justify;
  width: 75%;
  margin: auto;
}

.service-content ul {
  font-size: 1.05rem;
  list-style-type: disc;
  width: 75%;
}

.service-btn {
  background: #3da9fc;
  color: #000;
  padding: 6px 70px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s ease;
}

i.fas.fa-phone {
  font-size: 13px;
  margin-right: 5px;
}

.service-btn:hover {
  background: #1685d1;
  color: #fff;
}



.client-services {
  background: #fff;
  padding: 0;
  margin: 0;
  text-align: center;
}

.client-services-heading {
  font-size: 65px;
  font-weight: bold;
  padding: 55px 0 0 0;
  margin-bottom: 20px;
  margin-top: -30px;
}


/* White Overlay */
.overlay-white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  /* semi-transparent white */
}

/* Black Overlay */
.overlay-black {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* semi-transparent black */
}

.service-row {
  display: flex;
  width: 100%;
  min-height: 370px;
}

.service-box {
  position: relative;
  flex: 1;
  min-width: 0;
  background-size: cover;
  background-position: center;
  height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brokerage-sales {
  background-image: url('./assets/4f435f_08a68524961b4a798f6ff23d3a85ee66~mv2.avif');
}

.development-construction {
  background-image: url('./assets/4a9c3786c3fd4d6b8c493e133343eb69.avif');
}

.property-management {
  background-image: url('./assets/11062b_f18c5726ccbe45489c072f236d707ba2~mv2.avif');
}

.investment-management {
  background-image: url('./assets/e55b24370d50452987eb5c86568e1d3b.avif');
}

.client-service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-service-overlay span {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.15;
}

.black-text {
  color: black !important;
}

@media (max-width: 1100px) {
  .client-services-heading {
    font-size: 40px;
  }

  .client-service-overlay span {
    font-size: 26px;
  }

  .service-row {
    flex-direction: column;
    min-height: unset;
  }

  .service-box {
    height: 200px;
  }
}

@media(max-width: 1400px){
  .service-overlay{
    width: 100%;
  }
}

@media(max-width: 840px){
  .service-content h1{
    font-size: 45px;
  }
}

@media(max-width: 620px){
  .service-content h1{
    font-size: 30px;
  }
  .service-content p {
    font-size: 14px;
    width: 56%;
}
.service-content ul {
    font-size: 14px;
    width: 100%;
}
}

.video-heading {
  font-weight: 700;
  line-height: 1;
}

.owner-testimonials {
  background: #fff;
}

.testimonial-video-card {
  position: relative;
  aspect-ratio: 16/9;
  background: #222;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.testimonial-video {
  opacity: 0.6;
  object-fit: cover;
  height: 100%;
  min-height: 350px;
}

.testimonial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 20px;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.30);
  pointer-events: none;
}

.testimonial-heading {
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 12px;
}

.testimonial-title {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.testimonial-desc {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1.5px;
}

.testimonial-details-title {
  font-size: 28px;
  font-weight: 600;
}

.testimonial-details-desc {
  font-size: 15px;
  font-weight: 400;
  color: #111;
  margin-top: 4px;
}

/* Responsive */
@media only screen and (max-width: 900px) {
  .testimonial-title {
    font-size: 1.35rem;
  }

  .testimonial-video-card {
    min-height: 200px;
  }
}

@media only screen and (max-width: 600px) {
  .testimonial-details-title {
    font-size: 1rem;
  }

  .testimonial-heading {
    font-size: 0.9rem;
  }

  .testimonial-title {
    font-size: 1.04rem;
  }
}

.about-hero-section {
  position: relative;
  /* width: 100vw; */
  height: 65vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('./assets/f9d75c_db5a0bce31ef4eae9b8fc5e8ae03042b000~mv2.avif') center center/cover no-repeat;
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-hero-title {
  color: #fff;
  font-size: 102px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 40px;
  width: 50%;

}

.about-hero-subtitle {
  color: #fff;
  font-size: 33px;
  letter-spacing: 0.3em;
  margin-top: 12px;
  font-weight: 300;
}

/* Responsive styles */
@media (max-width: 900px) {
  .about-hero-section {
    min-height: 400px;
    height: 60vh;
  }

  .about-hero-title {
    font-size: 2.4rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }
}

.about-info-section {
  display: flex;
  /* width: 100vw; */
  min-height: 480px;
}

.about-info-img {
  flex: 1 1 0;
  min-width: 0;
  background: url('./assets/f9d75c_f55c5b25071d4c00b018f136b730fa15111~mv2.avif') center center/cover no-repeat;
}

.about-info-content {
  flex: 1 1 0;
  min-width: 0;
  background: #0598ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0 40px;
}

.about-info-heading {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.about-info-heading span {
  color: #232323;
}

.about-info-text {
  font-size: 1.36rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 580px;
}

/* Responsive styles */
@media (max-width: 900px) {
  .about-info-section {
    flex-direction: column;
    height: auto;
    min-height: 340px;
  }

  .about-info-img,
  .about-info-content {
    width: 100%;
    min-height: 200px;
  }

  .about-info-content {
    padding: 24px 12px;
  }

  .about-info-heading {
    font-size: 2rem;
  }

  .about-info-text {
    font-size: 1rem;
  }
}


.projects-scroll-section {
  background: #fff;
  padding: 40px 0 30px 0;
  max-width: 100vw;
  overflow-x: hidden;
  display:none;
}

.projects-scroll-title {
  font-size: 45px;
  letter-spacing: 2px;
  font-weight: 700;
}

.projects-scroll-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  width: 100vw;
}

.projects-scroll-wrapper {
  display: flex;
  gap: 24px;
  min-width: max-content;
  padding-left: 20px;
  padding-right: 20px;
}

.projects-scroll-item {
  flex: 0 0 auto;
  width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projects-video {
  width: 100%;
  height: 350px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
}

.projects-caption {
  margin-top: 15px;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.5px;
  max-width: 100%;
  white-space: normal;
}

/* Hide vertical scrollbar but keep horizontal */
.projects-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.projects-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.projects-scroll-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.projects-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* Responsive */
@media (max-width: 900px) {
  .projects-scroll-title {
    font-size: 2rem;
  }

  .projects-scroll-item {
    width: 90vw;
  }

  .projects-video {
    height: 220px;
  }

  .projects-caption {
    font-size: 1.1rem;
  }
}


.core-values-section {
  background: #0598ff;
  /* width: 100vw; */
  padding: 40px 0 50px 0;
  margin-top:100px;
}

.core-values-row {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 100vw;
}

.core-value {
  width: 20%;
  flex: 0 0 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px 12px 0 12px;
}



.core-value-icon {
  width: 75px;
  height: 75px;
  margin-bottom: 25px;
  margin-top: 10px;
}

.core-value-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  margin-top: 0;
}

.core-value-desc {
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.32;
  margin: 0;
  max-width:800px
}

@media (max-width: 1100px) {
  .core-values-row {
    flex-direction: column;
    align-items: center;
  }

  .core-value {
    width: 88vw;
    margin-bottom: 28px;
  }
}

.team-video-section {
  background: #fff;
  padding: 36px 0 0 0;
}

.team-video-title {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
}

.team-video-row {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 16px;
}

.team-intro-section {
  display: flex !important;
  align-items: flex-start !important;
  gap: 24px;
  padding: 24px;
  background: #f8f8f8;
  border-radius: 16px;
  color: #333 !important;
  justify-content: flex-start;
  border: 1px solid #e5e5e5;
}

.team-intro-section > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 240px;
}


.team-member {
  width: 200px !important;
  height: 290px !important;
  object-fit: cover;
  border-radius: 16px !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.team-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 12px 0 0 0;
  text-align: center;
  color: #222;
}

.team-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #444;
  margin: 0;
}

.team-video-card {
  flex: 1 1 0;
  max-width: 25vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-video-thumb {
  width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  background: #222;
  overflow: hidden;
  border-radius: 2.5px;
}



.team-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
  border-radius: 2.5px;
}

.team-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 62px;
  height: 62px;
  background: rgba(0, 0, 0, 0.63);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="40" viewBox="0 0 60 60" width="40" xmlns="http://www.w3.org/2000/svg"><polygon points="18,10 50,30 18,50" /></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px 40px;
}

.team-video-thumb:hover .team-play-btn,
.team-video-thumb:focus-within .team-play-btn {
  opacity: 1;
}

.team-video-thumb:hover .team-video-player,
.team-video-thumb:focus-within .team-video-player {
  filter: brightness(0.55);
}


.team-video-caption {
  font-size: 2rem;
  text-align: center;
  margin-top: 18px;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  width: 99%;
  overflow: hidden;
}

@media (max-width: 1100px) {
  .team-video-title {
    font-size: 2.3rem;
  }

  .team-video-caption {
    font-size: 1.05rem;
  }

  .team-video-row {
    flex-wrap: wrap;
  }

  .team-video-card {
    max-width: 90vw;
    margin-bottom: 32px;
  }
}

@media (max-width: 800px) {
  .team-video-row {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
}

@media (max-width: 660px){
	.team-intro-section{
		flex-direction:column;
	}
	
	.team-intro-section > div{
		width: 100%;
	}
}