
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    background: black;
    color: white;
    font-family: 'Poppins', sans-serif;
    padding-top: 100px; /* Prevents content from being hidden under the navbar */
}
/* NAVBAR */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    padding: 15px 40px; /* Increased height slightly */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* LOGO */
.logo {
    position: absolute;
    left: 100px;
    padding-top: 10px;
}

.logo img {
    height: 85px; /* Slightly bigger logo */
}

.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent; /* remove gray-ish color */
    padding: 15px 45px;
    position: relative;
}


/* NAVBAR BUTTONS */
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 20px;
    transition: 0.3s ease-in-out; /* Smooth transition effect */
}

/* BUTTON HOVER & CLICK EFFECT */
.nav-links li a:hover {
    background: red;
    color: black;
    border-radius: 10px;
    padding: 12px 25px;
    transition: 0.2s ease-in-out;
}

.nav-links li a:active {
    transform: scale(0.95); /* Slight press-down effect */
}

/* RIGHT SIDE BUTTON */
.nav-right {
    position: absolute;
    right: 100px; /* Adjust spacing as needed */
    top: 50%;
    transform: translateY(-50%);
}

.highlight-btn {
    background: red;
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.highlight-btn:hover {
    background: darkred;
    border: 2px solid white;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* HERO SECTION */
.hero-section {
    width: 100%;
    height: 100vh;
    background-color: black;
    display: flex;
    align-items: flex-start; /* Align everything to the top */
    justify-content: space-between;
    padding: 80px 10% 60px; /* Added bottom padding to create space */
    color: white;
    position: relative;
    margin-bottom: -40px; /* Creates extra space below this section */
}

/* LEFT TEXT SECTION */
.hero-text {
    width: 45%;
    margin-top: -40px; /* Moves text UP */
    margin-left: -20px; /* Moves text LEFT */
}
.hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
}

.hero-text p {
    font-size: 1.1rem;
    margin: 10px 0 15px;
    line-height: 1.5;
}

/* CHATBOT BUTTON */
.chatbot-btn-container {
    margin-top: 40px; /* Reduced space */
}

.chat-btn {
    padding: 12px 22px;
    background-color: red;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.chat-btn:hover {
    background-color: #ff6b6b;
    transform: scale(1.05);
}


/* RIGHT IMAGE SECTION */
.hero-visual {
    width: 45%;
    position: relative;
    margin-top: -70px; /* Moves the images UP */
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* IMAGE CONTAINER */
.image-container {
    width: 100%;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* SLIDESHOW IMAGES */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-image.active {
    opacity: 1;
}

/* EXAMPLE PROMPTS - CHAT BUBBLE */
.chat-bubble {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 12px;
    color: #ddd;
    font-style: italic;
    width: 85%;
}

/* SCROLL INFO (BOTTOM) */
.scroll-info {
    position: absolute;
    bottom: 190px; /* Adjusted to fit properly */
    right: 50px;
    font-size: 1.1rem;
    color: white;
    opacity: 0.9;
    font-weight: bold;
    animation: fade-in 1s ease-in-out;
}

/* FADE-IN EFFECT */
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Main Flexbox Container */
        .section-container {
            display: flex;
            flex-direction: row;
            align-items: flex-start; /* Moves content slightly higher */
            justify-content: center;
            padding: 30px 20px;
            max-width: 1200px;
            margin: auto;
            gap: 40px;
        }

        /* Image Gallery (First Section) */
        .image-gallery {
            flex: 1;
            display: flex;
            flex-direction: column;
            max-width: 35%; /* Reduced size */
            gap: 15px;
            padding-right: 30px;
        }

        .image-gallery img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(204, 204, 204, 0.2);
        }

        /* Text Content */
        .content {
            flex: 1;
            max-width: 60%;
            padding-left: 30px;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* Moves text higher */
        }

        .content h1 {
            font-size: 3.0rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .content p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 15px;
            text-align: justify;
            font-weight: 400;
        }
/* Fix Chatbot Section Visibility */
.chatbot-container {
    display: flex !important;  /* Ensures it's visible */
    align-items: center;
    justify-content: space-around;
    position: relative;  /* Prevents overlap issues */
    min-height: 90vh;  /* Adjust height dynamically */
    max-width: 98vw;
    margin: auto;
    padding: 50px 30px;
    gap: 20px;
    overflow: hidden;
}

/* Ensure Previous Sections Don't Hide It */
.section-container {
    position: relative;
    z-index: 1;
}
 /* Fix Image Visibility */
.chatbot-image img {
    width: 120%;
    max-width: 800px;
    border-radius: 10px;
    display: block; /* Ensures it loads properly */
}
/* Ensure Proper Text Wrapping */
.chatbot-text {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
    max-width: 600px;
}


/* Heading - No Cutoff */
.chatbot-text h1 {
    font-size: 2.8rem; /* Adjusted to fit */
    font-weight: 700;
    margin-bottom: 10px; /* Less gap */
}

/* Paragraphs - Less Space */
.chatbot-text p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 5px; /* Less gap to fit FAQs */
}

/* FAQs + Button in One Row */
.faq-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

/* FAQ List - Fit Everything */
.faq-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-size: 1rem; /* Slightly smaller for better fit */
}

/* Button Positioned Right */
.faq-button-container {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
}

/* Button Styling */
.btn {
    padding: 10px 20px; /* Slightly smaller */
    background-color: red;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background-color: darkred;
}

/* Mobile Fix */
@media (max-width: 1024px) {
    .chatbot-container {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 15px;
    }

    .chatbot-image {
        max-width: 90%;
    }

    .chatbot-text {
        max-width: 100%;
        padding: 0;
    }

    .faq-container {
        flex-direction: column;
        align-items: center;
    }

    .faq-button-container {
        margin-top: 10px;
    }
}


        /* Episodes Section */
        .episodes-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            justify-content: center;
            width: 100%;
        }

        .episode {
            background-color: #1a1a1a;
            border-radius: 10px;
            text-align: center;
            padding: 15px;
            box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.1);
        }


        .episode img {
            width: 90%;
            height: auto;
            border-radius: 10px;
        }
        #episodes h1 {
    font-size: 4rem !important; /* Bigger Title */
    text-align: center !important;
    font-weight: 700 !important;
    margin-bottom: 30px !important;
    width: 100% !important;
    display: block !important;
}


     


        .episode h2 {
            font-size: 1.2rem;
            margin: 10px 0;
            font-weight: 600;
        }

        /* View All Episodes Button */
        .button-container {
            display: flex;
            justify-content: center;
            width: 100%;
            margin-top: 30px;
        }

        .view-all {
            display: inline-block;
            padding: 12px 24px;
            font-size: 1rem;
            font-weight: 600;
            color: black;
            background-color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: 0.3s;
        }

        .view-all:hover {
            background-color: gray;
        }

        /* Mobile Responsive Fix */
        @media (max-width: 768px) {
            .section-container {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .image-gallery {
                max-width: 100%;
                padding: 0;
            }

            .content {
                max-width: 100%;
                padding: 0;
            }

            .episodes-grid {
                grid-template-columns: repeat(1, 1fr);
            }
        }
/* Importing Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.show-highlights {
    text-align: center;
    padding: 50px 20px;
    background-color: #000; /* Dark theme */
    color: #fff; /* White text */
    font-family: 'Poppins', sans-serif;
}

