:root {
  --color-bg: #ffffff;
  /* Keep white background */
  --color-text: #0c4256;
  /* Use main color for primary text */
  --color-primary: #0c4256;
  /* Main primary color */
  --color-primary-dark: #072a36;
  /* Darker shade of primary */
  --color-muted: #68838d;
  /* Muted tone based on main color */
  --color-border: #b7c5ca;
  /* Soft border color derived from main */
  --color-light: #e8f1f4;
  /* Light tint of main color */
  --color-link: #108ab6;
  /* Bright blueish accent from main color scheme */
  --color-danger: #c0392b;
  /* Adjusted for aesthetic balance (optional) */
  --color-success-bg: #d0e6ec;
  /* Light background success tint using main palette */
}

.sitevisit_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup */
.sitevisit_popup {
  background: #fff;
  padding: 25px;
  width: 90%;
  max-width: 420px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 0.5s ease;
}

/* Close Button */
.sitevisit_close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.sitevisit_close:hover {
  color: red;
}

.sitevisit_popup h2 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #2c3e50;
}

.sitevisit_popup p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

/* Form */
.sitevisit_form input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.sitevisit_form button {
  background: #000c4256;
  border: none;
  color: white;
  padding: 12px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}

.sitevisit_form button:hover {
  background: #0c4256;
}

@keyframes fadeInDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.brochure_btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #0c4256;
  color: rgb(14, 251, 14);
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-family: Arial, sans-serif;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.2s;
  z-index: 9999;
}

.brochure_btn:hover {
  background: #11465a;
  transform: scale(1.05);
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  overflow-x: hidden;

}

.topbar {
  background: var(--color-muted);
  font-size: 14px;
}

.topbar span,
.topbar i {
  color: var(--color-bg);
}

.topbar a {
  color: var(--color-text);
  text-decoration: none;
}

.navbar {
  background-color: var(--color-primary-dark);
}

.navbar-nav .nav-link {
  color: white !important;
  margin-right: 15px;
}

.navbar-nav .nav-link.active {
  border-bottom: 2px solid var(--color-primary);
}

.dropdown-menu {
  background: #0c4256;
  transition: all 0.3s ease;

}


.dropdown-menu li a {
  background: rgba(34, 32, 32, 0.05);
  transition: all 0.3s ease;
  color: var(--color-bg) !important;
}

.dropdown-menu li a:hover {
  background: var(--color-link);
  transition: all 0.3s ease;
  color: var(--color-bg) !important;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
  border-radius: 0.5rem;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}



@media (max-width: 991px) {
  .navbar-nav {
    flex-wrap: wrap;
  }

  .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 15px;
    width: 100%;
  }

  /* Dropdown menus full width in mobile */
  .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  /* Submenu inside mobile view stacks vertically */
  .dropdown-submenu>.dropdown-menu {
    left: 0;
    top: 0;
    display: none;
    margin: 0;
  }

  .dropdown-submenu:hover>.dropdown-menu {
    display: block;
  }
}

@media (max-width: 991px) {
  .dropdown-submenu>.dropdown-menu {
    display: none;
  }

  /* Show when .show is added by JS */
  .dropdown-submenu>.dropdown-menu.show {
    display: block;
  }

  /* Optional: indent submenus on mobile */
  .dropdown-submenu>.dropdown-menu {
    padding-left: 15px;
  }
}


.hero-section {
  background: url('../Images/home_22.jpeg') no-repeat center center/cover;
  position: relative;
  color: var(--color-bg);
  padding: 100px 0;
  width: 100%;
}

