@charset "UTF-8";

/*------------------------------------------------------------------
Author       : Code-Theme
Template Name: Find Houses - HTML5 Template
Version      : 1.2
CLEANED & CONSOLIDATED VERSION
-------------------------------------------------------------------*/

/* ===== COLOR VARIABLES ===== */
/*
Primary Colors:
- Primary Red: #dc3545 (standardized throughout)
- Dark Blue: #0B2A5B
- Dark Gray: #121B22
- Light Gray: #f8f9fa
*/

/* ===== TYPOGRAPHY ===== */


html {
  font-size: 15px;
}

h2 {
  text-align: center;
  font-size: 1.5rem;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  /* text-transform: uppercase; */
}

h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #333;
  font-weight: 600;
}

h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #333;
  font-weight: 600;
}

h5 {
  color: #444;
}

p {
  line-height: 26px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #666;
  overflow-x: hidden;
  background-color: #ffffff;
  padding-top: 100px;
}




.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #2f3a4a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 800;
}

.bar-item {
  flex: 1;
  text-align: center;
  color: white;
  text-decoration: none;
  padding: 7px 0;
  font-size: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.bar-item:last-child {
  border-right: none;
}

.enquiry {
  font-size: 16px;
  font-weight: 500;
}

/* hide on desktop */
@media (min-width:768px) {
  .mobile-bottom-bar {
    display: none;
  }
}

/* prevent page overlap */
@media (max-width:768px) {
  body {
    padding-bottom: 0px;
  }
}



/* ===== JOB PAGE ===== */

.job-section {
  padding: 40px 20px;
  background: #f8f9fa;
}

/* Container */

.job-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Card */

.job-card {
  display: flex;
  gap: 30px;
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  align-items: flex-start;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Image */

.job-img {
  width: 40%;
  max-width: 350px;
  height: 450px;
  border-radius: 8px;
  object-fit: cover;
}

/* Content */

.job-content {
  width: 60%;
}

.job-content h2 {
  margin-bottom: 5px;
  font-size: 28px;
}

.job-location {
  color: #777;
  margin-bottom: 20px;
}

/* Section headings */

.job-content h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #dc3545;
  font-size: 16px;
}

/* Lists */

.job-content ul {
  padding-left: 18px;
}

.job-content ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.apply-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #dc3545;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: #b02a37;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* ===== MOBILE ===== */

@media (max-width:768px) {

  .job-card {
    flex-direction: column;
  }

  .job-img {
    width: 100%;
    max-width: 100%;
  }

  .job-content {
    width: 100%;
  }

}

.apply-btn:hover {
  background: #b02a37;
}

.amenities-section {
  padding: 40px 20px;
  background: #f8f9fa;
}



/* ===== NAVBAR ===== */
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 800;
  background-color: white !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 2px 0;
}

/* NAVBAR CONTAINER */

.nav-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}




/* MENU */

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0px !important;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu li a {
  position: relative;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  /* text-transform: uppercase; */
  font-size: 17px;
  letter-spacing: 0px;
  transition: color 0.3s ease;
  padding: 10px 0;
  display: block;
  text-decoration: none;
  white-space: nowrap;
}


.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #ec3237;
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
  width: 100%;
}

.nav-menu li a:hover {
  color: #dc3545;
}

/* Dropdown Styles */
.nav-menu .dropdown {
  position: relative;
}

.nav-menu .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 6%;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 1000;
  border-radius: 6px;
  list-style: none;
}

/* Show dropdown on hover (Desktop) */
@media (min-width: 993px) {
  .nav-menu .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Show dropdown class applied by JS (Mobile) */
.nav-menu .dropdown-menu.show {
  display: block;
}

.nav-menu .dropdown-menu li {
  width: 100%;
  padding: 0 !important;
  /* override mobile padding */
}

.nav-menu .dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-weight: 500;
  color: #333;
  font-size: 16px;
  text-transform: none;
  letter-spacing: normal;
  transition: all 0.3s ease;
}

.nav-menu .dropdown-menu li a:hover {
  background: #f8f9fa;
  color: #dc3545;
  padding-left: 25px;
  /* premium hover effect */
}

/* HAMBURGER */

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE MENU */
@media (max-width: 992px) {

  .nav-menu {
    position: relative;
    /* reset absolute positioning */
    left: 0;
    transform: none;

    flex-direction: column;
    gap: 10px;
    width: 100%;
    background: white;

    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
  }

  .nav-menu.active {
    max-height: 500px;
    padding: 15px 0;
  }

  .nav-menu li {
    width: 100%;
    padding: 12px 20px;
  }

}

