/* ===============================
   HERO SLIDER BASE
================================ */
.custom-hero-slider {
    position: relative;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 85vh;
}

/* ===============================
   SLIDE STRUCTURE
================================ */
.swiper-slide {
    position: relative;
    overflow: hidden;
}

/* ===============================
   BACKGROUND IMAGE
================================ */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: scale(1);
}

/* Dark overlay */
.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 79%);
    transition: background 1s ease;
}

/* Background zoom animation */
.swiper-slide-active .slide-bg {
    animation: zoomBg 8s ease-in-out forwards;
}

@keyframes zoomBg {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.12);
    }
}

/* ===============================
   SLIDE CONTENT
================================ */
.slide-content {
    padding-top: 130px;
    color: #fff;
    text-align: center;
}

/* ===============================
   TEXT STYLES
================================ */
.slide-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1685b6;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.slide-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
}

.slide-desc {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #fff;
}

/* ===============================
   TEXT ANIMATION
================================ */
/* ===============================
   SLIDE CONTENT PARALLAX
================================ */
.swiper-slide-active .slide-content {
    transform: translateY(0);
    transition: transform 1s ease, opacity 1s ease;
}

.swiper-slide-prev .slide-content,
.swiper-slide-next .slide-content {
    transform: translateY(50px);
    opacity: 0.4;
}

/* ===============================
   TEXT SLIDE + FADE + SCALE
================================ */
.slide-content > * {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.swiper-slide-active .slide-subtitle {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.2s;
}

.swiper-slide-active .slide-title {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.4s;
}

.swiper-slide-active .slide-desc {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.6s;
}

.swiper-slide-active .btn-primary {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.8s;
}

/* ===============================
   TEXT TYPING EFFECT
================================ */
.slide-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: typing 0.8s forwards;
}

@keyframes typing {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* You can wrap each letter of title in <span> using JS for typing effect */

/* ===============================
   BUTTON FLOAT EFFECT
================================ */
.btn-primary {
    position: relative;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ===============================
   SWIPER NAV + PAGINATION STYLE
================================ */
.swiper-button-next,
.swiper-button-prev {
    color: #2e99c6 !important;
    transition: transform 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.2);
}

.swiper-pagination-bullet {
    background: rgb(255 255 255) !important;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #1685b6 !important;
}

/* ===============================
   BACKGROUND ZOOM EFFECT
================================ */
.swiper-slide-active .slide-bg {
    animation: zoomBg 10s ease-in-out forwards;
}

@keyframes zoomBg {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1.12); }
}

/* ===============================
   BUTTON STYLE & EFFECT
================================ */
.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: #1685b6;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transition: 0.4s;
}

.btn-primary:hover::after {
    left: 0;
}

.btn-primary:hover {
    background: #ffffff;
    color: #000;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    font-size: 20px !important;
    content: 'next';
    font-weight: 900;
    background: #fff;
    padding: 10px 16px;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    font-size: 20px !important;
    font-weight: 900;
    background: #fff;
    padding: 10px 16px;
}


