body {
    margin: 0;
    font-family: sans-serif;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    padding: 15px 30px;
    color: white;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #d4af37;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-left: 10px;
}

.nav-buttons {
    display: flex;
    align-items: center;
}

.get-id-btn {
    background-color: #f5b301;
    color: #212121;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
}

.whatsapp-btn {
    color: #25d366;
    font-size: 30px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Tablet and Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #212121;
        position: absolute;
        top: 70px;
        left: 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
        z-index: 1;
        text-align: left;
    }


    .nav-links li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: block;
    }
}


/*         <section class="hero-section"> */
body {
    margin: 0;
    background-color: #121212;
}

.hero-section {
    background: radial-gradient(circle at center, #4a2022, #1a0909);
    color: white;
    padding: 50px 20px;
    overflow-x: hidden; /* This is important to prevent scrollbars during animation */
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* Corrected Animation for Image Column */
.image-column {
    flex: 1;
    opacity: 0;
    /* Starts off-screen to the LEFT */
    transform: translateX(-100%);
    transition: transform 1s ease-out, opacity 1s ease-out;
}

/* Corrected Animation for Text Column */
.text-column {
    flex: 1;
    opacity: 0;
    /* Starts off-screen to the RIGHT */
    transform: translateX(100%);
    transition: transform 1s ease-out, opacity 1s ease-out;
}

/* This class is added by JavaScript when the section is visible */
.image-column.visible,
.text-column.visible {
    opacity: 1;
    /* Moves to the final position on the page */
    transform: translateX(0);
}

.image-column img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.text-column h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.text-column p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 30px;
}

.join-btn {
    display: inline-block;
    background-color: #fbc02d;
    color: #1a0909;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s;
}

.join-btn:hover {
    background-color: #fdd835;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .text-column {
        text-align: center;
    }

    .text-column h1 {
        font-size: 28px;
    }

    .text-column p {
        text-align: center;
        text-align: justify;
    }
}
/* end */


/* <section class="about-reddybook-02" id="about"> */
/* --- Updated About Reddybook 02 Section --- */

.about-reddybook-02 {
    background-color: #000; /* Simple black background */
    color: white;
    padding: 30px 20px;
    overflow-x: hidden;
}

.about-reddybook-02 .container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px; /* Increased gap for better spacing */
}

.about-reddybook-02 .text-column {
    flex: 1;
    text-align: justify;
}

.about-reddybook-02 .image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-reddybook-02 .image-column img {
    max-width: 80%; /* Control the size of the logo */
    height: auto;
}

.about-reddybook-02 h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-reddybook-02 p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify; /* Text is now justified */
    font-weight: 300;
}

.about-reddybook-02 ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
    text-align: left; /* Keep list text aligned left */
}

