/* ================= THEME 4 – PREMIUM NAVY ================= */

:root {
  --theme4-primary: #101064;
  --theme4-dark: #1b1b7a;
  --theme4-light-bg: #eff3ff;
}


/* ================= HERO ================= */

.theme4-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.theme4-hero .bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theme4-hero .video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16,16,100,0.75), rgba(0,0,0,0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content {
  color: #ffffff;
  max-width: 900px;
}

.hero-content h1 {
  font-family: "Oswald", sans-serif;
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 35px;
}


/* ================= BACKGROUNDS ================= */

.contact-cards-theme4 {
  background: var(--theme4-light-bg);
}

.contact-social-section-theme4 {
  background: var(--theme4-light-bg);
  padding: 80px 20px;
  text-align: center;
}


/* ================= FOLLOW SECTION (FIXED) ================= */

.contact-social-section-theme4 .section-title {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--theme4-primary);
}

.contact-social-section-theme4 .social-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-social-section-theme4 .social-card img {
  width: 60px;
  transition: 0.3s;
}

.contact-social-section-theme4 .social-card img:hover {
  transform: translateY(-6px) scale(1.08);
}


/* ================= POSTER ================= */

.theme4-poster {
  background: var(--theme4-primary);
  padding: 70px 80px;
}

.poster-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.poster-left { flex: 1; }

.poster-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.poster-right img {
  max-width: 420px;
  width: 100%;
}


/* TEXT */

.theme4-poster .poster-name {
  font-family: "Oswald", sans-serif;
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.theme4-poster .poster-location-heading {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #ffffff;
}

.theme4-poster .poster-contact {
  font-size: 1.4rem;
  margin: 12px 0;
  display: flex;
  gap: 10px;
}

.theme4-poster .poster-contact i,
.theme4-poster .poster-contact a {
  color: #ffffff;
}

.theme4-poster .poster-location p {
  color: #e0e0ff;
  font-size: 1.2rem;
  margin: 6px 0;
}


/* ================= BUTTON ================= */

.btn-Know-theme4 {
  background: #ffffff;
  color: var(--theme4-primary);
}

.btn-Know-theme4:hover {
  background: var(--theme4-dark);
  color: #ffffff;
}


/* ================= SLIDER ================= */

.banner .slide-bg::before {
  background: linear-gradient(
    to bottom,
    rgba(16,16,100,0.85),
    rgba(0,0,0,0.6)
  );
}

.slide-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.slide-content h2 {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.slide-content p {
  font-size: 1.2rem;
  color: #e0e0ff;
  margin-bottom: 25px;
}


/* ================= SERVICES ================= */

.theme4-services {
  padding: 90px 20px;
  background: #ffffff;
  text-align: center;
}

.theme4-services .section-title {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--theme4-primary);
}

.theme4-services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.theme4-services .services-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.theme4-services .services-grid img:hover {
  transform: scale(1.05);
}

.theme4-services .services-save {
  margin-top: 60px;
}


/* ================= MAP ================= */

.theme4-map {
  padding: 90px 20px;
  background: var(--theme4-light-bg);
  text-align: center;
}

.theme4-map .section-title {
  color: var(--theme4-primary);
}

.theme4-map .map-wrapper {
  max-width: 950px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.theme4-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
}


/* ================= PAYMENT ================= */

.theme4-payment {
  padding: 90px 20px;
  background: #ffffff;
  text-align: center;
}

.theme4-payment .section-title {
  color: var(--theme4-primary);
}

.theme4-payment .upi-id {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #333;
}

.theme4-payment .payment-icons {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.theme4-payment .payment-icons img {
  width: 95px;
  padding: 15px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.theme4-payment .payment-icons img:hover {
  transform: translateY(-8px);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .poster-content {
    flex-direction: column;
    text-align: center;
  }

  .poster-right { margin-top: 30px; }

  .theme4-poster { padding: 50px 25px; }

  .theme4-poster .poster-name { font-size: 2.6rem; }

  .poster-right img { max-width: 300px; }

  .theme4-services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .theme4-services .services-grid img {
    height: 240px;
  }
}

@media (max-width: 576px) {

  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }

  .theme4-poster { padding: 40px 20px; }

  .theme4-poster .poster-name { font-size: 2rem; }

  .poster-right img { max-width: 240px; }

  .slide-content h2 { font-size: 1.8rem; }
  .slide-content p { font-size: 1rem; }

  .theme4-services .services-grid {
    grid-template-columns: 1fr;
  }

  .theme4-services .services-grid img {
    height: 200px;
  }

  .theme4-map iframe {
    height: 300px;
  }

  .theme4-services .section-title,
  .theme4-map .section-title,
  .theme4-payment .section-title,
  .contact-social-section-theme4 .section-title {
    font-size: 1.8rem;
  }

  .contact-social-section-theme4 .social-cards {
    gap: 20px;
  }

  .contact-social-section-theme4 .social-card img {
    width: 45px;
  }
}