/* ===== MOBILE BOTTOM ACTION BAR ===== */



.bottom-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #374151;
  /* Same dark bluish gray */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  z-index: 800;
}

/* Each item */
.bottom-item {
  flex: 1;
  text-align: center;
}

.bottom-item a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

/* Icons */
.bottom-item i {
  font-size: 22px;
}

/* Divider line */
.border-line {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hide on desktop */
@media (min-width: 768px) {
  .bottom-footer {
    display: none;
  }
}

/* Prevent content hiding behind it */
@media (max-width: 768px) {
  body {
    padding-bottom: 35px;
  }
}

/* ===== JD SECTION ===== */


.career-section {
  padding: 40px 20px;
  background: #f8f9fa;
}

/* TITLE */

.career-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

.career-title span {
  color: #dc3545;
}

/* GRID */

.career-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */

.career-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.career-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* IMAGE */

.career-img {
  height: 240px;
  overflow: hidden;
}

.career-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.career-card:hover img {
  transform: scale(1.1);
}

/* CONTENT */

.career-content {
  padding: 30px;
}

.career-content h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.location {
  color: #888;
  font-size: 14px;
  margin-bottom: 20px;
}

.career-content ul {
  padding-left: 18px;
}

.career-content ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* MOBILE */

@media(max-width:768px) {

  .career-title {
    font-size: 28px;
  }

  .career-img {
    height: 200px;
  }

}


/* ===== COUNTER SECTION WITH IMAGE ===== */

/* COUNTER SECTION */

.counterup {
  position: relative;
  padding: 30px 0;
  /* reduced height */
}

.overlay {
  background: rgba(184, 4, 4, 0.6);
  padding: 30px 0;
}

/* HEADING */

.counter-heading {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.counter-heading h2 {
  font-size: 32px;
  font-weight: 700;
}

.counter-heading span {
  color: #dc3545;
}

.counter-heading p {
  font-size: 14px;
  opacity: 0.8;
}

/* COUNTER */

.countr {
  color: #fff;
  padding: 15px;
}

.countr i {
  font-size: 35px;
  color: #dc3545;
  margin-bottom: 10px;
}

.counter {
  font-size: 32px;
  font-weight: 700;
  margin: 5px 0;
}

.countr h3 {
  font-size: 15px;
  color: #ddd;
}

/* MOBILE */

@media(max-width:768px) {

  .counterup {
    padding: 40px 0;
  }

  .counter {
    font-size: 26px;
  }

  .countr i {
    font-size: 28px;
  }

}

.amenities-section {
  padding: 40px 20px;
  background: #f8f9fa;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.amenity-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.amenity-box i {
  font-size: 20px;
  color: #dc3545;
  background: #f8f8f8;
  padding: 12px;
  border-radius: 50%;
  min-width: 40px;
  text-align: center;
}

.nearby-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nearby-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nearby-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.nearby-list li:last-child {
  border-bottom: none;
}

.nearby-list i {
  color: #dc3545;
  margin-right: 8px;
}

.nearby-list span {
  flex: 1;
}

.nearby-list strong {
  background: #dc3545;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.project-details h2 {
  color: #000;
}

.map-box {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.nearby-box {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

/* Align buttons inside table */
.table td {
  vertical-align: middle;
}

/* Make both buttons same size */
.table .btn,
.table .apply-btn {
  display: inline-block;
  min-width: 110px;
  text-align: center;
  padding: 8px 15px;
  font-weight: 600;
  border-radius: 6px;
}


/* ===== HEADER ===== */
.navbar {
  background: #001440;
}

.navbar a {
  color: #fff !important;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Full screen desktop */
  overflow: hidden;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===== HERO SECTION ===== */
.home-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 600px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* HERO IMAGE */

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero-primary {
  background: #dc3545;
  color: white;
}

.hero-primary:hover {
  background: #b02a37;
}

.hero-secondary {
  background: white;
}

.hero-secondary:hover {
  background: #eee;
}

/* ===== MOBILE HERO ===== */
@media (max-width:768px) {

  .home-hero {
    min-height: auto;
    height: auto;
    padding: 0;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 15px;
  }

}


/* ===== SECTION SPACING ===== */
section {
  padding: 30px 0;
}



/* ===== WHY CHOOSE US BOX ===== */
.why-box {
  padding: 25px 20px;
  background: #ffffff;
  border-radius: 10px;
  transition: 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.why-box img {
  width: 40px;
  margin-bottom: 12px;
}

.why-box h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-box p {
  font-size: 15px;
  color: #000;
  line-height: 1.5;
}

.why-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}


.page-hero {
  position: relative;
  width: 100%;
  height: 300px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 16px;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 5px;
  color: #dc3545;
}

.breadcrumb .active {
  color: #dc3545;
}

@media(max-width:768px) {
  .page-hero {
    height: 220px;
  }

  .hero-content h1 {
    font-size: 28px;
  }
}

/* ===== ABOUT SECTION CLEAN FIX ===== */

.about .row {
  align-items: center;
}

/* Image container */
.about-img {
  width: 100%;
  max-height: 420px;
  /* Control max size */
  overflow: hidden;
  border-radius: 10px;
}

/* Image */
.about-img img {
  width: 100%;
  height: auto;
  /* IMPORTANT: auto not 100% */
  display: block;
}

/* ===== FOOTER ===== */
footer {
  background: #001440;
  color: white;
  padding: 30px 0;
}

.copyright {
  background: #000;
  color: #fff;
  padding: 25px 0;
  text-align: center;
}

/* ===== MOBILE RESPONSIVE FIX ===== */
@media (max-width: 991px) {

  /* About Section Stack */
  .about .row {
    flex-direction: column;
  }

  .about-img {
    /* height: 300px; */
    margin-top: 20px;
  }

  /* Hero Height Reduce */
  .hero {
    height: 70vh;
  }
}

/* ===== PROJECT SECTION ===== */

.project-box {
  position: relative;
  width: 100%;
  height: 420px;
  /* Same height for both */
  overflow: hidden;
  border-radius: 12px;
}

.project-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

/* Hover Zoom */
.project-box:hover img {
  transform: scale(1.08);
}

/* Overlay */
.project-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
}

.project-overlay h4 {
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .project-box {
    height: 300px;
  }
}

/* CONTENT */

.hero-content {
  position: relative;
  color: white;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn-primary {
  background: #dc3545;
  color: white;
}

.hero-btn-primary:hover {
  background: #b02a37;
}

.hero-btn-secondary:hover {
  background: #eee;
}

/* SECTION BACKGROUND */

.highlight-section {
  position: relative;
  background: url("../images/home-img.png") center/cover no-repeat;
  padding: 120px 20px;

}

/* CONTENT BOX */

.highlight-box {
  position: relative;
  max-width: 500px;
  background: #ffffff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* TEXT */

.highlight-box h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.highlight-box p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #555;
}

/* BUTTON */

.highlight-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #dc3545;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.highlight-btn:hover {
  background: #dedcdc;
}

/* MOBILE */

@media(max-width:768px) {

  .highlight-section {
    padding: 40px 20px;
  }

  .highlight-box {
    max-width: 100%;
  }

}

.apply-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.apply-content {
  background: #fff;
  width: 70%;
  margin: 60px auto;
  padding: 20px;
  border-radius: 8px;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}

.img-disclaimer {
  color: red;
  text-align: center;
}

/* ===== ABOUT SECTION FIX ===== */



img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* ===== GLOBAL LAYOUT FIX ===== */
#wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer,
.footer-section {
  margin-top: auto;
  background-color: #0B2A5B;
}

/* ===== NAVBAR ===== */
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 800;
  background-color: white;
  box-shadow: 0 2px 10px #212529;
  padding: 2px 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  position: relative;
}

/* ===== LOGO ===== */
.logo img {
  height: 100%;
  width: auto;
}

#main-logo {
  width: 100px;
  height: 80px;
}

/* ===== MENU DESKTOP ===== */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-menu li {
  white-space: nowrap;
  margin-right: 24px;
}



.nav-menu li a:hover {
  color: #dc3545;
}


.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #ec3237;
  /* transition: width 0.3s ease; */
}

.nav-menu li a:hover {
  color: #dc3545;
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: white;
  list-style: none;
  padding: 10px 0;
  min-width: 180px;
  border-radius: 6px;
  display: none;
  z-index: 850;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* ===== HAMBURGER MENU ===== */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
}

/* ===== MOBILE RESPONSIVE ===== */
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    gap: 20px;
    padding: 25px 0;
    display: none !important;
    /* FORCE HIDE */
  }

  .nav-menu.active {
    display: flex !important;
    /* FORCE SHOW */
  }

  .nav-menu li {
    text-align: left;
    padding: 0px 22px;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width:1100px) {
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 800;
}

