/* ----------------------------------------------
   ✅ Import Fonts
----------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

/* ----------------------------------------------
   ✅ Base / Reset
----------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #000;
}

html {
    scroll-padding-top: 100px;
}


#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

/* ----------------------------------------------
   ✅ Navbar Styling
----------------------------------------------- */
.navbar {
  background-color: #fff;
  padding: 20px 40px;
  z-index: 1000;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
  margin: 0;
  font-size: 16px;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.divider {
  color: #999;
  font-size: 18px;
}

/* Navbar Fade-in Animation */
.navbar {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.navbar.show {
  opacity: 1;
  transform: translateY(0);
}

/* Active Nav Link Highlighting */
.navbar-nav .nav-item .nav-link.active {
    color: #008cd1 !important;
    font-weight: 700 !important;
    position: relative;
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 100%;
  background-color: #008cd1;
}

.divider {
  font-size: 30px; /* bigger text */
  color: #ccc;     /* optional lighter color */
}

.logo-img {
    height: 45px; /* Adjust as needed */
    width: auto;
    max-width: 100%;
    image-rendering: auto;
}







/* ----------------------------------------------
   ✅ Buttons Styling (shared)
----------------------------------------------- */
.btn-primary {
  background-color: #008cd1;
  border-color: #008cd1;
  font-weight: 500;
  padding: 10px 20px;
}

.btn-primary:hover {
  background-color: #0071aa;
  border-color: #0071aa;
}

.btn-outline-primary {
  border-color: #008cd1;
  color: #008cd1;
  font-weight: 500;
  padding: 10px 20px;
}

.btn-outline-primary:hover {
  background-color: #008cd1;
  color: #fff;
}

.btn-dark {
  background-color: #000;
  border: none;
  padding: 10px 20px;
  font-weight: 500;
}

.btn-dark:hover {
  background-color: #222;
}










/* ----------------------------------------------
   ✅ Spacer Utility (pushes content under navbar)
----------------------------------------------- */
.spacer {
  height: 60px;
}









/* ----------------------------------------------
   ✅ Fade In Animation
----------------------------------------------- */

.fade-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

    .fade-slide-up.show {
        opacity: 1;
        transform: translateY(0);
    }




/* ----------------------------------------------
   ✅ Section Styling
----------------------------------------------- */

.section {
    padding: 60px 0;
}

    .section:last-of-type {
        padding-bottom: 40px;
    }



@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }

        .section:last-of-type {
            padding-bottom: 10px;
        }
}





/* ----------------------------------------------
   ✅ Hero Section (Desktop / Base Styles)
----------------------------------------------- */

/* ----------------------------------------------
   ✅ HERO SECTION STYLING (Updated for consistency)
----------------------------------------------- */
.hero {
    background-color: white;
    overflow: hidden;
    padding: 80px 0 0;
    position: relative;
}

.hero-text {
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
}

.headline {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
}

    .headline .highlight {
        color: #008cd1;
    }

.hero p {
    font-size: 16px;
    margin-top: 20px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

    .hero-buttons .btn {
        font-size: 16px;
        padding: 12px 24px;
        font-weight: 500;
    }

.hero-image-container {
    position: relative;
    justify-content: flex-end;
    display: flex;
    padding-right: 0;
}

.hero-laptop-final {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
    z-index: 2;
}

.hero-arch-ring {
    position: absolute;
    top: 0;
    right: 0;
    width: 1000px;
    height: auto;
    max-width: none;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
    transform: translateY(-25%); /* Pull it higher so it stays above industries */
}

/* Mobile tweak */
@media (max-width: 768px) {
    .hero-arch-ring {
        width: 600px;
        transform: translateY(-20%);
        right: -50px;
        opacity: 0.12;
    }
}


@media (max-width: 768px) {

    .hero-arch-ring {
        width: 500px;
        top: 0;
        right: 0;
        transform: translateY(-20%);
        opacity: 0.12;
    }


    .hero {
        padding: 20px 0 0;
    }

    .headline {
        font-size: 32px;
        text-align: left;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-image-container {
        justify-content: flex-end;
        padding: 0;
        margin-top: -10px;
    }

    .hero-laptop-final {
        width: 100vw;
        max-width: none;
        margin-right: -15px;
    }

    .hero-arch-ring {
        opacity: 0;
    }
}


/* ----------------------------------------------
   ✅ INDUSTRIES SECTION STYLING (Updated)
----------------------------------------------- */
#industries {
    background-color: #008cd1;
    padding: 60px 15px 40px;
    overflow: hidden;
    z-index: 1;
}

.industries-inner-container {
    text-align: center;
}

    .industries-inner-container h2.fw-bold {
        color: #fff;
        font-size: 36px;
        margin-bottom: 30px;
    }

.industries-carousel-wrapper {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    justify-content: center;
    display: flex;
    align-items: center;
}

.industries-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    gap: 20px;
}

