:root {
    --primary: linear-gradient(to bottom right, #1b2631, #34495e);
    --secondary: #e67e22; /* Muted orange */
    --text: #ecf0f1; /* Light text color */
    --bg-color: #2c3e50; /* Dark blue-gray */
    --accent: #f39c12; /* Bright accent color */
    --hover-color: #2980b9; /* Hover color for tabs */
}

.scroll-down {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: var(--accent);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.scroll-down:hover {
    background-color: var(--hover-color);
}

html {
    scroll-behavior: smooth;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #181818;
    font-family: 'Arial', sans-serif;
    color: var(--text);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
}

/* Navbar Style */

/* Bouncing or Pulsating Effect for Menu Icon */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@-webkit-keyframes bounceWithColor {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        color: white; /* Default color is white */
    }
    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        color: #e74c3c; /* Mid-bounce color */
    }
    60% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
        color: #3498db; /* Another color during the bounce */
    }
}

@keyframes bounceWithColor {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
        color: white; /* Default color is white */
    }
    40% {
        transform: translateY(-10px);
        color: #e74c3c; /* Mid-bounce color */
    }
    60% {
        transform: translateY(-5px);
        color: #3498db; /* Another color during the bounce */
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.menu-icon {
    display: none;
    font-size: 30px;
    color: white; /* Default color is white */
    cursor: pointer;
    -webkit-animation: bounceWithColor 2s infinite; /* Webkit prefix for mobile browsers */
    animation: bounceWithColor 2s infinite; /* Regular animation */
}

.menu-icon:hover {
    -webkit-animation: none; /* Webkit prefix */
    animation: none;
    color: var(--hover-color);
}

.navbar {
    width: 100%;
    background-color: #f39c12;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid var(--secondary);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    flex-direction: row;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: var(--text);
    font-size: 1rem;
    padding: 8px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

.navbar ul li a:hover {
    background-color: var(--hover-color);
    color: var(--bg-color);
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
        font-size: 30px;
        color: white;
        cursor: pointer;
        -webkit-animation: bounceWithColor 2s infinite;
        animation: bounceWithColor 2s infinite;
    }

    .navbar ul {
        flex-direction: column;
        display: none;
        background-color: #202020;
        position: absolute;
        top: 50px;
        right: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

    .navbar ul.active {
        display: block;
    }

    .navbar ul li {
        margin: 10px 0;
        text-align: center;
    }
}

/* Sliding animation */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Container for paragraphs */
.animated-paragraphs p {
    opacity: 0;
    animation: slideIn 0.6s ease forwards;
}

/* Add delay to each paragraph for staggered animation */
.animated-paragraphs p:nth-child(1) {
    animation-delay: 0.2s;
}
.animated-paragraphs p:nth-child(2) {
    animation-delay: 0.4s;
}
.animated-paragraphs p:nth-child(3) {
    animation-delay: 0.6s;
}
.animated-paragraphs p:nth-child(4) {
    animation-delay: 0.8s;
}
.animated-paragraphs p:nth-child(5) {
    animation-delay: 1s;
}
.animated-paragraphs p:nth-child(6) {
    animation-delay: 1.2s;
}
.animated-paragraphs p:nth-child(7) {
    animation-delay: 1.4s;
}
.animated-paragraphs p:nth-child(8) {
    animation-delay: 1.6s;
}
.animated-paragraphs p:nth-child(9) {
    animation-delay: 1.8s;
}
.animated-paragraphs p:nth-child(10) {
    animation-delay: 2s;
}
.animated-paragraphs p:nth-child(11) {
    animation-delay: 2.2s;
}

/* Slider Container */
.slider-container p {
    display: none; /* Hide all paragraphs by default */
}

.slider-container p.active {
    display: block; /* Show only the active paragraph */
}

/* Slider Container for Judaism */
.slider-container-judaism p {
    display: none; /* Hide all paragraphs by default */
}

.slider-container-judaism p.active {
    display: block; /* Show only the active paragraph */
}

/* Slider Container for Hinduism */
.slider-container-hinduism p {
    display: none; /* Hide all paragraphs by default */
}

.slider-container-hinduism p.active {
    display: block; /* Show only the active paragraph */
}

/* Slider Container for Islam */
.slider-container-islam p {
    display: none; /* Hide all paragraphs by default */
}

.slider-container-islam p.active {
    display: block; /* Show only the active paragraph */
}

/* Slider Container for Erosion of Moral Boundaries */
.slider-container-erosion p {
    display: none; /* Hide all paragraphs by default */
}

.slider-container-erosion p.active {
    display: block; /* Show only the active paragraph */
}

.slider-container-angelic .slide {
    display: none; /* Hide all slides by default */
}

.slider-container-angelic .slide.active {
    display: block; /* Show only the active slide */
}


/* Button Styling */
.slider-navigation {
    margin-top: 20px;
    text-align: center;
}

.slider-navigation button {
    padding: 10px 20px;
    background-color: #ffcc00;
    color: #333;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    margin: 5px;
}

.slider-navigation button:hover {
    background-color: #e6b800;
}


/* Page Counter Styling */
.page-counter {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #ffffff;
    text-align: center;
}



/* Intro Section Styles */
.intro-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    align-items: center;
    color: var(--text);
    text-align: center;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.8;
}

.intro-content {
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    border-radius: 10px;
    margin-top: auto; /* Pushes the content towards the bottom */
    margin-bottom: 50px; /* Adjust this value to control the distance from the bottom */
}

.intro-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

/* Purpose Section */
.purpose-section {
    padding: 50px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px; /* Space between purpose and other sections */
}

.purpose-content {
    max-width: 800px;
    margin: 0 auto;
}

.purpose-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent); /* Maintain the accent color for the title */
}

