/* Fonts and General Styling */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* General Styling for Full-Width Sections */
/* General Styling for Full-Width Centered Sections */
/* General Styling for Full-Width Centered Sections */
/* General Section Styling */

/* Center Section Styling */
#why-choose-us {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    text-align: center; /* Center text */
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    width: 100%; /* Full width */
    min-height: 100vh; /* Minimum height for section */
    gap: 40px; /* Spacing between elements */
    padding: 0 20px; /* Padding for smaller screens */
    padding-top: 5%;
    box-sizing: border-box;
    overflow: visible; /* Ensure content is visible */
    position: relative; /* Position relative to control z-index */
    z-index: 10; /* Higher stacking order */
}

/* Title and Description */
#why-choose-us h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffd700; /* Gold */
    margin-bottom: 10px;
}

#why-choose-us p {
    font-size: 1.4rem;
    font-weight: 300;
    color: #ccc; /* Light gray */
    max-width: 100%; /* Limit width */
    margin: 0 auto; /* Center align */
}

/* Responsive Design */
@media (max-width: 768px) {
    #why-choose-us {
        gap: 30px; /* Smaller gap for mobile */
        padding: 20px;
    }

    #why-choose-us h2 {
        font-size: 3rem;
    }

    #why-choose-us p {
        font-size: 1.2rem;
    }
}
/* Stats Section */
.stats {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center; /* Center horizontally */
    gap: 40px; /* Add spacing between stats */
    width: 100%; /* Full width */
    max-width: 75%; /* Limit max width */
}

.stats div {
    text-align: center;
    flex: 1;
    min-width: 200px; /* Minimum width for stats */
    max-width: 100%; /* Maximum width for stats */
}

.stats strong {
    display: block;
    font-size: 3.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: #ffd700; /* Gold */
}

.stats span {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
}

/* Carousel Section */
.carousel-container {
    width: 100%;
    max-width: 100%; /* Center carousel */
    position: relative;
    overflow:hidden;
    margin-top: 20px;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px; /* Spacing between items */
}

.carousel img {
    width: 200px;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel img:hover {
    transform: scale(1.05);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.carousel-button:hover {
    background: #ffd700; /* Gold */
    color: #000;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    #why-choose-us {
        gap: 30px; /* Smaller gap for mobile */
        padding: 20px;
    }

    #why-choose-us h2 {
        font-size: 3rem;
    }

    #why-choose-us p {
        font-size: 1.2rem;
    }

    .stats strong {
        font-size: 2.5rem;
    }

    .carousel img {
        width: 150px;
        height: 200px;
    }

    .carousel-button {
        font-size: 1.5rem;
        padding: 8px;
    }
}
/* General Section Styling */
/* Process Section */
#process {
    display: flex;
    flex-direction: column;
    gap: 250px;
    padding: 80px 8%;
    background-color: #000;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Individual Article Styling */
#process article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    width: 100%;
    animation: fadeInUp 1.5s ease-in-out;
}

/* Text Content Styling */
#process article .text-content {
    flex: 1;
    width: 50%;
    order: 1;
}

#process article .text-content h3 {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffd700; /* Gold */
    padding: 10px 25px;
    border: 2px solid #ffd700;
    border-radius: 25px;
    text-transform: uppercase;
    margin-bottom: -80px;
    letter-spacing: 1px;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

#process article .text-content h3:hover {
    background-color: #ffd700;
    color: #000; /* Black on hover */
    cursor: pointer;
}

#process article .text-content h1 {
    font-size: 4rem; /* Larger heading */
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #fff;
}

#process article .text-content p {
    font-size: 1.5rem; /* Larger paragraph text */
    font-weight: 300;
    margin-bottom: 30px;
    color: #ddd; /* Softer white for description */
    line-height: 1.8;
}

#process article .text-content ul li {
    margin-bottom: 15px; /* Reduce spacing between items */
    display: flex;
    align-items: center;
    font-size: 1.3rem; /* Smaller list items */
    font-weight: 400; /* Lighter weight for a cleaner look */
    color: #ccc; /* Softer white */
    line-height: 30px;
}

#process article .text-content ul li::before {
    content: "✔"; /* Checkmark for list items */
    color: #ffd700; /* Gold */
    font-size: 1.8rem; /* Maintain checkmark prominence */
    margin-right: 10px; /* Slightly reduce spacing */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #process article .text-content ul li {
        font-size: 1.1rem; /* Even smaller font size for mobile screens */
    }
}


/* Media Content Styling */
#process article .media-content {
    flex: 1;
    width: 50%;
    order: 2;
    position: relative;
    overflow: hidden;
    height: 450px; /* Slightly taller height */
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.7); /* Stronger shadow */
    border-radius: 15px; /* Smooth corners */
}

