
* {
    margin: 0;
    padding: 0;  
    box-sizing: border-box;	
}
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2, h3 {
    font-weight: bold;
}

a {
    text-decoration: none;
    color: #fff;
}

/* ---------------- HEADER ---------------- */
.header {
     background-color: white;
     padding: 1vw;
     font-family: Sans-serif;
     font-size: 1.6rem;
     color: black;
}

/* ---------------- NAVIGATION ---------------- */
nav {
  background: rgba(255, 255, 255, 0.85); 
  backdrop-filter: blur(10px);            
  border-bottom: 1px solid #ddd;
  padding: 12px 20px;
  position: fixed;   
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.5s ease; 
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.logo img {
  height: 60px;
  width: auto;
  margin-right: 10px;
  border-radius: 50%;
  border: 1px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 16px;
}
 
.nav-links a:hover {
  color: #007bff;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 10px 20px;
  background: white;
}
.mobile-menu a {
  padding: 10px 0;
  border-top: 1px solid #eee;
  text-decoration: none;
  color: black;
}

/* Scroll effect */
nav.scrolled {
  background: rgba(255, 255, 255, 0.625);
  padding: 6px 20px; 
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
        
   
.bannor {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  text-align: center;
  overflow: hidden;
}

.bannorimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.4);
}

.bannor-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.bannortext {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.bannortext2 {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1rem;
}

.bannortext3 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 0.5rem 0;
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  background-color: #f59e0b;
  color: #0f172a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #d48806;
  transform: translateY(-2px);
}

/* 🌐 Responsive Fixes */
@media (max-width: 768px) {
  .bannor {
    min-height: auto;
    padding: 160px 15px 80px;
  }

  .bannortext {
    font-size: 2rem;
  }

  .bannortext2 {
    font-size: 1rem;
  }

  .bannortext3 {
    font-size: 0.9rem;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 0.6rem 1.6rem;
  }
}


footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 14px;
}



@media (max-width: 768px){

 .logo {
    font-size: 18px;
    color: #333;
}
  
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu.active {
    display: flex;
  }


footer {
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 10px;
}

}

