body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #02111c, #0a2e42);
  color: #fff;
}

.gb-container {
  width: 100%;
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* HERO */
.gb-hero {
  padding: 30px 0;
  background: url("../images/The\ GB\ Show\ Magnet\ 1.svg") no-repeat center
    center/cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gb-hero .gb-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gb-hero-left {
  z-index: 2;
}
.gb-hero-left img {
  width: 420px;
  height: 460px;
  margin-left: 60px;
  margin-top: 20px;
}

/* RIGHT IMAGE */
.gb-hero-right {
  position: relative;
  z-index: 2;
}

.gb-hero-right img {
  max-width: 650px;
  margin-top: -30px;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.gb_bottom_container {
  max-width: 1200px;
  margin: 0px auto;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(to bottom, #f6c512, #012830);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-align: center;
}
.gb_bottom_container::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -170px;
  width: 100%;
  height: 10%;
  background: linear-gradient(to right, #071f2d, #0c2b3f);
  opacity: 0.8;
  pointer-events: none;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.gb_bottom_container .highlight {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 0px 20px;
}
.highlight h2 {
  font-size: 66px;
  font-weight: 700px;
  text-align: left;
  font-style: italic;
  margin-left: 30px;
}
.highlight h2 span {
  font-weight: 100;
}

/* Podcast Section CSS */
.podcast-section {
  background: linear-gradient(to right, #071f2d, #0c2b3f);
  color: #fff;
  padding: 30px 20px;
}

.podcast-left {
  flex: 1;
  min-width: 280px;
}

.podcast-subtitle {
  display: inline-block;
  background: linear-gradient(90deg, #c89008, #1a4d00);
  padding: 8px 30px;
}
.podcast-subtitle h2 {
  color: #fff;
  font-weight: 600px;
  font-size: 18px;
}

.podcast-desc {
  font-size: 18px;
  line-height: 1.6;
  margin: 15px 0px;
  text-align: justify;
  width: 500px;
}

.podcast-stats {
  display: inline;
  flex-wrap: wrap;
  gap: 30px;
}

.stat .number {
  display: block;
  font-size: 60px;
  font-weight: 700;
  color: #fcb045;
  margin: 8px 0px;
}
.stat .number2 {
  display: block;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin: 8px 0px;
}

.label {
  font-size: 36px;
  color: #fcb045;
  margin: 8px 0px;
}

.podcast-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.episodes h2 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 10px;
}

.episodes p {
  font-size: 26px;
  line-height: 1.4;
  width: 200px;
}

.host-info {
  background: linear-gradient(
    to right,
    #c89008,
    #012830
  ); /* Top to bottom gradient */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 24px;
}

/* HOST SECTION */
.host-section {
  position: relative;
  padding: 30px 0;
  background: linear-gradient(135deg, #071f2d, #0b2c3e);
  overflow: hidden;
}

/* container flex */
.host-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* LEFT IMAGE AREA */
.host-img {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  width: 500px;
  height: 460px;
}

.host-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

/* IMAGE GLOW SHADOW */
.host-img::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80px;
  background: rgba(0, 242, 255, 0.4);
  filter: blur(50px);
  border-radius: 50%;
  z-index: 1;
}

/* RIGHT CONTENT */
.host-content {
  flex: 1;
  color: #fff;
}

/* SMALL HEADING */
.host-content h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 15px;
}
.host-content h3 span {
  color: #ffc107;
}

/* NAME */
.host-content h2 {
  font-size: 48px;

  color: #fff;
}
.line {
  width: 180px;
  height: 2px;
  background: linear-gradient(135deg, #ffc107, #0b2c3e);
}

/* DESIGNATION */
.designation {
  font-size: 20px;
  font-weight: 600;
  color: #ffc107;
}

/* PARAGRAPH */
.host-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #d0e6f2;
  margin-bottom: 15px;
  text-align: justify;
}

/* Decorative Background Glow */
.host-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(0, 242, 255, 0.15);
  filter: blur(120px);
  border-radius: 50%;
}

/* RESPONSIVE */

/* GUEST SECTION */
.guests-section {
  padding: 60px 0;
  width: 100%;
  background: linear-gradient(135deg, #071f2d, #0b2c3e);
}
.gb-guest-container {
  max-width: 1250px;
  margin: 0px auto;
  padding: 40px 60px;
  border: 2px solid transparent;
  background-image:
    linear-gradient(135deg, #071f2d, #0b2c3e),
    linear-gradient(90deg, #00f2ff, #ff9800);

  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;

  box-shadow:
    0 0 25px rgba(0, 242, 255, 0.1),
    0 0 40px rgba(255, 152, 0, 0.1);
}

.center {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.center span {
  color: #f6c512;
}

.guest-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   
  gap: 25px;
}

.guest-card {
  width: 200px;  
  height: auto;            
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  transition: 0.3s;
}
.guest-card h4 {
  font-size: 17px;
  color: #011c26;
}
.guest-card p {
  font-size: 14px;
  color: #011c26;
  text-align: center;
}

.guest-card:hover {
  transform: translateY(-8px);
}

.guest-card img {
  width: 100%;
  height:180px;
  border-radius: 10px;
  /* object-fit: cover; */
}

.youtube-section {
  padding: 30px 20px;
  background: linear-gradient(135deg, #071f2d, #0b2c3e);
}

/* Outer Card */
.youtube-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  overflow: hidden;
  padding:25px 30px;
  gap: 10px;
}

/* LEFT SIDE */
.youtube-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}

.qr-code img {
  width: 200px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.youtube-logo img {
  width: 150px;
}

.youtube-text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-top: 10px;
}

/* Subscribe Button */
.subscribe-btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(to right, #ff0000, #cc0000);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease;
  margin-top: 15px;
}

.subscribe-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255,0,0,0.3);
}

/* RIGHT SIDE */
.youtube-right {
  flex: 3.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video Card */
.youtube-video-card {
  width: 100%;
  position: relative;
  padding-top: 44.25%; /* 16:9 */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.youtube-video-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .youtube-container {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  .youtube-left {
    align-items: center;
  }

  .youtube-right {
    margin-top: 30px;
  }
}

/* ENQUIRY */
.enquiry-section {
  background: linear-gradient(135deg, #02111c, #0a2e42);
  padding: 30px 20px; /* side padding added */
}

.enquiry-flex {
  max-width: 1250px; /* fixed width hata kar max-width */
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

/* LEFT IMAGE */
.enquiryleftimage {
  flex: 1;
  max-width: 600px;
}

.enquiryleftimage img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* RIGHT CONTENT */
.contact-info {
  flex: 1;
}

.enquiry-section h2 {
  font-size: 62px;
  color: #fff;
  line-height: 1.2;
}

.enquiry-section h2 span {
  color: #f6c512;
}

.contact-info p {
  font-size: 18px;
  margin: 16px 0px;
  color: #fff;
}

.line2 {
  width: 280px;
  height: 2px;
  margin: 20px 0px;
  background: linear-gradient(135deg, #ffc107, #0b2c3e);
}

.divart {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.divart div {
  width: 18px;
  height: 18px;
  background-color: #f6c512;
  border-radius: 50%;
}

.divart p {
  margin: 0;
}

.divart p a {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.divart p a:hover {
  color: #f6c512;
}
@media (max-width: 992px) {
  .enquiry-flex {
    gap: 40px;
  }
  .contact-info {
    display: inline;
  }
  .divart {
    margin-top: 10px;
  }

  .enquiry-section h2 {
    font-size: 42px;
  }
  .host-flex {
    padding: 0px 20px;
  }
}
@media (max-width: 768px) {
  .enquiry-flex {
    flex-direction: column;
  }
  .gb-hero-right img {
    width: 95%;
  }
  .divart {
    margin-top: 10px;
  }
  .gb_bottom_container::after {
    display: none;
  }

  .enquiryleftimage {
    max-width: 100%;
  }

  .contact-info {
    width: 100%;
  }

  .line2 {
    margin: 20px auto;
  }

  .enquiry-section h2 {
    font-size: 32px;
  }

  .contact-info p,
  .divart p a {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .enquiry-section {
    padding: 40px 15px;
  }

  .enquiry-section h2 {
    font-size: 26px;
  }
  .divart {
    display: flex;
  }

  .line2 {
    width: 180px;
  }
}

@media (max-width: 1024px) {
  .gb-container,
  .host-flex {
    flex-direction: column;
    text-align: center;
  }

  .gb-hero-left img {
    width: 320px;
    height: auto;
    margin: 0 auto;
  }

  .gb-hero-right img {
    max-width: 450px;
    margin-top: 20px;
  }

  .highlight h2 {
    font-size: 42px;
    margin-left: 0;
    text-align: center;
  }

  .podcast-desc {
    width: 100%;
  }

  .episodes p {
    width: 100%;
  }

  .gb-youtube-section {
    width: 90%;
    flex-direction: column;
    text-align: center;
  }

  .qr-code img {
    width: 150px;
    height: 150px;
  }

  .youtube-info {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .gb-hero {
    padding: 60px 20px;
    margin-top: -50px;
  }

  .highlight h2 {
    font-size: 32px;
  }
  .gb-guest-container {
    margin: 0px 20px;
  }

  .podcast-subtitle h2 {
    font-size: 16px;
  }

  .stat .number,
  .stat .number2 {
    font-size: 32px;
  }

  .label {
    font-size: 22px;
  }

  .episodes h2 {
    font-size: 32px;
  }

  .episodes p {
    font-size: 18px;
  }

  .host-content h2 {
    font-size: 32px;
  }

  .host-img {
    width: 100%;
    height: auto;
  }

  .guest-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .guest-card{
    width: 100%;
  }

  .center {
    font-size: 24px;
  }

  .subscribe-btn {
    font-size: 18px;
    padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  .highlight h2 {
    font-size: 24px;
  }

  .gb_bottom_container {
    padding: 15px;
  }

  .podcast-desc {
    font-size: 15px;
  }

  .stat .number,
  .stat .number2 {
    font-size: 26px;
  }

  .label {
    font-size: 18px;
  }

  .episodes h2 {
    font-size: 24px;
  }

  .episodes p {
    font-size: 16px;
  }

  .host-content h3 {
    font-size: 14px;
  }

  .host-content p {
    font-size: 15px;
  }

  .guest-card img {
    width:100%;
    height:220px;
  }

  .qr-code img {
    width: 120px;
    height: 120px;
  }

  .youtube-logo img {
    width: 100px;
    height: auto;
  }
}

.gb-faq-section {
  width: 100%;
  padding: 40px 20px;
  background: linear-gradient(135deg, #02111c, #0a2e42);
}

/* Container */
.gb-faq-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.faq-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* FAQ Item Card */
.gb-faq-item {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 25px 30px;
  margin-bottom: 20px;
  transition: 0.4s ease;
  overflow: hidden;
}

/* Glow Hover Effect */
.gb-faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(10, 46, 66, 0.4);
}

/* Left Accent Line */
.gb-faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 4px;
  background: #00c6ff;
  transition: 0.4s ease;
}

.gb-faq-item.active::before {
  height: 100%;
}

/* Question */
.gb-faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  padding-right: 35px;
}

/* Icon */
.gb-faq-question::after {
  content: ">";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  transition: 0.3s ease;
}

.gb-faq-item.active .gb-faq-question::after {
  content: "^";
  transform: rotate(180deg);
}

/* Answer */
.gb-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    margin-top 0.3s ease;
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 15px;
}

/* Active Answer */
.gb-faq-item.active .gb-faq-answer {
  max-height: 500px;
  margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-heading {
    font-size: 28px;
  }

  .gb-faq-item {
    padding: 20px;
  }
}
