/* BODY BACKGROUND */
body {
    background: #0b0b0b;
    font-family: "Poppins", sans-serif;
    overflow-x:hidden !important ;
    padding:0px 5px;
}
html{
     overflow-x:hidden !important ;
}

/* NAVBAR GLASS */
.custom-navbar {
    top: 15px;
    width: 95%;
    margin: auto;
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 213, 79, 0.25);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.7),
        inset 0 0 20px rgba(255, 213, 79, 0.08);
}

/* LOGO */
.logo {
    font-weight: 700;
    color: #fff !important;
    font-size: 20px;
}

.logo span {
    color: #ffd54f;
}
.logo img {
    height: 50px;
}
/* LINKS */
.nav-link {
    color: #ccc !important;
    position: relative;
    transition: 0.3s;
}

/* HOVER EFFECT */
.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #ffd54f, #ffa000);
    transition: 0.3s;
}

.nav-link:hover {
    color: #ffd54f !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* CTA BUTTON */
.nav-btn {
    background: linear-gradient(135deg, #ffd54f, #ffa000);
    color: #000;
    border-radius: 30px;
    padding: 8px 18px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.4);
}

/* MOBILE MENU */
.navbar-collapse {
    margin-top: 10px;
}

/* TOGGLER */
.navbar-toggler {
    font-size: 22px;
}
/* HERO BACKGROUND */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
        url("https://novestagroup.in/wp-content/uploads/2025/04/3-scaled.png")
            center/cover no-repeat;

    color: #fff;
    padding-top: 120px;
}

/* BADGE */
.hero-badge {
    display: inline-block;
    background: rgba(255, 213, 79, 0.15);
    color: #ffd54f;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 15px;
}

/* TITLE */
.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(90deg, #ffd54f, #ffa000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */
.hero-desc {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 16px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-gold {
    background: linear-gradient(135deg, #ffd54f, #ffa000);
    color: #000;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    border: none;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
}

.btn-outline-gold {
    border: 1px solid #ffd54f;
    color: #ffd54f;
    padding: 14px 28px;
    border-radius: 40px;
}

.btn-outline-gold:hover {
    background: #ffd54f;
    color: #000;
}

/* TRUST TEXT */
.hero-trust {
    font-size: 13px;
    color: #aaa;
}

/* FORM GLASS */
.hero-form {
    padding: 30px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 213, 79, 0.2);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.hero-form h4 {
    margin-bottom: 20px;
}

/* INPUTS */
.hero-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;

    border-radius: 8px;
    border: none;

    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.hero-form input::placeholder {
    color: #bbb;
}

/* BUTTON */
.hero-form button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;

    border: none;
    font-weight: 600;

    background: linear-gradient(135deg, #ffd54f, #ffa000);
    color: #000;
}

.hero-form button:hover {
    transform: translateY(-2px);
}

/* NOTE */
.form-note {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
    color: #999;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero {
        text-align: center;
        padding-top: 120px !important;
    }
}
/* SECTION BASE */
.about-section {
    padding: 100px 0;
    background: #0b0b0b;
}

/* IMAGE */
.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}
/* FRAME CONTAINER */
.video-frame {
    position: relative;
    padding: 12px;
    border-radius: 25px;

    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,213,79,0.25);

    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* VIDEO */
.video-frame video {
    width: 100%;
    border-radius: 18px;
    display: block;
}

/* GOLD GLOW */
.frame-glow {
    position: absolute;
    inset: -2px;
    border-radius: 25px;

    background: linear-gradient(135deg, #FFD54F, #FFA000);
    opacity: 0.15;
    z-index: -1;

    filter: blur(20px);
}
/* TAG */
.section-tag {
    color: #ffd54f;
    font-size: 13px;
    background: rgba(255, 213, 79, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 15px;
}

/* TITLE */
.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.section-title span {
    background: linear-gradient(90deg, #ffd54f, #ffa000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DESC */
.section-desc {
    color: #ccc;
    margin-bottom: 30px;
}

/* HIGHLIGHTS GRID */
.highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* BOX */
.highlight-box {
    padding: 20px;
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 213, 79, 0.15);

    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 20px;
}

.highlight-box h4 {
    color: #ffd54f;
    font-size: 22px;
    margin-bottom: 5px;
}

.highlight-box p {
    font-size: 13px;
    color: #aaa;
}

/* HOVER EFFECT */
.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }
    .highlight-box {
    padding: 10px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 213, 79, 0.15);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

}
/* ICON STYLE */
.highlight-box .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        rgba(255, 213, 79, 0.15),
        rgba(255, 160, 0, 0.1)
    );
    border: 1px solid rgba(255, 213, 79, 0.2);
}