.industry-card {
    min-width: 280px;
    max-width: 300px;
    background-color: transparent;
    color: white;
    border: 1px solid #fff;
    border-radius: 10px;
    flex-shrink: 0;
    padding: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .industry-card:hover {
        background-color: #000;
        transform: scale(1.03);
    }

.industries-carousel-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-size: 25px;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease;
}

    .industries-carousel-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.left-btn {
    margin-right: 8px;
}

.right-btn {
    margin-left: 8px;
}

@media (max-width: 768px) {
    #industries {
        padding: 40px 0 20px;
    }

    .industries-inner-container h2.fw-bold {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

    .industries-carousel {
        gap: 10px;
        padding: 10px 16px; /* Add horizontal padding to prevent cut-off */
    }

    .industry-card {
        min-width: 240px;
        max-width: 260px;
        padding: 15px;
        margin: 0 6px; /* spacing between cards */
    }
}


section:not(.show) {
    height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    visibility: hidden !important;
}









/* ----------------------------------------------
   ✅ About Section
----------------------------------------------- */
.about-images-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-top-row,
.about-bottom-row {
  display: flex;
  gap: 20px;
}

.about-top-image {
  width: 50%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.about-bottom-row {
  margin-left: 40px; /* ⬅️ This causes the bottom row to be shifted */
}

.about-bottom-image {
  width: 45%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* ✅ Mobile Responsive */
@media (max-width: 767.98px) {
  .about-top-row,
  .about-bottom-row {
    flex-direction: column;
    margin-left: 0;
  }

  .about-top-image,
  .about-bottom-image {
    width: 100%;
  }
}



/* ----------------------------------------------
   ✅ Features Section
----------------------------------------------- */

.features-section {
  background-color: white;
  padding-top:40px;
}

.section-subtitle {
  color: #008cd1;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h2.section-title.Use-Cases {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #000; /* or any color you want */
    text-align: left;
    margin-bottom: 10px;
}

.section-description {
  font-size: 16px;
  color: #555;
  max-width: 600px;
}


/* ----------------------------------------------
   ✅ Features Carousel Section 
----------------------------------------------- */

/* ✅ Features Carousel Section */
.features-carousel-section {
  background-color: #008cd1;
  padding: 0px 20px;
}

/* ✅ Features Carousel Wrapper */
.features-carousel-wrapper {
  position: relative;
}

/* ✅ Carousel Track */
.features-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
}

/* ✅ Hide scrollbar for a clean look */
.features-carousel::-webkit-scrollbar {
  display: none;
}

/* ✅ Individual Feature Card */
.feature-card {
  flex: 0 0 320px; /* Fixed width for desktop */
  min-height: 320px;
  max-height: 360px;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 10px;
  text-align: center;
  color: white;
  padding: 20px;
  margin: 0 10px; /* Breathing room between cards */
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* ✅ Hover Effect on Cards */
.feature-card:hover {
  background-color: #000;
  border-color: #ffffff;
  color: #ffffff;
}

/* ✅ Feature Icon inside Card */
.feature-icon {
  font-size: 33px;
  margin-bottom: 10px;
}

/* ✅ Carousel Buttons */
.features-carousel-btn {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 25px;
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.2s ease;
}

/* ✅ Button Hover Effect */
.features-carousel-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ✅ Left and Right Button Positioning */
.features-carousel-btn.left-btn {
  left: 10px;
}

.features-carousel-btn.right-btn {
  right: 10px;
}

/* ✅ Mobile Adjustments */
@media (max-width: 768px) {
  .features-carousel {
    padding: 10px 0;
  }

  .feature-card {
    flex: 0 0 240px; /* ✅ Smaller card width */
    min-height: 260px;
    max-height: 300px;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 10px;
    text-align: center;
    color: white;
    padding: 15px; /* ✅ Smaller padding */
    margin: 0 5px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }

  .feature-card h5 {
    font-size: 18px; /* ✅ Smaller heading */
    margin-bottom: 8px;
  }

  .feature-card p {
    font-size: 14px; /* ✅ Smaller paragraph */
    line-height: 1.5;
  }

  .feature-icon img {
    width: 50px; /* ✅ Smaller icon */
    height: 50px;
    margin-bottom: 10px;
  }

  .features-carousel-btn {
    font-size: 18px; /* ✅ Smaller arrow */
    padding: 5px 8px;
    border-width: 1px;
    top: 45%; /* ✅ Center better */
  }

  .features-carousel-btn.left-btn {
    left: -15px; /* ✅ Move button farther left */
  }

  .features-carousel-btn.right-btn {
    right: -15px; /* ✅ Move button farther right */
  }
}

.features-carousel {
  scroll-behavior: smooth; /* ✅ Smooth native scrolling */
  scroll-snap-type: x mandatory;
}

.feature-card {
  scroll-snap-align: start;
}


/* ✅ Hide carousel buttons on Desktop */
@media (min-width: 992px) {
  .features-carousel-btn {
    display: none;
  }
}




/* ----------------------------------------------
   ✅ Use cases section
----------------------------------------------- */
/* --- General --- */
.use-cases {
    padding: 130px 20px;
    background-color: #f9f9f9;
}

.use-cases-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000 !important;
    text-align: left;
}

.section-subtitle {
    font-size: 20px;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
}

/* Intro Paragraph with Line */
.use-cases-intro {
    background-image: url('./imgs/UseCases/bgImage.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    margin-top: 40px;
    margin-bottom: 60px;
    color: white;
    border-radius: 10px;
}

.intro-paragraph {
    font-size: 18px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}

    .intro-paragraph::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background-color: white;
    }

/* --- Use Cases List --- */
.use-cases-list {
    margin-top: 40px;
}

.use-case-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.use-case-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .use-case-row.reverse {
        flex-direction: row-reverse;
    }

    .use-case-row:hover {
        transform: translateY(-5px);
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
    }

.use-case-text {
    flex: 1;
    padding: 20px;
}

.use-case-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.use-case-description {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.use-case-image {
    flex: 0 0 300px;
    text-align: center;
}

    .use-case-image img {
        width: 250px;
        height: 250px;
        object-fit: cover;
        border-radius: 50%;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    }

/* --- Responsive Mobile --- */
@media (max-width: 768px) {
    .use-case-row,
    .use-case-row.reverse {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .use-case-text {
        padding: 0;
    }

    .use-case-title {
        font-size: 24px;
    }

    .use-case-description {
        font-size: 16px;
    }

    .use-case-image img {
        width: 180px;
        height: 180px;
        margin-top: 20px;
    }

    .section-subtitle {
        font-size: 18px;
        padding: 0 10px;
    }

    .intro-paragraph {
        padding-left: 20px;
        font-size: 16px;
    }
}




/* ----------------------------------------------
   ✅ Enquiries Section
----------------------------------------------- */
.enquiries-header {
    background: #ffffff;
    padding: 80px 20px 40px;
    text-align: left;
}

    .enquiries-header .header-small-title {
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #0b87c9;
        margin-bottom: 10px;
    }

    .enquiries-header .header-main-title {
        font-size: 38px;
        font-weight: 700;
        color: #222;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .enquiries-header .header-subtitle {
        font-size: 18px;
        color: #000;
        max-width: 600px;
    }

.enquiries-contact {
    background: url('/Dmp/imgs/Enquiries/Group-6.png') center center/cover no-repeat, #0b87c9;
    padding: 60px 20px;
}

.enquiries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.enquiry-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 20px;
    text-align: center;
    color: #fff;
    width: 300px;
    border-radius: 8px;
}

.enquiry-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.enquiry-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.enquiry-divider {
    border: 1px solid #fff;
    width: 50px;
    margin: 10px auto;
}

.enquiry-info {
    font-size: 16px;
    margin-top: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .enquiries-header {
        text-align: center;
        padding: 80px 20px 30px;
    }

        .enquiries-header .header-main-title {
            font-size: 30px;
        }

    .enquiries-grid {
        flex-direction: column;
        align-items: center;
    }

    .enquiry-card {
        width: 90%;
    }
}




/* ----------------------------------------------
   ✅ Insights section
----------------------------------------------- */
.insights-content {
    background: #fff;
}

/* Insights Header (blue background) */
.insights-header {
    text-align: left;  
    margin-bottom: 60px;
    color: #fff;
    height:200px;
    background:url(/Dmp/imgs/Enquiries/Group-6.png)
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    color: #FFF; /* ✅ Force text color white */
    margin-top: 50px;
}

/* Insights List (articles) */
.insights-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.insight-item {
    background: white;
    width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

    .insight-item img {
        width: 100%;
        height: auto;
        display: block;
    }

.insight-title {
    font-size: 18px;
    font-weight: 600;
    padding: 15px 10px;
    color: #000;
}

/* Hover Effect */
.insight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}


.insight-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.insight-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .insight-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }


/* Responsive for Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .insights-list {
        flex-direction: column;
        align-items: center;
    }

    .insight-item {
        width: 90%;
    }
}




/* ----------------------------------------------
   ✅ Property Management Section
----------------------------------------------- */
/* General Utilities */
.text-center {
    text-align: center;
}

/* Top Header Background */
.property-management-header {
    position: relative;
    background: url('/Dmp/imgs/Enquiries/Group-6.png') center center/cover no-repeat;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
    width: 100%;
    overflow: hidden;
}

    .property-management-header::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
    }