.hero-overlay {
  background-color: rgba(53, 53, 53, 0.75);
  /* background-color: rgba(6, 5, 5, 0.75); */
  /* background-color: rgba(0, 0, 0, 0.75); */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.tag {
  display: inline-block;
  padding: 5px 15px;
  background: var(--color-primary);
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-text {
  font-size: 16px;
  color: var(--color-border);
  margin-bottom: 30px;
}

.hero-buttons .btn {
  margin-right: 10px;
}

.stats span {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-light);
}

.feature-card {
  background: rgba(13, 169, 226, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  color: #ffffff;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.feature-card i {
  font-size: 30px;
  margin-bottom: 15px;
  color: #ffffff;
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 32px;
  }
}


/* main about section start  */


/* Section background and text */
.about-section {
  background-color: var(--color-bg);
  color: var(--color-text);
}

/* Heading */
.about-section h2 {
  color: var(--color-text);
}

/* Paragraph text */
.about-section p {
  color: var(--color-muted);
}

/* Stats numbers */
.about-section .text-success {
  color: var(--color-link) !important;
}

/* Stats container */
.about-section .border-top,
.about-section .border-bottom {
  border-color: var(--color-border) !important;
}

/* Buttons */
.about-section .btn-success {
  background-color: var(--color-link);
  border-color: var(--color-link);
  color: #fff;
}

.about-section .btn-success:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.about-section .btn-outline-success {
  color: var(--color-link);
  border-color: var(--color-link);
}

.about-section .btn-outline-success:hover {
  background-color: var(--color-link);
  color: #fff;
}

/* Badge box styles */
.about-section .badge-box {
  background-color: var(--color-bg);
  bottom: 20px;
  left: 20px;
}

.about-section .badge-box .icon {
  background-color: var(--color-link);
  color: #fff;
}

/* main about section End  */


/* main Service setion start  */
/* Section Base */

.services-section {
  background-color: var(--color-light);
  color: var(--color-text);
}

.section-subtitle {
  color: var(--color-primary);
  font-weight: 500;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 16px;
}

/* Service Cards */
.service-card {
  position: relative;
  background-color: var(--color-bg);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  height: 100%;
  cursor: pointer;
  z-index: 1;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  background: rgba(12, 66, 86, 0.05);
  /* subtle tinted hover */
  border: 1px solid var(--color-primary-dark);
}

.service-card .icon {
  font-size: 32px;
  color: var(--color-primary);
  transition: color 0.3s ease-in-out;
}

.service-card:hover .icon {
  color: var(--color-primary-dark);
}

.service-card .btn {
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 14px;
  background-color: var(--color-link);
  border-color: var(--color-link);
  color: #fff;
}

.service-card .btn:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

/* Bootstrap override for badge */
.service-card .badge.bg-success {
  background-color: var(--color-link) !important;
}

/* Highlighted card (adjusted bg using success palette variant) */
.highlight {
  border: 2px solid var(--color-primary);
  background-color: var(--color-success-bg);
}

/* main Service setion End  */



/* footer section style start Here  */

/* Bold Text Color */
.fw-bold {
  color: #86cde6;
}

/* Footer Main Background */
.custom-footer {
  background-color: var(--color-primary);
  color: var(--color-light);
  position: relative;
}

/* Footer Links */
.custom-footer a {
  color: var(--color-light);
  text-decoration: none;
}

.custom-footer a:hover {
  color: var(--color-muted);
  text-decoration: underline;
  padding-left: 15px;
}

/* Footer Icons */
.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-light);
  transition: 0.3s;
  font-size: 16px;
}