/* ===============================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 991px) {
    .slide-content {
        padding-top: 140px;
    }

    .slide-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .heroSwiper {
        height: 70vh;
    }

    .slide-content {
        padding-top: 120px;
        text-align: center;
        margin: auto;
    }

    .slide-title {
        font-size: 30px;
    }

    .slide-desc {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .heroSwiper {
        height: 65vh;
    }

    .slide-title {
        font-size: 26px;
    }
}


/* FORCE SHOW ARROWS */
.service_list .owl-nav {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* BUTTON STYLE */
.service_list .owl-nav button {
    background: #16b597 !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff !important;
    font-size: 20px;
}

/* ICON CENTER */
.service_list .owl-nav button i {
    display: block;
    line-height: 45px;
}



/* ===============================
   SERVICE SLIDER FIXED CSS
================================ */

.service-slider {
    position: relative;
    padding-top: 70px
}

/* IMPORTANT FIX */
.service-slider .owl-stage {
    display: flex;
}

.service-slider .owl-item {
    display: flex;
    justify-content: center;
}

.service-slider .service-slide {
    width: 100%;
    display: block;
}

/* CARD STYLE */


.service-items-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ICON */
.service-items-icon img {
    max-width: 70px;
    margin-bottom: 20px;
}

/* TITLE */
.service-items-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* BUTTON */


.service-btn a {
    font-weight: 600;
    color: #1685b6;
    text-decoration: none;
}

.service-btn i {
    color: #1685b6;
    transition: transform 0.3s ease;
}

.service-items-box:hover .service-btn i {
    transform: translateX(6px);
}

/* ARROWS */
.service-slider .owl-nav {
    position: absolute;
    top: -70px;
    right: 0;
}

.service-slider .owl-nav button {
    width: 45px;
    height: 45px;
    background: #1685b6 !important;
    border-radius: 50%;
    color: #fff !important;
    margin-left: 10px;
    transition: 0.3s;
}

.service-slider .owl-nav button:hover {
    background: #1685b6 !important;
}

/* DOTS OFF */
.service-slider .owl-dots {
    display: none;
}


/* Blog  */

/* Blog Section */
.blog-grid-section {
    padding: 80px 0;
    background: #f8f9fc;
}

/* Card */

.blog-card-v2:hover {
    transform: translateY(-10px);
}

/* Image */
.blog-card-v2__image {
    position: relative;
    overflow: hidden;
}

.blog-card-v2__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.6s ease;
}

.blog-card-v2:hover img {
    transform: scale(1.1);
}

/* Date badge */
.blog-card-v2__date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #1685b6;
    color: #fff;
    padding: 5px 14px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
}

/* Content */
.blog-card-v2__content {
    padding: 26px;
    display: flex;
    flex-direction: column;
}

.blog-card-v2__meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.blog-card-v2__title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-v2__title a {
    color: #003d4d;
    transition: 0.3s;
    text-decoration: none;
    font-weight: 500;
}

.blog-card-v2__title a:hover {
    color: #1685b6;
}

.blog-card-v2__desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Buttons */
.blog-card-v2__actions {
    margin-top: auto;
    display: flex;
    gap: 12px;
}

.blog-btn-primary {
    background: #003d4d;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

.blog-btn-primary:hover {
    background: #f0f0f0;
    color: #003d4d;

}

.blog-btn-outline {
    border: 1px solid #ddd;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    color: #444;
    transition: 0.3s;
    text-decoration: none;
}

.blog-btn-outline:hover {
    background: #003d4d;
    color: #fff;
    border-color: #003d4d;
}

/* Responsive */
@media (max-width: 767px) {
    .blog-card-v2__image img {
        height: auto;
    }
}


/* Share Popup */
.blog-card-v2__actions {
    position: relative;
}

.share-popup {
    position: absolute;
    bottom: 55px;
    right: 0;
    background: #fff;
    padding: 10px 12px;
    border-radius: 30px;
    display: flex;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 10;
}

.share-popup a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 15px;
    transition: 0.3s;
    text-decoration: none;
}

.share-popup a:hover {
      transform: scale(1.1);
    background: #1685b6;
    color: #fff;
}

/* Active */
.share-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.share-wrap {
    position: relative;
}

.share-icons {
    position: absolute;
    top: 45px;
    right: 0;
    background: #fff;
    padding: 8px 12px;
    border-radius: 30px;
    display: flex;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 9;
}

.share-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 14px;
    transition: 0.3s;
}

.share-icons a:hover {
    background: #1685b6;
    color: #fff;
}

/* Active */
.share-icons.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.blog-button.two a:hover{
    color: #fff !important;
}

.mvv-section {
    padding: 90px 0;
    background: #f9fafc;
}

.mvv-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #1685b6;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.mvv-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mvv-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Card */
.mvv-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.mvv-card:hover,
.mvv-card.active {
    transform: translateY(0px);
    background: #1685b6;
    color: #fff;
}

