  
  .main-header {
    position: absolute;
    width: 100%;
    background: linear-gradient(0deg, transparent, rgba(0, 0, 0, 8));
    box-shadow: none;
    transition: all 0.3s ease;
}

/* MENU TEXT WHITE */
/* .main-header .navigation li a {
    color: #fff;
} */

/* ICON WHITE */
.main-header .icon-btn {
    color: #fff;
}

/* SCROLL = FULL BLACK */
.main-header.scrolled {
    position: fixed;
    top: 0;
    background: #000; /* full black */
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* BUTTON */
.main-header .contact-btn {
    color: #000;
    background: #fff;
    border-color: #fff;
}

/* OPTIONAL HOVER */
.main-header.scrolled .navigation li a:hover {
    color: #ccc;
}
  
  /* Dark overlay */
    .flat-slider .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.50);
        /* black overlay */
        z-index: 1;
    }

    .banner-inner {
        position: relative;
        z-index: 2;
        min-height: 80vh;
    }
.search-box {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 12px;
  border-radius: 60px;

  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* SEARCH FIELD */
.search-field {
  flex: 2;
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;
  border-radius: 40px;
  background: #f5f6f7;
}

.search-field input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
}
.search-input {
        display: flex;
        align-items: center;
        flex: 2;
        padding: 0 15px;
    }

    .search-input i {
        margin-right: 8px;
        color: #999;
    }

    .search-input input {
        border: none;
        outline: none;
        width: 100%;
        font-size: 15px;
    }