#process article .media-content video,
#process article .media-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%); /* Angled shape */
    transition: transform 0.4s ease-in-out;
}

#process article .media-content video:hover,
#process article .media-content img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Button Styling */
#process article .text-content h3 {
    box-shadow: 0px 0px 10px rgba(255, 215, 0, 0.7); /* Glow effect */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    #process article {
        flex-direction: column; /* Stack text and media */
        text-align: center;
    }

    #process article .text-content,
    #process article .media-content {
        width: 100%; /* Full width for smaller screens */
    }

    #process article .media-content {
        height: 250px; /* Adjusted height for smaller screens */
    }

    #process article .text-content h1 {
        font-size: 2.8rem; /* Smaller heading */
    }

    #process article .text-content p {
        font-size: 1.2rem;
    }

    #process article .text-content ul li {
        font-size: 1.2rem;
    }
}
/* Process Section Styling */
#process2 {
    background: linear-gradient(to bottom, #000, #111); /* Subtle gradient background */
    padding: 80px 8%; /* Increased padding for breathing room */
    text-align: center;
    position: relative;
}

/* Main Heading */
#process2 h2 {
    font-size: 5rem; /* Larger font size */
    font-weight: 900;
    color: #ffd700; /* Gold */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    transition: color 0.3s ease-in-out;
}

#process2 h2:hover {
    color: #ffffff; /* Change to white on hover */
}

/* Subtitle */
#process2 .subtitle {
    font-size: 1.8rem; /* Larger font size */
    font-weight: 300;
    color: #ccc; /* Softer gray */
    margin-bottom: 40px;
    animation: fadeInP 1.5s ease-in-out;
}

/* Decorative Line */
#process2 .decorative-line {
    width: 150px;
    height: 6px;
    background: #ffd700; /* Gold */
    margin: 0 auto 20px;
    border-radius: 3px;
    animation: scaleIn 1.5s ease-in-out;
}

/* Animations */
@keyframes fadeInP {
    from {
        opacity: 0;
        transform: translateY(20%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Add a Background Effect */
#process2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1; /* Subtle opacity */
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    #process2 h2 {
        font-size: 3.5rem;
    }

    #process2 .subtitle {
        font-size: 1.4rem;
    }

    #process2 .decorative-line {
        width: 100px;
        height: 4px;
    }
}
/* General Styling for Podcast Packages */
#podcast-packages {
    font-family: 'Poppins', sans-serif;
    color: white;
    background-color:#111;
    padding: 40px 20px;
    border-radius: 10px;
}
#podcast-packages .packages-header {
    text-align: center;
    margin-bottom: 40px;
    color: #EFB627;
}

#podcast-packages .packages-header h1 {
    margin: 0;
    font-size: 3.5rem; /* Large font size */
    font-weight: 900; /* Bold for emphasis */
    color: #EFB627; /* Gold */
    text-transform: uppercase; /* All caps for impact */
    letter-spacing: 2px; /* Space between letters */
    position: relative;
}

#podcast-packages .packages-header h1::after {
    content: "";
    display: block;
    width: 120px; /* Width of the underline */
    height: 4px; /* Thickness of the underline */
    background: #EFB627; /* Gold color */
    margin: 10px auto 0; /* Spacing */
    border-radius: 10px; /* Smooth edges */
}

#podcast-packages .packages-header p {
    margin-top: 15px;
    font-size: 1.2rem; /* Slightly smaller subtitle */
    color: #fff; /* White for contrast */
    font-weight: 300; /* Lighter font weight */
    line-height: 1.6;
    max-width: 700px; /* Limit width for readability */
    margin: 15px auto 0; /* Center align */
}


/* Wide Layout for Packages */
#podcast-packages .packages-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Align packages evenly */
    gap: 20px; /* Space between packages */
    padding: 20px 0;
}

#podcast-packages .package {
    flex: 1 1 calc(30% - 20px); /* Adjusted width for better spacing */
    max-width: calc(30% - 20px);
    background: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(239, 182, 39, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 2px solid transparent; /* Add border for hover effect */
}

#podcast-packages .package:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(239, 182, 39, 0.6);
    border: 2px solid #EFB627;
}

/* Headings and Content */
#podcast-packages .package h2 {
    font-size: 1.6rem;
    color: #EFB627;
    margin: 10px 0;
}

#podcast-packages .package .duration {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 15px;
}

#podcast-packages .package ul {
    padding: 0;
    list-style: none;
    margin: 15px 0;
}

#podcast-packages .package ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
}

#podcast-packages .package ul li::before {
    content: "✔";
    color: #EFB627;
    font-size: 1.4rem;
    margin-right: 10px;
}

#podcast-packages .package .gifts h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #EFB627;
}