.show-highlights h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Grid Layout for Images */
.highlights-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Styling Each Highlight Item */
.highlight-item {
    background: #111; 
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.highlight-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

/* Image Styling */
.highlight-item img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

/* Description Text */
.highlight-item p {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 10px;
    color: #ddd;
}

/* General Section Styling */
.show-personalities {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 50px 0;
}

.show-personalities h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.section {
    margin-bottom: 40px;
}

.section h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ffd700;
}

/* Grid Layout */
.grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Host Styling (Slightly Larger) */
.hosts-grid .host {
    width: 180px;
}

.hosts-grid .host img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid gold;
}

/* Judges & Contestants Styling */
.person {
    width: 150px; /* Uniform size */
    text-align: center;
}

.person img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.person img:hover {
    transform: scale(1.05);
}

.person p {
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* IMDb Button */
.imdb-link {
    margin-top: 30px;
}

.imdb-link a {
    display: inline-block;
    padding: 10px 20px;
    background: gold;
    color: black;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.imdb-link a:hover {
    background: #ffd700;
}
/* Footer Styling */
.footer {
    background-color: #121212; /* Dark background */
    color: #ffffff;
    padding: 50px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: auto;
    flex-wrap: wrap;
}

/* Left Section */
.footer-left {
    flex: 1;
    text-align: left;
}

.show-logo {
    width: 200px;
    margin-bottom: 15px;
}


.footer-left h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
}

.disclaimer {
    font-size: 13px;
    opacity: 0.7;
}

/* Right Section */
.footer-right {
    flex: 1;
    text-align: right;
}

/* Navigation Links */
.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin: 5px 0;
}