.purpose-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff; /* Ensure the paragraph text is white */
}

.image-container {
    display: flex;
    justify-content: center; /* Align images horizontally */
    gap: 20px; /* Space between the images */
    margin-bottom: 20px; /* Space between the images and the title */
}

.purpose-image {
    width: 100%;
    max-width: 300px; /* Limit the image size */
    height: auto;
    border-radius: 10px; /* Rounded corners for the images */
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .image-container {
        flex-direction: column; /* Stack images vertically on mobile */
        align-items: center;
    }

    .purpose-image {
        max-width: 100%; /* Full width on mobile */
    }

    .purpose-content h1 {
        font-size: 1.8rem; /* Adjust font size for mobile */
    }

    .purpose-content p {
        font-size: 1rem; /* Adjust paragraph font size for mobile */
        line-height: 1.4;
    }
}


/* Religion Section */
.religion-section {
    padding: 50px 20px;
    background-color: var(--bg-color); /* Use the defined background color */
    color: var(--text); /* Light text for contrast */
    text-align: center;
    margin-top: 40px;
    border-radius: 10px;
}



.religion-section img.religion-image {
    width: 350px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px; /* Space between image and heading */
}

.religion-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent); /* Accent color for the heading */
}

.religion-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #fff; /* White text for readability */
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .religion-section {
        padding: 30px 15px; /* Reduce padding on smaller screens */
    }

    .religion-section img.religion-image {
        max-width: 100%; /* Full width for mobile */
    }

    .religion-section h1 {
        font-size: 2rem; /* Adjust font size for mobile */
    }

    .religion-section p {
        font-size: 1rem; /* Adjust font size for mobile */
        line-height: 1.4; /* Adjust line-height for better readability on mobile */
    }
}

/* Discovering the Divine Within Section */
.divine-section {
    padding: 50px 20px;
    background-color: #2b2b2b; /* Darker grayish background */
    color: #ffffff; /* Light text for readability */
    margin-top: 50px;
    text-align: center;
}

.divine-section h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2980b9; /* Blue color for h1 tags */
}

.divine-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e0e0e0; /* Light gray text color */
}

/* Divine Subsections */
.divine-subsection {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    text-align: left; /* Align text to the left */
}

.divine-subsection img.divine-image {
    width: 350px;
    height: auto;
    margin-right: 20px;
    border-radius: 10px;
}

/* Erosion Image */
.divine-image {
    width: 400px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.divine-subsection h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2980b9; /* Blue color for subsection h1 tags */
}



.divine-subsection p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d0d0d0; /* Light gray text color */
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .divine-subsection {
        flex-direction: column; /* Stack images and text on mobile */
        text-align: center;
    }

    .divine-subsection img.divine-image {
        margin-bottom: 20px;
    }

    .divine-subsection h1 {
        font-size: 1.6rem;
    }

    .divine-subsection p {
        font-size: 1rem;
    }
}

/* Slider Container for Angelic Revelations */
.slider-container-angelic p {
    font-size: 1.2rem;
    color: #d0d0d0;
}

