/* =========================
   PREMIUM NAVBAR START
========================= */

.luxury-navbar{
position:fixed;
top:10px;
left:50%;
transform:translateX(-50%);
width:86%;
max-width:1450px;
z-index:9999;

background:rgba(25,0,15,.55);
backdrop-filter:blur(18px);

border:1px solid rgba(235,160,29,.65);

border-radius:80px;

/*padding:4px 0;*/

box-shadow:
0 8px 35px rgba(0,0,0,.35),
0 0 25px rgba(247,197,111,.7);

transition:.4s ease;
}

.luxury-navbar.scrolled{
top:0px;

background:rgba(20,0,10,.9);

box-shadow:
0 15px 40px rgba(0,0,0,.45);
}

.navbar-container{
width:94%;
margin:auto;

display:flex;
justify-content:space-between;
align-items:center;
}

/* =========================
   LOGO
========================= */

.logo img{
height:80px;
transition:.4s ease;

/*filter:*/
/*drop-shadow(0 0 10px rgba(247,197,111,.35));*/
}

.logo:hover img{
transform:scale(1.05);
}

/* =========================
   MENU
========================= */

.nav-links{
display:flex;
align-items:center;
gap:45px;
list-style:none;
}

.nav-links li a{
position:relative;

/*font-family:'Cinzel',serif;*/
font-size:16px;
font-weight:900;

text-decoration:none;

color:#fff;

letter-spacing:1px;

transition:.35s;
}

.nav-links li a:hover{
color:#f7c56f;
}

/* Luxury underline */

.nav-links li a::before{
content:'';

position:absolute;
left:50%;
bottom:-10px;

width:0;
height:2px;

transform:translateX(-50%);

background:
linear-gradient(
90deg,
transparent,
#f7c56f,
transparent
);

transition:.4s;
}

.nav-links li a:hover::before{
width:100%;
}

/* =========================
   BUTTON
========================= */

.enroll-btn{
position:relative;

padding:14px 32px;

border-radius:50px;

font-family:'Cinzel',serif;
font-weight:700;

text-decoration:none;

color:#350012;

background:
linear-gradient(
135deg,
#f7c56f,
#ffca78,
#ffe2a6
);

overflow:hidden;

box-shadow:
0 0 20px rgba(247,197,111,.35);

transition:.4s;
}

.enroll-btn:hover{
transform:translateY(-4px);

box-shadow:
0 12px 30px rgba(247,197,111,.45);
}

/* Shine animation */

.enroll-btn::before{
content:'';

position:absolute;

top:0;
left:-120%;

width:80px;
height:100%;

background:
rgba(255,255,255,.35);

transform:skewX(-25deg);

transition:.8s;
}

.enroll-btn:hover::before{
left:120%;
}

/* =========================
   HAMBURGER
========================= */

.hamburger{
display:none;
width:30px;
height:28px;
cursor:pointer;
position:relative;
z-index:10001;
}

.hamburger span{
position:absolute;

width:100%;
height:3px;

background:#f7c56f;

border-radius:50px;

transition:.4s;
}

.hamburger span:nth-child(1){
top:0;
}

.hamburger span:nth-child(2){
top:12px;
}

.hamburger span:nth-child(3){
top:24px;
}

.hamburger.active span:nth-child(1){
transform:rotate(45deg);
top:12px;
}

.hamburger.active span:nth-child(2){
opacity:0;
}

.hamburger.active span:nth-child(3){
transform:rotate(-45deg);
top:12px;
}

/* =========================
   MOBILE MENU
========================= */

@media(max-width:1100px){

.hamburger{
display:block;
}

.enroll-btn{
display:none;
}

.logo img{
height:60px;
}

.nav-links{
position:fixed;

top:0;
right:-100%;

width:320px;
max-width:85%;

height:60vh;

background:
linear-gradient(
180deg,
#22000f,
#120006
);

backdrop-filter:blur(25px);

flex-direction:column;
justify-content:center;
align-items:center;

gap:30px;

transition:.8s ease;

border-radius:30px;
border-left:
2px solid rgba(247,197,111,.9);
border-bottom:
1px solid rgba(247,197,111,.8);

box-shadow:
-10px 0 30px rgba(0,0,0,.35);
}

.nav-links.active{
right:0;
}

.nav-links li a{
font-size:20px;
}
}

