/* styles.css */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.header {
    position: fixed;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px;
    z-index: 1000;
    transition: background-color 0.3s, box-shadow 0.3s, top 0.3s;
    top: 0; /* Initially, the header is visible */
}

.header.transparent {
    background-color: rgba(0, 0, 0, 0); /* Transparent background */
}

.header.light-black {
    background-color: rgba(0, 0, 0, 0.7); /* Light black background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 50px;
}

.navbar {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link:focus {
    color: #007bff; /* Hover and focus color */
}

.btn-audit {
    background-color: #007bff; /* Button color */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.btn-audit:hover, .btn-audit:focus {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Media Query for Mobile Devices */
@media (max-width: 767px) {
    .header {
        padding: 0px 0px;
        flex-direction: horizontal;
        align-items: flex-start;
        top: 0;
    }

    .logo {
        margin-bottom: 10px;
    }

    .navbar {
        display: flex;
        flex-direction: horizontal;
        align-items: center;
        width: 90%;
    }

    .nav-list {
        flex-direction: horizontal;
        width: 100%;
    }

    .nav-item {
        margin: 5px 0;
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 10px 0;
        text-align: center;
    }

    .btn-audit {
        width: 70%;
        text-align: center;
        margin-top: 10px;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }
}







/* Hero Section */
.hero-section {
    height: 100vh;
    background: black;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Overlay effect */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero-content h1 {
    font-size: 72px;
    color: #007bff; /* Blue color */
    margin-bottom: 0px;
}

.hero-content p {
    font-size: 36px;
    color: white; /* White color */
    margin-bottom: 50px;
}

.hero-content .hero-subtext {
    font-size: 18px;
    color: white; /* White color */
    margin-top: 70px;
}

.btn-hero {
    background-color: #007bff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px #007bff; /* Blue glow */
    display: inline-block;
}

.btn-hero span {
    font-size: 14px;
    display: block;
    margin-top: 5px;
    font-weight: normal;
}

.btn-hero:hover, .btn-hero:focus {
    transform: scale(1.1); /* Make the button bigger on hover */
    box-shadow: 0 0 15px #007bff; /* Increase the glow */
}

/* Media Query for Mobile Devices */
@media (max-width: 767px) {
    .hero-content {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-content p {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .hero-content .hero-subtext {
        font-size: 14px;
        margin-top: 30px;
    }

    .btn-hero {
        padding: 10px 20px;
        font-size: 18px;
    }

    .btn-hero span {
        font-size: 12px;
    }
}




/* particles.js container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}









/* Services Section part 1 */
.services-section {
    padding: 60px 0;
    text-align: center;
    background-color: #000; /* Black background */
}

.services-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-section .section-title {
    font-size: 36px;
    color: #007bff; /* Blue color */
}

.services-section .sub-title {
    font-size: 48px;
    margin-top: 20px;
    color: #fff; /* White color */
}

/* Box Section */
.box-section {
    padding: 100px 0;
    text-align: left;
    background-color: #000; /* Black background */
    overflow: visible;
}

.box-section .container {
    position: relative; /* Make the container relative for absolute positioning */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: -100px; /* Add spacing between boxes */
}

.box {
    position: relative; /* Make the box relative for absolute positioning */
    width: 750px;
    padding: 20px;
    background-color: #0f0f0f; /* Black background */
    border: 2px solid #007bff; /* Blue outline */
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 0 20px 10px #007bff; /* Blue glow */
    transition: box-shadow 0.3s; /* Smooth transition */
    margin-bottom: 0px; /* Add margin to separate the boxes */
    overflow: visible; /* Ensure overflow is visible */
}

.box:hover {
    box-shadow: 0 0 20px 10px white; /* White glow on hover */
    border: 2px solid white;
}

.box-title {
    font-size: 32px;
    color: #fff; /* White color */
    text-align: left;
    padding-left: 40px;
    padding-top: 20px;
}

.box-text {
    font-size: 18px;
    color: #ccc; /* Light gray color */
    text-align: left;
    margin: 10px 0;
    padding: 0;
    position: relative;
    top: -10px; /* Move text up slightly */
    max-height: calc(50% + 10px); /* Limit text height to half of box plus 10px */
    overflow: hidden; /* Hide overflow text */
    padding-right: 230px;
    padding-left: 40px;
    padding-bottom: 70px;
    line-height: 1.5;
}

.box-img {
    position: absolute;
    top: 50%;
    right: -70px; /* Move image further to the right */
    transform: translateY(-50%);
    max-width: 300px; /* Adjust width as needed */
    max-height: calc(100% - 40px); /* Ensure image doesn't exceed box height */
    border-radius: 0 20px 20px 0; /* Match box corner radius */
    z-index: 1; /* Ensure the image appears on top */
}

/* CTA Button Container */
.services-button-container {
    text-align: center;
    margin: 20px 0; /* Adjust as needed */
}

/* CTA Button */
.services-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 24px;
    color: white;
    background-color: #007bff; /* Blue color */
    border: none;
    border-radius: 20px; /* Increased border-radius for rounder corners */
    text-decoration: none;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: 0px;
    margin-bottom: 50px;
}

.services-button:hover {
    transform: scale(1.1); /* Make the button bigger on hover */
    background-color: #0056b3; /* Darker blue on hover */
}

/* CTA Subtitle */
.services-button .services-subtitle {
    display: block;
    font-size: 14px; /* Adjust font size as needed */
    color: #ccc; /* Light gray color */
    margin-top: 5px; /* Adjust spacing between button text and subtitle as needed */
    font-weight: normal;
}

@media (max-width: 768px) {
    .box {
        width: 70%; /* Adjust to desired width */
        max-width: 600px; /* Set max-width for mobile */
        padding: 20px;
        margin-bottom: 30px;
    }

    .box-text {
        padding-right: 20px;
        padding-bottom: 20px;
    }

    .box-img {
        position: static;
        transform: none;
        max-width: 100%;
        margin-top: 20px;
        border-radius: 20px; /* Match box corner radius */
    }
}








/* Line devider */
.line-divider-container {
    padding: 200px 0; /* Adjust top and bottom padding as needed */
    display: flex;
    justify-content: center; /* Center the line divider */
}

.line-divider {
    width: 850px; /* Set width to 850px */
    height: 3px; /* Adjust height as needed */
    background: linear-gradient(to right, rgba(0, 123, 255, 0), rgba(0, 123, 255, 1), rgba(0, 123, 255, 0)); /* Transparent gradient to blue to transparent */
}

/* Mobile styles */
@media (max-width: 767px) {
    .line-divider-container {
        padding: 100px 0; /* Reduce padding for mobile */
    }

    .line-divider {
        width: 90%; /* Make the width responsive */
    }
}








/* Case Studies Section part 1 */
.case-studies {
    padding: 60px 0;
    text-align: center;
    background-color: #000; /* Black background */
}

.case-studies .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-studies .section-title {
    font-size: 36px;
    color: #007bff; /* Blue color */
}

.case-studies .sub-title {
    font-size: 48px;
    margin-top: 20px;
    color: #fff; /* White color */
}

.case-studies .sub-sub-title {
    font-size: 18px;
    margin-top: 0px;
    color: #ccc; /* Light gray color */
    width: 750px;
    margin-top: -15px;
    margin-bottom: 70px;
}

.case-studies-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px; /* Add spacing between case studies */
    margin-top: 40px;
}

.case-study {
    display: flex;
    align-items: center;
    gap: 20px; /* Add spacing between video and details */
    width: 850px; /* Set total width */
}

.case-study.reverse {
    flex-direction: row-reverse; /* Reverse order for the second case study */
}

.case-study-box {
    position: relative;
    width: 400px; /* Set width for the video box */
    height: 225px;
    overflow: hidden;
    border: 2px solid #007bff; /* Blue outline */
    border-radius: 10px;
    box-shadow: 0 0 15px 5px #007bff; /* Blue glow */
    transition: box-shadow 0.3s;
}

.case-study-box:hover {
    box-shadow: 0 0 15px 5px white; /* White glow on hover */
    border: 2px solid white;
}

.case-study-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Ensure the link is on top */
    text-decoration: none; /* Remove underline from text */
}

.case-study-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    cursor: pointer;
    z-index: 2; /* Ensure overlay is on top */
}