.whatsapp-float img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

@media (max-width:768px) {
  .whatsapp-float {
    display: none;
  }
}

/*social media incon */

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  margin: 18px auto 0;
}

.footer-social a {
  width: 32px;
  height: 32px;
  background: #ffffff;
  color: #0B2A5B;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #dc3545;
  color: #ffffff;
  transform: translateY(-3px);
}

@media (max-width:768px) {

  .footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
}

/* ===== FLOATING CALL BUTTON ===== */
.call-now-btn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  background: #dc3545;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  z-index: 800;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.call-now-btn:hover {
  background: #0B2A5B;
  transform: translateY(-3px);
}

/* ===== CONTACT ICON ===== */
.contact-icon {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #dc3545;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.contact-icon:hover {
  transform: translateY(-50%) scale(1.1);
}

/* ===== FULL IMAGE SECTION ===== */
.full-image-section {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.full-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== BROCHURE SECTION ===== */
.brochure-section {
  padding: 40px 20px;
  background: #f8f9fa;
  display: flex;
  justify-content: center;
}

.brochure-box {
  background: white;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.brochure-box h2 {
  margin-bottom: 15px;
  font-size: 28px;
}

.brochure-box p {
  margin-bottom: 25px;
  color: #555;
}

.brochure-box:hover {
  transform: translateY(-5px);
}

.download-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #dc3545;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease;
}

.download-btn:hover {
  background: #c82333;
  transform: translateY(-3px);
}

/* ===== PROJECT HERO BANNER ===== */
.project-banner {
  position: relative;
  height: 75vh;
  background: url('images/bag-3_result.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-banner h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 3px;
  color: white;
  text-align: center;
}

.project-banner p {
  font-size: 18px;
  margin-top: 15px;
  color: white;
  text-align: center;
}

.project-details p {
  font-size: 17px;
  line-height: 1.8;
  color: #000;
}

@media (max-width: 768px) {
  .project-banner {
    height: 55vh;
  }

  .project-banner h1 {
    font-size: 32px;
  }

  .call-now-btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}


/* ===== 404 PAGE ===== */

.error-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #f8f9fa;
  padding: 40px 20px;
}

.error-box {
  max-width: 600px;
}

.error-box h1 {
  font-size: 120px;
  margin: 0;
  color: #dc3545;
  font-weight: 800;
}

.error-box h2 {
  font-size: 28px;
  margin: 10px 0;
  color: #222;
}

.error-box p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Button */

.error-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #dc3545;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}

.error-btn:hover {
  background: #b02a37;
  transform: translateY(-2px);
}

/* Mobile */

@media(max-width:768px) {

  .error-box h1 {
    font-size: 80px;
  }

  .error-box h2 {
    font-size: 22px;
  }

}



.footer-bottom {
  background: #293b1e;
  color: white;
  padding: 15px 20px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-item {
  font-size: 14px;
  color: #fff;
}

.footer-item a {
  color: white;
  text-decoration: none !important;
  font-weight: 500;
}

.footer-item a:hover {
  text-decoration: underline;
}

/* ===== CONTACT SECTION ===== */
.contact-banner {
  background: url("../images/contact_result.webp") center/cover no-repeat;
  /* height: 360px; */
  position: relative;
  color: white;
  padding: 70px 0;
}

.home-link {
  color: #ffffff;
  text-decoration: none;
  text-align: center;
}

.home-link:hover {
  color: #0d1dc9;
  /* optional hover effect */
}

.career-banner {
  background: url("../images/career_result_1.webp") center/cover no-repeat;
  height: 360px;
  position: relative;
  color: white;
  padding: 70px 0;
}

.c_project-banner {
  background: url("../images/nova_city_result.webp") center/cover no-repeat;
  /* height: 360px; */
  position: relative;
  color: white;
  padding: 70px 0;
}

.c_project-banner2 {
  background: url("../images/fazerrown.png") center/cover no-repeat;
  /* height: 360px; */
  position: relative;
  color: white;
  padding: 70px 0;
}

.c_project-banner1 {
  background: url("../images/starcity-header.png") center/cover no-repeat;
  position: relative;
  color: white;
  padding: 70px 0;
}

@media screen and (min-width:220px) and (max-width:480px) {
  .c_project-banner1 {
    height: 0px;
  }

  .d_project-banner {
    height: 0px;
  }

  .about-banner {
    height: 0px;
  }

  .c_project-banner {
    height: 0px;
  }

  .contact-banner {
    height: 0px;
  }

  .career-banner {
    height: 0px;
  }

  .c_project-banner2 {
    height: 0px;
  }
}

@media screen and (min-width:481px) and (max-width:768px) {
  .c_project-banner1 {
    height: 260px;
  }

  .d_project-banner {
    height: 260px;
  }

  .about-banner {
    height: 260px;
  }

  .c_project-banner {
    height: 260px;
  }

  .contact-banner {
    height: 260px;
  }

  .career-banner {
    height: 260px;
  }

  .c_project-banner2 {
    height: 260px;
  }
}

@media screen and (min-width:769px) and (max-width:2560px) {
  .c_project-banner1 {
    height: 360px;
  }

  .d_project-banner {
    height: 360px;
  }

  .about-banner {
    height: 360px;
  }

  .c_project-banner {
    height: 360px;
  }

  .contact-banner {
    height: 360px;
  }

  .career-banner {
    height: 360px;
  }

  .c_project-banner2 {
    height: 360px;
  }
}



.d_project-banner {
  background: url("../images/completed _projects_result.webp") center/cover no-repeat;
  /* height: 360px; */
  position: relative;
  color: white;
  padding: 70px 0;
}

.about-banner {
  background: url("../images/about_result_3.webp") center/cover no-repeat;
  /* height: 360px; */
  position: relative;
  color: white;
  padding: 70px 0;
}

.brochure-banner {
  background: url("../images/about_result_3.webp") center/cover no-repeat;
  height: 360px;
  position: relative;
  color: white;
  padding: 70px 0;
}

.contact-banner h1 {
  font-size: 48px;
  font-weight: 700;
}

.contact-banner p {
  font-size: 18px;
}

.contact-form-box {
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 6px;
}

.contact-btn {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 10px 20px;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background-color: #c82333;
  color: white;
}

.map-container {
  width: 100%;
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}




/* ===== VISION & MISSION ===== */
.vm-card {
  background: #ffffff;
  transition: 0.4s ease;
  height: 100%;
  padding: 30px;
  border-radius: 12px;
}

.vm-card:hover {
  background: #dc3545;
  color: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vm-card:hover h4,
.vm-card:hover p {
  color: #ffffff;
}

.vm-icon {
  font-size: 30px;
  color: #dc3545;
  transition: 0.3s ease;
}

.vm-card:hover .vm-icon {
  color: #ffffff;
}

/* ===== TEAM SIMPLE ===== */
.team-simple {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.team-simple img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-simple h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.team-simple p {
  color: #777;
  font-size: 14px;
}

.team-simple:hover {
  transform: translateY(-8px);
}

/* ===== CLIENT TESTIMONIALS ===== */
.client-testimonials {
  background: #f8f9fa;
  padding: 40px 20px;
}

.testimonial-title {
  font-size: 32px;
  font-weight: 700;
  color: #0B2A5B;
  text-align: center;
}

.testimonial-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.client-name {
  font-weight: 600;
  color: #dc3545;
  margin-bottom: 3px;
}

.client-location {
  font-size: 14px;
  color: #777;
}

/* ===== TABLE STYLING ===== */
.crousal {
  width: 90%;
  margin: 50px auto;
  overflow-x: auto;
}

.crousal table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.crousal thead {
  background: #892626;
  color: #fff;
}

.crousal thead th {
  padding: 15px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
}

.crousal tbody td,
.crousal tbody th {
  padding: 15px;
  text-align: center;
  font-size: 14px;
}

.crousal tbody tr:hover {
  background-color: #f5f5f5;
  transition: 0.3s ease;
}

.crousal tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.submit {
  background-color: #962a2a;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 13px;
}

.submit:hover {
  background-color: #444;
}

.table-bordered td,
.table-bordered th {
  border: 1px solid #e5e5e5;
}

@media (max-width: 768px) {

  .table th,
  .table td {
    font-size: 12px;
    padding: 8px;
  }

  .table .submit {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* ===== FOOTER SECTION ===== */
.footer-section {
  background-color: #293b1e;
  color: #ffffff;
  padding: 60px 0 0px;
}

.img-responsive {
  width: 100%;
  height: auto;
}

#footer-logo {
  width: 150px;
  height: 150px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 18px;
  position: relative;
}

/* Desktop */
.footer-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #dc3545;
  display: block;
  margin-top: 8px;
}

/* Mobile */
@media (max-width:768px) {
  .footer-title::after {
    margin-left: auto;
    margin-right: auto;
  }
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-size: 16px;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #fff;
}

.contact-details i {
  color: #dc3545;
  min-width: 18px;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0px 0;
}

.footer-bottom {
  font-size: 14px;
  background-color:#293b1e ;
  color: #dcdcdc;
}

@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .contact-details p {
    justify-content: center;
  }
}

/* ===== SECTION TITLE ===== */
.section-title {
  color: #dc3545;
  font-weight: 600;
  padding-left: 35px;
  position: relative;
  margin-bottom: 2.5rem;
}

.section-title::before {
  top: 0;
  left: 0;
  bottom: 0;
  width: 15px;
  content: '';
  border-radius: 3px;
  position: absolute;
  background-color: #dc3545;
}

.section-line {
  width: 60px;
  height: 3px;
  background-color: #dc3545;
  margin: 10px auto 0;
}

/* ===== PROJECT SECTION ===== */
.project-card {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  transition: 0.3s ease;
}

.project-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-title {
  font-weight: 600;
  padding: 15px;
}

.project-location {
  color: #777;
  font-size: 14px;
}

.project-description {
  margin: 10px 0;
  font-size: 14px;
  color: #444;
}

.project-features {
  padding-left: 18px;
  font-size: 14px;
  margin-bottom: 10px;
}

.badge.bg-danger {
  background-color: #dc3545 !important;
}



.contact-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #ffffff;
  padding: 18px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.contact-box i {
  font-size: 20px;
  color: #dc3545;
  background: #f8f8f8;
  padding: 12px;
  border-radius: 50%;
  min-width: 40px;
  text-align: center;
}

.contact-box h6 {
  margin: 0;
  font-weight: 600;
}

.contact-box p {
  margin: 0;
  font-size: 14px;
  color: #000;
}

.contact-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.contact-box a {
  color: #333;
  text-decoration: none;
}

.contact-box a:hover {
  color: #dc3545;
}

/* ===== AMENITIES SECTION ===== */
.amenity-box {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 25px;
  border-radius: 6px;
  height: 100%;
  transition: 0.3s ease;
}

.amenity-icon {
  font-size: 40px;
  color: #dc3545;
  margin-bottom: 15px;
}

.amenity-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.amenity-box p {
  font-size: 14px;
  color: #666;
}

.amenity-card {
  transition: all 0.3s ease;
  background: #fff;
  cursor: pointer;
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: #dc3545 !important;
}

.amenity-card h5 {
  transition: color 0.3s ease;
}

.amenity-card:hover h5 {
  color: #dc3545;
}



/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  section {
    padding: 30px 0;
  }

  .cover-section {
    min-height: 40vh;
  }

  .status-box h3 {
    font-size: 20px;
  }

  .about {
    text-align: center;
  }

  .about img {
    margin-top: 20px;
  }

  .sec-title h2 {
    font-size: 24px;
  }

  .team-wrap {
    margin-bottom: 30px;
  }
}

/* ===== GO UP BUTTON ===== */
.go-up {
  position: fixed;
  bottom: 1.5rem;
  right: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  background: #dc3545;
  padding: 0.9rem;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  z-index: 800;
  line-height: 0;
  display: none;
  transition: all 0.4s ease;
}

.go-up:hover,
.go-up:focus {
  outline: 0;
  text-decoration: none;
  color: #fff;
  background: #0B2A5B;
}

/* ===== UTILITY CLASSES ===== */
.bg-white {
  background: #fff !important;
}

.bg-gray {
  background: #f5f7fb !important;
}

.text-heading {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
}

.table-responsive {
  overflow-x: auto;
}

.table {
  min-width: 600px;
}

/* ===== PRIVACY PAGE ===== */
#privacy-banner {
  text-align: left;
}

#privacy-content {
  text-align: left;
}

