:root {
    --gold: #FFD700;
    --gold-dark: #C9A800;
    --green: #00C851;

    --dark: #0A0A0A;
    --dark2: #111111;
    --dark3: #1A1A1A;
    --dark4: #222222;

    --text: #F0EDE6;
    --muted: #999;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
}

a {
    text-decoration: none;
    font-size: 1rem;
    color: black;
}

ul {
    list-style: none;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: #fff;
}

h1 {
    font-family: var(--font-display);
}

/* ---------------------------button------------ */
/* ================================
   FLOATING BUTTONS SECTION
================================ */
.floating-buttons-section {
    position: relative;
    z-index: 999;
}

/* Container */
.floating-buttons {
    position: fixed;
    right: 1.5rem;
    bottom: 1.2rem;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* 🔥 right align */
    gap: 12px;
}

/* WhatsApp Box */
.wa-box {
    display: flex;
    flex-direction: column;
    /* 🔥 message top */
    align-items: flex-end;
    gap: 6px;
}

/* ================================
   TOOLTIP MESSAGE
================================ */
.wa-msg {
    background: #0f0f0f;
    border: 1px solid #25D366;
    color: #25D366;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    margin-bottom: 6px;
    /* Smooth entry animation */
    animation: fadeSlideUp 0.6s ease;
}

/* ================================
   COMMON BUTTON STYLE
================================ */
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 26px;
    color: #fff;
    text-decoration: none;

    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Hover effect */
.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.4);
}

/* ================================
   WHATSAPP BUTTON
================================ */
.whatsapp {
    background: #25D366;
    font-size: 28px;

    animation: floatUp 3s ease-in-out infinite;
}

/* ================================
   CALL BUTTON
================================ */
.call {
    background: #0078ff;

    animation: floatDown 3s ease-in-out infinite;
}

/* ================================
   FLOAT ANIMATIONS
================================ */
@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes floatDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}

/* ================================
   TOOLTIP ANIMATION
================================ */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 530px) {
    .floating-buttons {
        right: 0.8rem;
        bottom: 1rem;
        gap: 10px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .wa-msg {
        font-size: 12px;
        padding: 6px 10px;
    }
}
/* ---------header--------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    z-index: 100;
}

nav {
    /* max-width: 1200px; */
    margin: 0vw 3vw;

}

.top {
    margin-top: 5.5rem;
}

.nav-left {
    max-width: 27rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.4rem;
}

.logo {
    width: 4.3rem;
    height: 3.5rem;
}

.logo-text {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.name {
    font-family: 'Fredoka', sans-serif;
    text-align: start;
    padding-top: 5px;
    font-weight: 600;
    font-size: 1.4rem;
    color: white;
    text-shadow: 1px 1px 1px #ffee04;
}

.nav-data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-toggle {
    position: relative;
    width: 40px;
    height: 40px;
}

.bar,
.close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 4rem;
    cursor: pointer;
    transition: opacity .1s, transform .2s;
}

.nav-toggle i {
    font-size: 1.6rem;
    color: white;
}

.close {
    opacity: 0;
}

@media screen and (max-width:769px) {
    .nav-left {
        max-width: 30rem;
    }

    .logo {
        width: 4.8rem;
        height: 3.8rem;

    }

    .logo-text {
        align-items: start;
    }

    .name {
        padding-top: 5px;
        font-weight: 700;
        font-size: 1.3rem;
        text-shadow: 1px 0.5px 1px #ff0404;
    }

    .top {
        margin-top: 4.5rem;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 4.6rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        pointer-events: none;
        transition: left 0.2s, opacity 0.1s;
        z-index: 100;
        background-color: var(--dark);
    }

    .nav-link {
        color: var(--muted) !important;
        font-size: 1.1rem !important;
        padding: 0.9rem 1rem;
        text-align: center;
    }

    a.nav-link.login-btn {
        background-color: var(--gold) !important;
        color: #000 !important;
        border-radius: 10px;
        width: 70%;
    }

    .nav-menu::-webkit-scrollbar {
        width: 0;
    }

    .nav {
        padding: 0.4rem 0.5rem;
    }

    .nav-link {
        font-weight: 400;
    }

    .login-btn {
        padding: 1rem 16px !important;
        margin-right: 0.5rem;
        margin-top: 1rem;
        font-size: 1.1rem !important;
        border-radius: 30px;
        justify-content: center !important;
    }
}