.footer-nav a {
    color: #f0c040; /* Yellowish highlight */
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.footer-nav a:hover {
    text-decoration: underline;
}
/* Move only the "Connect" heading to the left */
.footer-right h3:nth-of-type(2) {
    text-align: left; /* Aligns "Connect" to the left */
    margin-left: 0; /* Resets any unwanted left margin */
    margin-top: 20px; /* Adjusts spacing from "Quick Links" */
}

/* Social Links */
.social-links {
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 14px; /* Adds space between the icon and text */
    text-decoration: none;
    color: white;
    font-size: 16px;
    margin-bottom: 30px; /* Adds space between LinkedIn and GitHub */
}

.social-links a img {
    width: 24px;
    height: 24px;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.7;
}


@media screen and (max-width: 768px) {
/* ========== MOBILE NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  background: black;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
  z-index: 999;
  flex-wrap: wrap;
}

.logo {
  margin-left: -100px;
  margin-right: 10px;
  padding-top: 5px;
}

.logo img {
  width: 73px;
  height: auto;
}

/* Center buttons (Home, Chatbot, Episodes) */
.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;  /* prevents it from stretching full width */
  margin-left: 64px; /* shift slightly left to fit in screen */
  padding: 2px 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  font-size: 11px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 10px;
  transition: 0.2s ease-in-out;
  white-space: nowrap;
}

.nav-links li a:hover {
  background: red;
  color: black;
}

.nav-links li a:active {
  transform: scale(0.95);
}

/* Right button (Show Highlights) */
.nav-right {
  display: flex;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.highlight-btn {
  font-size: 10px;
  padding: 1px 2px;
  margin-left: 0px;
  margin-right: -100px;
}

    /* ========== HERO SECTION ========== */
    .hero-section {
      margin-top: -75px; /* below fixed navbar */
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 16px;
      text-align: center;
      gap: 12px;
    }
    .hero-visual {
        order: -1;
        width: 100%;
        max-height: 160px;
        margin-top: 0; /* or -5px if needed */
      }
.image-container {
  width: 90%;
  height: 180px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* This ensures the full image fits without any crop */
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  border-radius: 12px;
}


      .hero-image.active {
        opacity: 1;
      }
      
  
    .chat-bubble {
      font-size: 0.75rem;
      color: #ccc;
      padding: 6px 12px;
      border-radius: 20px;
      background-color: rgba(255,255,255,0.1);
      width: 90%;
      margin-top: 6px;
    }
  
    .hero-text {
      width: 100%;
      padding: 0 20px;
    }
  
    .hero-text h1 {
      font-size: 1.25rem;
      line-height: 1.4;
      margin-bottom: 2px;
    }
.hero-text p {
  font-size: 13px;           /* slightly smaller for mobile */
  line-height: 1.4;
  margin-bottom: 10px;}
.chatbot-btn-container {
  margin-top: 10px;
  margin-bottom: 8px;
}
   .chat-btn {
    font-size: 0.85rem;
    padding: 10px 18px;
    border-radius: 20px;
    background-color: red;
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
  }

.scroll-info {
   display: none;
}
/* ===== ABOUT SECTION (Mobile Layout) ===== */
#about-show.section-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 12px;
  margin-top: 32px; /* Add spacing from previous section */
}

/* Title */
#about-show .content h1 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
  text-align: center;
}