/* Improved Button Styling */
/* Updated Button Styling */
/* Updated Button Styling */
#podcast-packages .package button.contact-us-button {
    display: block;
    width: 100%;
    background-color: #EFB627; /* Bright yellow gold */
    color: #1a1a1a; /* Slightly darker black for modern contrast */
    border: none;
    padding: 16px 20px; /* Increased padding for better proportions */
    border-radius: 12px; /* Softer rounded corners for a premium look */
    font-size: 1rem;
    font-weight: 700; /* Bold text for emphasis */
    text-transform: uppercase; /* Matches modern design */
    cursor: pointer;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Softer shadow for a clean look */
    transition: all 0.3s ease; /* Smooth hover effect */
    text-decoration: none; /* Ensures no underline */
    font-family: 'Poppins', sans-serif; /* Matches modern web font styles */
}

#podcast-packages .package button.contact-us-button:hover {
    background-color: #FFD966; /* Lighter yellow for hover effect */
    color: #000000; /* Consistent contrast */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
    transform: translateY(-2px); /* Lift effect for interactivity */
    text-decoration: none; /* Ensures no underline */
}

#podcast-packages .package button.contact-us-button:focus {
    outline: 3px solid #FFD966; /* Focus ring for accessibility */
    outline-offset: 3px;
    text-decoration: none; /* Ensures no underline on focus */
}

/* Recommended Badge */
#podcast-packages .recommended {
    border: 2px solid #EFB627;
    position: relative;
}

#podcast-packages .recommended::before {
    content: "Recommended";
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #EFB627;
    color: black;
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    #podcast-packages .package {
        flex: 1 1 calc(45% - 20px); /* Two packages per row */
        max-width: calc(45% - 20px);
    }
}

@media (max-width: 768px) {
    #podcast-packages .package {
        flex: 1 1 100%; /* One package per row */
        max-width: 100%;
    }

    #podcast-packages .packages-content {
        flex-direction: column;
        gap: 30px;
    }

    #podcast-packages .recommended::before {
        top: -10px;
        right: 10px;
    }
}
/*here*/


/*giminei*/
.customer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffd700; /* Gold */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    text-align: center; /* Center text */
    background-color: #000; /* Black background */
    width: 100%; /* Full width */
    padding-top: 10%;
    overflow: hidden; /* Prevent overflow issues */
}

/*works*/
/*works*/
/*works*/
.review-widget {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    background: #111;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
    padding: 30px;
    border: 1px solid #ffcc00;
    overflow: hidden;
    box-sizing: border-box;
}

.review-slider-wrapper {
    overflow: hidden;
    perspective: 1000px;
}

.review-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-slide {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding: 15px;
    opacity: 0.6;
    transform: scale(0.9);
    transition: all 0.3s ease;
    flex-direction: row;
    backface-visibility: hidden;
    will-change: transform;
    box-sizing: border-box;
}

.review-slide.active {
    opacity: 1;
    transform: scale(1);
}

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid #ffcc00;
    box-shadow: 0 4px 8px rgba(255, 204, 0, 0.2);
}

.review-content {
    flex-grow: 1;
    color: #ffcc00;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.quote {
    font-style: italic;
    font-size: 1em;
    margin-bottom: 8px;
    line-height: 1.3;
}

.author {
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
    font-size: 0.9em;
}