.mvv-card.active {
    transform: translateY(0px);
    background: #1685b6;
    color: #fff;
}


.mvv-card:hover p,
.mvv-card.active p,
.mvv-card:hover h3,
.mvv-card.active h3 {
    color: #fff;
}

/* Icon */
.mvv-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,90,60,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #1685b6;
    transition: 0.4s;
}

.mvv-card:hover .mvv-icon,
.mvv-card.active .mvv-icon {
    background: #fff;
    color: #1685b6;
}

.mvv-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mvv-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .mvv-title {
        font-size: 28px;
    }
}


/* property  */

/* PROPERTY LIST CARD */
.property-list-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.property-img {
    position: relative;
    width: 250px;
    flex-shrink: 0;
}

.property-img img {
    width: 100%;
    border-radius: 8px;
}


/* CONTENT */
.property-content {
    flex: 1;
}

.property-title {
    font-size: 20px;
    font-weight: 600;
}

.property-title a {
       color: #003d4d;
    font-size: 25px;
    font-weight: 700;
    text-decoration: none;
}

.property-price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.property-price {
    background: #1685b6;
    color: #fff;
    padding: 6px 12px;
    font-weight: 600;
}

.property-price span {
    background: #1685b6;
    padding: 4px 8px;
    font-size: 13px;
}

.property-location {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.property-desc {
    font-size: 15px;
    color: #555;
}

.property-meta {
    display: flex;
    gap: 20px;
    margin: 12px 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
}

.property-meta i {
    color: #1685b6;
    margin-right: 6px;
}

.details-btn {
    display: inline-block;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

/* SIDEBAR */
.sidebar-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.sidebar-box h4 {
    font-size: 25px;
    margin-bottom: 20px;
}

.sidebar-list,
.sidebar-category {
    list-style: none;
    padding: 0;
}

.sidebar-list li,
.sidebar-category li {
    margin-bottom: 12px;
}

.sidebar-list a,
.sidebar-category a {
    display: flex;
    justify-content: space-between;
    background: #f6f8fa;
    padding: 12px 15px;
    border-radius: 6px;
    color: #333;
    font-size: 17px;
    text-decoration: none;
    font-weight: 600;
}

.sidebar-list a:hover,
.sidebar-category a:hover {
    background: #1685b6;
    color: #fff;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .property-list-card {
        flex-direction: column;
    }

    .property-img {
        width: 100%;
    }
}


.pagination {
    justify-content: center;
}

.pagination .page-link {
    color: #111;
    padding: 10px 15px;
    margin: 0 6px;
    border-radius: 8px;
}

.pagination .page-item.active .page-link {
    background-color: #1685b6;
    border-color: #1685b6;
    color: #fff;
}


/* ============================
   GLASS SERVICE SECTION
============================ */


/* Card */
.service-glass-card {
    position: relative;
    height: 88%;
    padding: 40px 30px;
    border-radius: 22px;
    background: #003d4d;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    overflow: hidden;
    transition: 0.5s ease;
    margin-top: 60px;
}

.service-glass-card:hover {
    transform: translateY(-15px) scale(1.02);
}


.service-glass-card:hover .glow-effect {
    opacity: 1;
    filter: blur(25px);
}

/* Icon */
.service-glass-icon {
    
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 4s ease-in-out infinite;
}

.service-glass-icon img {
    width: 100%;
}

/* Floating Animation */
@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Content */
.service-glass-content h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
}

.service-glass-content p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
}

/* Buttons */
.service-glass-actions {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.glass-btn {
    padding: 9px 22px;
    font-size: 13px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
        text-decoration: none;
}

/* Outline */
.glass-btn.outline {
    color: #ffffff;
    border: 1px solid #ffffff;
}

/* Fill */
.glass-btn.fill {
    background: #ffffff;
    color: #003d4d;
}

/* Slide Effect */
.glass-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255,255,255,0.25);
    transition: 0.4s;
}