.case-study-box:hover .case-study-overlay {
    opacity: 1;
}

.case-study-overlay p {
    color: #fff; /* White color */
    font-size: 18px;
    margin: 0;
}

.case-study-details,
.case-study-details-1 {
    background-color: #0f0f0f; /* Dark background */
    padding: 20px;
    border-radius: 10px;
    width: 375px; /* Set width for the description box */
    height: 225px;
    margin: 0 20px;
}

.case-study-details h3,
.case-study-details-1 h3 {
    color: #fff; /* White color */
    margin-bottom: 10px;
    margin-top: 10px;
}

.case-study-details p,
.case-study-details-1 p {
    color: #ccc; /* Light gray color */
}

.case-study-details p span,
.case-study-details-1 p span {
    display: block;
    margin-bottom: 10px; /* Adjust spacing between lines as needed */
}

/* CTA Button Container */
.case-study-button-container {
    text-align: center;
    margin: 20px 0; /* Adjust as needed */
}

/* CTA Button */
.case-study-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 24px;
    color: white;
    background-color: #007bff; /* Blue color */
    border: none;
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: -50px;
}

.case-study-button:hover {
    transform: scale(1.1); /* Make the button bigger on hover */
    background-color: #0056b3; /* Darker blue on hover */
}

/* CTA Subtitle */
.case-study-button .case-study-subtitle {
    display: block;
    font-size: 14px; /* Adjust font size as needed */
    color: #ccc; /* Light gray color */
    margin-top: 5px; /* Adjust spacing between button text and subtitle as needed */
    font-weight: normal;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .case-studies .sub-sub-title {
        width: 90%; /* Adjust to fit mobile screens */
    }

    .case-studies-container {
        gap: 50px; /* Reduce spacing between case studies */
    }

    .case-study {
        flex-direction: column;
        width: 100%;
    }

    .case-study.reverse {
        flex-direction: column;
    }

    .case-study-box {
        width: 90%;
        height: auto;
    }

    .case-study-details,
    .case-study-details-1 {
        width: 90%;
        height: auto;
        margin: 20px 0;
    }
}








