* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  color: #1e293b;
}

/* ========== NAVBAR STYLES - WHITE BACKGROUND WITH BLACK TEXT ========== */
.navbar {
  transition: all 0.4s ease;
  background: #FFFFFF;
  backdrop-filter: blur(0px);
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* When scrolled, keep white background */
.navbar-scrolled {
  background: #FFFFFF;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.navbar-brand img {
  transition: transform 0.3s ease;
  filter: brightness(1);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

/* Mobile menu toggle button - black color */
.navbar-toggler {
  border: none;
  background: transparent;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.nav-link {
  font-weight: 600;
  color: #1a1a1a !important;
  margin: 0 5px;
  transition: all 0.3s ease;
  position: relative;
}

/* Remove underline for mobile menu items */
@media (max-width: 991px) {
  .nav-link::after {
    display: none !important;
  }
  
  .navbar-collapse {
    background: #FFFFFF;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .nav-item {
    padding: 8px 0;
  }
}

/* Hover color - #E3A42A (Golden/Yellow) */
.nav-link:hover {
  color: #E3A42A !important;
}

.nav-link.active {
  color: #E3A42A !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #E3A42A;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

.btn-partner {
  background: #E3A42A;
  color: white !important;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(227,164,42,0.3);
}

.btn-partner:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227,164,42,0.5);
  background: #c98f1f;
}

/* ========== HERO SECTION ========== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  margin-top: 0;
}

/* For mobile devices, adjust padding */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 70px;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,26,47,0.8) 0%, rgba(13,43,62,0.6) 100%);
}

.z-2 {
  z-index: 2;
}

/* Accent color - #E3A42A */
.text-accent {
  color: #E3A42A;
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.delay-1 {
  animation-delay: 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
}

.mouse::before {
  content: '';
  width: 4px;
  height: 10px;
  background: white;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

/* ========== MARQUEE STYLES ========== */
.marquee-wrapper {
  background: linear-gradient(90deg, #0a1a2f, #0d2b3e, #1a3a4a);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-container {
  display: inline-block;
  animation: marquee 100s linear infinite;
}

.marquee-text {
  display: inline-block;
}

.marquee-text span {
  display: inline-block;
  margin: 0 25px;
  color: #e2e8f0;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.marquee-text span:hover {
  color: #E3A42A;
}

.marquee-clone {
  display: inline-block;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-container {
  animation-play-state: paused;
}

/* Responsive marquee text size */
@media (max-width: 768px) {
  .marquee-text span {
    font-size: 0.75rem;
    margin: 0 15px;
  }
}

/* ========== SERVICE CARDS ========== */
.service-highlight {
  background: #f8fafc;
}

.divider {
  width: 80px;
  height: 3px;
  background: #E3A42A;
  margin: 20px auto;
  border-radius: 3px;
}

.service-card {
  background: white;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.icon-box {
  margin-bottom: 20px;
}

.icon-box i {
  transition: transform 0.3s ease;
  color: #E3A42A;
}

.service-card:hover .icon-box i {
  transform: scale(1.1);
}

.service-card h4 {
  transition: color 0.3s ease;
}

.service-card:hover h4 {
  color: #E3A42A;
}

/* ========== STATS SECTION ========== */
.stats-section {
  background: linear-gradient(135deg, #0a1a2f 0%, #0d2b3e 100%);
  background-attachment: fixed;
}

.stat-item h3 {
  font-weight: 800;
  margin-bottom: 10px;
  color: #E3A42A;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
  color: #e2e8f0;
}

/* ========== BUTTON PRIMARY STYLE ========== */
.btn-primary {
  background: #E3A42A !important;
  border: none !important;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #c98f1f !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(227,164,42,0.3);
}

.btn-outline-light {
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: #E3A42A !important;
  border-color: #E3A42A !important;
  color: white !important;
}

/* ========== FOOTER STYLES ========== */
.footer {
  background: #0a1a2f;
  position: relative;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #E3A42A;
  transform: translateX(5px);
  display: inline-block;
}

.contact-info li {
  color: #94a3b8;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.contact-info li i {
  color: #E3A42A;
  width: 25px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  margin-right: 12px;
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #E3A42A;
  color: white;
  transform: translateY(-3px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem !important;
  }
  
  .hero-section .lead {
    font-size: 1.1rem !important;
  }
  
  .service-card {
    margin-bottom: 20px;
  }
  
  .navbar {
    background: #FFFFFF;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
}

@media (max-width: 576px) {
  .display-3 {
    font-size: 2rem !important;
  }
  
  .btn-lg {
    padding: 10px 20px !important;
    font-size: 0.9rem;
  }
}