* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  color: #222;
  overflow-x: hidden;
}

/* ===== LANDING PAGE (index.html) ===== */
body.landing-page {
  height: 100vh;
  overflow: hidden;
}

.full-hero {
  display: flex;
  height: 100vh;
  width: 100vw;
  position: relative;
}

/* LEFT SIDE - IMAGE CONTAINER */
.hero-left {
  position: relative;
  width: 66.66%;
  height: 100vh;
  overflow: hidden;
  background: #000; /* Black background for any potential gaps */
}

/* BACKGROUND IMAGE - FIXED FOR NO GAPS */
.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("win.jpg");
  background-size: cover; /* This ensures it covers the entire area */
  background-position: center center; /* Centers the image */
  background-repeat: no-repeat;
  z-index: 1;
}

/* FORCE IMAGE TO COVER WITHOUT GAPS - IMPORTANT! */
.bg-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("win.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* OVERLAY IMAGE - LOGO */
.overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3); /* Optional: slight dark overlay for better logo visibility */
}

.overlay-image img {
  width: 60%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

/* RIGHT SIDE - MENU */
.hero-right {
  flex: 1;
  background: #c4161c;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.menu {
  width: 80%;
}

.menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  color: #c4161c;
  text-decoration: none;
  padding: 18px 25px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-weight: 600;
  transition: .3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.menu a:hover {
  transform: translateX(10px);
  background: #f8f8f8;
}

/* ===== CONTENT PAGES (about.html, services.html, etc.) ===== */
body.content-page {
  min-height: 100vh;
}

/* Page Header */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-left {
  flex: 1;
}

.header-logo {
  height: 60px;
  width: auto;
}

.header-right {
  flex: 2;
  display: flex;
  justify-content: flex-end;
}

.page-menu {
  display: flex;
  gap: 20px;
}

.page-menu a {
  display: flex;
  align-items: center;
  background: #c4161c;
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: .3s ease;
}

.page-menu a:hover {
  background: #a01216;
  transform: translateY(-3px);
}

/* Page Content */
.page-content {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-content h1 {
  color: #c4161c;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

/* Content Box */
.content-box {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  line-height: 1.8;
  font-size: 1.1rem;
}

.content-box p {
  margin-bottom: 20px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: .3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card h3 {
  color: #c4161c;
  margin-bottom: 15px;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.team-member {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: .3s ease;
}

.team-member:hover {
  transform: scale(1.05);
}

.team-member h3 {
  color: #c4161c;
  margin-bottom: 10px;
}

/* Contact Info */
.contact-info {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}

.contact-info p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.contact-info strong {
  color: #c4161c;
}

/* Media query for mobile responsiveness */
@media (max-width: 768px) {
  .full-hero {
    flex-direction: column;
  }
  
  .hero-left, .hero-right {
    width: 100%;
  }
  
  .hero-left {
    height: 60vh;
  }
  
  .hero-right {
    height: 40vh;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}