.footer-icon:hover {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* Footer Bottom Section */
.footer-bottom {
  background-color: var(--color-text);
  /* dark blue instead of #000 */
  color: var(--color-light);
  border-top: 1px solid var(--color-border);
}

.footer-bottom a {
  color: var(--color-link);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 36px;
  height: 36px;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  z-index: 999;
  font-size: 22px;
  transition: background 0.3s;
}

.back-to-top:hover {
  background-color: var(--color-primary-dark);
}

/* footer section style End Here  */



/* hyd Resale page style here start  */
.hyd_b_title {
  color: var(--color-primary);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hyd_b_item {
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  padding: 20px;
  border-radius: 8px;
  color: var(--color-text);
  transition: box-shadow 0.3s;
}

.hyd_b_item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.hyd_b_item i {
  color: var(--color-primary);
  margin-right: 8px;
}

.hyd_b_section {
  background: var(--color-bg);
  padding: 50px 0;
}

.hyd_b_item ul {
  padding-left: 0;
  list-style: none;
}

.hyd_b_item ul li {
  margin-bottom: 6px;
}


.hyd_b_gallery_img_wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  /* Consistent 4:3 ratio */
  overflow: hidden;
  border: 2px solid var(--color-border);
  border-radius: 6px;
  background-color: #f5f5f5;
}

.hyd_b_gallery_img_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.hyd_b_gallery_img_wrapper img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* hyd Resale page style here End  */



/* Why choose Cards style start Here  */
.choose_container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.choose_container h2 {
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.choose_container h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background-color: var(--color-primary);
  margin: 8px auto 0;
  border-radius: 2px;
}

.choose_content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.choose_card {
  background-color: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.choose_card:hover {
  transform: translateY(-5px);
}

.choose_card h3 {
  color: var(--color-primary);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.choose_card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Tablet View */
@media (max-width: 992px) {
  .choose_container h2 {
    font-size: 1.8rem;
  }

  .choose_card {
    padding: 18px;
  }
}

/* Mobile View */
@media (max-width: 576px) {
  .choose_container {
    padding: 30px 15px;
  }

  .choose_container h2 {
    font-size: 1.5rem;
  }

  .choose_card h3 {
    font-size: 1.2rem;
  }

  .choose_card p {
    font-size: 0.9rem;
  }
}


/* Why choose Cards style End  Here  */

/* CTA style start Here  */
.cta_section {
  background-color: var(--color-light);
  padding: 60px 20px;
  text-align: center;

}

.cta_section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--color-primary-dark);
}

.cta_section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--color-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta_section a {
  display: inline-block;
  padding: 14px 30px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
}

.cta_section a:hover {
  background-color: var(--color-primary-dark);
}

/* CTA style End  Here  */


/* Projects  card srction    related  style start here  */


/* Container */
.pro_det_b_container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* Title */
.pro_det_b_title {
  text-align: center;
  margin-bottom: 30px;
}

.pro_det_b_title h2 {
  font-size: 2rem;
  color: var(--color-primary);
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.pro_det_b_title h2::after {
  content: "";
  width: 50%;
  height: 3px;
  background: var(--color-primary);
  display: block;
  margin: 8px auto 0;
}

/* Grid */
.pro_det_b_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Card */
.pro_det_b_card {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.pro_det_b_card:hover {
  transform: translateY(-5px);
}

/* Image */
.pro_det_b_img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Content */
.pro_det_b_content {
  padding: 15px;
  text-align: center;
}

.pro_det_b_content h4 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
}

.pro_det_b_content p {
  margin: 0 0 15px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Button */
.pro_det_b_btn {
  display: inline-block;
  padding: 8px 15px;
  background: var(--color-primary-dark);
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.pro_det_b_btn:hover {
  background: var(--color-primary);
}

/* Projects  card srction    related  style End  here  */


/* cities Page style start here  */

.Centerium_b_city_section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.Centerium_b_title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.Centerium_b_city_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.Centerium_b_city {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 20px;
  background: #fafafa;
}

.Centerium_b_city h3 {
  margin-bottom: 10px;
  color: var(--color-primary-dark);
}




.Centerium_b_city a {
  color: #5EABD6;
  text-decoration: none;
  padding-right: 3px;

}

.Centerium_b_city a:hover {
  text-decoration: underline;
}

/* cities Page style End here  */
/* cities Resale  style Start here  */
.resale_projects_section {
  background: #f9f9f9;
  padding: 40px 20px;
}

.resale_projects_container {
  max-width: 1100px;
  margin: auto;
}

.resale_projects_container h2 {
  font-size: 2rem;
  color: #0c4256;
  margin-bottom: 25px;
  border-bottom: 2px solid #0c4256;
  padding-bottom: 8px;
}

.resale_city {
  margin-bottom: 25px;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.resale_city h3 {
  font-size: 1.4rem;
  color: #072a36;
  margin-bottom: 8px;
}

.resale_city p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.resale_city a {
  color: #088be8;
  text-decoration: none;
  font-weight: 500;
}

.resale_city a:hover {
  text-decoration: underline;
}


/* cities Resale  style ENd here  */
/* cities UNDER Contraction  style Start here  */
.uc_b_section {
  background: #f9fbfd;
  padding: 50px 20px;
}

.uc_b_container {
  max-width: 1200px;
  margin: auto;
}

.uc_b_title {
  font-size: 2rem;
  color: #0c4256;
  text-align: center;
  margin-bottom: 40px;
}

.uc_b_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.uc_b_item {
  background: #ffffff;
  border: 1px solid #dce3e8;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.uc_b_item:hover {
  transform: translateY(-3px);
}

.uc_b_item h3 {
  margin-bottom: 10px;
  color: #072a36;
}

.uc_b_item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.uc_b_item a {
  color: #0c4256;
  font-weight: bold;
  text-decoration: none;
}

.uc_b_item a:hover {
  text-decoration: underline;
}

/* cities UNder Contraction  style ENd here  */
/* cities Ready To Move   style Start here  */
.ready_b_section {
  padding: 50px 20px;
  background: #f8fafc;
  /* Slightly different from other sections */
}

.ready_b_container {
  max-width: 1200px;
  margin: auto;
}

.ready_b_title {
  font-size: 2rem;
  color: #0c3c53;
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 3px solid #0c3c53;
  display: inline-block;
  padding-bottom: 5px;
}

.ready_b_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.ready_b_item {
  background: #fff;
  border-left: 5px solid #0c3c53;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.ready_b_item:hover {
  transform: translateY(-4px);
}

.ready_b_item h3 {
  margin-bottom: 10px;
  color: #0c3c53;
}

.ready_b_item p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #444;
}

.ready_b_item a {
  font-weight: bold;
  color: #0c3c53;
  text-decoration: none;
  border-bottom: 1px solid #0c3c53;
  padding-bottom: 2px;
}

.ready_b_item a:hover {
  color: #072a36;
  border-color: #072a36;
}

@media (max-width: 992px) {
  .ready_b_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ready_b_grid {
    grid-template-columns: 1fr;
  }
}

/* cities Ready To Move   style ENd here  */





/* On top brochure btn And WhatsUp Icons  style Start Here  */
.pdf_b-fixed-btn {
  position: fixed;
  top: 140px;
  right: 20px;
  z-index: 1050;
  /* keep above other elements */
}

.pdf_b-btn-primary {
  background-color: var(--color-primary);
  border: none;
  color: var(--color-bg);
}

.pdf_b-btn-primary:hover {
  background-color: var(--color-muted);
}

.pdf_b-modal-header {
  background: var(--color-light);
  color: var(--color-link);
}

.pdf_b-form-control {
  border: 1px solid var(--color-border);
}

.pdf_b-alert-success {
  background: var(--color-success-bg);
  color: var(--color-text);
}

.pdf_b-alert-danger {
  background: var(--color-danger);
  color: #fff;
}


/* Whats up Icons */

.pdf_b-whatsapp {
  position: fixed;
  z-index: 1050;
  background-color: var(--color-primary);
  color: rgb(10, 246, 10);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-decoration: none;

  /* Pulse animation */
  animation: pdf_b-pulse 2s infinite;
}

.pdf_b-whatsapp:hover {
  background-color: var(--color-primary-dark);
  transform: scale(1.1);
}

/* Desktop: Top Right */
@media (min-width: 768px) {
  .pdf_b-whatsapp {
    top: 120px;
    right: 20px;
  }
}

/* Mobile: Middle Right */
@media (max-width: 767px) {
  .pdf_b-whatsapp {
    bottom: 5%;
    left: 15px;
    transform: translateY(-50%);
  }
}

/* Pulse animation */
@keyframes pdf_b-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(12, 66, 86, 0.6);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(12, 66, 86, 0);
    transform: scale(1.05);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(12, 66, 86, 0);
    transform: scale(1);
  }
}

/* On top brochure btn And WhatsUp Icons  style End Here  */

/* tool tip style here start   */

/* Price text */
.price-tip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  color: #108ab6;
  font-weight: 800;
}

/* Tooltip bubble (beside text, not above) */
.price-tip .tooltip {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
  position: absolute;
  left: 110%;
  /* beside the text */
  top: 50%;
  transform: translateY(-50%);
  background: #0c4256;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 14px;
  z-index: 99;
  font-weight: 600;
}

/* Tooltip arrow */
.price-tip .tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -6px;
  border: 6px solid transparent;
  border-right-color: #111;
}

/* Tooltip link */
.price-tip .tooltip a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.price-tip .tooltip a:hover {
  text-decoration: underline;
}

/* Show on hover (desktop) */
.price-tip:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* tool tip style here End  */



/* all Hero Section  Start  */
.all_h_hero_sec {
  height: 50vh;
  /* Half screen height */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Full overlay background */
.all_h_hero_sec {
  height: 60vh;
  /* 50% screen height */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.all_h_hero_sec_content {
  max-width: 800px;
  padding: 20px;
}

.all_h_hero_sec_title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
  /* White text for contrast */
  font-weight: 800;
}

.all_h_hero_sec_para {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
}

.all_h_hero_sec_btn {

  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  background: var(--color-link);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.all_h_hero_sec_btn a {
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.all_h_hero_sec_btn:hover {
  background: var(--color-primary-dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .all_h_hero_sec_title {
    font-size: 1.8rem;
  }

  .all_h_hero_sec_para {
    font-size: 0.95rem;
  }
}

/* all Hero Section  End */