.glass-btn:hover::after {
    left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .service-glass-actions {
        flex-direction: column;
    }
}


/* Section */
.project-details-area {
    background: #f9fafc;
        padding: 100px;
}

.widget-contact-icon i.fa-solid.fa-phone {
    font-size: 30px;
    color: #1686b8;
    margin-top: 23px;
}

/* Main Image */
.project-main-img img {
    width: 100%;
    border-radius: 16px;
}

/* Title */
.project-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Description */
.project-desc p {
    line-height: 1.8;
    color: #555;
}

/* Gallery */
.gallery-img {
    border-radius: 12px;
    transition: 0.4s;
}
.gallery-img:hover {
    transform: scale(1.05);
}

/* Accordion */
.project-faq.mt-5 {
    background: url(../images/image2.avif);
    padding: 50px 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.project-faq.mt-5::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 61, 77, 0.88), rgba(0, 61, 77, 0.88));
    z-index: 0;
}
.accordion {
    list-style: none;
    padding: 0;
}
.accordion li {
    background: #f9fafc;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 13px 8px rgb(0 0 0 / 15%);
    transition: all 0.4s ease;
}
.accordion li a {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
}
.accordion li p {
    display: none;
    padding: 0 20px 15px;
    color: #666;
}
.accordion li.active p {
    display: block;
}
.accordion li.active i {
    transform: rotate(90deg);
}

/* Sidebar */
.service-widget {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.service-widget h4 {
    margin-bottom: 20px;
}
.service-widget ul {
    padding: 0;
    list-style: none;
}
.service-widget li a {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 8px;
    color: #003d4d;
    transition: 0.3s;
    text-decoration: none;
    font-size: 20px;
    background: #f7f7f7;
    font-weight: 600;
}
.service-widget li a:hover,
.service-widget li a.active {
    background: #003d4d;
    color: #fff;
}

.testi-area .owl-nav button {
    position: absolute;
    top: 45%;
    width: 45px;
    height: 45px;
    background: #111 !important;
    color: #fff !important;
    border-radius: 50%;
    font-size: 20px;
    transition: 0.3s;
}

.testi-area .owl-nav button:hover {
    background: #ff4a17 !important;
}

.testi-area .owl-nav .owl-prev {
    left: -60px;
    top: 120px;
}

.testi-area .owl-nav .owl-next {
    right: -60px;
    top: 120px;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block !important;
}


/* ABOUT SECTION BASE */
/* ABOUT AREA */
.about-area {
    padding: 90px 0;
    background: #f6f9fc;
}

/* IMAGE */
.exp-ribbon {
    position: absolute;
        width: 100%;
            display: flex;
    gap: 25px;
    top: 0;
    left: 0;
    background: #003d4d;
    color: #fff;
    padding: 12px 65px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.exp-ribbon h3 {
    font-size: 30px;
    color: #fff;
}
.exp-ribbon span {
    font-size: 30px;
    font-weight: 700;
    display: block;
}

.exp-ribbon small {
    font-size: 12px;
    text-transform: uppercase;
}



/* FEATURES */
.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    margin-bottom: 10px;
    font-weight: 500;
    background: #fff;
    padding: 11px;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    padding: 10px 30px;
    background: #003d4d;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.4s;
    margin-top: 10px;
}

.about-btn:hover {
    background: #003d4d;
}

/* SCROLL ANIMATION */
.animate-left,
.animate-right,
.animate-item {
    opacity: 0;
    transition: all 0.7s ease;
}

.animate-left {
    transform: translateX(-60px);
}

.animate-right {
    transform: translateX(60px);
}

.animate-item {
    transform: translateY(30px);
}

.scroll-about.show .animate-left,
.scroll-about.show .animate-right,
.scroll-about.show .animate-item {
    opacity: 1;
    transform: translate(0);
}


/* ==============================
   FEATURE CARD ANIMATIONS
============================== */

.feature-single-box {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    transition: all 0.4s ease;
    animation: slideUp 0.9s ease forwards;
}

/* Slide up animation on load */
@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hover lift effect */



/* Image zoom on hover */
.feature-single-box:hover .feauture-icon img {
    transform: scale(1.1);
}

/* Button arrow slide */
.feature-btn a {
    position: relative;
    transition: 0.3s ease;
}

.team-single-box:hover .feature-btn a {
    background: #003d4d;
    color: #fff;
}


.feature-btn a i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.feature-btn a:hover i {
    transform: translateX(6px);
}
/* ==============================
   SCROLL ANIMATION (UP / DOWN)
============================== */

.scroll-animate {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.8s ease;
}

/* Active when visible */
.scroll-animate.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Feature card hover (keep previous effect) */
.feature-single-box {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    transition: 0.4s ease;
}

.feature-single-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Icon floating */
.feauture-icon img {
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}


/* ===============================
   SERVICE CARD EFFECTS
================================ */


.service-single-box {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.service-single-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.18);
}