/* ICON */
.highlight-box i {
    font-size: 22px;
    background: linear-gradient(90deg, #ffd54f, #ffa000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* OPTIONAL: HOVER GLOW */
.highlight-box:hover .icon {
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.25);
}
/* SECTION */
/* SECTION */
.amenities-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0b0b0b, #111);
}

/* ITEM CARD */
.amenity-item {
    padding: 30px 20px;
    border-radius: 18px;
    text-align: center;

    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 213, 79, 0.15);

    transition: 0.4s;
}

/* ICON */
.amenity-item i {
    font-size: 28px;
    margin-bottom: 12px;

    background: linear-gradient(90deg, #ffd54f, #ffa000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.amenity-item h6 {
    color: #fff;
    font-size: 14px;
}

/* HOVER */
.amenity-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(255, 165, 0, 0.2);
}

/* DOTS */
.owl-dot span {
    background: #555 !important;
}

.owl-dot.active span {
    background: #ffd54f !important;
}
/* SECTION */
.why-section {
    padding: 100px 0;
    background: #0b0b0b;
}

/* CARD */
.why-card {
    padding: 30px;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 213, 79, 0.15);

    text-align: left;
    transition: 0.4s;
}

/* ICON */
.why-card i {
    font-size: 28px;
    margin-bottom: 15px;

    background: linear-gradient(90deg, #ffd54f, #ffa000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TITLE */
.why-card h5 {
    color: #fff;
    margin-bottom: 10px;
}

/* TEXT */
.why-card p {
    color: #bbb;
    font-size: 14px;
}

/* HOVER */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(255, 165, 0, 0.15);
}

/* SPECIAL CARD */
.why-card.highlight {
    border: 1px solid rgba(255, 165, 0, 0.4);
    background: linear-gradient(
        135deg,
        rgba(255, 213, 79, 0.08),
        rgba(255, 160, 0, 0.05)
    );
}
/* SECTION */
.location-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0b0b0b, #111);
}

/* GRID ITEMS */
.location-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-item {
    display: flex;
    gap: 15px;
    align-items: center;

    padding: 18px;
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 213, 79, 0.15);

    transition: 0.3s;
}

.location-item i {
    font-size: 22px;
    color: #ffd54f;
}

.location-item h6 {
    margin: 0;
    color: #fff;
}

.location-item span {
    font-size: 13px;
    color: #aaa;
}

.location-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.15);
}

/* MAP */
.map-wrapper {
    position: relative;
    height: 100%;
    min-height: 420px;
    border-radius: 18px;
    overflow: hidden;

    border: 1px solid rgba(255, 213, 79, 0.2);
}

/* MAP CARD */
.map-card {
    position: absolute;
    bottom: 20px;
    left: 20px;

    padding: 20px;
    border-radius: 12px;

    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 213, 79, 0.2);
}

.map-card h5 {
    color: #ffd54f;
}

/* CONNECTIVITY STRIP */
.connectivity-strip {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;

    padding: 20px;
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 213, 79, 0.1);
}

.connectivity-strip div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
}

.connectivity-strip i {
    color: #ffd54f;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .connectivity-strip {
        justify-content: center;
    }
}
/* SECTION */
.gallery-section {
    padding: 100px 0;
    background: #0b0b0b;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* ITEM */
.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

/* HOVER EFFECT */
.gallery-item:hover img {
    transform: scale(1.12);
}

/* OPTIONAL GOLD GLOW */
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 213, 79, 0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* SECTION */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0b0b0b, #111);
}

/* CARD */
.pricing-card {
    padding: 30px;
    border-radius: 18px;
    text-align: center;

    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 213, 79, 0.15);

    transition: 0.4s;
    position: relative;
}

/* HIGHLIGHT CARD */
.pricing-card.highlight {
    border: 1px solid rgba(255, 165, 0, 0.4);
    transform: scale(1.05);
    background: linear-gradient(
        135deg,
        rgba(255, 213, 79, 0.08),
        rgba(255, 160, 0, 0.05)
    );
}

/* BADGE */
.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ffd54f;
    color: #000;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
}

/* TITLE */
.pricing-card h5 {
    color: #ffd54f;
    margin-bottom: 5px;
}

