/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; /* fonts */
    line-height: 1.6;
    background-color: #F5F5F5; /* Light Gray for the body background */
    color: #333333; /* Default text color */
    margin: 0;
    padding: 0; 
    margin-top: 80px; /* Adjust this value based on your header height */
}

/* Styling for Font Awesome Icons in the Benefits List */
.benefits-list li i {
    color: #D09A40; /* Gold Color */
    margin-right: 10px;
    font-size: 24px;
}

/* Header */
.site-header {
    background-color: #000000; /* Black background for the header */
    color: #fff;
    position: fixed; /* Ensure the entire header (logo + menu) is fixed */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 0;
}

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

.logo img {
    width: 200px;
    height: 72px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    transition: background 0.3s ease;
    font-size: 16px; /* Set the font size for the header menu links here */
}

.main-nav ul li a:hover {
    background: #D09A40;
    border-radius: 5px;
}

.highlighted {
    background: #DCA54A;
    padding: 5px 10px;
    border-radius: 5px;
}

.header-contact a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.header-contact-black a {
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.header-contact i {
    font-size: 20px;
    margin-right: 8px;
}

/* Hero Section */
.hero {
    background: #000000; /* Black, same as header */
    color: white;
    padding: 6rem 0 5rem; /* Increase the top padding to push content below the fixed header */
    margin-top: 80px; /* Offset for the fixed header */
}

.hero-sub {
    background: #000000; /* Black, same as header */
    color: black;
    margin-top: 0px;
    padding: 0rem 0 5rem;
}

.hero-sub-text {
    margin-top: 0px;
    padding-left: 20px; /* Adjust this value to align with the logo and .hero-text */
    line-height: 1.1; /* Match this value to the line-height of .hero-text */
    color: #FFFFFF; /* Assuming you want the text to be white like .hero-text */
}

.hero-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: left;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-weight: bold;
    margin: 0.5rem 0;
}