/* Image zoom on hover */
.service-thumb {
    position: relative;
    overflow: hidden;
}

.service-thumb img {
    width: 100%;
    transition: transform 0.6s ease;
}

.service-single-box:hover .service-thumb img {
    transform: scale(1.08);
}


@keyframes pulsePrice {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}



/* Arrow bounce */
.service-icon i.fa-arrow-right {
    animation: arrowMove 1.5s infinite;
}

@keyframes arrowMove {
    0% { transform: translateX(0); }
    50% { transform: translateX(6px); }
    100% { transform: translateX(0); }
}


/* ===============================
   TESTIMONIAL ANIMATION
================================ */
.testi-itmes-box {
    
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.8s ease;
    opacity: 0;
    transform: translateY(50px);
}

.testi-itmes-box.active {
    opacity: 1;
    transform: translateY(0);
}

.testi-itmes-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.15);
}

/* TESTIMONIAL IMAGE */
.testi-thumb img {
    width: 100px !important;
    border-radius: 50%;
    transition: transform 0.5s ease;
}
.testi-itmes-box:hover .testi-thumb img {
    transform: scale(1.08);
}

/* QUOTE ICON */
.testi-icon {
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 30px;
    color: #1685b6;
    opacity: 0.2;
    transition: all 0.5s ease;
}

/* TITLE & CONTENT */
.testi-title h4 {
    font-size: 20px;
    color: #003d4d;
    margin-bottom: 5px;
}
.testi-title span {
    color: #1685b6;
    font-size: 14px;
}
.testi-content p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}



/* Hover effects */
.blog-card-v2 {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.blog-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.15);
}

.blog-card-v2__image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.blog-card-v2:hover .blog-card-v2__image img {
    transform: scale(1.08);
}


.blog-card-v2:hover .blog-card-v2__title a {
    color: #1685b6;
}

.share-popup {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.share-toggle:hover + .share-popup {
    opacity: 1;
}


/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Box Hover Effects */
.contact-single-box, .contact-box {
    
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.contact-single-box:hover, .contact-box:hover {
    transform: translateY(-10px);
        padding: 20px;
    box-shadow: 0 22px 45px rgba(0,0,0,0.15);
}

/* Form button hover */
.form-box-button button {
    background-color: #1685b6;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.form-box-button button:hover {
    background-color: #0f5a7b;
    transform: translateY(-3px);
}

/* Google Map fade-up */
.google-map.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.google-map.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}


/* Property Card */
.property-list-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.property-list-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Property Image */
.property-img {
    position: relative;
    overflow: hidden;
}

.property-img img {
    width: 100%;
    transition: transform 0.5s ease;
}


/* Badge Effect */
.badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #1685b6;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

/* Property Meta Hover */
.property-meta li i {
    color: #1685b6;
}

/* Sidebar Animation */
.sidebar-box {
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sidebar-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}




/* Slide from Right (Sidebar) */
.scroll-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s ease;
}

