*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f5f5f5;
  color:#222;
}

/* ===== HEADER ===== */
header{
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 60px;
  background:white;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  z-index:1000;
}

.logo{
  display:flex;
  align-items:center;
}

.logo-img{
  height:50px;
  width:auto;
}

/* Navigation */
nav a{
  margin-left:25px;
  text-decoration:none;
  color:#333;
  font-weight:500;
  position:relative;
}

nav a::after{
  content:'';
  position:absolute;
  width:0;
  height:2px;
  background:#333;
  bottom:-6px;
  left:0;
  transition:0.3s;
}

nav a:hover::after{
  width:100%;
}

/* ===== HERO ===== */
.hero{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;

  /* Premium animated gradient background */
  background: linear-gradient(135deg, #0b1a3a 0%, #111 100%);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  color:white;
}

@keyframes gradientMove {
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

.hero-box{
  animation:fadeIn 1.5s ease;
}

.hero h1{
  font-family:'Playfair Display',serif;
  font-size:52px;
}

.hero p{
  margin-top:20px;
  opacity:0.85;
}

/* ===== SECTIONS ===== */
section{
  padding:100px 80px;
}

h2{
  font-family:'Playfair Display',serif;
  font-size:38px;
  margin-bottom:20px;
}

/* ===== ABOUT ===== */
.about p{
  max-width:800px;
  line-height:1.8;
}

/* ===== CONTACT ===== */
.contact{
  text-align:center;
  background: linear-gradient(135deg, #111 0%, #0b1a3a 100%);
  background-size: 400% 400%;
  animation: gradientMove 20s ease infinite;
  padding:80px 20px;
  color:white;
}

.contact form{
  max-width:500px;
  margin:auto;
}

.contact input,
.contact textarea{
  width:100%;
  padding:14px;
  margin-bottom:15px;
  border:1px solid #ccc;
  border-radius:8px;
  background: rgba(255,255,255,0.1);
  color:white;
  font-size:16px;
}

.contact button{
  padding:14px 30px;
  border:none;
  background:#111;
  color:white;
  cursor:pointer;
  border-radius:30px;
  font-size:16px;
  transition:0.3s;
}

.contact button:hover{
  background:#333;
}

/* ===== FOOTER ===== */
footer{
  text-align:center;
  padding:30px;
  background:#111;
  color:white;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn{
  from{opacity:0;transform:translateY(30px);}
  to{opacity:1;transform:translateY(0);}
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  header{
    padding:10px 20px;
  }
  .hero h1{
    font-size:38px;
  }
  section{
    padding:60px 20px;
  }
}
