:root{
    --navy:#081520;
    --tile:#102536;
    --gold:#d4af37;
    --brown:#5c4635;
    --white:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--navy);
    color:#fff;
    overflow-x:hidden;
}

h1,h2,h3,h4,h5{
    font-family:'Cinzel',serif;
}

/* =========================
TOP HEADER
========================= */

.top-header{
    background:var(--tile);
    padding:12px 0;
    border-bottom:1px solid rgba(212,175,55,0.3);
}

.social-icons a{
    color:var(--gold);
    margin-right:15px;
    font-size:18px;
    transition:0.4s;
}

.social-icons a:hover{
    color:#fff;
}

.contact-info{
    color:#fff;
    font-size:14px;
}

.contact-info i{
    color:var(--gold);
    margin-right:6px;
}

.enquiry-btn{
    background:var(--gold);
    color:#000;
    border:none;
    padding:10px 24px;
    border-radius:40px;
    font-weight:600;
}

/* =========================
NAVBAR
========================= */

.main-header{
    background:rgba(8,21,32,0.95);

    position:sticky;
    top:0;
    z-index:999;
}

.navbar-brand{
    color:var(--gold);
    font-size:34px;
    font-weight:bold;
    letter-spacing:4px;
}

.navbar-brand:hover{
    color:#fff;
}

.navbar-nav .nav-link{
    color:#fff;
    margin-left:18px;
    transition:0.4s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:var(--gold);
}

/* =========================
LOGO IMAGE STYLE
========================= */

.logo-brand{
    display:flex;
    align-items:center;
    position:relative;
    transition:0.4s;
}

/* LOGO IMAGE */

.logo-brand img{
    height:75px;
    width:auto;
    object-fit:contain;
    transition:0.5s ease;
    filter:drop-shadow(0 0 10px rgba(212,175,55,0.25));
}

/* HOVER EFFECT */

.logo-brand:hover img{
    transform:scale(1.08) rotate(-2deg);
    filter:
    drop-shadow(0 0 15px rgba(212,175,55,0.5))
    brightness(1.1);
}

/* GOLD ANIMATION BORDER */

.logo-brand::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:linear-gradient(90deg,#d4af37,#f6d365);
    transition:0.5s;
}

.logo-brand:hover::after{
    width:100%;
}

/* STICKY NAVBAR LOGO EFFECT */

.main-header.scrolled .logo-brand img{
    height:65px;
}

/* =========================
PAGE BANNER
========================= */

.page-banner{
    height:400px;
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.page-banner::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}

.page-banner h1{
    position:relative;
    z-index:2;
    color:var(--gold);
    font-size:60px;
}

/* =========================
HERO SLIDER
========================= */

/* =========================
CUSTOM SLIDER BUTTONS
========================= */

.custom-slider-btn{
    width:70px;
    opacity:1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    width:60px;
    height:60px;
    border-radius:50%;
    background-color:rgba(212,175,55,0.85);
    background-size:28px;
    transition:0.4s;
    backdrop-filter:blur(5px);
}

/* HOVER EFFECT */

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover{

    background-color:#fff;
    transform:scale(1.1);
}

/* INDICATORS */

.carousel-indicators button{

    width:14px !important;
    height:14px !important;
    border-radius:50%;
    background-color:var(--gold) !important;
    opacity:0.6;
    margin:0 6px;
    transition:0.4s;
}

.carousel-indicators .active{
    opacity:1;
    transform:scale(1.3);
}

/* MOBILE */

@media(max-width:576px){

    .carousel-control-prev-icon,
    .carousel-control-next-icon{

        width:45px;
        height:45px;
        background-size:20px;
    }

    .custom-slider-btn{
        width:50px;
    }

}





.carousel-item{
    height:100vh;
    min-height:700px;
    background-size:cover;
    background-position:center;
    position:relative;
}

.carousel-item::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

.carousel-caption{
    bottom:50%;
    transform:translateY(50%);
}

.carousel-caption h1{
    font-size:75px;
    color:var(--gold);
}

.hero-btn{
    background:var(--gold);
    color:#000;
    padding:14px 36px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
}