/* Line divider */
.line-divider-container-1 {
    padding: 200px 0; /* Adjust top and bottom padding as needed */
    display: flex;
    justify-content: center; /* Center the line divider */
    padding-bottom: 250px;
}

.line-divider-1 {
    width: 850px; /* Set width to 850px */
    height: 3px; /* Adjust height as needed */
    background: linear-gradient(to right, rgba(0, 123, 255, 0), rgba(0, 123, 255, 1), rgba(0, 123, 255, 0)); /* Transparent gradient to blue to transparent */
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .line-divider-container-1 {
        padding: 100px 0; /* Adjust top and bottom padding for mobile */
        padding-bottom: 125px;
    }

    .line-divider-1 {
        width: 90%; /* Adjust width for mobile */
    }
}









/* Team Section part 1 */
.team-section {
    padding: 60px 0;
    text-align: center;
    background-color: #000; /* Black background */
}

.team-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-section .section-title {
    font-size: 36px;
    color: #007bff; /* Blue color */
}

.team-section .sub-title {
    font-size: 48px;
    margin-top: 20px;
    color: #fff; /* White color */
    padding-bottom: 50px;
}

/* Team Section part 2 */
.team-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member {
    text-align: center;
    margin-right: 20px; /* Adjust spacing between elements */
}

.circle-box {
    width: 150px;
    height: 150px;
    background-color: #007bff; /* Blue background */
    border-radius: 50%; /* Make it circular */
    overflow: hidden; /* Hide overflow content */
    margin-bottom: 10px; /* Adjust spacing */
    margin-right: 20px; /* Adjust spacing from the right */
    margin-top: 50px;
}

.circle-box img {
    width: 100%;
    height: auto;
    margin-top: -15px;
}

.name {
    color: #fff; /* White color */
    font-size: 24px;
    margin-left: -5px;
}

.role {
    color: #007bff; /* Blue color */
    font-size: 18px;
    font-weight: bold;
    margin-left: -5px;
}

/* Team Section part 3 */
.description-box {
    width: 550px; /* Adjust the width as needed */
    padding: 20px;
    background-color: #0f0f0f; /* Black background */
    border: 2px solid #007bff; /* Blue outline */
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 0 20px 10px #007bff; /* Blue glow */
    transition: box-shadow 0.3s; /* Smooth transition */
    margin-top: 50px;
}

.description-box:hover {
    box-shadow: 0 0 20px 10px white; /* White glow on hover */
    border: 2px solid white;
}

.description-box h3 {
    font-size: 24px;
    color: #fff; /* White color */
    text-align: left;
    padding-left: 20px; /* Adjust padding as needed */
    margin-top: 15px; /* Remove default margin */
}