.pricing-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

/* PRICE */
.price {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffd54f;
}

/* LIST */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    padding: 6px 0;
    color: #ccc;
    font-size: 14px;
}

/* BUTTON */
.btn-gold {
    background: linear-gradient(135deg, #ffd54f, #ffa000);
    color: #000;
    border-radius: 30px;
    padding: 12px;
    font-weight: 600;
}

.btn-gold:hover {
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

/* HOVER */
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(255, 165, 0, 0.15);
}

/* NOTE */
.pricing-note {
    color: #aaa;
    font-size: 14px;
}
/* MODAL */
/* MODAL */
.premium-modal {
    background: #0b0b0b;
    border-radius: 20px;
    border: 1px solid rgba(255, 213, 79, 0.25);

    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
}

/* LEFT IMAGE */
.modal-image-premium {
    height: 100%;
    min-height: 550px;

    background:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.85)),
        url("https://novestagroup.in/wp-content/uploads/2025/04/3-scaled.png")
            center/cover no-repeat;

    position: relative;
}

/* OVERLAY TEXT */
.image-overlay {
    position: absolute;
    bottom: 40px;
    left: 30px;
    right: 30px;
}

.image-overlay h3 {
    color: #ffd54f;
    font-size: 28px;
    margin-bottom: 8px;
}

.image-overlay p {
    color: #ddd;
    margin-bottom: 15px;
}

.image-overlay ul {
    padding: 0;
    list-style: none;
}

.image-overlay ul li {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 5px;
}

/* FORM SIDE */
.modal-form-premium {
    padding: 30px;
}

/* TITLE */
.modal-form-premium h5 {
    color: #ffd54f;
}

/* SUBTEXT */
.modal-subtext {
    color: #aaa;
    font-size: 13px;
    margin-bottom: 15px;
}

/* INPUT GROUP */
.form-group input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;

    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(255, 255, 255, 0.05);
    color: #fff;

    transition: 0.3s;
}

/* FOCUS EFFECT */
.form-group input:focus {
    border: 1px solid #ffd54f;
    outline: none;
    box-shadow: 0 0 10px rgba(255, 213, 79, 0.2);
}

/* RADIO PREMIUM */
.radio-group-premium label {
    display: block;
    padding: 12px;
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 213, 79, 0.15);

    margin-bottom: 8px;
    cursor: pointer;

    transition: 0.3s;
}

.radio-group-premium input {
    display: none;
}

/* ACTIVE */
.radio-group-premium input:checked + span {
    color: #ffd54f;
    font-weight: 600;
}

/* HOVER */
.radio-group-premium label:hover {
    background: rgba(255, 213, 79, 0.08);
}
.radio-group-premium {
    display: flex;
    gap: 20px;
    color: white;
}
/* BUTTON */
.btn-gold {
    background: linear-gradient(135deg, #ffd54f, #ffa000);
    color: #000;
    border-radius: 30px;
    padding: 14px;
    font-weight: 600;
    border: none;
}

.btn-gold:hover {
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

/* CLOSE BUTTON */
.btn-close-white {
    filter: invert(1);
}

/* MOBILE */
@media (max-width: 768px) {
    .modal-image-premium {
        display: none;
    }
}
/* SECTION */
.review-section {
    padding: 100px 0;
    background: #0b0b0b;
}

/* CARD */
.review-card {
    padding: 25px;
    border-radius: 18px;
    text-align: left;

    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 213, 79, 0.15);

    transition: 0.4s;
}

/* STARS */
.stars {
    color: #ffd54f;
    margin-bottom: 10px;
    font-size: 16px;
}

/* TEXT */
.review-card p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
}

/* USER */
.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-user img {
    width: 50px !important;
    height: 50px;
    border-radius: 50%;
}

.review-user h6 {
    margin: 0;
    color: #fff;
}

.review-user span {
    font-size: 12px;
    color: #aaa;
}

/* HOVER */
.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(255, 165, 0, 0.15);
}

/* DOTS */
.owl-dot span {
    background: #555 !important;
}

.owl-dot.active span {
    background: #ffd54f !important;
}
/* SECTION */
.cta-section {
    padding: 100px 20px;
    text-align: center;

    background: linear-gradient(
        135deg,
        rgba(255, 213, 79, 0.08),
        rgba(255, 160, 0, 0.05)
    );

    border-top: 1px solid rgba(255, 213, 79, 0.2);
    border-bottom: 1px solid rgba(255, 213, 79, 0.2);
}