/* =========================
SPECIAL BANNER
========================= */

.special-banner{
    padding:120px 0;
    background:url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?q=80&w=1920') center center/cover no-repeat;
    position:relative;
}

.special-banner::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
    top:0;
    left:0;
}

.special-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.special-content h2{
    font-size:60px;
    color:var(--gold);
}

.special-content p{
    font-size:20px;
    margin-top:20px;
}

/* =========================
SECTION
========================= */

.section-padding{
    padding:100px 0;
}

.section-title{
    color:var(--gold);
    margin-bottom:25px;
}

/* =========================
CARDS
========================= */

.custom-card{
    background:#10202d;
    border-radius:20px;
    overflow:hidden;
    transition:0.4s;
}

.custom-card:hover{
    transform:translateY(-10px);
}

.custom-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card-content{
    padding:25px;
}

/* =========================
GALLERY
========================= */

.gallery-img{
    overflow:hidden;
    border-radius:20px;
}

.gallery-img img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.5s;
}

.gallery-img:hover img{
    transform:scale(1.1);
}

/* =========================
FORM
========================= */

.form-control{
    background:#132635;
    border:none;
    color:#fff;
    padding:15px;
}

.form-control:focus{
    background:#132635;
    color:#fff;
    box-shadow:none;
}

.submit-btn{
    background:var(--gold);
    color:#000;
    border:none;
    padding:14px 40px;
    border-radius:40px;
}

.contact-box{
    background:#10202d;
    padding:40px;
    border-radius:20px;
    height:100%;
}

.contact-box h3{
    color:#d4af37;
    margin-bottom:30px;
}

.contact-info-item{
    display:flex;
    align-items:flex-start;
    margin-bottom:25px;
}

.contact-info-item i{
    color:#d4af37;
    font-size:22px;
    margin-right:15px;
    margin-top:5px;
}

.contact-info-item h5{
    margin-bottom:5px;
    color:#fff;
}

.contact-info-item p,
.contact-info-item a{
    color:#ccc;
    text-decoration:none;
    margin:0;
}

.map-box{
    border-radius:20px;
    overflow:hidden;
    height:100%;
}

.map-box iframe{
    width:100%;
    height:100%;
    min-height:500px;
    border:0;
}


/* =========================
FOOTER
========================= */

.footer{
    background:#050d14;
    padding:30px 0;
    text-align:center;
}

.footer p{
    margin:0;
    color:#aaa;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .carousel-caption h1{
        font-size:45px;
    }

    .page-banner h1{
        font-size:42px;
    }

    .logo-brand img{
        height:65px;
    }

}

@media(max-width:576px){

    .carousel-caption h1{
        font-size:32px;
    }

    .page-banner{
        height:300px;
    }

    .page-banner h1{
        font-size:32px;
    }

    .logo-brand img{
        height:55px;
    }

}
/* =========================
FLOATING BUTTONS
========================= */

/* PDF BUTTON */