#personal-data-section,
#services {
  color: #dc3545;
  text-align: left;
}

/* Privacy page headings - all same small size */
#privacy-content h1,
#privacy-content h2,
#privacy-content h3 {
  font-size: 1.1rem;
}

/* Projects section heading - slightly smaller */
#projects-title {
  font-size: 2rem;
}

.home-link {
  text-align: center;
}

/* ===== END OF CONSOLIDATED STYLES ===== */


/* Floating Social Icons */

.social-float {
  position: fixed;
  left: 0;
  top: 40%;
  width: 50px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 500;
  pointer-events: none;
}

.social-float a {
  pointer-events: auto;
}

/* Buttons */

.social-btn {
  width: 46px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  transition: 0.3s;
}

/* Brand colors */

.whatsapp {
  background: #25D366;
}

.instagram {
  background: #E1306C;
}

.facebook {
  background: #1877F2;
}

/* Hover effect */

.social-btn:hover {
  padding-left: 10px;
}

@media (max-width:768px) {
  .social-float {
    display: none !important;
  }
}

.highlight-section,
.hero,
.project-box {
  position: relative;
  z-index: 1;
}

.social-float,
.call-now-btn,
.go-up {
  pointer-events: auto;
}

.property-highlight {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.property-highlight h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.property-highlight .location {
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
}

.property-highlight .tagline {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 20px;
}

.price-box h3 {
  font-size: 36px;
  color: #e22323;
  margin-bottom: 10px;
}

.price-box span {
  font-size: 18px;
  color: #333;
}

.property-highlight .distance {
  font-size: 16px;
  color: #444;
}

/* =========================================
   SITE VISIT POPUP STYLES
   ========================================= */
.site-visit-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.site-visit-overlay.active {
  opacity: 1;
  visibility: visible;
}

.site-visit-popup {
  background: #ffffff;
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-20px) scale(0.95);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.site-visit-overlay.active .site-visit-popup {
  transform: translateY(0) scale(1);
}

.site-visit-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  color: #888;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.site-visit-close:hover {
  color: #dc3545;
}