/* =========================
   MOBILE
========================= */

@media(max-width:576px){

.luxury-navbar{
width:100%;
top:15px;
/*padding:12px 0;*/
}

.logo img{
height:55px;
border-radius:18px;
}

.nav-links{
width:55%;
}

.nav-links li a{
font-size:18px;
}
}
/* navbar end */




/*top banner section start*/

    /* =========================
   ABOUT PAGE BANNER
========================= */
.about-banner{
    width:100%;
    height:450px;
    background:url('images/Untitled.png') center center/cover no-repeat;
    position:relative;
}

.about-banner-overlay{
    position:absolute;
    inset:0;
    /*background:rgba(0,0,0,0.45);*/
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
    
}

.about-banner-content h1{
    color:#fff;
    font-size:52px;
    font-weight:700;
    margin-bottom:15px;
}

.about-banner-content p{
    color:#fff;
    font-size:20px;
    letter-spacing:1px;
}

/* Tablet */
@media (max-width:992px){
    .about-banner{
        height:350px;
    }

    .about-banner-content h1{
        font-size:40px;
    }

    .about-banner-content p{
        font-size:18px;
    }
}

/* Mobile */
@media (max-width:768px){
    .about-banner{
        height:270px;
      
        background-position:center;
    }

    .about-banner-content h1{
        font-size:28px;
        margin-bottom:10px;
    }

    .about-banner-content p{
        font-size:14px;
        line-height:1.5;
    }
}

/*top banner section end*/



:root{
  --gold:#D4A64A;
  --bg:#320011;
  --text:#FFF8EE;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins,sans-serif;
}

.about-section{
  position:relative;
  padding:60px 8%;
  background:linear-gradient(180deg,#320011,#2a0015);
  color:var(--text);
  overflow:hidden;
}

/* GLOW EFFECT */
.bg-glow{
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle,#D4A64A33,transparent);
  top:-150px;
  left:-150px;
  filter:blur(80px);
}

/* CONTAINER */
.container{
  display:flex;
  gap:60px;
  align-items:center;
}

/* LEFT SIDE */
.about-left{
  flex:1;
  opacity:0;
  transform:translateY(60px);
}

.about-left h2{
  font-size:42px;
  color:var(--gold);
}

.line{
  width:120px;
  height:3px;
  margin:15px 0 25px;
  background:linear-gradient(90deg,var(--gold),transparent);
}

.about-left p{
  line-height:1.8;
  margin-bottom:15px;
  opacity:0.85;
}

/* BUTTON */
.btn{
  display:inline-block;
  margin-top:20px;
  padding:12px 25px;
  background:var(--gold);
  color:#320011;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
}

/* RIGHT SIDE */
.about-right{
  flex:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

/* CARD */
.card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(212,166,74,0.2);
  padding:20px;
  border-radius:20px;
  backdrop-filter:blur(12px);

  opacity:0;
  transform:translateY(60px);
  transition:0.4s;
}

.card:hover{
  transform:translateY(-8px);
  border-color:var(--gold);
  box-shadow:0 0 20px rgba(212,166,74,0.2);
}

.card h3{
  color:var(--gold);
  margin-bottom:10px;
}

/* HIGHLIGHT */
.highlight{
  border:1px solid var(--gold);
  box-shadow:0 0 20px rgba(212,166,74,0.2);
}

/* RESPONSIVE */
@media(max-width:992px){
  .container{
    flex-direction:column;
  }

  .about-right{
    grid-template-columns:1fr;
  }

  .about-left h2{
    font-size:32px;
  }
}

/* footer start */
/* ==========================
   LUXURY FOOTER DESIGN
========================== */

.royal-footer{
    background:linear-gradient(135deg,#180008,#2b0012,#4b001c);
    color:#fff;
    padding:30px 0 0;
    position:relative;
    overflow:hidden;
    font-family:'Poppins',sans-serif;
}

.royal-footer::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,215,0,0.08);
    filter:blur(120px);
    top:-150px;
    left:50%;
    transform:translateX(-50%);
    border-radius:50%;
}