.scroll-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ============================
   IMAGE EFFECT
============================ */
.service-details-thumb {
    overflow: hidden;
    border-radius: 14px;
}

.service-details-thumb img {
    width: 100%;
    transition: transform 0.6s ease;
}

.service-details-thumb:hover img {
    transform: scale(1.08);
}

/* ============================
   CONTENT EFFECT
============================ */
.service-details-title h4 {
    transition: color 0.4s ease;
}

.service-details-title h4:hover {
    color: #1685b6;
}

/* ============================
   SIDEBAR EFFECT
============================ */
.widget-categories-box,
.widget-contact-box {
    
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.widget-categories-box:hover,
.widget-contact-box:hover {
    transform: translateY(-6px);
}


/* ===============================
   SCROLL ANIMATION BASE
================================ */
.scroll-fade {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.scroll-fade.active {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from right (sidebar) */
.scroll-slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s ease;
}

.scroll-slide-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===============================
   PROJECT IMAGE EFFECT
================================ */
.project-main-img {
    overflow: hidden;
    border-radius: 18px;
}

.project-main-img img {
    width: 100%;
    transition: transform 0.6s ease;
}

.project-main-img:hover img {
    transform: scale(1.08);
}

/* ===============================
   GALLERY EFFECT
================================ */
.gallery-img {
    border-radius: 12px;
    transition: all 0.4s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* ===============================
   SIDEBAR WIDGET
================================ */
.service-widget {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.service-widget:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* ===============================
   FAQ ACCORDION EFFECT
================================ */


.accordion li p {
    display: none;
    animation: fadeUp 0.5s ease;
}

.accordion li.active p {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===============================
   SCROLL BASE ANIMATIONS
================================ */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.scroll-fade-down {
    opacity: 0;
    transform: translateY(-40px);
    transition: all 0.8s ease;
}

.scroll-fade-up.active,
.scroll-fade-down.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   PROPERTY CARD EFFECT
================================ */
.property-list-card {
    display: flex;
    gap: 25px;
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.property-list-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.15);
}

/* ===============================
   IMAGE EFFECT
================================ */
.property-img {
    overflow: hidden;
    border-radius: 14px;
    min-width: 300px;
}

.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.property-list-card:hover .property-img img {
    transform: scale(1.08);
}

/* ===============================
   CONTENT EFFECT
================================ */
.property-content h3 a {
    transition: color 0.3s ease;
}

.property-content h3 a:hover {
    color: #c99a2e;
}

.more-details {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.more-details:hover {
    transform: translateX(6px);
}

/* ===============================
   TAG EFFECT
================================ */
.tag-new,
.tag-sale {
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

/* ===============================
   MOBILE FIX
================================ */
@media(max-width: 768px) {
    .property-list-card {
        flex-direction: column;
    }

    .property-img {
        min-width: 100%;
    }
}


/* ===== PORTFOLIO SECTION ===== */
.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: 0.4s ease;
    height: 420px;
    margin: 20px 0px;
}

/* Image */
.portfolio-img {
    width: 100%;
    height: 100%;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

/* Hover zoom */
.portfolio-card:hover .portfolio-img img {
    transform: scale(1.1);
}

/* Overlay */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgb(0 0 0 / 76%), rgba(0, 0, 0, 0.1));
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

/* Category */
.portfolio-category {
    background: #1685b6;
    color: #ffffff;
    padding: 13px 18px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
}

/* Title */
.portfolio-overlay h3 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 10px;
}

/* Description */
.portfolio-overlay p {
    font-size: 17px;
    color: #eee;
    margin-bottom: 18px;
}

/* Buttons */
.portfolio-actions {
    display: flex;
    gap: 12px;
}

.portfolio-actions a {
    padding: 5px 27px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

/* Primary button */
.btn-view {
    background: #1685b6;
    color: #ffffff;
    text-decoration: none;
}

.btn-view:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* Secondary button */
.btn-image {
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
}

.btn-image:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* Card lift */
.portfolio-card:hover {
    transform: translateY(-10px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .portfolio-card {
        height: 380px;
    }
}
.portfolio-card {
    animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===== HERO ===== */
.portfolio-hero {
    position: relative;
    padding: 140px 0;
    background-size: cover;
    background-position: center;
}

.portfolio-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,.8), rgba(0,0,0,.4));
}

.portfolio-hero-content {
    position: relative;
    color: #fff;
    text-align: center;

}

.hero-tag {
        background: #1685b6;
    color: #ffffff;
    padding: 14px 29px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
}

.portfolio-hero-content h1 {
    font-size: 45px;
    margin: 30px 0 16px;
    color: #fff;
}

.portfolio-hero-content p {
    max-width: 600px;
    opacity: 0.9;
}

/* ===== DETAIL SECTION ===== */
.portfolio-detail-section {
    padding: 80px 0;
    background: #f8f9fb;
}

.portfolio-detail-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

/* Highlights */
.portfolio-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.highlight-box {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    text-align: center;
    transition: .3s;
}

.highlight-box i {
    font-size: 28px;
    color: #1685b6;
    margin-bottom: 10px;
}

.highlight-box:hover {
    transform: translateY(-8px);
}

/* ===== SIDEBAR ===== */
.portfolio-sidebar .sidebar-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    margin-bottom: 30px;
}

.sidebar-projects li {
    margin-bottom: 15px;
        list-style: none;
}

.sidebar-projects a {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    transition: .3s;
    text-decoration: none;
    margin-top: 20px;
    background: #dbdbdb;
    padding: 10px 8px;
}

.sidebar-projects a:hover {
    color: #1685b6;
}

/* Newsletter */
.newsletter-card input {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    border: 1px solid #ddd;
    margin-bottom: 12px;
}

.newsletter-card button {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    background: #1685b6;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .portfolio-highlights {
        grid-template-columns: 1fr;
    }

    .portfolio-hero-content h1 {
        font-size: 32px;
    }
}


.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s ease;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}


.re-why-area {
    padding: 90px 0 40px;
    background: #ffffff;
}



.re-title {
    font-size: 42px;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 20px;
}

.re-desc {
    color: #7a7a7a;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* LIST */
.re-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.re-list li {
    position: relative;
    padding: 14px 32px;
    margin-bottom: 12px;
    color: #555;
    background: #f1f1f1;
}

.re-list li::before {
    content: '';
    position: absolute;
    left: 8;
    top: 25px;
    width: 12px;
    height: 2px;
    background: #003d4d;
}


/* RIGHT IMAGE GRID */
.re-image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}

.re-img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.re-img-small {
    display: grid;
    gap: 15px;
}

.re-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* HOVER EFFECT */
.re-image-grid img {
    transition: transform 0.4s ease;
}

.re-image-grid img:hover {
    transform: scale(1.05);
}
/* MAIN GALLERY */
.re-gallery {
    display: flex;
    gap: 20px;
}

/* LARGE IMAGE */
.re-main-img {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.re-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: all 0.6s ease;
}

.re-main-img img.active {
    opacity: 1;
    transform: scale(1);
}

/* BADGE */
.re-badge {
    color: #1685b6;
    padding: 6px 14px;
    font-size: 19px;
    border-radius: 20px;
    font-weight: 600;
}

/* THUMBNAILS */
.re-thumbs {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.re-thumbs img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.re-thumbs img:hover {
    opacity: 1;
    transform: translateX(-6px);
}

/* ACTIVE THUMB */
.re-thumbs img.active {
    opacity: 1;
    box-shadow: 0 0 0 2px #ff5a3c;
}

/* RESPONSIVE */
@media(max-width:768px){
    .re-gallery{
        flex-direction: column;
    }
    .re-thumbs{
        flex-direction: row;
        justify-content: center;
    }
}