.description-box p {
    font-size: 18px;
    color: #ccc; /* Light gray color */
    text-align: left;
    margin: 0;
    padding: 10px 20px; /* Adjust padding as needed */
    margin-bottom: 10px;
}

.description-box p span {
    display: block;
    margin-bottom: 15px; /* Adjust the spacing between lines as needed */
}

/* CTA Button Container */
.team-button-container {
    text-align: center;
    margin: 20px 0; /* Adjust as needed */
}

/* CTA Button */
.team-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 24px;
    color: white;
    background-color: #007bff; /* Blue color */
    border: none;
    border-radius: 20px; /* Increased border-radius for rounder corners */
    text-decoration: none;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
}

.team-button:hover {
    transform: scale(1.1); /* Make the button bigger on hover */
    background-color: #0056b3; /* Darker blue on hover */
}

/* CTA Subtitle */
.team-button .team-subtitle {
    display: block;
    font-size: 14px; /* Adjust font size as needed */
    color: #ccc; /* Light gray color */
    margin-top: 5px; /* Adjust spacing between button text and subtitle as needed */
    font-weight: normal;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        margin-right: 0;
        margin-bottom: 20px; /* Add spacing between team members */
    }

    .circle-box {
        margin-right: 0;
        margin-top: 20px;
        width: 120px; /* Adjust size for mobile */
        height: 120px;
    }

    .description-box {
        width: 80%; /* Adjust width for mobile */
        margin-top: 20px;
    }

    .team-button {
        margin-top: 20px;
    }
}







/* Line divider */
.line-divider-container-2 {
    padding: 200px 0; /* Adjust top and bottom padding as needed */
    display: flex;
    justify-content: center; /* Center the line divider */
    padding-bottom: 200px;
}

.line-divider-2 {
    width: 850px; /* Set width to 850px */
    height: 3px; /* Adjust height as needed */
    background: linear-gradient(to right, rgba(0, 123, 255, 0), rgba(0, 123, 255, 1), rgba(0, 123, 255, 0)); /* Transparent gradient to blue to transparent */
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .line-divider-container-2 {
        padding: 100px 0; /* Adjust top and bottom padding for mobile */
        padding-bottom: 100px;
    }

    .line-divider-2 {
        width: 90%; /* Adjust width for mobile */
    }
}








/* Book A Call Section part 1 */
.bookacall-section {
    padding: 60px 0;
    text-align: center;
    background-color: #000; /* Black background */
}

.bookacall-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bookacall-section .section-title {
    font-size: 36px;
    color: #007bff; /* Blue color */
}

.bookacall-section .sub-title {
    font-size: 48px;
    margin-top: 20px;
    color: #fff; /* White color */
}

.bookacall-section .sub-sub-title {
    font-size: 18px;
    margin-top: -30px;
    color: #ccc; /* Light gray color */
    width: 750px;
}

/* Audit Content */
.audit-section {
    padding: 40px 0; /* Increased padding for better spacing */
    text-align: left;
    background-color: #000; /* Black background */
}

.audit-section .container {
    display: flex;
    justify-content: center; /* Center the container */
}

.audit-box {
    position: relative; /* Make the box relative for absolute positioning */
    width: 750px;
    padding: 20px; /* Added padding inside the box */
    background-color: #0f0f0f; /* Black background */
    border: 2px solid #007bff; /* Blue outline */
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 0 20px 10px #007bff; /* Blue glow */
    transition: box-shadow 0.3s;
    margin-top: -40px;
    margin-bottom: 40px;
}   

.audit-box:hover {
    box-shadow: 0 0 20px 10px white; /* White glow on hover */
    border: 2px solid white;
}

.audit-title {
    font-size: 32px;
    color: #fff; /* White color */
    text-align: left;
    padding-left: 40px;
    margin-top: 50px; /* Add margin at the top for the title */
    margin-bottom: 40px; /* Add margin at the bottom for the title */
}

.audit-content {
    padding-left: 40px;
    padding-right: 200px; /* Increased right padding to avoid overlap with the image */
    text-align: left;
    margin-bottom: 70px;
}

.audit-content p {
    font-size: 18px;
    color: #ccc; /* Light gray color */
    margin-bottom: 20px; /* Add spacing after the first sentence */
    padding-left: 0; /* Remove extra padding */
}

.audit-content ul {
    font-size: 18px;
    color: #ccc; /* Light gray color */
    text-align: left;
    margin: 0;
    line-height: 1.5; /* Adjust line height for better readability */
    list-style-type: none; /* Remove default list styling */
    padding-left: 0; /* Remove extra padding */
}