.footer-top{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.brand-section{
    text-align:center;
    margin-bottom:40px;
}

.brand-section img{
    width:110px;
    
    filter:drop-shadow(0 0 20px rgba(255,215,0,.5));
}

.brand-section h2{
    font-family:'Cinzel',serif;
    color:#f7c75e;
    font-size:32px;
    margin-bottom:15px;
}

.brand-section p{
    max-width:750px;
    margin:auto;
    color:#f8e8e8;
    line-height:1.8;
    font-size:16px;
}

/* =====================
   FOOTER GRID
===================== */

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    align-items:stretch;
}

/* =====================
   CARD DESIGN
===================== */

.footer-card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    border-radius:20px;
    padding:15px;
    border:1px solid rgba(255,215,0,.15);

    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;

    transition:.4s ease;
}

.footer-card:hover{
    transform:translateY(-8px);
    box-shadow:
    0 0 30px rgba(255,215,0,.15),
    0 0 60px rgba(255,215,0,.08);
}

.footer-card span{
    font-family:'Cinzel',serif;
    color:#f7c75e;
    font-size:24px;
    margin-bottom:20px;
    position:relative;
}

.footer-card span::after{
    content:"";
    width:50px;
    height:2px;
    background:#f7c75e;
    display:block;
    margin:10px auto 0;
}

/* =====================
   LINKS
===================== */

.footer-card a{
    color:#fff;
    text-decoration:none;
    margin:10px 0;
    transition:.3s;
    font-size:15px;
    font-weight:600;
}

.footer-card a:hover{
    color:#f7c75e;
    transform:translateX(5px);
}

.footer-card p{
    color:#f5e5e5;
    margin:10px 0;
    line-height:1.7;
    font-size:15px;
     font-weight:600;
}

/* =====================
   MAP
===================== */

.footer-map{
    width:100%;
    height:230px;
    border-radius:15px;
    overflow:hidden;
    margin-top:auto;
    border:2px solid rgba(255,215,0,.15);
}

.footer-map iframe{
    width:100%;
    height:100%;
    border:none;
}

/* =====================
   SOCIAL ICONS
===================== */

.social-area{
    display:flex;
    justify-content:center;
    gap:15px;
    margin:35px 0;
}

.social-area a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#f7c75e;
    font-size:18px;

    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,215,0,.2);

    transition:.4s;
}

.social-area a:hover{
    background:#f7c75e;
    color:#4b001c;
    transform:translateY(-6px) rotate(360deg);
    box-shadow:0 0 20px rgba(255,215,0,.5);
}

/* =====================
   COPYRIGHT
===================== */

.copyright{
    text-align:center;
    padding:18px;
    border-top:1px solid rgba(255,255,255,.08);
    font-size:14px;
    color:#e8d5d5;
}

/* =====================
   MOBILE
===================== */
@media (max-width:768px){

    .footer-top{
        width:95%;
        overflow:hidden;
    }

    .footer-grid{
        display:grid;
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:5px;
        width:100%;
    }

    .footer-card{
        min-width:0;
        width:100%;
        min-height:250px;
        padding:12px;
        box-sizing:border-box;

        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .footer-card span{
        font-size:14px;
        line-height:1.3;
        font-weight:bold;
    }

    .footer-card a,
    .footer-card p{
        font-size:13px;
        word-break:break-word;
        font-weight:600;
    }

    .footer-map{
        width:100%;
        height:170px;
        margin-top:auto;
    }

    .footer-map iframe{
        width:100%;
        height:100%;
    }
}
/*new */
.email-link{
    color:#fff;
    font-size:16px;
}

.email-link a{
   
    text-decoration:none;
    transition:.3s;
}

.email-link a:hover{
    color:#fff;
    text-decoration:underline;
}

.email-link i{
    margin-right:8px;
    color:#d4a64a;
}

/* footer end*/