.slider-container-angelic p.active {
    display: block; /* Show only the active paragraph */
}

/* Image and Layout */
.common-threads-image {
    width: 350px;
    height: auto;
    margin-right: 20px;
    border-radius: 10px;
}

.slider-navigation {
    margin-top: 20px;
}

.page-counter {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #d0d0d0;
}


/* Container for vertically aligned images */
.image-container-vertical {
    display: flex;
    flex-direction: column; /* Align images vertically */
    justify-content: flex-start; /* Align at the top */
    margin-right: 20px; /* Add space between images and text */
}

.image-container-vertical img {
    width: 250px; /* Adjust width as needed */
    height: auto;
    margin-bottom: 15px; /* Space between images */
    border-radius: 10px;
}

/* Mother Child Worship Section */
.worship-section {
    margin-top: 25px;
    padding: 50px 20px;
    background-color: #2b2b2b;
    color: #ffffff;
    text-align: center;
}

.worship-section h1 {
    font-size: 1.8rem;
    color: #e67e22;
    margin-bottom: 30px;
}

/* Slider Container */
.slider-container-mother-child {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
}

.slider-container-mother-child .slide {
    display: none;
    text-align: center;
}

.slider-container-mother-child .slide.active {
    display: block;
}

.slider-image {
    width: 560px;
    max-width: 400px;
    height: 400px;
    margin-bottom: 20px;
    border-radius: 10px;
}

/* Paragraph Styling for Readability */
.worship-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.worship-section h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    color: #e67e22;
}

.worship-section ul {
    list-style-type: disc;
    margin-left: 20px; /* Adjusts the margin from the left */
    padding-left: 0; /* Removes default padding on the list */
    text-align: center; /* Ensures the text aligns to the left */
}

.worship-section ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    list-style-position: inside; /* Moves the bullet inside the list item */
}

/* Quote Styling */
.worship-section .quote {
    font-style: italic;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 20px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .worship-section {
        padding: 30px 10px; /* Reduce padding for smaller screens */
    }

    .worship-section h1 {
        font-size: 1.5rem; /* Slightly smaller title */
    }

    .slider-container-mother-child {
        max-width: 100%; /* Ensure the slider takes full width on mobile */
    }

    .slider-image {
        max-width: 100%; /* Make the image fully responsive */
    }

    .worship-section p {
        font-size: 1rem; /* Reduce paragraph font size */
        line-height: 1.6; /* Adjust line height */
    }

    .worship-section h2 {
        font-size: 1.2rem; /* Slightly smaller subheadings */
        margin-top: 30px;
    }

    .worship-section ul {
        margin-left: 15px; /* Reduce margin for list */
    }
}

/* Further optimization for very small screens (like small phones) */
@media (max-width: 480px) {
    .worship-section h1 {
        font-size: 1.3rem; /* Reduce title font size further */
    }

    .worship-section p {
        font-size: 0.9rem; /* Smaller paragraph font size */
        line-height: 1.4;
    }

    .worship-section h2 {
        font-size: 1.1rem;
    }
}

/***** Faith Misaligned Section *****/
.faith-misaligned-section {
    padding: 50px 20px;
    background-color: #2b2b2b; /* Dark background for contrast */
    color: #ffffff; /* Light text for readability */
    margin-top: 50px;
    text-align: center;
    border-radius: 10px;
}

.faith-misaligned-section h1 {
    font-size: 2.5rem;
    color: #2980b9; /* Blue color for h1 tags */
    margin-bottom: 20px;
    text-align: center;
}

.faith-content {
    max-width: 0 auto;
    margin: 0 auto;
}

.faith-subsection {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* Ensure it wraps on small screens */
    margin-bottom: 40px;
}

.faith-subsection img.faith-image {
    width: 350px;
    height: auto;
    margin-right: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.faith-subsection h2 {
    font-size: 1.8rem;
    color: #2980b9; /* Blue color for h2 tags */
    margin-bottom: 15px;
    text-align: left;
}

.faith-subsection p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0; /* Light gray text color */
    margin-bottom: 20px;
    text-align: left;
}

.faith-subsection ul {
    list-style-type: disc; /* Standard bullet points */
    margin: 20px auto; /* Centers the list horizontally */
    padding-left: 0; /* Removes default indentation */
    color: #e0e0e0; /* Light gray text color */
    text-align: left; /* Centers the text within the list */
}