.audit-content ul li {
    margin-bottom: 10px; /* Add spacing between the first sentence and other items */
    position: relative;
    padding-left: 40px; /* Align items with the title */
}

.audit-content ul li:first-child {
    margin-bottom: 20px; /* Add more spacing after the first sentence */
}

.audit-content ul li.indented::before {
    content: "✔"; /* Checkmark */
    position: absolute;
    left: 0;
    color: #007bff; /* Blue color for checkmark */
}

.audit-content ul li.indented {
    padding-left: 20px; /* Align checkmarks */
    margin-bottom: 0; /* Remove spacing between indented items */
}    

.box-img {
    position: absolute;
    top: 50%;
    right: -70px; /* Move image further to the right */
    transform: translateY(-50%);
    max-width: 300px; /* Adjust width as needed */
    max-height: calc(100% - 40px); /* Ensure image doesn't exceed box height */
    border-radius: 0 20px 20px 0; /* Match box corner radius */
    z-index: 1; /* Ensure the image appears on top */
}

.book-call-title {
    font-size: 36px;
    color: #fff; /* Blue color */
    text-align: center; /* Center the text */
    margin-top: 30px; /* Add top margin */
    margin-bottom: 30px; /* Add bottom margin */
}


/* Book a call */
.calendly-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust height as needed */
    margin-top: -200px; /* Adjust top margin */
    margin-bottom: 0; /* Adjust bottom margin */
}