.about-reddybook-02 ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.about-reddybook-02 ul li::before {
    content: '•';
    color: #fbc02d;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

.about-reddybook-02 strong {
    font-weight: bold;
}


/* --- CORRECTED RESPONSIVE STYLES --- */
@media (max-width: 768px) {
    .about-reddybook-02 .container {
        flex-direction: column;
    }

    /* This is the new rule to hide the image on mobile */
    .about-reddybook-02 .image-column {
        display: none;
    }
    
    .about-reddybook-02 p {
        text-align: justify; /* Justify can be hard to read on mobile, so we switch to left */
    }
}


/* --- Animation CSS (Remains the same) --- */

@keyframes slide-in-from-left {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slide-in-from-right {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.animate-left {
    animation: slide-in-from-left 1s both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
}

.animate-right {
    animation: slide-in-from-right 1s both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
}

    
/*end */


/* <section class="betting-services"> */
/* --- Betting Services Section --- */
.betting-services {
    overflow-x: hidden;
}

.betting-services .container {
    display: flex;
    max-width: 1400px; /* Wider for this design */
    margin: 0 auto;
    background-color: #1a3a2a; /* Dark green background */
}

/* Left Column Styling */
.left-column {
    flex: 1;
    background-image: url('https://images.pexels.com/photos/1105766/pexels-photo-1105766.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    height: 100vh;
}

.left-column .overlay-content {
    background-color: rgba(26, 58, 42, 0.85); /* Semi-transparent dark green */
    color: white;
    padding: 40px;
    text-align: center;
    max-width: 400px;
}

.trophy-icon {
    width: 60px;
    margin-bottom: 20px;
}

.left-column h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.divider {
    width: 50px;
    height: 2px;
    background-color: #d4af37; /* Gold color */
    margin: 0 auto 20px;
}

.left-column p {
    line-height: 1.6;
    margin-bottom: 30px;
}

.learn-more-btn {
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #d4af37;
    /* padding-bottom: 5px; */
}

/* Right Column Styling */
.right-column {
    flex: 1;
    padding: 50px;
    color: white;
}

.right-column h2 {
    font-size: 32px;
    color: #d4af37; /* Gold color */
    margin-bottom: 15px;
    border-left: 3px solid #d4af37;
    padding-left: 15px;
     font-weight: 600;
}

.right-column .intro-text {
    line-height: 1.6;
    margin-bottom: 40px;
}

.services-timeline {
    position: relative;
    padding-left: 40px; /* Space for the timeline */
    border-left: 2px solid #446855; /* The main timeline bar */
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.service-icon {
    width: 50px;
    height: 50px;
    position: absolute;
    left: -65px; /* Position icon on the timeline */
    top: 0;
    background-color: #1a3a2a;
    border-radius: 50%;
    padding: 5px;
}

.service-text h3 {
    font-size: 20px;
    color: #d4af37;
    margin-bottom: 10px;
}

.service-text p {
    line-height: 1.6;
    color: #ccc; /* Lighter text for description */
}

/* Responsive styles */
@media (max-width: 992px) {
    .betting-services .container {
        flex-direction: column;
    }
}

/* --- Re-use the animation CSS from previous steps --- */
@keyframes slide-in-from-left {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slide-in-from-right {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.animate-left {
    animation: slide-in-from-left 1s both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
}

.animate-right {
    animation: slide-in-from-right 1s both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
}

/* end */


/* <section class="registration-guide"> */
/* --- Registration Guide Section --- */

.registration-guide {
    background-color: #000;
    color: #fff;
    padding: 80px 20px;
    overflow-x: hidden;
}

.registration-guide .container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    align-items: flex-start; /* Align items to the top */
}

.registration-guide .text-column {
    flex: 1;
    line-height: 1;
}

.registration-guide .image-column {
    flex: 1;
    position: sticky; /* Makes the image stick a bit while scrolling the text */
    top: 100px;
}

.registration-guide .image-column img {
    max-width: 100%;
    border-radius: 10px;
    margin-left: -30px;
}

.registration-guide h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.registration-guide p {
    line-height: 1.6;
    color: #e0e0e0;
}

/* Styling for the ordered list */
.steps-list {
    list-style: none;
    counter-reset: steps-counter;
    padding-left: 0;
}

.steps-list > li {
    counter-increment: steps-counter;
    margin-bottom: 25px;
}

.steps-list > li > strong {
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
    text-align: left;
}

.steps-list > li > strong::before {
    content: counter(steps-counter) ". ";
    font-weight: bold;
}

/* Styling for the nested details list */
.details-list {
    list-style: none;
    padding-left: 15px;
    margin-top: 15px;
    text-align: left;
}

.details-list li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.details-list li::before {
    content: '•';
    color: #fbc02d; /* Gold bullet */
    position: absolute;
    left: 0;
    top: 0;
}

.note {
    color: #28a745; /* Green color for the checkmark text */
    font-weight: bold;
    margin-top: 15px;
}

/* CTA Button Styling */
.cta-container {
    text-align: center;
    margin-top: 50px;
}

.whatsapp-cta-btn {
    display: inline-block;
    background-color: #fbc02d;
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    transition: transform 0.2s ease;
}

.whatsapp-cta-btn:hover {
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .registration-guide .container {
        flex-direction: column;
    }

    .registration-guide .image-column {
        
        display: none;
    }
}




/* end */


/* --- Corrected Final Steps & CTA Section --- */
/* <section class="final-steps-section"> */

/* --- Horizontal Steps Grid Section --- */

.final-steps-section-horizontal {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 80px 20px;
    overflow-x: hidden;
    margin-top: -100px; /* Overlap with previous section */
}

.steps-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* Creates a 4-column grid on desktops */
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px; /* Space between boxes */
}

.step-box-horizontal {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.step-box-horizontal:hover {
    transform: translateY(-10px);
    border-color: #fbc02d;
}

.step-number-h {
    background-color: #fbc02d;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    margin: 0 auto 20px; /* Center the number circle */
}

.step-content-h strong {
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.step-content-h p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 15px;
}

/* CTA Button Styling */
.cta-container-horizontal {
    text-align: center;
    margin-top: 60px;
}

.join-btn {
    display: inline-block;
    background-color: #fbc02d;
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 17px;
    transition: transform 0.2s ease;
}

.join-btn:hover {
    transform: scale(1.05);
}

/* --- Responsive Design --- */

/* Tablet view: 2 columns */
@media (max-width: 992px) {
    .steps-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile view: 1 column */
@media (max-width: 576px) {
    .steps-grid-container {
        grid-template-columns: 1fr;
    }
}


/* --- Re-use the Fade-Up Animation --- */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* end */

/* <section class="benefits-section"> */
/* --- Benefits Section using class gift_005 --- */
.gift_005 {
    background-color: #1a3a2a; /* Dark green background */
    color: #fff;
    padding: 80px 20px;
    overflow-x: hidden;
}

.gift_005 .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center; /* Center align the header content */
}

/* Section Header - Now at the top */
.gift_005 .section-header {
    margin-bottom: 60px; /* Space between header and the cards below */
    text-align: center;
}

.gift_005 .section-header h2 {
    font-size: 36px;
    font-weight: 600 !important;
    margin-bottom: 15px;
}

.gift_005 .section-header .tagline {
    font-size: 18px;
    color: #e0e0e0;
}

/* Grid for the cards - starts below the header */
.gift_005 .benefits-grid {
    display: grid;
    /* Responsive grid: 4 columns on large screens, 2 on medium, 1 on small */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    /* text-align: left; removed this to allow card content to be centered */
}

/* Individual Card Styling */
.gift_005 .benefit-card {
    background-color: #112e20; /* Darker green for cards */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #d4af37; /* Gold border */
    text-align: center; /* This will center the icon and all text inside the card */
}

.gift_005 .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.gift_005 .benefit-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
}

.gift_005 .benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}


/* --- Re-use the Fade-Up Animation CSS --- */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* end */

/* <section class="login_06"> */
/* --- Updated Login Section (login_06) --- */

.login_06 {
    background: radial-gradient(circle at center, #4a2022, #1a0909);
    color: #fff;
    padding: 80px 20px;
    overflow-x: hidden;
}

.login_06 .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Full-width Section Header at the Top */
.login_06 .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.login_06 .section-header h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
}

.login_06 .section-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    text-align: center; /* Override the justify alignment for this paragraph */
}

/* Container for the two columns below the header */
.login_06 .columns-container {
    display: flex;
    gap: 50px;
    align-items: center;
}


/* Text and Image Columns */
.login_06 .text-column {
    flex: 1;
}

.login_06 .image-column {
    flex: 1;
}

.login_06 .image-column img {
    max-width: 100%;
    border-radius: 10px;
}

/* Typography and Content Styling */
.login_06 h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.login_06 .login-steps p {
    text-align: justify; /* Justify text in the steps */
}

/* Login Steps List */
.login_06 .login-steps {
    list-style: none;
    counter-reset: login-steps-counter;
    padding-left: 0;
    margin-top: 20px;
}

.login_06 .login-steps li {
    counter-increment: login-steps-counter;
    margin-bottom: 20px;
}

.login_06 .login-steps li > strong {
    font-size: 20px;
    display: block;
    margin-bottom: 8px;
    text-align: left;
}

.login_06 .login-steps li > strong::before {
    content: counter(login-steps-counter) ". ";
    font-weight: bold;
}

.login_06 .login-steps li p {
    padding-left: 25px; /* Indent description */
    margin-top: 5px;
    text-align: left;
}

/* Login Button Styling */
.login_06 .login-btn {
    display: inline-block;
    background-color: #fbc02d;
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    margin-top: 30px;
    transition: transform 0.2s ease;
}

.login_06 .login-btn:hover {
    transform: scale(1.05);
}


/* --- Mobile Friendly Layout --- */
@media (max-width: 768px) {
    .login_06 .columns-container {
        /* Reverse order: image appears before text on mobile */
        flex-direction: column-reverse; 
        margin-top: -115px;
    }
    
    .login_06 .text-column {
        margin-top: 40px;
    }

    .login_06 .section-header h2 {
        font-size: 28px;
    }

    .image-column_01 img {
        display: none;
    }
}


/* end */

/*  <section class="index_costumer_7"> */
/* --- Corrected Customer Service Section (index_costumer_7) --- */

.index_costumer_7 {
    background-color: #0d1a3c; /* Dark blue background */
    color: #fff;
    padding: 80px 20px;
    overflow-x: hidden;
}

/* Main content wrapper for the two columns */
.index_costumer_7 .main-content {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 50px;
    align-items: center;
}

/* Left Column with a single image */
.index_costumer_7 .image-column {
    flex: 1;
}

.index_costumer_7 .image-column img {
    max-width: 100%;
    border-radius: 10px;
}

/* Right Column with text */
.index_costumer_7 .text-column {
    flex: 1;
}

.index_costumer_7 .text-column h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
    display: inline-block;
}

.index_costumer_7 .text-column p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #ccc;
}

.index_costumer_7 .download-btn {
    display: inline-block;
    color: #fff;
    background-color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    position: relative;
    z-index: 1;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.index_costumer_7 .download-btn::before {
    content: '';
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    background: conic-gradient(from 180deg at 50% 50%, #ff00ea, #00b3ff, #4dff00, #ffc700, #ff0000, #ff00ea);
    border-radius: 50px;
    z-index: -1;
}

/* Footer Content Styling */
.index_costumer_7 .footer-content {
    max-width: 1100px;
    margin: 80px auto 0;
    text-align: center;
}

.index_costumer_7 .footer-content h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.index_costumer_7 .footer-content p {
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
    .index_costumer_7 .main-content {
        flex-direction: column;
    }
}


/* end */





/*  */
/* --- Attractive Site Footer Section --- */
/* --- Attractive Site Footer Section --- */

.site-footer-attractive {
    background: #0a0a0a linear-gradient(to top, #1a0909, #0a0a0a);
    color: #ccc;
    font-family: Arial, sans-serif;
    padding-top: 80px;
    border-top: 3px solid #fbc02d; /* Gold top border */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* General Column Styling */
.footer-column {
    flex: 1;
    min-width: 220px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Underline effect for headings */
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #fbc02d;
}

/* About Section Specifics */
.about-section .footer-logo {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-section p {
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

.payment-icons img {
    height: 30px;
    margin-right: 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.payment-icons img:hover {
    opacity: 1;
}

/* Links Sections with Hover Arrow */
.links-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-section li {
    margin-bottom: 15px;
}

.links-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.arrow-icon {
    color: #fbc02d; /* Yellow arrow color */
    font-size: 12px;
    margin-right: 10px;
    opacity: 0; /* Hidden by default */
    transform: translateX(-10px);
    transition: opacity 0.3s, transform 0.3s;
}

.links-section a:hover {
    color: #fbc02d;
}

.links-section a:hover .arrow-icon {
    opacity: 1; /* Show arrow on hover */
    transform: translateX(0);
}

/* Social Media Section */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #fff;
    background-color: #222;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icon:hover {
    background-color: #fbc02d;
    color: #000;
    transform: translateY(-5px);
}

/* Footer Bottom Bar */
.footer-bottom {
    text-align: center;
    padding: 25px;
    margin-top: 50px;
    background-color: #000; /* Darker bottom bar */
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}


/* --- REFINED RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        /* The text alignment is now handled by the column itself */
    }
    
    .footer-column {
        /* This ensures text within each column is left-aligned */
        text-align: left;
    }

    .footer-column h4::after {
        /* The underline will now correctly align left with the heading */
        left: 0;
        transform: none;
    }

    .social-icons, .payment-icons {
        /* While the text is left-aligned, the icons can still be centered for a better look */
        justify-content: center;
    }
}


/* end */

/* whatapp */
/* --- Fixed Centered WhatsApp Button --- */
/* --- Fixed & Pulsing WhatsApp Button --- */

.whatsapp-button-pulsing {
    position: fixed; /* Fixes the button to the viewport */
    
    /* Positioned near the bottom, centered horizontally */
    bottom: 30px; /* Instead of top: 93%, this is more reliable */
    left: 50%;
    transform: translateX(-50%);
    
    z-index: 1000; /* Ensures it stays on top of other content */

    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    background-color: #25D366; /* WhatsApp green */
    color: #fff;
    
    padding: 15px 30px;
    border-radius: 50px;
    
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    
    /* The pulse animation is applied here */
    animation: pulse 2s infinite;
    
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

/* Keyframes for the "vibration" or pulse effect */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* Icon styling */
.whatsapp-button-pulsing .fa-whatsapp {
    font-size: 28px;
    margin-right: 12px;
}

/* Hover effect - stops the pulse and lifts the button */
.whatsapp-button-pulsing:hover {
    animation: none; /* Stop the pulsing animation on hover */
    transform: translateX(-50%) scale(1.05); /* Enlarge the button slightly */
}


/* --- Mobile View Adjustments --- */
@media (max-width: 600px) {
    .whatsapp-button-pulsing {
        /* Make the button smaller on mobile screens */
        padding: 12px 20px;
        font-size: 13px;
    }

    .whatsapp-button-pulsing .fa-whatsapp {
        font-size: 24px;
        margin-right: 10px;
    }
}

/* end */

/*  */
/* --- Stats Counter Section --- */

.stats-section {
    background-color: #1a3a2a;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);

    /* --- New styles for height and vertical centering --- */
    min-height: 20vh; /* Minimum height of 20% of the viewport height */
    display: flex;
    align-items: center; /* Vertically centers the content */
    padding: 20px 0; /* Vertical padding for smaller screens */
}

.stats-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item {
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h2 {
    font-size: 42px;
    color: #d4af37;
    margin: 0 0 10px 0;
    font-weight: normal;
}

.stat-item p {
    font-size: 14px;
    color: #ccc;
    letter-spacing: 1px;
    margin: 0;
}

/* --- Responsive Design --- */

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 25px 15px;
    }
    .stat-item:last-child {
        border-bottom: none;
    }
}

/* end */