.header-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.header-small-title {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.header-main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.header-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: #f0f0f0;
}

/* Challenges Section */
.property-block {
    margin-bottom: 40px;
    color: #555;
}

.block-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #555;
}

.block-buttons {
    margin: 20px 0;
}

.property-btn {
    background-color: #0b87c9;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 180px;
    text-transform: capitalize;
}

    .property-btn .icon {
        margin-right: 8px;
        font-size: 18px;
    }

    .property-btn:hover {
        background-color: #096fa9;
        transform: translateY(-2px);
    }

.property-divider {
    width: 40%;
    margin: 20px auto;
    border-top: 1px solid #dcdcdc;
}

/* Blue Background Section */
.blue-background {
    background-color: #0b87c9;
    color: white;
    padding: 60px 20px;
    width: 100%;
}

.blue-section-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.blue-section-column {
    flex: 1 1 45%;
    min-width: 250px;
    text-align: left;
}

.blue-section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.blue-column-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

.blue-column-list {
    list-style: disc;
    padding-left: 20px;
    font-size: 16px;
}

.blue-divider {
    width: 1px;
    background-color: white;
    height: auto;
    min-height: 200px;
}


/* Mobile Fixes */
@media (max-width: 768px) {
    .blue-section-grid {
        flex-direction: column;
        align-items: center;
    }

    .blue-divider {
        display: none;
    }

    .blue-section-title {
        text-align: center;
        font-size: 24px;
        margin-bottom: 20px;
    }
}