.nav-link {
    color: var(--muted) !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
}


.nav-link i {
    font-size: 12px;
}

.show-menu {
    left: 0;
    opacity: 1;
    pointer-events: initial;
}

.show-icon .bar {
    opacity: 0;
    transform: rotate(90deg);
}


.show-icon .close {
    opacity: 1;
    transform: rotate(90deg);
}

.plus {
    margin-left: auto;
}

@media screen and (min-width: 769px) {
    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-toggle {
        display: none;
    }

    .nav-list {
        height: 100%;
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        align-items: center;

    }

    .nav-link {
        height: 100%;
        /* padding: 0.3rem 0.7rem; */
        justify-content: initial;
        column-gap: .5rem;
        font-size: 1rem;

    }

    .nav-link:hover {
        color: var(--gold) !important;
    }

}


.login-btn {
    background-color: var(--gold) !important;
    color: #000 !important;
    padding: 10px 16px !important;
    margin-left: 0.5rem;
    font-size: 1rem !important;
    border-radius: 3px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.login-btn:hover {
    background-color: var(--gold-dark) !important;
    color: #000 !important;
    border-radius: 3px !important;
}

/* ================================
   YELLOW TOP BAR
================================ */
.top-bar {
    width: 100%;
    background: var(--gold);
    color: #000;
    text-align: center;
    padding: 6px 10px 9px;
    font-size: 14px;
    font-weight: 500;
}

/* ================================
   HEADER HEIGHT FIX
================================ */
.header {
    display: flex;
    flex-direction: column;
}

/* SPACE FIX (IMPORTANT) */
.top {
    margin-top: 110px;
    /* adjust based on header height */
}

/* ================================
   RESPONSIVE FIX
================================ */
@media (max-width: 768px) {

    .top-bar {
        font-size: 12px;
        padding: 5px;
    }

    .top-bar span {
        display: block;
        margin-top: 4px;
    }

    .top {
        margin-top: 95px;
    }

    .nav-menu {
        top: 5rem;
        /* 🔥 adjust for yellow bar */
    }
    .nav-list li{
        text-align: center;
    }
}
@media (max-width: 768px) {

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;   /* 🔥 center horizontally */
        justify-content: center;
        gap: 12px;
        padding: 20px 0;
    }

    .nav-list li {
        width: 100%;
        display: flex;
        justify-content: center; /* 🔥 li bhi center */
    }

    .nav-link {
        justify-content: center !important; /* 🔥 FIX MAIN ISSUE */
        text-align: center;
        width: auto;
    }

    /* BOOK NOW BUTTON CENTER */
    .login {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .login-btn {
        width: 70%;
        text-align: center;
    }
}

.heading-1 h1 {
  font-family: monospace;
  font-weight: 600;
  font-size: 1.8rem;
  color: white;
  letter-spacing: 2px;
  text-align: center;
  margin-block: 1.5rem 1rem;
  text-shadow: 1px 0.5px 1px #ff0404;
}
@media screen and (max-width: 768px) {

  .heading-1 h1 {
    font-size: 1.5rem;
      margin-block:0.5rem;

  }
}
@media screen and (max-width: 570px) {
  .heading-1 h1 {
        font-weight: 500;
        letter-spacing: 1px;
        font-size: 1.2rem;
    }
  }
/* -------------------------gellary start------------------------ */
/* ===========================
   GALLERY SECTION
=========================== */

.gallery-section {
    margin-top: 8rem;
    position: relative;
    background: #000;
}

/* ===========================
   HEADING STYLE
=========================== */

.gallery-heading {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 5%;
}

.gallery-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.gallery-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
}

.heading-line {
    width: 90px;
    height: 3px;
    background: #FFD700;
}

/* ===========================
   GALLERY GRID
=========================== */