.site-visit-header h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.site-visit-header p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

.site-visit-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.site-visit-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 5px;
}
.site-visit-group1 {
  /*display: flex;*/
  flex-direction: column;
  text-align: left;
  gap: 5px;
}


.site-visit-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.site-visit-form .input,
.site-visit-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit;
}
.site-visit-form .mycheckbox
 {
  width: 10% !important;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit;
}


.site-visit-form textarea {
  width: 100%;
  padding: 8px 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit;
}

.site-visit-form textarea {
  resize: vertical;
  min-height: 80px;
}

.site-visit-form input:focus,
.site-visit-form textarea:focus {
  border-color: #dc3545;
}

.site-visit-btn {
  background: #dc3545;
  color: #ffffff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
  width: 100%;
}

.site-visit-btn:hover {
  background: #b02a37;
  transform: translateY(-2px);
}

.highlight-section {
  padding: 80px 0;
  background-color: #fff;
}

.highlight-wrapper {
  display: flex;
  align-items: stretch;
  gap: 30px;
}

/* LEFT SIDE - Content Box */
.highlight-box {
  flex: 1;
  background: #fdfdfd;
  padding: 50px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.highlight-box h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: left;
}

.highlight-box p {
  font-size: 17px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.highlight-btn {
  display: inline-block;
  align-self: flex-start;
  padding: 15px 35px;
  background: #dc3545;
  /* Brand Red */
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.highlight-btn:hover {
  background: #b02a37;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(176, 42, 55, 0.4);
  color: #fff;
}

/* RIGHT SIDE - Video Container */
.highlight-video {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #000;
  position: relative;
  min-height: 400px;
}

.highlight-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE (Mobile) */
@media (max-width: 992px) {
  .highlight-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .highlight-box {
    padding: 30px;
    text-align: center;
  }

  .highlight-box h2 {
    font-size: 26px;
    text-align: center;
  }

  .highlight-btn {
    align-self: center;
  }

  .highlight-video {
    min-height: 300px;
  }
}

.link-color {
  color: #fff;
  text-decoration: none;
}

.link-color:hover {
  color: #ec3237;
  text-decoration: none;
}

.font {
  font-size: 15px;
}

.top-dir {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  /* 👉 moves button to right side */
  z-index: 999;

  background-color: #ec3237;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;

  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 45px;

  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover effect */
.top-dir:hover {
  background-color: #c82333;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Card design */


/* .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
} */

.col {
  width: 32%;
  /* 3 in one row */
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 8px;
}

.card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.card p {
  color: #000;
  font-size: 14px;
}

.text-color a {
  color: #fff;
}

.text-muted1 {

  color: #000 !important;
}