.faith-subsection ul li {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 10px; /* Space between list items */
}

/***** Mobile Optimization *****/
@media (max-width: 768px) {
    .faith-subsection {
        flex-direction: column; /* Stack image and text vertically */
        text-align: center;
    }

    .faith-subsection img.faith-image {
        margin-bottom: 20px;
        margin-right: 0; /* Remove right margin for stacked layout */
    }

    .faith-subsection h2 {
        font-size: 1.6rem;
    }

    .faith-subsection p {
        font-size: 1rem;
    }

    .faith-subsection ul {
        padding-left: 20px; /* Reduce indentation on smaller screens */
    }

    .faith-subsection ul li {
        font-size: 1rem; /* Adjust font size for mobile readability */
    }
}

/* New Age Practice Section Styling */
.new-age-practice-section {
    padding: 50px 20px;
    background-color: #2c3e50;
    color: var(--text);
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.new-age-practice-section h2 {
    font-size: 2.5rem;
    color: #FF4500;
    margin-bottom: 20px;
}

.new-age-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.new-age-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    overflow: hidden;
}

.new-age-slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.new-age-slide.active {
    display: block;
}

.new-age-slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.new-age-slider-controls button {
    background-color: #FF4500;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 10px;
}

.new-age-slider-controls button:hover {
    background-color: #CD3700;
}

#new-age-page-counter {
    font-size: 1.2rem;
    margin-top: 10px;
    text-align: center;
    color: #FF4500;
}

/* Images, Videos, and YouTube Iframe Styling */
.new-age-slide-image,
.new-age-slide-video,
.new-age-slide-iframe {
    width: 560px; /* Make them full width */
    height: 400px; /* Adjust the height to maintain aspect ratio */
    margin-top: 20px;
    border-radius: 10px;
}

/* Styling for ul, li and h3 */
.new-age-slide ul {
    text-align: justify;
    line-height: 1.6;
    padding-left: 40px;
    list-style-type: disc;
}

.new-age-slide li {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: white;
}

.new-age-slide h3 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 15px;
}

/* New styling for p tags */
.new-age-slide p {
    text-align: justify;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 20px 0;
    color: #ffffff;
}

/* Mobile Optimization */
@media screen and (max-width: 768px) {
    .new-age-practice-section {
        padding: 30px 10px;
    }

    .new-age-practice-section h2 {
        font-size: 2rem;
    }

    .new-age-slider-container {
        max-width: 100%;
    }

    .new-age-slide-image,
    .new-age-slide-video,
    .new-age-slide-iframe {
        width: 350px; /* Full width for mobile */
        height: 300px; /* Maintain aspect ratio */
    }

    .new-age-slider-controls button {
        padding: 8px 15px;
        font-size: 1.2rem;
    }

    #new-age-page-counter {
        font-size: 1rem;
    }
}

.islamic-dilemma-section {
  padding: 50px 20px;
  background-color: #1b2631;
  color: #ecf0f1;
  text-align: center;
  border-radius: 10px;
  margin-top: 50px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.5s ease-in-out;
}

.islamic-header h1 {
  font-size: 2.5rem;
  color: #f39c12;
  margin-bottom: 10px;
}

.islamic-header h2 {
  font-size: 1.8rem;
  color: #e67e22;
  margin-bottom: 30px;
}

.islamic-slide ul {
  list-style-type: disc;
  margin: 20px 0 25px 40px;
  padding: 0;
}

.islamic-slide ul li {
  margin-bottom: 12px;
  font-size: 1.1rem;
  text-align: left;
}

.islamic-slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  transition: height 0.6s ease; /* smooth height adjustment */
}

.islamic-slide {
  width: 100%;
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: none; /* only show active slide */
  position: relative; /* prevent absolute stacking */
}

.islamic-slide.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.islamic-image,
.islamic-video,
.islamic-iframe {
  width: 560px;
  max-width: 100%;
  height: 400px;
  margin-top: 20px;
  border-radius: 10px;
}

.slider-navigation button {
  padding: 10px 20px;
  background-color: #f39c12;
  color: #2c3e50;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  margin: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.slider-navigation button:hover {
  background-color: #e67e22;
}

.page-counter {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #ffffff;
}

