body {
  margin: 0;
  padding: 0;
  background: url('../images/webbanner2.png') no-repeat center center fixed;
  background-size: cover;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 245, 245, 0.5);
  z-index: -1;
}

/* HEADER STYLES */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 95%;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  animation: fadeInDown 1s ease-out;
  font-family: 'Open Sans', sans-serif;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.logo img {
  height: 75px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 100%;
  background-color: #007BFF;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.main-nav a:hover {
  color: #0056b3;
  transform: scale(1.05);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.login-btn, .report-header-btn {
  text-decoration: none;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}

.login-btn {
  background: linear-gradient(45deg, #007BFF, #00BFFF);
  color: #fff;
}

.login-btn:hover {
  background: linear-gradient(45deg, #0056b3, #009ad9);
  transform: scale(1.05);
}

.report-header-btn {
  background: linear-gradient(45deg, #e63946, #ff6b6b);
  color: #fff;
}

.report-header-btn:hover {
  background: linear-gradient(45deg, #c1121f, #e64949);
  transform: scale(1.05);
}

.report-header-btn i {
  margin-right: 8px;
}

.header-line {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #007BFF, #00BFFF);
  border-radius: 5px;
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

/* RESPONSIVE HEADER */
@media (max-width: 1024px) {
  .main-nav ul {
    gap: 15px;
  }
  
  .main-nav a {
    padding: 5px 10px;
    font-size: 0.9rem;
  }
  
  .login-btn, .report-header-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    padding: 15px;
    position: relative;
    width: 90%;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
  }
  
  .header-buttons {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .header-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .login-btn, .report-header-btn {
    width: 100%;
    justify-content: center;
    margin: 5px 0;
  }
}

/* Hero Section */
.hero-section {
  margin-top: 100px;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 5%;
  background: linear-gradient(45deg, #00027abe, #020075af);
  color: #fff;
  overflow: hidden;
  animation: fadeInSection 1s ease-out;
}

.content-text {
  flex: 1;
  margin-right: 20px;
  animation: slideInLeft 1s ease-out;
}

.content-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.content-text .underline {
  width: 50px;
  height: 3px;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 2px;
  animation: expandLine 1s ease-out;
}

.content-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
  background: transparent;
}

.content-video {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: slideInRight 1s ease-out;
}

.content-video video {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.content-video video:hover {
  transform: scale(1.05);
}

@keyframes fadeInSection {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes expandLine {
  from { width: 0; opacity: 0; }
  to { width: 50px; opacity: 1; }
}