.floating-pdf-btn{

    position:fixed;
    right:25px;
    bottom:105px;
    z-index:999;

    background:linear-gradient(45deg,#d4af37,#f6d365);
    color:#000;

    padding:14px 22px;
    border-radius:50px;

    text-decoration:none;
    font-weight:600;
    font-size:15px;

    display:flex;
    align-items:center;
    gap:10px;

    box-shadow:0 10px 30px rgba(0,0,0,0.35);

    transition:0.4s ease;

    animation:floatPdf 2s infinite ease-in-out;
}

/* PDF ICON */

.floating-pdf-btn i{
    font-size:18px;
}

/* PDF HOVER */

.floating-pdf-btn:hover{

    background:#fff;
    color:#000;

    transform:translateY(-5px) scale(1.05);

}

/* WHATSAPP BUTTON */

.floating-whatsapp-btn{

    position:fixed;
    right:25px;
    bottom:25px;
    z-index:999;

    width:68px;
    height:68px;

    background:#25D366;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 10px 30px rgba(0,0,0,0.4);

    transition:0.4s ease;

    animation:whatsappPulse 2s infinite;
}

/* WHATSAPP HOVER */

.floating-whatsapp-btn:hover{

    color:#fff;

    transform:scale(1.12);

    box-shadow:0 15px 35px rgba(37,211,102,0.5);

}

/* WHATSAPP PULSE */

@keyframes whatsappPulse{

    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(37,211,102,0.7);
    }

    70%{
        transform:scale(1.05);
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

/* PDF FLOAT */

@keyframes floatPdf{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-5px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* MOBILE RESPONSIVE */

@media(max-width:576px){

    .floating-pdf-btn{

        right:15px;
        bottom:90px;

        padding:12px 18px;

        font-size:13px;
    }

    .floating-whatsapp-btn{

        width:58px;
        height:58px;

        right:15px;
        bottom:15px;

        font-size:28px;
    }

}

/* =========================
MOBILE FLOATING BUTTONS
SIDE BY SIDE
========================= */

@media(max-width:576px){

    /* BUTTON COMMON STYLE */

    .floating-pdf-btn,
    .floating-whatsapp-btn{

        position:fixed;
        bottom:15px;
        z-index:9999;

        display:flex;
        align-items:center;
        justify-content:center;

        border-radius:50px;

        box-shadow:0 10px 25px rgba(0,0,0,0.35);
    }

    /* PDF BUTTON */

    .floating-pdf-btn{

        left:15px;
        right:50%;

        margin-right:8px;

        height:55px;

        padding:0 18px;

        font-size:13px;
        font-weight:600;

        gap:8px;

        background:linear-gradient(45deg,#d4af37,#f6d365);

        color:#000;

        animation:none;
    }

    .floating-pdf-btn i{
        font-size:16px;
    }

    /* WHATSAPP BUTTON */

    .floating-whatsapp-btn{

        left:50%;
        right:15px;

        margin-left:8px;

        height:55px;

        font-size:15px;
        font-weight:600;

        width:auto;

        background:#25D366;

        color:#fff;

        gap:8px;

        animation:none;
    }

    /* WHATSAPP TEXT */

    .floating-whatsapp-btn::after{

        content:'WhatsApp';

        font-size:13px;
        font-weight:600;
    }

    .floating-whatsapp-btn i{
        font-size:22px;
    }

    /* HOVER */

    .floating-pdf-btn:hover,
    .floating-whatsapp-btn:hover{

        transform:none;
    }

    /* BODY EXTRA SPACE */

    body{
        padding-bottom:85px;
    }

}


/* =========================
WELCOME POPUP
========================= */

.popup-content{

    background:#081520;
    border:1px solid rgba(212,175,55,0.25);

    border-radius:25px;

    overflow:hidden;

    position:relative;

    box-shadow:0 20px 50px rgba(0,0,0,0.5);

    animation:popupZoom 0.5s ease;
}

/* POPUP IMAGE */

.popup-image{
    overflow:hidden;
}

.popup-image img{

    width:100%;
    height:280px;

    object-fit:cover;

    transition:0.5s;
}

.popup-image:hover img{
    transform:scale(1.05);
}

/* POPUP BODY */

.popup-body{
    padding:35px 30px 40px;
}

.popup-body h2{

    color:#d4af37;

    font-size:36px;

    margin-bottom:18px;
}

.popup-body p{

    color:#ddd;

    line-height:28px;

    margin-bottom:28px;
}

/* BUTTON */

.popup-btn{

    background:linear-gradient(45deg,#d4af37,#f6d365);

    color:#000;

    padding:14px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

    display:inline-block;
}

.popup-btn:hover{

    background:#fff;

    color:#000;

    transform:translateY(-3px);
}

/* CLOSE BUTTON */

.popup-close{

    position:absolute;

    right:18px;
    top:18px;

    z-index:10;

    background:#fff !important;

    border-radius:50%;

    opacity:1;

    padding:10px;
}

/* ANIMATION */

@keyframes popupZoom{

    0%{
        transform:scale(0.7);
        opacity:0;
    }

    100%{
        transform:scale(1);
        opacity:1;
    }

}

/* MOBILE */

@media(max-width:576px){

    .popup-body h2{
        font-size:28px;
    }

    .popup-image img{
        height:220px;
    }

}