/* Paragraph text */
#about-show .content p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: left;
}

/* Stack images separately with spacing */
#about-show .image-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Ensure images aren't too tall */
#about-show .image-gallery img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
}

/* Reorder elements visually using nth-child (no HTML edits) */
#about-show .image-gallery img:nth-child(1) {
  order: 1;
}
#about-show .content h1 {
  order: 2;
}
#about-show .content p:nth-of-type(1) {
  order: 3;
}
#about-show .image-gallery img:nth-child(2) {
  order: 4;
}
#about-show .content p:nth-of-type(2),
#about-show .content p:nth-of-type(3) {
  order: 5;
}
#about-show .image-gallery img:nth-child(3) {
  order: 6;
}
#about-show .content p:nth-of-type(4) {
  order: 7;
}

/* Wrap all elements cleanly */
#about-show .content,
#about-show .image-gallery {
  display: contents;
}
/* ===== MOBILE: CONTROVERSIES Section ===== */
#about-show + section {
  padding: 16px 12px;
  margin-top: 24px;
}

#about-show + section h1 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 12px;
  text-align: center;
}

#about-show + section p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: left;
}
/* ===== MOBILE: About the Chatbot Section ===== */
#about-show + section + section {
  padding: 16px 12px;
  margin-top: 24px;
}

#about-show + section + section h1 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 12px;
  text-align: center;
}

#about-show + section + section p,
#about-show + section + section ul {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: left;
}

#about-show + section + section ul {
  padding-left: 20px;
}
/* ===== MOBILE: Episodes Section ===== */
#about-show + section + section + section {
  padding: 16px 12px;
  margin-top: 24px;
}

#about-show + section + section + section h1 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 12px;
  text-align: center;
}

#about-show + section + section + section .episode {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

#about-show + section + section + section .episode img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

#about-show + section + section + section .episode h2 {
  font-size: 16px;
  margin: 8px 0 4px;
}

#about-show + section + section + section .episode p {
  font-size: 13px;
  line-height: 1.5;
}
/* ===== MOBILE: Show Highlights Section ===== */
#about-show + section + section + section + section {
  padding: 16px 12px;
  margin-top: 24px;
}

#about-show + section + section + section + section h1 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 12px;
  text-align: center;
}

#about-show + section + section + section + section ul {
  font-size: 13px;
  line-height: 1.5;
  padding-left: 20px;
}
/* ===== MOBILE: Meet the Faces Section ===== */
#about-show + section + section + section + section + section {
  padding: 16px 12px;
  margin-top: 24px;
}

#about-show + section + section + section + section + section h1 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 12px;
  text-align: center;
}

#about-show + section + section + section + section + section .person {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}

#about-show + section + section + section + section + section .person img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 8px;
}

#about-show + section + section + section + section + section .person h2 {
  font-size: 16px;
  margin: 4px 0;
}

#about-show + section + section + section + section + section .person p {
  font-size: 13px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 16px 12px;
    background-color: #111;
    color: white;
    font-size: 13px;
    text-align: center;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    text-align: center;
  }

  .show-logo {
    width: 140px;
    margin-bottom: 12px;
  }

  .footer-left h3,
  .footer-right h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .footer-left p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .disclaimer {
    font-size: 11px;
    opacity: 0.7;
  }

  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 10px 0;
  }

  .footer-nav li {
    margin: 6px 0;
  }

  .footer-nav a {
    color: #f0c040;
    font-size: 13px;
    text-decoration: none;
  }

  .footer-nav a:hover {
    text-decoration: underline;
  }

  .social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
  }

  .social-links a {
    color: white;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .social-links img {
    width: 20px;
    height: 20px;
  }

  .footer-bottom {
    margin-top: 14px;
    font-size: 11px;
    opacity: 0.8;
  }
@media screen and (max-width: 400px) {
  .hero-section,
  .hero-section img,
  .hero-section video {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    border: none !important;
  }

  /* Reset any space between hero and welcome section */
  .hero-section + * {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* If there's a wrapper around both sections */
  .hero-wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}

}

}