/********** Template CSS **********/
:root {
    --primary: #00B98E;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #0E2E50;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 45px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(0, 185, 142, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.owl-carousel-item {
    position: relative;
    width: 100%;
    height: 100vh;              /* full screen hero */
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-carousel-item .img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* background effect */
}

.owl-carousel-item .klass {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
 
    max-width: 420px;           /* desktop size */
    width: 80%;
    
    z-index: 2;
}
@media (max-width: 768px) {
    .owl-carousel-item {
        height: auto;
        padding: 60px 0;
    }

    .owl-carousel-item .klass {
        max-width: 260px;
        width: 90%;
    }
}

.rlp-section {
   
    padding: 80px 6%;
    text-align: center;
    color: #fff;
}

.rlp-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 60px;
    position: relative;
}

.rlp-title span {
    display: block;
    width: 60px;
    height: 3px;
    background: #e63946;
    margin: 12px auto 0;
}

/* Grid */
.rlp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Cards */
.rlp-card h3 {
    margin-top: 20px;
    font-size: 26px;
    font-weight: 600;
}

/* Images */
.rlp-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.rlp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.play-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 14px 0 14px 22px;
    border-color: transparent transparent transparent white;
}

/* Hover effect */
.rlp-image img {
    transition: transform 0.4s ease;
}

.rlp-card:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .rlp-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .rlp-card h3 {
        font-size: 22px;
    }
}
.success-card {
    height: 400px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
}

/* Double inverted comma */
.success-card::before {
    content: "“";
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 70px;
    font-weight: 700;
    color: #0d2c54;
    line-height: 1;
}

.story-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-top: 20px;
}
@media (max-width: 991px) {
    .success-card {
        height: auto;
    }
}
#ns-cta-section {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background: #000;
}

/* VIDEO */
.ns-cta-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* OVERLAY */
.ns-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(48, 0, 95, 0.75),
        rgba(0, 0, 0, 0.75)
    );
    z-index: 2;
}

/* CONTENT */
.ns-cta-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.ns-cta-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* BUTTON */
.ns-cta-btn {
    padding: 14px 38px;
    border-radius: 50px;
    border: 2px solid #03f0e4;
    color:white;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.35s ease;
}

.ns-cta-btn:hover {
      background: linear-gradient(135deg, rgb(5, 33, 33), rgb(10, 246, 246));
    color: #eeeaea;
}

/* WHITE BOTTOM WAVE */
#ns-cta-section::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("images/bottom-wave.png") no-repeat;
    background-size: 100% 100%;
    z-index: 4;
    pointer-events: none;
}
.ns-cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
}

