/* ================= GOOGLE FONT ================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ================= GLOBAL ================= */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
   background: linear-gradient(90deg, #e6f6ff, #ffffff);
}

/* ================= NAVBAR (UNCHANGED) ================= */
.navbar{
    position: sticky;
    top: 0;
    height: 80px;
    z-index: 1000;
    padding: 14px 50px;
    width: 100%;
    background: linear-gradient(90deg, #e6f6ff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    animation: slideDown 0.8s ease;
}

@keyframes slideDown {
from { transform: translateY(-100%); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}

.logo{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 22px;
    font-weight: 600;
    color:#1e3a5f ;
}

.logo img {
height:10%;
width: 10%;
}

.logo span {
color: #c9a44d;
}

.nav-links {
list-style: none;
display: flex;
gap: 20px;
}

.nav-links li {
position: relative;
}

.nav-links a {
text-decoration: none;
color: #1e3a5f;
font-size: 12px;
font-weight: 500;
letter-spacing: 0.5px;
padding: 5px 0;
transition: color 0.3s ease;
}

.nav-links a:hover {
color: #00c6f0;
}

.nav-links a::after {
content: "";
position: absolute;
width: 0;
height: 2px;
left: 0;
bottom: -4px;
background: #00c6f0;
transition: width 0.4s ease;
}

.nav-links a:hover::after {
width: 100%;
}

.dropdown {
position: absolute;
top: 35px;
left: 0;
background: #ffffff;
min-width: 180px;
border-radius: 6px;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all 0.4s ease;
}

.dropdown li {
padding: 12px 18px;
}

.dropdown li a {
color: #1e3a5f;
font-size: 14px;
}

.nav-links li:hover .dropdown {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.menu-icon {
display: none;
flex-direction: column;
cursor: pointer;
}

.menu-icon span {
height: 3px;
width: 26px;
background: #1e3a5f;
margin: 4px 0;
}

#menu-toggle { display: none; }

@media (max-width: 768px) {
.menu-icon { display: flex; }

.nav-links {
position: absolute;
top: 75px;
left: 0;
width: 100%;
background: #ffffff;
flex-direction: column;
align-items: center;
display: none;
padding: 20px 0;
}

.nav-links li:hover .dropdown {
position: static;
box-shadow: none;
}

#menu-toggle:checked + .menu-icon + .nav-links {
display: flex;
}
}

/* ================= HERO VIDEO ================= */
.hero-video {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0,0,0,0.35);
  color: #fff;
  padding: 20px;
}

.hero-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-overlay h1 span {
  color: #00c6f0;
}

.hero-overlay h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.4s ease;
}

.btn.gold {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn.gold:hover {
  background: #00c6f0;
  transform: translateY(-2px);
}

.btn.outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn.outline:hover {
  background: transparent;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .hero-overlay h1{font-size:34px;}
  .hero-overlay h2{font-size:18px;}
  .hero-buttons{flex-direction:column;}
}

/* ================= WELCOME ================= */
.welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  min-height: 70vh;
  gap: 50px;
}

.welcome-text {
  flex: 1;
}

.welcome-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  margin-bottom: 15px;
}

.welcome-text h1 span {
  color: #00c6f0;
}

.welcome-text p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}