.islamic-slide * + * {
  margin-top: 10px; /* adds small breathing space between stacked elements */
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .islamic-header h1 {
    font-size: 2rem;
  }

  .islamic-header h2 {
    font-size: 1.5rem;
  }

  .islamic-slide h3 {
  font-size: 1.6rem;
  color: #f39c12;
  margin-top: 25px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
}

.islamic-slide ul {
    margin-left: 25px;
  }


  .islamic-image,
  .islamic-video,
  .islamic-iframe {
    width: 350px;
    height: 250px;
  }

  .islamic-slide p,
  .islamic-slide ul li {
    font-size: 1rem;
    text-align: justify;
    line-height: 1.6;
  }

  .slider-navigation button {
    font-size: 1rem;
    padding: 8px 15px;
  }

  .page-counter {
    font-size: 1rem;
  }
}


.comparison-table-section {
  margin-top: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.comparison-table-section h3 {
  color: #f39c12;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

#comparisonTable {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

#comparisonTable th,
#comparisonTable td {
  border: 1px solid #444;
  padding: 10px;
  text-align: left;
  color: #ecf0f1;
}

#comparisonTable th {
  background-color: #2c3e50;
  color: #f39c12;
}

#comparisonTable tr:nth-child(even) td {
  background-color: #253847;
}

em {
  color: #FFD700;
}

@media (max-width: 768px) {
  .comparison-table-section h3 {
    font-size: 1.3rem;
  }
  #comparisonTable th,
  #comparisonTable td {
    font-size: 0.9rem;
    padding: 6px;
  }
}


.container {
    display: flex;
    justify-content: center; /* Center the container */
    width: 100%;
    max-width: 1800px; /* Increase the max-width for even larger displays */
    margin-top: 80px;
}

.main-video {
    flex: 8; /* Maximize space for the video player */
    background-color: #181818;
    margin-right: 20px; /* Add space between video and playlist */
}

.main-video video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.main-video .title {
    margin-top: 15px;
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: bold;
}

.video-playlist {
    flex: 1; /* Reduce the width of the playlist to the minimum */
    background-color: #202020;
    padding: 15px;
    border-radius: 8px;
}

.video-playlist > p {
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 1.2rem;
}

.video-playlist .videos {
    height: calc(100vh - 200px);
    overflow-y: auto;
    padding-right: 10px;
}

.video-playlist .videos::-webkit-scrollbar {
    width: 8px;
}

.video-playlist .videos::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    border-radius: 10px;
}

.video-playlist .videos .video {
    display: flex;
    align-items: center;
    padding: 10px 5px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
}

.video-playlist .videos .video:hover {
    background-color: var(--hover-color);
}

.video-playlist .videos .video.active {
    background-color: var(--secondary);
}

.video img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.video h3 {
    flex-grow: 1;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text);
}

.video p.time {
    font-size: 0.8rem;
    color: var(--accent);
}

.play-pause-icon {
    width: 24px;
    height: 24px;
}

/* Final Message Section */
.final-message-section {
    padding: 40px 20px;
    background-color: #333; /* Background color for the section */
    text-align: center;
    margin-top: 40px; /* Add space between Bible Verses section */
}

.final-message-image {
    width: 100%;
    max-width: 400px; /* Control the maximum size of the image */
    height: auto;
    margin-bottom: 20px; /* Add spacing between the image and the title */
    border-radius: 10px; /* Optional: Add rounded corners */
}

.final-message-section h3 {
    font-size: 1.5rem; /* Adjust font size for the title */
    margin-bottom: 20px; /* Spacing below the title */
    color: #ffcc00; /* Color for the title */
}

.final-message-content p {
    font-size: 1rem; /* Adjust font size for the message text */
    line-height: 1.8;
    color: #fff; /* White text for better contrast */
}



/* Warning Section Styling */
.warning-section {
    padding: 50px 20px;
    background-color: #2c3e50;
    color: var(--text);
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.warning-section h2 {
    font-size: 2.5rem;
    color: #FF0000;
    margin-bottom: 20px;
}

.warning-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.warning-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    overflow: hidden;
}

.warning-slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

/* Adjusting Line Height for Paragraphs in Warning Section */
.warning-slide p {
    line-height: 1.6; /* Adjust this value as needed */
    font-size: 1.5rem; /* You can also adjust the font size if needed */
}


.warning-slide.active {
    display: block;
}

.warning-slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.warning-slider-controls button {
    background-color: #FF0000; /* Change button background color to red (#FF0000) */
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 10px;
}

