* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* Header Styles */
.header {
  background-color: #fff;
  border-bottom: 3px solid #0078d4;
  padding: 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid #e0e0e0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-text {
  background-color: #0078d4;
  color: white;
  padding: 6px 12px;
  font-weight: bold;
  font-size: 18px;
}

.title {
  font-size: 16px;
  font-weight: 500;
}

.nav-btn {
  background: none;
  border: none;
  color: #0078d4;
  cursor: pointer;
  font-size: 14px;
}

.header-actions {
  display: flex;
  gap: 12px;
  padding: 8px 24px;
  background-color: #fafafa;
}

.header-actions button {
  background: none;
  border: 1px solid #d0d0d0;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 13px;
  border-radius: 2px;
}

.header-actions button:hover {
  background-color: #f0f0f0;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2c5f7c 0%, #4a7fa0 100%);
  padding: 60px 24px;
  text-align: center;
  background-image: url("images/hero-background.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  position: relative;
}

.hero-logo {
  background-color: #0078d4;
  color: white;
  display: inline-block;
  padding: 8px 16px;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
}

.hero-title {
  color: white;
  font-size: 36px;
  font-weight: 400;
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.intro-section {
  text-align: center;
  margin-bottom: 60px;
}

.intro-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.video-link {
  color: #0078d4;
  text-decoration: underline;
  font-weight: 600;
  font-size: 15px;
}

/* Map Section */
.map-section {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
  align-items: flex-start;
}

.world-map {
  flex: 2;
  position: relative;
}

.map-image {
  width: 100%;
  height: auto;
}

.map-marker {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  font-size: 11px;
  border-radius: 2px;
  white-space: nowrap;
}

.map-marker[data-location="minneapolis"] {
  top: 25%;
  left: 20%;
}
.map-marker[data-location="san-diego"] {
  top: 38%;
  left: 15%;
}
.map-marker[data-location="guadalajara"] {
  top: 48%;
  left: 18%;
}
.map-marker[data-location="london"] {
  top: 20%;
  left: 48%;
}
.map-marker[data-location="pune"] {
  top: 45%;
  right: 25%;
}
.map-marker[data-location="bangalore"] {
  top: 52%;
  right: 27%;
}

.photos-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.photos-grid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Location Results */
.location-result {
  background: #19476f;
  padding: 60px 40px;
  margin-bottom: 0;
  border-radius: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Bangalore specific styling */
.location-result:nth-child(2) {
  background: #642a6e;
}

.location-result:nth-child(2) .chart-card {
  background-color: #873894;
}

.location-result:nth-child(2) .testimonials {
  background-color: #873894;
}

/* Guadalajara specific styling */
.location-result:nth-child(3) {
  background: #007b84;
}

.location-result:nth-child(3) .chart-card {
  background-color: #009ea9;
}

.location-result:nth-child(3) .testimonials {
  background-color: #009ea9;
}

/* San Diego specific styling */
.location-result:nth-child(4) {
  background: #0088ad;
}

.location-result:nth-child(4) .chart-card {
  background-color: #00b3e4;
}

.location-result:nth-child(4) .testimonials {
  background-color: #00b3e4;
}

/* Minneapolis specific styling */
.location-result:nth-child(5) {
  background: #652a6f;
}

.location-result:nth-child(5) .chart-card {
  background-color: #873894;
}

.location-result:nth-child(5) .testimonials {
  background-color: #873894;
}

.location-result > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.location-title {
  color: white;
  font-size: 48px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 40px;
  margin-bottom: 40px;
}

.results-grid .chart-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.results-grid .chart-card:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.results-grid .chart-card:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.results-grid .testimonials {
  grid-column: 2;
  grid-row: 1;
}

.chart-card {
  background-color: #215f94;
  padding: 24px;
  border-radius: 8px;
}

.chart-title {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.chart-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin-bottom: 20px;
}

.chart-placeholder {
  width: 100%;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.testimonials {
  background-color: #215f94;
  padding: 24px;
  border-radius: 8px;
}

.testimonials h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial {
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .map-section {
    flex-direction: column;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .header-actions {
    flex-wrap: wrap;
  }

  .location-title {
    font-size: 32px;
  }
}
