/* =====================================
   PROJECT SECTION FIX GRID
===================================== */

.project_container {
    position: static !important;
    height: auto !important;
}

.project_container .row {
    display: flex;
    flex-wrap: wrap;
}

.project-wrapper {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    margin-bottom: 30px;
}

/* =====================================
   CARD STYLE
===================================== */

.project_post.style_four {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

/* =====================================
   IMAGE SECTION (PREMIUM HOVER)
===================================== */

.project_post.style_four .image {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

/* Image */
.project_post.style_four .image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.35s ease-in-out;
}

/* Light Grey Overlay */
.project_post.style_four .image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.20);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

 
/* Shine Effect */
.project_post.style_four .image::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0.1) 100%
    );
    transform: skewX(-25deg);
    transition: 0.7s;
    z-index: 2;
}

/* Hover Effects */
.project_post.style_four:hover .image img {
    transform: scale(1.06);
}

.project_post.style_four:hover .image::before {
    opacity: 1;
}

.project_post.style_four:hover .image::after {
    left: 125%;
}

/* =====================================
   ARROW BUTTON
===================================== */

.project_post.style_four .image a.two {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    text-decoration: none;
    transition: 0.3s ease;
}

.project_post.style_four .image a.two i {
    color: #0d8a83;
    font-size: 16px;
    transition: 0.3s ease;
}

/* Arrow Hover */
.project_post.style_four .image a.two:hover {
    background: #0d8a83;
    transform: translateY(-4px);
}

.project_post.style_four .image a.two:hover i {
    color: #ffffff;
}

/* =====================================
   CONTENT SECTION
===================================== */

.project_caro_content {
    padding: 25px 30px 30px;
}

.project_caro_content p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #0d8a83;
    margin-bottom: 10px;
}

.project_caro_content .title_pro {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.project_caro_content .title_pro a {
    color: #1c1c1c;
    text-decoration: none;
    transition: 0.3s;
}

.project_caro_content .title_pro a:hover {
    color: #0d8a83;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 991px) {
    .project-wrapper {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .project-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
 .services{
padding-top:50px;
 }

 .sec-title {
    position: relative;
    margin-bottom: var(--margin-bottom-20)!important;
}
.sec-title .title {
    
    margin-bottom: var(--margin-bottom-5)!important;
}

/* Sticky Header Fix */
.sticky-header {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0px 0px;
    background-color: #ffffff;
    z-index: 99999;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}

/* Jab scroll hone par header active ho */
.fixed-header .sticky-header {
    visibility: visible;
    opacity: 1;
    -webkit-animation: slideInDown 0.7s;
    animation: slideInDown 0.7s;
}

/* Slide Down Animation */
@-webkit-keyframes slideInDown {
    0% { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
    100% { -webkit-transform: translateY(0); transform: translateY(0); }
}

@keyframes slideInDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}

/* Sticky Logo size adjust (Optional) */
.sticky-header .logo img {
    width: 160px !important;
    padding: 5px 0;
}

 /* ----- Whatsapp======== */

 .whatsapp_float {
    position: fixed;
    bottom: 140px;
    right: 25px;

    width: 52px;
    height: 52px;

    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    text-decoration: none;

    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;

    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

/* Hover Effect */
.whatsapp_float:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Glow Ring */
.whatsapp_float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    z-index: -1;
    animation: ripple 2s infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Ripple Animation */
@keyframes ripple {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    .whatsapp_float {
        width: 48px;
        height: 48px;
        font-size: 22px;
        right: 20px;
        bottom: 130px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .whatsapp_float {
        width: 44px;
        height: 44px;
        font-size: 20px;
        right: 15px;
        bottom: 70px;
    }
}


/* Container ko flex banana taaki columns ki height barabar ho */
.booking-section .row.d-flex {
    display: flex;
    flex-wrap: wrap;
}
 
.contact-image-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
}

.equal-height-img {
    width: 100%;
    height: 100%;
    object-fit: cover;  
    border: 8px solid #ffffff;  
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);  
    border-radius: 10px;  
}

 
.map-outer, .map-boxed {
    height: 100%;
}

.map-outer iframe {
    border-radius: 10px;
  /*  border: 8px solid #ffffff;  Map par bhi same border */
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mobile responsive fix */
@media (max-width: 991px) {
    .equal-height-img {
        height: 400px;  
        margin-bottom: 20px;
    }
}


 
/* Sirf Laptop aur Desktop (1025px se badi screens) ke liye */
@media (min-width: 1025px) {
    
    /* 1. Header ke baad gap maintain karne ke liye */
    .apss-eccentric-section {
        padding-top: 200px !important; /* Ye <br> tags ki jagah lega */
        margin-top: 0 !important;
    }

    /* 2. Jab screen 1452px se choti ho (lekin tablet se badi) */
    @media (max-width: 1452px) { 
        .apss-eccentric-section {
            padding-top: 150px !important;
        }
    }
}

/* Mobile aur Tablet par koi extra gap nahi aayega */
 