/* TITLE */
.cta-section h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #fff;
}

.cta-section h2 span {
    background: linear-gradient(90deg, #ffd54f, #ffa000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.cta-section p {
    color: #ccc;
    margin-bottom: 30px;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* GOLD BUTTON */
.btn-gold {
    background: linear-gradient(135deg, #ffd54f, #ffa000);
    color: #000;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

/* OUTLINE BUTTON */
.btn-outline-gold {
    border: 1px solid #ffd54f;
    color: #ffd54f;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
}

.btn-outline-gold:hover {
    background: #ffd54f;
    color: #000;
}

/* WHATSAPP */
.btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

/* TRUST */
.cta-trust {
    color: #aaa;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 28px;
    }
}
/* FOOTER */
.footer-section {
    padding: 80px 0 30px;
    background: #070707;
    color: #ccc;
}

/* LOGO */
.footer-logo {
    color: #fff;
    margin-bottom: 10px;
}

.footer-logo span {
    color: #ffd54f;
}

/* TEXT */
.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

/* HEADINGS */
.footer-section h5 {
    color: #ffd54f;
    margin-bottom: 15px;
}

/* LINKS */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #ffd54f;
}

/* CONTACT */
.footer-contact p {
    margin: 5px 0;
}

/* SOCIAL */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;
    margin-right: 10px;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);

    color: #ffd54f;
    font-size: 18px;

    transition: 0.3s;
}

.social-icons a:hover {
    background: #ffd54f;
    color: #000;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
    font-size: 13px;
    color: #888;
}
/* CONTAINER */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

/* BASE BUTTON */
.float-btn {
    width: 55px;
    height: 55px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    color: #fff;
    border: none;

    cursor: pointer;
    text-decoration: none;

    position: relative;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* COLORS */
.call-btn {
    background: linear-gradient(135deg, #ffd54f, #ffa000);
    color: #000;
}

.whatsapp-btn {
    background: #25d366;
}

.visit-btn {
    background: linear-gradient(135deg, #ffd54f, #ffa000);
    color: #000;
}

/* HOVER */
.float-btn:hover {
    transform: scale(1.1);
}

/* PULSE ANIMATION */
.float-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;

    background: inherit;
    opacity: 0.6;

    animation: pulse 1.8s infinite;
    z-index: -1;
}

/* ANIMATION KEYFRAMES */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}
/* DOT CONTAINER */
.owl-dots {
    margin-top: 25px;
    text-align: center;
}

/* EACH DOT */
.owl-dot {
    margin: 0 6px;
}

/* DOT SHAPE */
.owl-dot span {
    width: 10px;
    height: 10px;

    display: block;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;

    position: relative;
}

/* HOVER EFFECT */
.owl-dot:hover span {
    background: #ffd54f;
    transform: scale(1.2);
}

/* ACTIVE DOT */
.owl-dot.active span {
    width: 26px;
    height: 10px;

    border-radius: 20px;

    background: linear-gradient(90deg, #ffd54f, #ffa000);

    box-shadow: 0 0 10px rgba(255, 165, 0, 0.6);
}

/* PREMIUM GLOW ANIMATION */
.owl-dot.active span::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;

    background: inherit;
    opacity: 0.6;

    animation: dotPulse 1.5s infinite;
    z-index: -1;
}

/* ANIMATION */
@keyframes dotPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}



@media (max-width: 768px) {
    section {
       padding: 50px 0px !important;
    }
}


@media (max-width: 768px) {

    .gallery-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        padding-bottom: 10px;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        min-width: 85%;
        flex: 0 0 auto;

        scroll-snap-align: center;
    }

    .gallery-item img {
        height: 230px;
    }
}




/* MOBILE ONLY */
@media (max-width: 768px) {

    .why-carousel {
        flex-wrap: nowrap;
        overflow-x: auto;

        gap: 14px;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        padding-left: 15px;   /* 👈 important */
        padding-right: 15px;  /* 👈 important */
    }

    .why-carousel::-webkit-scrollbar {
        display: none;
    }

    /* EACH CARD */
    .why-carousel > div {
        flex: 0 0 85%;   /* 👈 MAIN MAGIC (peek effect) */
        max-width: 85%;

        scroll-snap-align: start;
    }
    .why-card {
    padding: 30px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 213, 79, 0.15);
    text-align: left;
    transition: 0.4s;
    height: 100%;
}

}