.rating {
    color: gold;
    font-size: 1em;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.slider-controls button {
    background: transparent;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #ffcc00;
    transition: color 0.3s;
}

.slider-controls button:hover {
    color: #cc9900;
}

.indicators {
    display: flex;
    justify-content: center; /* Center the indicators */
    margin-top: 10px; /* Add some space above the indicators */
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #555;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: #ffcc00;
}

@media (max-width: 600px) {
    .review-slide {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
    }

    .avatar {
        margin-bottom: 10px;
        margin-right: 0;
        width: 60px;
        height: 60px;
    }

    .quote {
        font-size: 0.9em;
    }

    .author {
        font-size: 0.8em;
    }
    .slider-controls{
        flex-direction: column;
    }
}

@media (max-width: 400px) {
    .review-widget {
        padding: 10px;
    }
}
/* General Popup Styling */
/* General Popup Overlay Styling */
/* Popup Overlay */
/* Popup Overlay */
/* Popup Overlay */
/* Popup Overlay */
.popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Slightly darker overlay for focus */
    z-index: 1000;
    backdrop-filter: blur(5px); /* Subtle background blur */
  }
  
  /* Popup Content */
  .popup-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, #1c1c1c, #292929); /* Subtle gradient for depth */
    padding: 40px;
    border-radius: 16px; /* Rounded edges for a modern look */
    box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.8); /* Stronger shadow for focus */
    text-align: center;
    max-width: 420px;
    width: 90%;
    animation: fadeIn 0.3s ease;
    color: #ffffff; /* White text for high contrast */
    font-family: 'Poppins', sans-serif;
  }
  
  /* Close Button */
  .close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #ffffff;
    transition: color 0.3s ease, transform 0.2s ease;
  }
  
  .close-popup:hover {
    color: #ffc107; /* Highlight on hover */
    transform: rotate(90deg); /* Subtle rotation for interaction */
  }
  
  /* Title */
  .popup-content h3 {
    color: #ffc107;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  /* Subtitle */
  .popup-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #b3b3b3; /* Softer gray for less contrast */
  }
  
  /* Appointment Scheduling Button */
  .calendar-scheduling-button {
    background-color: #ffc107;
    color: #1c1c1c;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    margin-bottom: 20px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  .calendar-scheduling-button:hover {
    background-color: #e6ac00;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.4);
  }
  
  /* Contact Options Container */
  .contact-options {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px; /* More spacing between buttons */
  }
  
  /* Contact Buttons */
  .contact-button {
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  .contact-button:hover {
    transform: translateY(-2px); /* Lift effect */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.5); /* Stronger shadow */
  }
  
  /* WhatsApp Button */
  .whatsapp-button {
    background: linear-gradient(145deg, #25d366, #1cae54);
    color: #ffffff;
  }
  
  .whatsapp-button:hover {
    background: linear-gradient(145deg, #1cae54, #199c4b);
  }
    
  /* Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translate(-50%, -45%);
    }
    to {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }
  /* Call Button */
  .call-button {
    background: linear-gradient(145deg, #ff5722, #e64a19);
    color: #ffffff;
  }
  
  .call-button:hover {
    background: linear-gradient(145deg, #e64a19, #c63f17);
  }
  
  /* Email Button */
  .email-button {
    background: linear-gradient(145deg, #ffc107, #e6ac00);
    color: #1c1c1c;
  }
  
  .email-button:hover {
    background: linear-gradient(145deg, #e6ac00, #cc9600);
  }

  /* Responsive Design for Smaller Screens */
  @media (max-width: 768px) {
    #process {
        padding: 20px 5%; /* Reduce padding for smaller screens */
        gap: 40px;        /* Reduce the gap between sections */
    }

    #process article {
        flex-direction: column; /* Stack items vertically */
        align-items: center;    /* Center-align all items */
        justify-content: center; /* Ensure vertical centering */
        text-align: center;     /* Center-align text */
    }

    #process article .text-content,
    #process article .media-content {
        width: 100%;        /* Full width for both sections */
        max-width: 500px;   /* Restrict width for better readability */
        margin: 0 auto;     /* Center-align the elements */
    }

    #process article .text-content {
        padding: 0 15px; /* Add padding for text content */
        box-sizing: border-box;
    }

    #process article .text-content h1 {
        font-size: 2.5rem; /* Adjust heading size */
        line-height: 1.3;  /* Improve line height for readability */
        margin-bottom: 15px;
    }

    #process article .text-content p {
        font-size: 1.2rem; /* Adjust paragraph size */
        margin-bottom: 20px; /* Add some spacing between elements */
        line-height: 1.8;   /* Improve readability */
    }

    #process article .text-content ul li {
        font-size: 1.1rem;  /* Adjust list item size */
        margin-bottom: 15px; /* Maintain consistent spacing */
        line-height: 1.5;
    }

    #process article .media-content {
        height: auto;       /* Allow dynamic height adjustment */
        aspect-ratio: 16 / 9; /* Maintain aspect ratio for media */
        overflow: hidden;   /* Prevent overflow issues */
    }

    #process article .media-content img,
    #process article .media-content video {
        width: 100%;        /* Ensure media fills the container */
        height: auto;       /* Maintain aspect ratio */
        object-fit: cover;  /* Prevent distortion */
    }

    #process article .text-content h3 {
        margin: 0 auto 20px; /* Center-align the button */
        display: inline-block; /* Treat as an inline element */
        font-size: 1rem;      /* Adjust button font size */
    }
}
footer {
    text-align: center;
    background-color: #111;
    padding: 20px;
    color: #fff;
}
@media (max-width: 768px) {
    #process article .text-content ul {
        display: flex;
        flex-direction: column; /* Ensure items are stacked */
        align-items: center; /* Center items horizontally */
        justify-content: center; /* Center items vertically if needed */
        padding: 0; /* Optional: Remove padding for tighter alignment */
        list-style: none; /* Optional: Remove bullets */
    }

    #process article .text-content ul li {
        text-align: center; /* Center the text inside each list item */
        margin-bottom: 10px; /* Adjust spacing as needed */
    }
}