.warning-slider-controls button:hover {
    background-color: #8B0000; /* Change button hover color to dark red (#8B0000) */
}

#warning-page-counter {
    font-size: 1.2rem;
    margin-top: 10px;
    text-align: center;
    color: #FF0000;
}

/* Mobile Optimization */
@media screen and (max-width: 768px) {
    .warning-section {
        padding: 30px 10px;
    }

    .warning-section h2 {
        font-size: 2rem;
    }

    .warning-slider-container {
        max-width: 100%;
    }

    .warning-slider-controls button {
        padding: 8px 15px;
        font-size: 1.2rem;
    }

    #warning-page-counter {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .warning-section {
        padding: 20px;
    }

    .warning-section h2 {
        font-size: 1.8rem;
    }

    .warning-slider-controls button {
        padding: 6px 12px;
        font-size: 1rem;
    }

    #warning-page-counter {
        font-size: 0.9rem;
    }
}


/* Media Queries for Smaller Devices */
@media (max-width: 768px) {
    .final-message-section {
        padding: 20px 10px; /* Reduce padding for mobile devices */
    }

    .final-message-section h3 {
        font-size: 1.5rem; /* Adjust font size for mobile */
    }

    .final-message-content p {
        font-size: 1.2rem; /* Adjust font size for mobile */
    }

    .responsive-video {
        max-width: 100%; /* Adjust width for smaller screens */
        height: auto;
    }

}

/* Footer Styling */
footer {
    background-color: #202020;
    color: #ecf0f1;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

footer p {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

footer p:last-of-type {
    margin-bottom: 0;
    font-size: 1rem;
}

footer a {
    color: #f39c12;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-social {
    margin-top: 10px;
}

.footer-facebook i {
    font-size: 20px;
    color: #ffffff;
    margin-left: 10px; /* space beside email */
    transition: 0.3s ease;
}

.footer-facebook i:hover {
    color: #3b5998; /* Facebook blue */
    transform: scale(1.1);
}

#progress-container {
    width: 80%;
    background-color: #ecf0f1;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 10px;
}

#progress-bar {
    width: 0;
    height: 100%;
    background-color: #f39c12;
    transition: width 0.5s ease;
}

#progress-text {
    font-size: 1rem;
    color: #ecf0f1;
}

@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .main-video {
        width: 100%;
    }

    .video-playlist {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }

    .video-playlist .videos {
        height: auto;
    }
}

/* Initially hidden section */
#rolling-section-angels {
    height: 0; /* Start with a height of 0 */
    overflow: hidden;
    transition: height 1.5s ease; /* Slow animation effect for the height */
}

/* Expanded state */
#rolling-section-angels.expanded {
    height: auto; /* Expands the section */
    transition: height 1.5s ease; /* Slow animation when expanding */
}

/* Button styling */
#toggle-section-btn-angels{
    padding: 10px 20px;
    background-color: #e67e22;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

/* Button hover effect */
#toggle-section-btn-angels:hover {
    background-color: #d35400; /* Darker orange on hover */
}


/* Initially hidden section */
#rolling-section-divine-within {
    height: 0; /* Start with a height of 0 */
    overflow: hidden;
    transition: height 1.5s ease; /* Slow animation effect for the height */
}

/* Expanded state */
#rolling-section-divine-within.expanded {
    height: auto; /* Expands the section */
    transition: height 1.5s ease; /* Slow animation when expanding */
}

/* Button styling */
#toggle-section-btn-divine-within{
    padding: 10px 20px;
    background-color: #e67e22;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

/* Button hover effect */
#toggle-section-btn-divine-within:hover {
    background-color: #d35400; /* Darker orange on hover */
}



/* Initially hidden section */
#rolling-section-divine-within2 {
    height: 0; /* Start with a height of 0 */
    overflow: hidden;
    transition: height 1.5s ease; /* Slow animation effect for the height */
}

/* Expanded state */
#rolling-section-divine-within2.expanded {
    height: auto; /* Expands the section */
    transition: height 1.5s ease; /* Slow animation when expanding */
}

/* Button styling */
#toggle-section-btn-divine-within2{
    padding: 10px 20px;
    background-color: #e67e22;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

/* Button hover effect */
#toggle-section-btn-divine-within2:hover {
    background-color: #d35400; /* Darker orange on hover */
}