.calendly-inline-widget {
    width: 100%; /* Ensure full width */
    max-width: 625px; /* Set max-width */
    height: 550px; /* Set height */
    border-radius: 20px; /* Add rounded corners */
    overflow: hidden; /* Hide overflow content */
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .bookacall-section .sub-sub-title {
        width: 90%; /* Adjust to fit mobile screens */
    }

    .audit-section .container {
        flex-direction: column;
        align-items: center;
    }

    .audit-box {
        width: 80%;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .audit-content {
        padding-right: 20px; /* Adjust padding for mobile */
    }

    .box-img {
        position: static;
        transform: none;
        max-width: 100%;
        margin-top: 20px;
    }

    .calendly-container {
        margin-top: 0;
        margin-bottom: 0;
        height: auto;
    }

    .calendly-inline-widget {
        max-width: 90%; /* Adjust width for mobile */
        height: 600px; /* Adjust height for mobile */
    }
}









/* Line divider */
.line-divider-container-3 {
    padding: 50px 0; /* Adjust top and bottom padding as needed */
    display: flex;
    justify-content: center; /* Center the line divider */
    padding-bottom: 250px;
}

.line-divider-3 {
    width: 850px; /* Set width to 850px */
    height: 3px; /* Adjust height as needed */
    background: linear-gradient(to right, rgba(0, 123, 255, 0), rgba(0, 123, 255, 1), rgba(0, 123, 255, 0)); /* Transparent gradient to blue to transparent */
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .line-divider-container-3 {
        padding: 30px 0; /* Adjust top and bottom padding for mobile */
        padding-bottom: 125px;
    }

    .line-divider-3 {
        width: 90%; /* Adjust width for mobile */
    }
}










/* Newsetter Section part 1*/
.newsletter {
    padding: 60px 0;
    text-align: center;
    background-color: #000; /* Black background */
    color: #fff; /* White text color */
}

.newsletter .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter .section-title {
    font-size: 36px;
    color: #007bff; /* White color */
    margin-bottom: 20px; /* Add space below the header */
}

.newsletter .sub-title {
    font-size: 48px;
    color: #fff; /* White color */
}

.sub-title-bonus {
    color: #007bff; /* Blue color */
}

.sub-title-bonuses {
    color: #fff; /* White color */
}



/* BONUS Content */
.newsletterbox-section {
    padding: 20px 0;
    text-align: left;
    background-color: #000; /* Black background */
}

.newsletterbox-section .container {
    position: relative; /* Make the container relative for absolute positioning */
    display: flex;
    justify-content: left;
}

.newsletterbox {
    position: relative; /* Make the box relative for absolute positioning */
    width: 750px;
    padding: 0px;
    background-color: #0f0f0f; /* Black background */
    border: 2px solid #007bff; /* Blue outline */
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 0 20px 10px #007bff; /* Blue glow */
    transition: box-shadow 0.3s; /* Smooth transition */
}

.newsletterbox:hover {
    box-shadow: 0 0 20px 10px white; /* White glow on hover */
    border: 2px solid white;
}

.newsletterbox-title {
    font-size: 32px;
    color: #fff; /* White color */
    text-align: left;
    padding-left: 40px;
    padding-top: 0px;
}

.newsletterbonus-content {
    font-size: 18px;
    color: #ccc; /* Light gray color */
    text-align: left;
    margin: 10;
    padding: 0;
    position: relative;
    top: -10px; /* Move text up slightly */
    max-height: calc(50% + 10px); /* Limit text height to half of box plus 10px */
    overflow: hidden; /* Hide overflow text */
    padding-right: 230px;
    padding-left: 40px;
    padding-bottom: 70px;
    line-height: 1.5 
}

.box-img {
    position: absolute;
    top: 50%;
    right: -50px; /* Adjust this value as needed */
    transform: translateY(-50%);
    max-width: 300px; /* Adjust width as needed */
    max-height: calc(100% - 40px); /* Ensure image doesn't exceed box height */
    border-radius: 0 20px 20px 0; /* Match box corner radius */
}

/* Newsetter Section part 2 */
.newsletterbox-section {
    padding: 20px 0;
    text-align: center;
    background-color: #000; /* Black background */
}

.newsletterbox-section .container {
    position: relative; /* Make the container relative for absolute positioning */
    display: flex;
    flex-direction: column; /* Align items vertically */
    align-items: center; /* Center the items horizontally */
}

.newsletter-header {
    font-size: 36px;
    color: #fff; /* White color */
    margin-bottom: 70px; /* Add space below the header */
}

.newsletterbonus {
    color: #007bff; /* Blue color */
} 

.newsletter-form {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center the items horizontally */
}

.newslettergloved-box {
    width: 550px; /* Adjust width as needed */
    margin: 10px 0; /* Add spacing between the boxes */
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 0 15px 5px #007bff; /* Blue glow */
    transition: box-shadow 0.3s; /* Smooth transition */
}

.newslettergloved-box input[type="text"],
.newslettergloved-box input[type="email"] {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 20px; /* Rounded corners */
    box-sizing: border-box;
}

.newslettergloved-box input[type="text"]:focus,
.newslettergloved-box input[type="email"]:focus {
    outline: none; /* Remove focus outline */
}

.newslettergloved-box:hover {
    box-shadow: 0 0 15px 5px white; /* White glow on hover */
}

button[type="submit"] {
    background-color: #007bff; /* Blue button color */
    color: #fff; /* White text color */
    border: none;
    border-radius: 20px; /* Rounded corners */
    padding: 20px 40px;
    margin-top: 20px; /* Add space above the button */
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition */
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 50px;
}

button[type="submit"]:hover {
    background-color: #0056b3; /* Darker blue color on hover */
    transform: scale(1.1); /* Scale the button on hover */
}

.spacing {
    height: 20px; /* Adjust spacing height as needed */
}

/* Media Query for Mobile Devices */
@media (max-width: 767px) {
    .newsletter .section-title {
        font-size: 24px;
    }

    .newsletter .sub-title {
        font-size: 32px;
    }

    .newsletterbox-section .container {
        flex-direction: column;
        align-items: center;
    }

    .newsletterbox {
        width: 90%;
        margin: 10px;
        box-shadow: 0 0 15px 5px #007bff;
    }

    .newsletterbox-title {
        font-size: 24px;
        padding-left: 20px;
    }

    .newsletterbonus-content {
        font-size: 16px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .box-img {
        position: static;
        transform: none;
        max-width: 100%;
        margin: 10px 0;
        border-radius: 20px;
    }

    .newsletter-header {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .newslettergloved-box {
        width: 80%;
        box-shadow: 0 0 10px 3px #007bff;
    }

    button[type="submit"] {
        font-size: 18px;
        padding: 15px 30px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
}










/* Line divider */
.line-divider-container-4 {
    padding: 200px 0; /* Adjust top and bottom padding as needed */
    display: flex;
    justify-content: center; /* Center the line divider */
    padding-bottom: 200px;
}

.line-divider-4 {
    width: 850px; /* Set width to 850px */
    height: 3px; /* Adjust height as needed */
    background: linear-gradient(to right, rgba(0, 123, 255, 0), rgba(0, 123, 255, 1), rgba(0, 123, 255, 0)); /* Transparent gradient to blue to transparent */
}

/* Media Query for Mobile Devices */
@media (max-width: 767px) {
    .line-divider-container-4 {
        padding: 100px 0; /* Reduce top and bottom padding for mobile */
        padding-bottom: 100px; /* Ensure padding-bottom matches */
    }

    .line-divider-4 {
        width: 90%; /* Make the width responsive for mobile */
    }
}









/* FAQ Section part 1 */
.faq-section {
    padding: 60px 0;
    text-align: center;
    background-color: #000; /* Black background */
}

.faq-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-section .section-title {
    font-size: 36px;
    color: #007bff; /* Blue color */
}

.faq-section .sub-title {
    font-size: 48px;
    margin-top: 20px;
    color: #fff; /* White color */
    margin-bottom: -20px;
}

.faq-section .sub-sub-title {
    font-size: 18px;
    margin-top: 50px;
    color: #ccc; /* Light gray color */
}

/* FAQ Section part 2 */
.faq-section {
    padding: 40px 0;
    text-align: left;
}

.faq-section .container {
    display: flex;
    flex-direction: column;
}

.faq-item {
    margin-bottom: 20px;
    max-width: 600px;
    border-bottom: 1px solid #fff; /* White line divider */
    transition: margin-left 0.3s, border-color 0.3s;
    text-align: left;
}

.question {
    font-size: 24px;
    color: #fff; /* White color */
    cursor: pointer;
    padding-right: 20px;
    position: relative;
}

.question::after {
    content: '+';
    position: absolute;
    right: 0;
    transition: transform 0.3s;
}

.faq-item:hover {
    margin-left: 10px; /* Move the item a bit when hovered */
    border-color: #007bff; /* Blue color on hover */
}

.faq-item:hover .question::after {
    transform: rotate(45deg); /* Rotate the plus sign on hover */
}

.answer {
    display: none;
    font-size: 18px;
    color: #ccc; /* Light gray color */
    text-align: left;
}

.answer.show {
    display: block;
}

/* Media Query for Mobile Devices */
@media (max-width: 767px) {
    .faq-section {
        padding: 30px 0; /* Adjust padding for mobile */
        text-align: center; /* Center text for mobile */
    }

    .faq-section .section-title {
        font-size: 24px; /* Reduce font size for mobile */
    }

    .faq-section .sub-title {
        font-size: 32px; /* Reduce font size for mobile */
        margin-top: 10px; /* Adjust margin for mobile */
        margin-bottom: -10px; /* Adjust margin for mobile */
    }

    .faq-section .sub-sub-title {
        font-size: 16px; /* Reduce font size for mobile */
        margin-top: 30px; /* Adjust margin for mobile */
    }

    .faq-item {
        max-width: 90%; /* Make the width responsive for mobile */
        margin-bottom: 15px; /* Adjust margin for mobile */
    }

    .question {
        font-size: 20px; /* Reduce font size for mobile */
    }

    .answer {
        font-size: 16px; /* Reduce font size for mobile */
    }
}








.footer {
    background-color: #000; /* Black background */
    color: #fff; /* White text color */
    padding: 20px 0;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Align items to the center */
    text-align: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    max-width: 150px; /* Adjust logo size as needed */
    margin-bottom: 10px; /* Add some space below the logo */
    margin-top: 50px;
}

.footer-nav {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.footer-nav li {
    display: inline;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #000; /* Black inside */
    border: 2px solid #fff; /* White circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    font-size: 20px; /* Adjust icon size as needed */
    color: #fff; /* White icon color */
    text-decoration: none;
    margin-top: 20px;
}

.social-icon:hover {
    background-color: #007bff; /* Blue inside on hover */
    color: #fff; /* Keep the icon color white */
}

/* Footer Bottom Section */
.footer-bottom {
    background-color: #000; /* Black background */
    color: #ccc; /* Light gray text */
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #ccc; /* Light gray top border */
}

.footer-bottom .container {
    max-width: 850px;
    margin: 0 auto;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px; /* Adjust font size as needed */
}

.footer-bottom a {
    color: #ccc; /* Light gray color for links */
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Media Query for Mobile Devices */
@media (max-width: 767px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }

    .footer-right {
        flex-direction: row; /* Change to row to keep icons horizontal */
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .social-icon {
        margin-top: 0; /* Remove top margin for horizontal alignment */
    }

    .footer-logo {
        margin-top: 20px;
    }
}