/* #00c6f0 */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body{
   background: linear-gradient(90deg, #e6f6ff, #ffffff);
}
/* navbar */
 .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 ===== */
.logo{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 22px;
    font-weight: 600;
    color:#1e3a5f ;
    
}
.logo img {
height: 20%;
  width: 20%;
}


.logo span {
color: #c9a44d; /* gold */
}
/* ===== NAV LINKS ===== */
.nav-links {
list-style: none;
display: flex;
gap: 20px;
}


.nav-links li {
position: relative;
}
.nav-links a {
text-decoration: none;
color: #1e3a5f;
font-size: 14px;
font-weight: 300;
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 ===== */
.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);
}
/* ===== HAMBURGER ===== */
.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; }
/* ===== RESPONSIVE ===== */
@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 SECTION */
.hero-video {
  position: relative;
  width: 100%;
  height: 90vh; /* Full viewport height */
  overflow: hidden;
}

/* Video as background */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  object-fit: cover; /* Cover entire section */
  z-index: 1;
}

/* Content overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertical center */
  align-items: center;     /* Horizontal center */
  text-align: center;
  /* background: rgba(0/,0,0,0.35); Optional dark overlay for readability */
  color: #fff;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-overlay h1 span {
  color: #00c6f0; /* Gold accent */
}

.hero-overlay h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  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 ;
  color: #fff;
}

/* Responsive */
@media(max-width:768px){
  .hero-overlay h1{font-size:36px;}
  .hero-overlay h2{font-size:20px;}
  .hero-overlay p{font-size:16px;}
  .hero-buttons{flex-direction:column; gap:12px;}
}



/* SECTION */
.welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  height: 70vh;
  gap: 50px;
}

/* LEFT TEXT */
.welcome-text {
  flex: 1;
  animation: slideLeft 1.2s ease forwards;
}

.welcome-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.welcome-text h1 span {
  color: #00c6f0;
}

.welcome-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background:#00c6f0;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.4s ease;
}

.btn:hover {
  background: #000;
  transform: translateY(-5px);
}

/* RIGHT IMAGES */
.welcome-images {
  flex: 1;
  position: relative;
  height: 420px;
  animation: fadeUp 1.5s ease forwards;
}

.img {
  position: absolute;
  width: 220px;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

/* DIFFERENT SHAPES */
.img1 {
  top: 0;
  left: 60px;
  border-radius: 50%; /* circle */
}

.img2 {
  top: 120px;
  right: 0;
  border-radius: 20px; /* rounded square */
}

.img3 {
    top: 250px;
  bottom: 0;
  left: 120px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* HOVER EFFECT */
.img:hover {
  transform: scale(1.1) rotate(3deg);
}

/* ANIMATIONS */
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .welcome {
    flex-direction: column;
    text-align: center;
  }

  .welcome-images {
    height: 350px;
  }
}
.footer {
  background: linear-gradient(135deg, #061a24, #0b2b3c);
  color: #fff;
  padding: 80px 10% 30px;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-box h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-box p,
.footer-box a {
  font-size: 14px;
  color: #cfd8dc;
  line-height: 1.6;
  text-decoration: none;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a:hover {
  color: #fff;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* FLOATING BUTTONS */
.floating {
  position: absolute;
  top: 30%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 40px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: 0.4s;
}

.visit {
  left: 40px;
}

.scroll {
  right: 40px;
  font-size: 22px;
}

.floating:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .floating {
    display: none;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