.ns-cta-content p {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    max-width: 900px;
}
/* Same size as other icon circles */
/* Outer dashed circle */
.image-icon {
    width: 210px;              /* match other icons */
    height: 210px;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px dashed #00d6a3;
    padding: 6px;              /* controls inner gap */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image fills the circle */
.image-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* EVENT CIRCLES CONTAINER */
.event-circles {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* CIRCLE STYLE */
.event-dot {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c897, #00a884);
    color: #fff;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.event-dot span {
    font-size: 13px;
    line-height: 1.2;
}

/* HOVER SCALE */
.event-dot:hover {
    transform: scale(1.1);
}

/* HOVER STRIP */
.event-strip {
    position: absolute;
    bottom: -35px;
    background: #ffffff;
    color: #000;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.event-dot:hover .event-strip {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE ADJUSTMENT */
@media (max-width: 768px) {
    .event-circles {
        justify-content: center;
    }

    .event-dot {
        width: 60px;
        height: 60px;
    }

    .event-strip {
        font-size: 12px;
    }
}
.upcoming-title {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-left: 15px;
}

.upcoming-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 70%;
    background: #00c897;
    transform: translateY(-50%);
    border-radius: 10px;
}
.social-top {
    position: fixed;
    top: 90px; /* below navbar */
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-social:hover {
    background-color: #00c897;
    border-color: #00c897;
    color: #fff;
    transform: translateY(-3px);
}

/* 📱 Mobile View */
@media (max-width: 768px) {
    .social-top {
        flex-direction: row;
        top: auto;
        bottom: 15px;
        right: 50%;
        transform: translateX(50%);
        background: rgba(0, 0, 0, 0.6);
        padding: 10px 14px;
        border-radius: 30px;
        backdrop-filter: blur(6px);
    }
}
/* Inquiry Tab */
.inquiry-tab {
    position: fixed;
    top: 45%;
    right: 0;
    background: #00c897;
    color: #fff;
    padding: 12px 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px 0 0 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    z-index: 9998;
    transition: background 0.3s ease;
}

.inquiry-tab:hover {
    background: #00a97a;
}

/* Inquiry Form Box */
.inquiry-form {
    position: fixed;
    top: 50%;
    right: -340px;
    transform: translateY(-50%);
    width: 320px;
    background: #fff;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px 0 0 12px;
    z-index: 9999;
    transition: right 0.4s ease;
}

.inquiry-form.active {
    right: 0;
}

/* Header */
.inquiry-header {
    background: #000;
    color: #fff;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inquiry-header span {
    cursor: pointer;
    font-size: 18px;
}

/* Form */
.inquiry-form form {
    padding: 16px;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.inquiry-form textarea {
    resize: none;
    height: 90px;
}

.inquiry-form button {
    width: 100%;
    background: #00c897;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.inquiry-form button:hover {
    background: #00a97a;
}

/* 📱 Mobile */
@media (max-width: 768px) {
    .inquiry-form {
        width: 100%;
        right: -100%;
        border-radius: 0;
    }

    .inquiry-form.active {
        right: 0;
    }

    .inquiry-tab {
        top: auto;
        bottom: 80px;
    }
}
.inquiry-tab {
    position: fixed;
    top: 45%;
    right: 0;
    width: 48px;
    height: 48px;
    background: #00c897;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    border-radius: 12px 0 0 12px;
    z-index: 9998;
    transition: all 0.3s ease;
}

.inquiry-tab:hover {
    background: #00a97a;
    transform: scale(1.05);
}
.floating-call {
    position: fixed;
    bottom: 100px; /* keep above inquiry icon */
    right: 20px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #00c897, #0ac6a0);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulseCall 2s infinite;
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    color: #fff;
}

/* Pulse animation */
@keyframes pulseCall {
    0% { box-shadow: 0 0 0 0 rgba(8, 222, 169, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 200, 151, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 200, 151, 0); }
}

/* Mobile adjustment */
@media (max-width: 576px) {
    .floating-call {
        bottom: 90px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
section{
    background-color: #000;
  padding:80px 10%;
}

.container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  flex-wrap:wrap;
}

.content{
  flex:1;
}

.content h2{
  font-size:32px;
  margin-bottom:20px;
  background:linear-gradient(90deg,#38bdf8,#818cf8);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.icon{
  font-size:28px;
  margin-right:10px;
}

.content p, .content li{
  font-size:15px;
  line-height:1.7;
  margin-bottom:10px;
  color:#e2e8f0;
}

.content ul{
  margin-top:15px;
}

.image{
  flex:1;
  text-align:center;
}

.image img{
  width:100%;
  max-width:450px;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,0.5);
  transition:0.4s;
}

.image img:hover{
  transform:scale(1.05);
}

.cta{
  margin-top:25px;
}

.cta button{
  padding:14px 28px;
  border:none;
  background:linear-gradient(90deg,#38bdf8,#6366f1);
  color:#fff;
  font-size:15px;
  border-radius:50px;
  cursor:pointer;
  font-weight:600;
  transition:0.3s;
}

.cta button:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(0,0,0,0.4);
}

.tagline{
  margin-top:10px;
  font-size:14px;
  color:#facc15;
}

.alt{
  flex-direction:row-reverse;
}

@media(max-width:900px){
  .container{
    flex-direction:column;
  }
  .alt{
    flex-direction:column;
  }
}