/* Light Grey Background */
.light-grey-background {
    background-color: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
    width: 100%;
}

.grey-section-title {
    color: #4a4a4a;
    font-weight: 700;
    font-size: 24px;
}

/* Key Impact Section */
.property-impact-section {
    background: #fff;
    padding: 60px 20px;
}

.impact-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.property-impact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.impact-item {
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    width: 280px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

    .impact-item:hover {
        transform: translateY(-5px);
    }

.impact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .impact-icon svg {
        width: 50px;
        height: 50px;
        stroke: #0b87c9;
    }

.impact-item-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.impact-item-description {
    font-size: 15px;
    color: #666;
}

/* CTA Section */
.property-cta-section {
    background: #221f1f;
    color: #fff;
    padding: 60px 20px;
    width: 100%;
}

.cta-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 16px;
    color: #dcdcdc;
    margin-bottom: 25px;
}

.btn-cta {
    background-color: #0b87c9;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

    .btn-cta:hover {
        background-color: #096fa9;
    }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .property-management-header {
        height: 250px;
        padding: 30px 15px;
    }

    .header-main-title {
        font-size: 26px;
    }

    .header-subtitle {
        font-size: 15px;
    }

    .blue-section-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .blue-section-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .blue-divider {
        display: none;
    }

    .property-btn {
        min-width: 100%;
    }

    .impact-item {
        width: 90%;
    }
}