.hero-media {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image, .hero-video {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Optional: Adds a slight border radius */
}

.hero h2 {
    color: #DCA54A; /* Gold for important headings */
    margin-bottom: 1rem;
}

.hero p .btn {
    background: #D09A40; /* Copper button for a subtle accent */
    color: white;
    padding: 1rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1rem;
}

.hero p .btn:hover {
    background: #DCA54A; /* Gold on hover for a more eye-catching effect */
}

/* Solutions Section */
.solutions {
    background: #FFFFFF; /* White background for clean readability */
    color: #333333;
    padding: 2rem 0;
}

.solutions h2 {
    color: #DCA54A; /* Gold for section headings */
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.solutions h3 {
    color: #1B1B1B; /* Dark Gray/Black for subtitles or secondary headings */
    margin-bottom: 1rem;
}

.solutions p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Consultation Section */
.consultation {
    background: #1B1B1B; /* Dark Gray/Black for a strong call-to-action area */
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.consultation h2 {
    color: #DCA54A; /* Gold to stand out in the dark background */
    margin-bottom: 1rem;
}

.consultation p {
    margin-bottom: 1rem;
}

.consultation .btn {
    background: #D09A40; /* Copper for buttons */
    color: white;
    padding: 1rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1rem;
}

.consultation .btn:hover {
    background: #DCA54A; /* Gold on hover for emphasis */
}

/* Image Container Styling */
.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Footer Styling */
footer {
    background-color: #000000; /* Black, same as header */
    color: white;
    padding: 1rem 0;
    text-align: center; /* Center the text and other content inside the footer */
}

footer a {
    color: #FFFFFF; /* White for links */
    text-decoration: none;
}

footer a:hover {
    color: #DCA54A; /* Gold on hover for a richer effect */
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the contents horizontally */
    justify-content: center; /* Center the contents vertically */
}

footer .main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-bottom: 10px; /* Add some space between nav and copyright */
}

footer .main-nav ul li {
    margin: 0 15px;
}

footer .main-nav ul li a {
    color: #ffffff; /* White for links */
    text-decoration: none;
    font-size: 14px; /* Smaller font size for the footer menu links */
}

footer .main-nav ul li a:hover {
    color: #DCA54A; /* Gold on hover for a richer effect */
}

footer .copyright {
    text-align: center;
    margin-top: 10px; /* Space between the powered by logo and text */
    font-size: 12px; /* Smaller font size for the copyright text */
}

footer .copyright img {
    margin-top: 10px; /* Add spacing between the text and the image */
    max-width: 100%; /* Ensure the image is responsive */
    height: auto; /* Maintain the aspect ratio */
}

/* Align the hero text with the logo */
.hero-text {
    padding-left: 20px; /* Adjust this value to match the padding or margin of the logo */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.header-container {
    padding-left: 20px; /* Ensure this matches the padding used in .hero-text */
    padding-right: 20px;
}

.hero {
    background: #000000; /* Black background, same as header */
    color: white;
    padding: 5rem 0;
}

.hero-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-media {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image, .hero-video {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Hero Section */
.hero-text h1 {
    font-weight: bold;
    margin: 0.5rem 0;
    line-height: 1.1; /* Reduces space between the lines */
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
}

.btn-try-free {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #D09A40; /* Copper color for the button */
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-try-free:hover {
    background-color: #DCA54A; /* Gold color on hover */
}

/* FAQ Section Styling */
.faq-list {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #DCA54A; /* Gold border */
    border-radius: 1px;
    padding: 5px;
    cursor: pointer;
    background-color: #000000; /* Black background */
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #333333; /* Darker black on hover */
}

.faq-question {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin: 0;
    color: #000000; /* White text */
    background-color: #DCA54A; /* Gold background */
    padding: 5px; /* Padding to make the question stand out */
    border-radius: 1px;
    font-weight: bold;
}

.faq-toggle {
    font-size: 18px;
    margin-right: 15px; /* Space between + and priority number */
    color: #000000; /* White color for the toggle */
}

.faq-priority {
    margin-right: 15px; /* Space between priority number and question text */
    color: #000000; /* White color for priority numbers */
}

.faq-answer {
    display: none;
    padding-top: 10px;
    font-size: 16px;
    color: #FFFFFF; /* White text for answers */
    margin-left: 30px; /* Indent the answer */
}

.faq-item.active .faq-answer {
    display: block;
}

/* Testimonials Section Styling */
.testimonials {
    background-color: #000000; /* Black background */
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonials-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonials-carousel {
    display: flex;
    flex-wrap: nowrap;
    animation: scroll 10s linear infinite paused; /* Initial state is paused */
}

.testimonial-item {
    min-width: 45%; /* Show 2 testimonials at a time on larger screens */
    max-width: 45%;
    margin: 0 15px;
    padding: 20px;
    background-color: #333333; /* Dark gray background for testimonials */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    text-align: left;
    color: #ffffff; /* White text */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensure consistent box height */
}

/* Testimonials Controls */
.testimonials-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.testimonials-controls button {
    padding: 10px 20px;
    background-color: #000000; /* Black */
    color: #ffffff; /* White */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.testimonials-controls button i {
    font-size: 18px;
}

.testimonials-controls button:hover {
    background-color: #333333; /* Darker black */
}

.highlight-box {
    background-color: #D09A40; /* Orange color */
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
}

/* Popup container */
.popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
}

/* Popup content */
.popup-content {
    position: relative;
    margin: 15% auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 300px;
    text-align: center;
}

/* Close button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.contact-us {
    background-color: #ffffff; /* White background */
    padding: 50px 0;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form,
.contact-info {
    flex: 1;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #f9f9f9;
}

.contact-form h3,
.contact-info h3 {
    color: #DCA54A; /* Gold color */
    margin-bottom: 20px;
    font-size: 28px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.honeypot {
    display: none;
}

.btn-submit {
    background-color: #D09A40;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn-submit:hover {
    background-color: #DCA54A;
}

.contact-info {
    text-align: left;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-info .btn-booking {
    display: inline-block;
    background-color: #D09A40;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.contact-info .btn-booking:hover {
    background-color: #DCA54A;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-50%);
    }
    70% {
        transform: translateX(-50%);
    }
    75% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Modal Background */
.modal {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 1000; /* On top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.7); /* Black with opacity */
}

/* Modal Content Box */
.modal-content {
    background-color: #fff;
    margin: 10% auto; /* 10% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 500px; /* Maximum width */
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Form Button Styling */
.btn {
    background-color: #D09A40;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.btn:hover {
    background-color: #DCA54A;
}

.btn.cancel {
    background-color: #777;
    margin-left: 10px;
}

.btn.cancel:hover {
    background-color: #555;
}

.form-group {
    margin-bottom: 20px;
}

.checkbox-group {
    display: flex;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 5px;
}

        /* Additional styling for table */
        .case-study-table {
            width: 100%;
            margin: 2rem 0;
            border-collapse: collapse;
        }

        .case-study-table td {
            vertical-align: top;
            padding: 20px;
        }

        .case-study-table img {
            max-width: 100%;
            height: auto;
        }

        /* Styling for green arrows */
        .green-arrow {
            color: green;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 10px;
        }

        .results-list {
            list-style-type: none;
            padding: 0;
        }

        .results-list li {
            margin-bottom: 10px;
        }

        .testimonial {
            padding: 20px;
            background-color: #f9f9f9;
            border-left: 4px solid #D09A40; /* Gold border */
            font-style: italic;
        }

        #thankYouModal {
        display: none;
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        padding: 20px;
        border: 2px solid #ccc;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        }

        #thankYouModal button {
        margin-top: 10px;
        padding: 5px 10px;
        background-color: #4CAF50;
        color: white;
        border: none;
        cursor: pointer;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Style for the social icons in the header */
        .header-social-icons a {
            color: #ffffff; /* White color for the icons */
            margin-right: 15px; /* Add some spacing between icons */
            text-decoration: none; /* Remove underline */
            font-size: 20px; /* Set icon size */
    }

    /* On hover, make sure the color remains white or add hover effect if desired */
     .header-social-icons a:hover {
    color: #f0f0f0; /* Slightly lighter white on hover, or you can keep it #ffffff */
   }

    .about-us {
    padding: 4rem 0;
    background-color: #F5F5F5; /* Matches the body background */
    }

    .about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    }

    .about-text {
    flex: 1;
    color: #333;
    }

    .about-text h2, .about-text h3 {
    color: #DCA54A; /* Gold color for headings */
    }

    .about-text p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    }

    .about-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    }

    .about-images img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    }

    .about-images .pravesh-image {
    object-fit: cover;
    }

    .about-images .rebel-image {
    object-fit: cover;
    }

    /* Hide the menu toggle button on larger screens */
    .menu-toggle {
        display: none;
    }

/* Responsive Adjustments */

@media (max-width: 768px) {

    .hero {
        padding-top: calc(79px + 2rem); /* Adjust 79px to your header height */
    }

    .container {
        max-width: 100%; /* Use full width on mobile */
        margin: 0 auto; /* Center the container */
        padding-left: 10px; /* Reduce padding for smaller screens */
        padding-right: 10px; /* Ensure consistent padding on both sides */
    }

    /* General Two-Column Layout Adjustments */
    .hero-content, .contact-container, .other-two-column-sections {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-text, .hero-media, .contact-form, .contact-info {
        width: 100%; /* Ensure full width for stacked elements */
        margin-bottom: 20px; /* Space between stacked items */
    }

    /* Header and Menu */
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        transform: translateY(-20px);
        opacity: 0;
    }

    .main-nav.active ul {
        transform: translateY(0);
        opacity: 1;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        display: none;
        background: #000000;
        position: fixed;
        top: 60px;
        left: 0;
        z-index: 999;
    }

    .main-nav ul li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .main-nav ul li a {
        width: 100%;
        padding: 10px;
        display: block;
    }

    .main-nav ul {
        background-color: #1B1B1B; /* Dark gray/black background for the menu */
        padding: 20px;
        border-radius: 5px;
    }

    .main-nav ul li a {
        color: #FFFFFF; /* White text color */
        font-size: 18px; /* Larger font size for readability */
        text-decoration: none;
        padding: 10px;
        display: block;
        border-radius: 5px;
    }

    .main-nav ul li a:hover {
        background-color: #D09A40; /* Copper color on hover */
        color: #000000; /* Text color change on hover */
    }

    .main-nav.active ul {
        display: flex;
    }

    .menu-toggle {
        display: block;
        background-color: #000000;
        color: #ffffff;
        padding: 10px 20px;
        font-size: 18px;
        width: 100%;
        text-align: left;
        margin-bottom: 10px; /* Adds some space below the toggle button */
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 998; /* Just below the menu */
    }

    .menu-overlay.active {
        display: block;
    }

    /* Footer Adjustments */
    footer {
        background-color: #000000;
        color: white;
        padding: 1rem 20px;
        text-align: left; /* Align content to the left */
        position: relative;
        bottom: 0;
        width: 100%;
    }

    footer .main-nav ul {
        flex-direction: column;
        text-align: left;
        margin-bottom: 10px;
    }

    footer .main-nav ul li {
        margin: 10px 0;
    }

    footer .copyright {
        margin-top: 20px;
        font-size: 12px;
    }

    /* Font and Image Scaling */
    body {
        font-size: 14px; /* Adjust base font size for smaller screens */
    }

    img {
        max-width: 100%;
        height: auto; /* Ensure images scale down */
    }

    .testimonial-item h3 {
        margin-bottom: 10px;
        color: #DCA54A; /* Gold color for title */
        font-size: 24px; /* Reduced font size for mobile */
    }

    .testimonial-item p {
        margin: 0;
        font-size: 16px; /* Content font size */
    }

    .testimonial-author {
        margin-top: 15px;
        font-style: italic;
        color: #aaaaaa;
    }

    .testimonials-carousel {
        display: block; /* Disable flex for stacking */
        animation: none; /* Disable carousel animation */
    }

    .testimonial-item {
        width: 100%; /* Ensure testimonials take up full width */
        max-width: 100%; /* Prevent large width on some browsers */
        margin-bottom: 20px; /* Add space between stacked testimonials */
        box-sizing: border-box; /* Make sure padding doesn't affect width */
    }

    /* Hide carousel controls on mobile */
    .testimonials-controls {
        display: none;
    }

    .hero-sub {
        background: #000000; /* Keep the background black */
        color: #FFFFFF; /* Ensure the text color is white for better contrast */
        margin-top: 0;
        padding: 2rem 1rem 3rem; /* Adjust padding to fit better on mobile */
        text-align: center; /* Center-align text on mobile for better readability */
    }

    .hero-sub-text {
        margin-top: 0;
        padding-left: 10px; /* Slight padding for text alignment */
        padding-right: 10px; /* Add padding-right to ensure proper spacing on both sides */
        line-height: 1.2; /* Slightly increase line-height for readability on smaller screens */
        font-size: 1.5rem; /* Reduce font size for mobile */
        font-weight: bold;
        color: #FFFFFF; /* White text for consistency */
    }

    .about-images {
    flex-direction: row;
  }

  .about-images img {
    width: 48%;
  }

}

@media (max-width: 1024px) {
    footer {
        display: none;
    }
}