.search-box .search-field {
  padding: 5px 4px;
  padding-left: 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  border: 1px solid #e4e4e4;
  color: #5c6368;
  background-color: #ffffff;
}
.search-box .search-field::placeholder {
  color: #5c6368;
}
.search-box .search-field:focus {
  border-color: #000000;
}
    /*  GLASS CARD */
    .banner-content-box {
        max-width: 780px;
        margin: auto;
        padding: 20px 40px;
        border-radius: 18px;

        /* background: rgba(0, 0, 0, 0.45); */
        backdrop-filter: blur(14px);

        border: 1px solid rgba(255, 255, 255, 0.08);

        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    /* SMALL TAG */
    .tag {
        font-size: 20px;
        letter-spacing: 3px;
        color: #d9c496;
        display: block;
        margin-bottom: 15px;
    }

    /* HEADING */
    .banner-content-box h1 {
        font-size: 54px;
        font-weight: 300;
        color: #fff;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    /* TEXT */
    .banner-content-box p {
        font-size: 30px;
        opacity: 1;
        font-weight: 700;
        color: #fff;
        margin-bottom: 30px;
    }

    /*  GOLD BUTTON */
    .btn-gold {
        background: #000;
        color: #fff;
        padding: 12px 30px;
        font-weight: 600;
        border-radius: 6px;
        text-decoration: none;
        transition: 0.3s;
    }

    .btn-gold:hover {
        /* background: linear-gradient(135deg, #d9c496, #d9c496); */
        transform: translateY(-2px);
    }

    .price-box {
        display: flex;
        justify-content: space-between;
        align-items: center;

        margin: 20px auto 0;
        max-width: 900px;

        padding: 5px 20px;
        border-radius: 14px;

        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);

        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    /* ITEMS */
    .price-item {
        flex: 1;
        text-align: center;
        color: #fff;
    }

    .price-item .type {
        font-size: 16px;
        letter-spacing: 2px;
        opacity: 0.8;
        margin-bottom: 0px;
    }

    .price-item h4 {
        font-size: 20px;
        margin: 5px 0;
        color: #fff;
    }

    .price-item h3 {
        color: #d9c496;
        font-size: 24px;
        font-weight: 600;
    }

    /* DIVIDER */
    .divider {
        width: 1px;
        height: 100px;
        background: rgba(255, 255, 255, 0.3);
    }

    /* MOBILE OPTIMIZATION */
    @media (max-width: 768px) {

        .banner-content-box {
            padding: 30px 20px;
            border-radius: 12px;
            margin: 0 10px;
            /* space from sides */
        }



        .banner-content-box h1 {
            font-size: 30px;
            line-height: 1.3;
        }

        .banner-content-box p {
            font-size: 20px;

        }

        .tag {
            font-size: 11px;
            letter-spacing: 2px;
        }

        .btn-gold {
            width: 100%;
            padding: 12px;
            font-size: 14px;
        }

        .banner-inner {
            padding: 40px 0;
            align-items: center !important;
        }
    }

    @media (max-width: 768px) {

        .price-box {
            flex-direction: column;
            gap: 15px;
            padding: 20px 15px;
        }

        .divider {
            width: 60%;
            height: 1px;
        }

        .price-item h3 {
            font-size: 20px;
        }
    }
     /* Dark overlay */
                .flat-slider .overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: rgba(0, 0, 0, 0.50);
                    /* black overlay */
                    z-index: 1;
                }

                /* Content */
                .slider-content {
                    position: relative;
                    z-index: 2;
                }

                /* Heading Style */
                .main-heading {
                    font-size: 48px;
                    font-weight: 700;
                    letter-spacing: 1px;
                    color: #fff;
                }

                /* Subheading */
                .sub-heading {
                    font-size: 18px;
                    opacity: 0.8;
                }

                /* Button */
                .btn-primary {
                    background: #000000;
                    border: none;
                    padding: 12px 30px;
                    font-weight: 500;
                }

                .btn-primary:hover {
                    background: #000000;
                }

                 .property-search-bar {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 15px 0;

  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* MAIN BOX */
.search-box {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 12px;
  border-radius: 60px;

  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* SEARCH FIELD */
.search-field {
  flex: 2;
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;
  border-radius: 40px;
  background: #f5f6f7;
}

.search-field input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
}

/* FILTERS */
.filters {
  flex: 3;
  display: flex;
  gap: 10px;
}

.filters select {
  flex: 1;
  padding: 10px 15px;
  border-radius: 40px;
  border: none;
  background: #f5f6f7;
  cursor: pointer;
}

/* BUTTON */
/* MOBILE BUTTON */
.mobile-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f5f6f7;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* MOBILE */
@media(max-width:768px){

  .search-box {
    flex-wrap: wrap;
    border-radius: 20px;
  }

  .filters {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .filters.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .search-field {
    width: calc(100% - 55px);
  }
}
@media(max-width:768px){

  .search-box {
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
    gap: 10px;
  }

  /* SEARCH FULL WIDTH */
  .search-field {
    width: 100%;
  }

  /* FILTERS FULL WIDTH */
  .filters {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .filters.active {
    display: flex;
  }

  /* DROPDOWNS FULL WIDTH */
  .filters select {
    width: 100%;
  }

  /* BUTTON FULL WIDTH */
  .search-btn {
    width: 100%;
  }

  /* TOGGLE BUTTON RIGHT SIDE */
  .mobile-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 18px;
  }

  /* FIX OVERLAP */
  .search-box {
    position: relative;
  }

}


/* TITLE */
.dev-title {
  font-size: 29px;
  font-weight: 700;
}

.dev-count {
  color: #777;
}

/* SEARCH */
.searched-box {
  position: relative;
  width: 280px;
}

.searched-box input {
  width: 100%;
  height: 48px;
  border-radius: 50px;
  border: 1px solid #eee;
  padding: 0 20px 0 45px;
  background: #f9fafc;
  outline: none;
  transition: 0.3s;
}



.searched-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #999;
  font-size: 14px;
}

/* FILTER */
.filter-boxed select {
    height: 50px;
    border-radius: 50px;
    padding: 1px 100px;
    border: 1px solid #eee;
    background: #f9fafc;
    outline: none;
    transition: 0.3s;
}


/* CARDS */
.dev-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.dev-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* MOBILE */
@media(max-width:768px){
  .searched-box {
    width: 100%;
  }
}

   .developer-hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../images/banner/about-us-banner.jpg') center/cover no-repeat;
  z-index: 1;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 2;
}

/* CONTENT */
.developer-hero .container {
  position: relative;
  z-index: 3;
}

/* GLASS CARD */
.dev-card-glass {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* LOGO */
.dev-logo {
  background: #fff;
  color: #000;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* TEXT */
.dev-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* CONTACT */
.dev-contact {
  margin-bottom: 10px;
}

/* BUTTONS */
.dev-buttons {
  display: flex;
  gap: 10px;
}

.btn-contact {
  background: #fff;
  color: #000;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-contact i {
  margin-right: 6px;
}

.btn-contact:hover {
  background: #000000;
  color: #fff;
}

/* MOBILE */
@media(max-width:768px){
  .developer-hero {
    height: 80vh;
    
  }
}

.footer-propsense {
    background: #000000;
    color: #ccc;
    padding: 40px;
    font-family: 'Poppins', sans-serif;
    
}

.footer-propsense hr {
    border-color: rgb(255, 255, 255);
    margin: 30px 0;
}

/* TOP */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    max-width: 275px;
}

.footer-contact {
    display: flex;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    font-size: 22px;
    color: #ffffff;
}

.contact-item span {
    font-size: 13px;
    color: #aaa;
}

.contact-item h6 {
    margin: 0;
    color: #fff;
    font-weight: 600;
}

/* MAIN */
.footer-main h5 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-main ul {
    list-style: none;
    padding: 0;
}

.footer-main ul li {
    margin-bottom: 10px;
}

.footer-main ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-main ul li a:hover {
   
    padding-left: 5px;
}

/* NEWSLETTER */
.footer-text {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-input {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-btn {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.footer-btn:hover {
    background: #ffffff;
}

.checkbox {
    margin-top: 10px;
    font-size: 12px;
    color: #aaa;
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: #fff;
    margin-left: 10px;
    width: 35px;
    height: 35px;
    border: 1px solid #444;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ffffff;
    border-color: #ffffff;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .footer-top,
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
    }
}
.footer-contact-info p {
    margin: 6px 0;
    font-size: 14px;
}

.footer-contact-info i {
    color: #ffffff;
    margin-right: 8px;
}

.footer-contact-info a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact-info a:hover {
    color: #ffffff;
}

.footer-about-text {
    font-size: 14px;
    color: #ccc;
    line-height: 1.7;
    margin-top: 10px;
}

.brochure-btn {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    
}

.brochure-btn i {
    font-size: 16px;
}

.payment-btn {
    font-size: 14px;
    padding: 7px 16px;
    border: 1px solid #ffffff;
    border-radius: 6px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.payment-btn:hover {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.price-section {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}

.price-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.price-table {
    width: 100%;
    border: 1px solid #ddd;
}

/* HEADER */
.table-head {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    background: #000000;
    color: #fff;
    font-weight: 600;
}

.table-head div {
    padding: 15px;
    border-right: 1px solid rgba(255,255,255,0.4);
}

/* ROWS */
.table-row {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    background: #eaeaea;
    border-top: 1px solid #dcdcdc;
}

.table-row div {
    padding: 15px;
    border-right: 1px solid #dcdcdc;
}

/* REMOVE LAST BORDER */
.table-head div:last-child,
.table-row div:last-child {
    border-right: none;
}

.floor-btn {
    font-size: 14px;
    padding: 7px 16px;
    border-radius: 6px;
    border: 1px solid #fff;
    transition: 0.3s ease;
    background: #000;
    color: #fff;
}

.floor-btn:hover {
    background: #000000;
    color: #fff;
    border: 1px solid #fff;
}

.advisor-card {
    background: #000;
    border-radius: 16px;
    padding: 50px 20px 25px;
    position: relative;
    color: #fff;
    overflow: hidden;
}

/* IMAGE */
.advisor-img {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.advisor-img img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #fff;
}

/* CONTENT */
.advisor-content {
    margin-top: 60px;
}

.advisor-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

.called-btn {
    background: #fff;
    color: #333;
    padding: 10px 18px;
    margin: 10px;
    border-radius: 8px;
}

.whatsapp-btn {
    background: #008000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
}

.advisor-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

.advisor-lang i {
    font-size: 16px;
}

.custom-pagination .page-link {
    border: none;
    color: #333;
    padding: 8px 14px;
    margin: 0 4px;
    border-radius: 6px;
    transition: 0.3s;
}

.custom-pagination .page-item.active .page-link {
    background: #000000;
    color: #fff;
}

.custom-pagination .page-link:hover {
    background: #f1f1f1;
}

.breadcrumb-section {
    padding: 15px 0;
    background: transparent;
}

.breadcrumb-wrapper {
    font-size: 14px;
    /* display: flex; */
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.breadcrumb-wrapper a {
    text-decoration: none;
    color: #555;
    transition: 0.3s;
}

.breadcrumb-wrapper a:hover {
    color: #000;
}

.breadcrumb-wrapper .divider {
    color: #aaa;
}

.breadcrumb-wrapper .active {
    color: #000;
    font-weight: 500;
}


    .boxed-img {
    overflow: hidden;
    border-radius: 10px;
}

.boxed-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boxed-btn {
    position: absolute;
    bottom: 15px;
    left: 15px;
}
.boxed-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 480px) {
    .d-flex.gap-2 {
        flex-direction: column;
    }

    .d-flex.gap-2 .w-50 {
        width: 100% !important;
    }
}
.explore-btn {
    padding: 10px 26px;
    border-radius: 6px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.explore-btn:hover {
    background: #333;
    color: #fff;
}

/* BANNER */
.searchesss-banner {
    height: 75vh;
    position: relative;
    background: url('images/banner/banner-property-5.jpg') center/cover no-repeat;
}

/* OVERLAY */
.searchesss-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

/* CONTENT */
.searchesss-wrapper {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 100%;
    margin: auto;
    padding: 40px 40px;
    border-radius: 18px;
    /* background: rgba(0, 0, 0, 0.45); */
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* HEADING */
.search-heading {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* SUBTEXT */
.search-sub {
    color: #ddd;
    margin-bottom: 25px;
}

/* SEARCH BOX */
.searchesss-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    padding: 5px 5px 5px 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ICON */
.searchesss-box i {
    color: #888;
    font-size: 18px;
    margin-right: 10px;
}

/* INPUT */
.searchesss-box input {
    border: none;
    flex: 1;
    height: 50px;
    outline: none;
    font-size: 15px;
}

/* BUTTON */
.search-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: 0.3s;
}

.search-btn:hover {
    background: #333;
}

@media (max-width: 768px) {

    .search-heading {
        font-size: 22px;
    }

    .searchesss-box {
        flex-direction: column;
        border-radius: 12px;
        padding: 10px;
    }

    .searchesss-box input {
        width: 100%;
        margin-bottom: 10px;
    }

    .search-btn {
        width: 100%;
        border-radius: 8px;
    }

}
@media (max-width: 768px) {

    .searchesss-box {
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border-radius: 12px;
    }

    /* TOP ROW (ICON + INPUT SAME LINE) */
    .searchesss-box input {
        width: 100%;
        margin-bottom: 10px;
        height: 45px;
    }

    /* FIX ICON POSITION */
    .searchesss-box {
        position: relative;
    }

    .searchesss-box i {
        position: absolute;
        left: 15px;
        top: 22px; /* perfect center */
        transform: translateY(-50%);
        margin: 0;
    }

    .searchesss-box input {
        padding-left: 40px; /* space for icon */
    }

    /* BUTTON FULL WIDTH */
    .search-btn {
        width: 100%;
        border-radius: 8px;
    }
}

.contact-info-section {
    padding: 50px 0;
    background: #0000000d;
}

.contact-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-box i {
    font-size: 28px;
    color: #000;
    margin-bottom: 10px;
}

.contact-box h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-box p {
    color: #666;
    font-size: 14px;
}

/* HOVER EFFECT */
.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.developer-info h5 {
    font-size: 18px; font-weight: 500;  text-decoration: underline;
}

.developer-info p {
  font-weight: 500; color: #0346d5; text-decoration: underline;
}


.premium-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.premium-form .title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* INPUT STYLE */
.premium-form .ip-group {
    margin-bottom: 18px;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* FOCUS EFFECT 🔥 */
.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    border-color: #000;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
    outline: none;
}

/* TEXTAREA */
.premium-form textarea {
    min-height: 100px;
    resize: none;
}

/* SUBMIT BUTTON */
.submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: #000;
    color: #fff;
    font-weight: 500;
    border: none;
    margin-top: 10px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #222;
    transform: translateY(-2px);
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    display: block;
    text-align: center;
    margin: 9px;
    padding: 14px;
    border-radius: 12px;
    background: #25D366;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}


 .career-banner {
  position: relative;
  overflow: hidden;

}

/* BACKGROUND IMAGE */
.career-bg {
  position: absolute;
  inset: 0;
  background: url('../images/banner/about-us-banner.jpg') center/cover no-repeat;
  z-index: 1;
  transform: scale(1.05);
}

/* GRADIENT OVERLAY (premium look) */
.career-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.7), rgba(0, 0, 0, 0.4));
  z-index: 2;
}

/* CONTENT */
.career-banner .container {
  position: relative;
  z-index: 3;
}

/* CARD DESIGN (GLASS EFFECT ✨) */
.career-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 45px;
  border-radius: 25px;
  max-width: 540px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  transition: 0.4s ease;
}

/* HOVER EFFECT 🔥 */
.career-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.35);
}

/* TITLE */
.career-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
}

.career-title span {
  color: #000000;
  position: relative;
}

/* UNDERLINE EFFECT */
/* .career-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #000000, #000000);
  border-radius: 10px;
} */

/* TEXT */
.career-desc {
  color: #555;
  font-size: 15px;
  margin: 18px 0;
  line-height: 1.7;
}

/* BUTTONS */
.career-btns {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

/* PRIMARY BUTTON (GRADIENT 🔥) */
.career-btns .btn-primary {
  background: linear-gradient(135deg, #000000, #000000);
  border: none;
  color: #fff;
  padding: 13px 22px;
  border-radius: 12px;
  transition: 0.3s;
}

/* BUTTON HOVER */
.career-btns .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* OUTLINE BUTTON */
.career-btns .btn-outline-primary {
  border: 2px solid #000000;
  color: #000000;
  padding: 13px 22px;
  border-radius: 12px;
  transition: 0.3s;
}

.career-btns .btn-outline-primary:hover {
  background: #000000;
  color: #fff;
}

/* FLOATING SHAPES 🔥 */
.career-banner::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #000000;
  filter: blur(120px);
  top: -50px;
  left: -50px;
  z-index: 1;
  opacity: 0.5;
}

/* MOBILE */
@media (max-width: 768px) {
  .career-title {
    font-size: 28px;
  }

  .career-card {
    padding: 25px;
  }

  .career-btns {
    flex-direction: column;
  }
}

/* SECTION */
.career-form-section {
  background: #f8f9fb;
}

/* FORM BOX */
.career-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* TITLE */
.career-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* LABEL */
.career-form-box label {
  font-weight: 500;
  margin-bottom: 5px;
}

/* INPUT */
.career-form-box .form-control,
.career-form-box .form-select {
  height: 50px;
  border-radius: 8px;
}

/* FILE INPUT */
.career-form-box input[type="file"] {
  height: auto;
  padding: 10px;
}

/* BUTTON */
.career-form-box .btn {
  height: 50px;
  border-radius: 10px;
  font-weight: 500;
}

/* IMAGE */
.career-image img {
  width: 100%;
  border-radius: 20px;
}

/* PHONE GROUP */
.phone-group {
  display: flex;
  gap: 10px;
}

.country-code {
  max-width: 120px;
}

/* MOBILE */
@media (max-width: 576px) {
  .career-form-box {
    padding: 25px;
  }

  .country-code {
    max-width: 100px;
    font-size: 14px;
  }
}


/* services section */

/* MAIN */
.luxuries-hero {
  display: flex;
  flex-direction: column; /* 🔥 mobile first */
  background: #000000;
 
  overflow: hidden;
}

/* IMAGE */
.luxuries-right {
  width: 100%;
  height: 250px;
}

.luxuries-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* LEFT */
.luxuries-left {
  width: 100%;
  padding: 20px;
}

/* CARD */
.glass-card {
  color: #fff;
}

.glass-card h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

.glass-card p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 15px;
}

/* BUTTONS */
.hero-actioned {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.btn-mained {
  background: #ffffff;
  color: #000;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-ghost {
  border: 1px solid #fff;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
}

/* STATS */
.hero-stated {
  display: flex;
  justify-content: space-between;
}

.hero-stated h3 {
  font-size: 16px;
}

.hero-stated span {
  font-size: 11px;
  opacity: 0.7;
}

/* 💻 DESKTOP FIX */
@media (min-width: 992px) {
  .luxuries-hero {
    flex-direction: row;
    height: 480px;
  }

  .luxuries-right {
    width: 55%;
    height: 100%;
  }

  .luxuries-left {
    width: 45%;
    display: flex;
    align-items: center;
    padding: 50px;
  }

  .glass-card h1 {
    font-size: 40px;
  }
}

 /* .our-team-section {
  background: #f8f9fb;
} */

.team-title {
  font-size: 36px;
  font-weight: 700;
}

.team-subtitle {
  color: #777;
  font-size: 15px;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  transition: 0.5s;
}

.team-card:hover img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.social-icons a {
  color: #fff;
  margin: 0 8px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #000000;
}

.team-content {
  text-align: center;
  padding: 20px;
}

.designation {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
}

.languages {
  font-size: 13px;
  color: #000000;
  margin-bottom: 15px;
}

/* CONTACT BUTTONS */
.contact-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn-call,
.btn-whatsapp {
  flex: 1;
  padding: 8px 10px;
  font-size: 13px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* CALL BUTTON */
.btn-call {
  background: #000;
  color: #fff;
}

.btn-call:hover {
  background: #333;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}