/* ----------------------------------------------
   ✅ Oil & GasSection
----------------------------------------------- */
/* Oil & Gas Top Header */


.oilgas-header {
    position: relative;
    background: url('/Dmp/imgs/Enquiries/Group-6.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
    overflow: hidden;
    width: 100%;
    z-index: 0; /* Important: allows ::after to sit below content */
}



    .oilgas-header::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .oilgas-header .header-content {
        position: relative;
        z-index: 2;
        max-width: 1000px;
    }

    .oilgas-header .header-small-title {
        font-size: 16px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .oilgas-header .header-main-title {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;
    }

@media (max-width: 768px) {
    /* Oil & Gas header adjustments */
    .oilgas-header {
        height: 250px;
        padding: 30px 15px;
    }

        .oilgas-header .header-main-title {
            font-size: 26px;
        }

    .blue-section-grid {
        flex-direction: column;
        align-items: center;
        gap: 0; /* remove unnecessary gaps */
    }

    .blue-section-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .blue-divider {
        display: none;
    }

    .impact-item {
        width: 90%;
        margin-bottom: 20px;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
    }
}



/* ----------------------------------------------
   ✅ Public sector Section
----------------------------------------------- */
.publicsector-header {
    position: relative;
    background: url('/Dmp/imgs/Enquiries/Group-6.png') center center/cover no-repeat;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
    width: 100%;
    overflow: hidden;
}

    .publicsector-header::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .publicsector-header .header-content {
        position: relative;
        z-index: 2;
        max-width: 1000px;
    }

.publicsector-hero-img {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

    .publicsector-hero-img img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .publicsector-header {
        height: 250px;
        padding: 30px 15px;
    }

        .publicsector-header .header-main-title {
            font-size: 26px;
        }

    .blue-section-grid {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .blue-section-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .blue-divider {
        display: none;
    }

    .impact-item {
        width: 90%;
        margin-bottom: 20px;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
    }
}


/* ----------------------------------------------
   ✅ manufacturing Section
----------------------------------------------- */
.manufacturing-header {
    position: relative;
    background: url('/Dmp/imgs/Enquiries/Group-6.png') center center/cover no-repeat;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
    overflow: hidden;
    width: 100%;
}

    .manufacturing-header::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .manufacturing-header .header-content {
        position: relative;
        z-index: 2;
        max-width: 1000px;
    }

/* Responsive fixes */
@media (max-width: 768px) {
    .manufacturing-header {
        height: 250px;
        padding: 30px 15px;
    }

        .manufacturing-header .header-main-title {
            font-size: 26px;
        }

    .blue-section-grid {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .blue-section-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .blue-divider {
        display: none;
    }

    .impact-item {
        width: 90%;
        margin-bottom: 20px;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
    }
}


/* ----------------------------------------------
   ✅ manufacturing Section
----------------------------------------------- */
.facilitymanagers-header {
    position: relative;
    background: url('/Dmp/imgs/Enquiries/Group-6.png') center center/cover no-repeat;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
    overflow: hidden;
    width: 100%;
}

    .facilitymanagers-header::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .facilitymanagers-header .header-content {
        position: relative;
        z-index: 2;
        max-width: 1000px;
    }

/* Responsive layout */
@media (max-width: 768px) {
    .facilitymanagers-header {
        height: 250px;
        padding: 30px 15px;
    }

        .facilitymanagers-header .header-main-title {
            font-size: 26px;
        }

    .blue-section-grid {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .blue-section-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .blue-divider {
        display: none;
    }

    .impact-item {
        width: 90%;
        margin-bottom: 20px;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
    }
}



/* ----------------------------------------------
   ✅ Smart Cities section
----------------------------------------------- */
/* Insights Header (blue background) */
.blog-header {
    background: url('/Dmp/imgs/Enquiries/Group-6.png') center center/cover no-repeat;
    text-align: left;
    padding: 80px 20px;
    margin-bottom: 60px;
    color: white;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    padding: 15px 10px;
    color: #fff;
}


/* Blog Banner */
.blog-banner {
    background: #0b87c9;
    padding: 20px;
    color: #fff;
    font-size: 18px;
}

    .blog-banner .banner-text {
        margin: 0;
    }

/* Blog Main Layout */
.blog-content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 30px;
}

/* Main Content */
.blog-main {
    flex: 1 1 65%;
}

.blog-hero-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.blog-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-subheading {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
}

.blog-main p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.blog-main ul {
    padding-left: 20px;
}

    .blog-main ul li {
        margin-bottom: 10px;
    }

/* Sidebar */
.blog-sidebar {
    flex: 1 1 30%;
}

    .blog-sidebar h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
    }

.sidebar-divider {
    width: 50px;
    border: 1px solid #0b87c9;
    margin-bottom: 20px;
}

.related-card {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    color: #008cd1;
}

    .related-card img {
        width: 80%;
        border-radius: 6px;
        margin-bottom: 10px;
    }

    .related-card p {
        font-size: 16px;
        color: #333;      
    }

.related-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .related-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }



/* Responsive Layout */
@media (max-width: 768px) {
    .blog-content {
        flex-direction: column;
    }

    .blog-main, .blog-sidebar {
        width: 100%;
    }

    .blog-title {
        font-size: 26px;
    }
}











/* ----------------------------------------------
   ✅ Footer Section
----------------------------------------------- */
.footer-section {
  background-color: #005785;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.footer-title {
  font-weight: 700;
  border-bottom: 1px solid #fff;
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links li a {
  color: #fff;
  text-decoration: none;
}

.footer-links li a:hover {
  text-decoration: underline;
}

.footer-social i {
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

.footer-social i:hover {
  opacity: 0.7;
}

.footer-copy {
  font-size: 13px;
}

.footer-legal a {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.footer-legal span {
  color: #fff;
}

.footer-logo img {
  max-height: 40px;
}

/* ----------------------------------------------
   ✅ Responsive Adjustments
----------------------------------------------- */
@media (max-width: 991.98px) {
  .hero {
    margin-bottom: 0;
  }

  .hero-arch-ring {
    width: 300px;
    left: -50px;
    top: 0;
  }

  .hero-laptop-final {
    max-width: 90%;
    margin-top: 20px;
    margin-right: 0;
  }

  .industry-card {
    min-width: 260px;
    margin: 0 6px;
  }

  .carousel-btn {
    font-size: 20px;
    padding: 4px 10px;
  }
}









#bookDemoModal .modal-content {
    background-color: #008cd1;
    color: white; /* ensure text is still visible */
    border-radius: 8px; /* match your older style */
}


/* Book Demo Form Panel */

* {
    box-sizing: border-box;
}

/* Optional: Field Error Styling */
input.error,
select.error,
textarea.error {
    border: 1px solid red;
    background: #ffe6e6;
}

/* Error Message */
.error-message {
    color: #dc3545; /* Bootstrap's danger red */
    font-size: 0.875em;
    margin-top: 5px;
    font-weight: normal;
    line-height: 1.4;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); /* ✅ subtle shadow for clarity */
}


/* Required Note */
.required-note {
    font-size: 14px;
    color: #eee;
    margin-bottom: 20px;
    text-align: left;
}

/* Asterisk Styling */
.asterisk {
    color: red;
    margin-left: 2px;
}


/* Optional: Improve button size and hover */
.btn-dark {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
}

    .btn-dark:hover {
        background-color: #000;
    }




.btn-outline-light {
    color: white;
    border-color: white;
}

    .btn-outline-light:hover {
        background-color: rgba(255, 255, 255, 0.2);
        color: white;
    }
























