.gellary .img {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.gellary .img .under {
    width: 100%;
    height: 360px;
    overflow: hidden;
    display: block;

    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gellary .img .under.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   IMAGE STYLE
=========================== */

.gellary .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gellary .img .under:hover img {
    transform: scale(1.08);
}

/* ===========================
   TABLET
=========================== */

@media screen and (max-width: 992px) {
    .gallery-section {
    margin-top: 10rem;
    }

    .gallery-heading {
        margin-bottom: 40px;
    }

    .gallery-heading h2 {
        font-size: 2rem;
    }

    .gellary .img {
        grid-template-columns: repeat(3, 1fr);
    }

    .gellary .img .under {
        height: 260px;
    }
}

/* ===========================
   MOBILE
=========================== */

@media screen and (max-width: 768px) {

    .gallery-section {
        margin-top: 10rem;
    }

    .gallery-heading {
        padding: 0 20px;
    }

    .gallery-label {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .gallery-heading h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .heading-line {
        width: 70px;
    }

    .gellary .img {
        grid-template-columns: repeat(2, 1fr);
    }

    .gellary .img .under {
        height: 220px;
    }
}

/* ===========================
   SMALL MOBILE
=========================== */

@media screen and (max-width: 480px) {
    .gallery-section {
    margin-top: 10rem;
    }

    .gallery-heading h2 {
        font-size: 1.6rem;
    }

    .gellary .img {
        grid-template-columns: repeat(2, 1fr);
    }

    .gellary .img .under {
        height: 180px;
    }
}


/* -----------------------footer-section--------------- */
.footer {
    background: #000;
    color: var(--gold);
    padding: 3rem 2rem 1rem;
    font-family: var(--style);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.footer-about .logo1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-about .logo1 img {
    width: 3.8rem;
    height: 3.3rem;
}

.logo1 h1 {
    font-size: 1.4rem;
    color: var(--gold);
    font-family: var(--style);
    font-weight: 500;
}

.footer-about .about-text {
    font-size: 0.8rem;
    color: var(--text);
    font-weight: 600;
    line-height: 1.45;
    font-family: var(--style);
}

.footer-links h3,
.footer-products h3,
.footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}


.footer-links ul li,
.footer-products ul li {
    margin: 6px 0;
}

.footer-links a,
.footer-products a {
    color: var(--text);
    font-size: 0.9rem;
    font-family: var(--style);
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-products a:hover {
    color: var(--accent);
}

.footer-contact .social-icons {
    display: flex;
    gap: 0.6rem;
}

.footer-contact p span {
    margin-left: 1rem;
}

.footer-contact .social-icons a {
    font-size: 1.2rem;
    color: #fff;
    transition: color 0.3s;
}

.footer-contact a {
    color: #fff;
    line-height: 0.5;
    font-size: 0.9rem;
    font-family: var(--style);
    display: block;
    margin-block: 0.8rem;
}

.footer-contact .social-icons i:hover {
    color: var(--accent);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact p {
    font-size: 0.9rem;
    margin: 6px 0;
    color: #fff;
    line-height: 1.5;
    text-align: start;

}
#services {
  scroll-margin-top: 90px;
}

.footer-contact i {
    margin-right: 8px;
    color: #fff;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom .policy-links {
    margin-bottom: 8px;
}

.footer-bottom .policy-links a {
    color: #aaa;
    margin: 0 10px;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-bottom .policy-links a:hover {
    color: var(--accent);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
}

.footer-bottom a {
    color: #fbbf24;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 530px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }


    .footer-about .logo1 {
        gap: 0.5rem;
        margin-bottom: 1rem;
        justify-content: center;
    }

    .footer-about .logo1 img {
        width: 4rem;
        height: 3.1rem;
    }

    .logo1 h1 {
        font-size: 1.18rem;
    }

    .footer-about .about-text {
        font-size: 0.8rem;
        line-height: 1.58;
    }

    .footer-contact p span {
        margin-left: 0rem;
    }


    .footer-links h3,
    .footer-products h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }


    .footer-links ul li,
    .footer-products ul li {
        margin: 6px 0;
        padding: 5px 0;
    }

    .footer-links a,
    .footer-products a {
        font-size: 0.9rem;
    }

    .footer-contact .social-icons {
        gap: 0.6rem;
        margin-bottom: 15px;
    }

    .footer-contact .social-icons a {
        font-size: 1.2rem;
    }

    .footer-contact a {
        font-size: 0.9rem;
        margin-block: 0.9rem;
    }

    .footer-contact p {
        font-size: 0.9rem;
        margin: 9px 0;
        line-height: 1.5;
        text-align: center;

    }

    .footer-contact i {
        margin-right: 8px;
    }

    .footer-bottom {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .footer-bottom .policy-links {
        margin-bottom: 8px;
    }

    .footer-bottom .policy-links a {
        margin: 0 10px;
        font-size: 0.9rem;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }

    .footer-bottom span {
        font-weight: 500;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact .social-icons {
        justify-content: center;
    }
}