
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
  --primary:#0b1c3d;
  --txt: #FFFDD0;
  --sec:#ffffff;
}

body {
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1{
  font-size: 36px;
  margin-bottom: 20px;
}
h2{
  font-size: 28px;
  margin-bottom: 18px;
}
h3{
  font-size: 22px;
  margin-bottom: 15px;
}
h4{
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  color: var(--txt);
  line-height: 1.6;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 16px;
  }
  p {
    font-size: 14px;
  }
}




/****************************
******* Navbar start ********
****************************/

/* ================= NAVBAR BASE ================= */
.glass-nav{
  background: rgba(11,28,61,0.85);
  backdrop-filter: blur(14px);
  position:fixed;
  width:100%;
  top:0;
  z-index:9999;
  transition:.4s;
}

/* Scroll shrink */
.glass-nav.scrolled{
  background:#0b1c3d;
  padding:10px 0;
  box-shadow:0 8px 20px rgba(0,0,0,.4);
}

/* Animated gradient border */
.glass-nav::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:3px;
}


/* LOGO */
.navbar-brand img{
  height:60px;
  border-radius:50%;
}

/* NAV LINKS */
.nav-link{
  color:beige!important;
  margin:0 15px;
  font-weight: 400;
  font-weight:lighter;
  position:relative;
  transition:.3s;
}

.nav-link::after{
  content:'';
  position:absolute;
  width:0;
  height:2px;
  left:0;
  bottom:-6px;
  background:var(--txt);
  transition:.3s;
}

.nav-link:hover::after{ width:100%; }
.nav-link:hover{
  color:white!important;
  transform:translateY(-3px);
}

/* Desktop icons */
.desktop-icons i{
  color:var(--txt);
  font-size:20px;
  margin-left:18px;
  padding: 10px;
  cursor:pointer;
  transition:.3s;
}

.desktop-icons i:hover{
  color:white;
  transform:scale(1.2);
}

/* Hide desktop icons on mobile */
@media(max-width:991px){
  .desktop-icons{
    display:none!important;
  }
}

/* Mobile dropdown icons */
.mobile-auth{
  display:none;
}

@media(max-width:991px){
  .mobile-auth{
    display:block;
    margin-top:15px;
  }

  .mobile-auth i{
    color:var(--txt);
    font-size:22px;
    margin-right:20px;
  }

  .navbar-collapse{
    background:#0b1c3d;
    padding:20px;
    border-radius:10px;
  }
}

/* Modal glass */

/* Fix modal appearing behind navbar */
.modal {
  z-index: 20000 !important;
}

.modal-backdrop {
  z-index: 19999 !important;
}

/* Make sure navbar stays lower than modal */
.glass-nav {
  z-index: 9999;
}

.modal-content{
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  border-radius:15px;
  border:1px solid rgba(255,255,255,0.2);
  color:white;
  position: absolute;
}

.modal-content input{
  background:transparent;
  border:1px solid rgba(255,255,255,0.4);
  color:white;
}

.btn-luxury{
  background:var(--txt);
  color:var(--primary);
  font-weight:bold;
}

.nav-link i{
  transition:.3s;
}

.nav-link:hover i{
  transform: translateY(-2px) scale(1.1);
  color:white;
}

/****************************
******* Navbar End ********
****************************/


/****************
*******Home page*****
*********************/






/****************************
******* Footer start ********
****************************/
/* Footer Base */
.luxury-footer {
  background: linear-gradient(
    135deg,
    rgba(32, 40, 59,0.8),
    rgba(32, 40, 59,0.9)
  );
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212,175,55,0.3);
  color: var(--sec);
  padding-top: 60px;
}

/* Container */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 40px;
  padding: 0 10%;
}

/* Columns */
.footer-col h3,
.footer-col h4 {
  color: var(--sec);
  margin-bottom: 15px;
}

.footer-col p {
  color: #cfcfcf;
  line-height: 1.6;
}

/* Links */
.footer-col a {
  display: block;
  color: #cfcfcf;
  text-decoration: none;
  margin: 8px 0;
  transition: 0.3s;
}

.footer-col a:hover {
  color: var(--sec);
  transform: translateX(5px);
}

/* Socials */
.socials {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.1));
  border: 2px solid rgba(212,175,55,0.4);
  border-radius: 50%;
  color: var(--primary);
  font-size: 20px;
  transition: 0.3s ease;
  text-decoration: none;
}

.socials a:hover {
  background: linear-gradient(135deg, beige, rgba(212,175,55,0.3));
  border-color: var(--primary);
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}

.socials a i {
  color: var(--txt);
  transition: transform 0.3s ease;
}

.socials a:hover i {
  transform: rotate(10deg);
}

/* Bottom */
.footer-bottom {
width: 100%;
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  border-top: 1px solid rgba(212,175,55,0.2);
  color: #aaa;
  font-size: 14px;
}

/* Glass Card Effect */
.footer-col {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.2);
  transition: 0.4s;
}

.footer-col:hover {
  transform: translateY(-8px);
  border-color: var(--sec);
  box-shadow: 0 0 25px rgba(212,175,55,0.15);
}

/****************************
******* Footer end ********
****************************/


