/* Global Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

body {
    font-family: "Open Sans", Sans-serif;
    line-height: 1.6;
}

/* Hero Sections */
.hero-section, .about-hero, .services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    /* padding: 50px 0; */
    position: relative;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Section Titles */
.section-title {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Process Timeline Styles */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-step h4 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.process-step p {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Feature Card Styles */
.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    color: var(--primary-color);
}

.feature-card h4 {
    margin: 1rem 0;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-color);
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        margin-left: 60px;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
}

/* Team Cards */
.team-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid var(--light-color);
}

/* Value Cards */
.value-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.contact-info {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.form-control {
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Buttons */
.btn-primary {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

.social-links a {
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section, .about-hero, .services-hero {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card, .feature-card, .team-card, .value-card {
        margin-bottom: 2rem;
    }
    
    .contact-info, .contact-form {
        margin-bottom: 2rem;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

/* Industries Page Styles */
.industries-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/industries-hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
}

.industry-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-card .icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
}

.industry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.industry-card p {
    color: var(--text-color);
    margin-bottom: 20px;
}

.industry-card ul li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.industry-solutions {
    background-color: #f8f9fa;
}

.industry-solutions img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.industry-solutions h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

.industry-solutions .d-flex {
    margin-bottom: 15px;
}

.industry-solutions .fa-check-circle {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Clients Section Styles - Index Page */
.clients-section {
    background-color: #212121; /* Dark background color */
    padding: 80px 0; /* Adjust padding as needed */
    color: #fff; /* White text color */
}

.clients-section .section-title {
    font-size: 36px; /* Match Oxper's title size */
    font-weight: 700;
    color: #fff; /* White title color */
    margin-bottom: 50px; /* Space below the title */
}

.clients-section .client-logo {
    padding: 20px; /* Padding inside the logo container */
    background: #fff; /* White background for the logo container */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    height: 120px; /* Fixed height for consistency */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease; /* Smooth transform on hover */
}

.clients-section .client-logo:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.clients-section .client-logo img {
    max-width: 100%; /* Ensure image fits within container */
    max-height: 80px; /* Limit image height */
    filter: grayscale(100%); /* Grayscale effect */
    transition: filter 0.3s ease; /* Smooth grayscale transition */
}

.clients-section .client-logo:hover img {
    filter: grayscale(0%); /* Remove grayscale on hover */
}

.clients-section .btn-outline-primary {
    padding: 12px 30px; /* Button padding */
    border-radius: 5px; /* Button border radius */
    font-size: 18px; /* Button font size */
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-color: #fff; /* White border for outline button */
    color: #fff; /* White text for outline button */
}

.clients-section .btn-outline-primary:hover {
    background-color: #fff; /* White background on hover */
    color: #212121; /* Dark text on hover */
    border-color: #fff;
}

@media (max-width: 991px) {
    .clients-section .section-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
     .clients-section .client-logo {
        height: 100px;
     }
     .clients-section .client-logo img {
        max-height: 60px;
     }
     .clients-section .btn-outline-primary {
         width: 100%;
         text-align: center;
     }
}

/* Case Study Section Styles - Index Page */
.case-study-section {
    background-color: #212121; /* Dark background color */
    padding: 80px 0; /* Adjust padding as needed */
    color: #fff; /* White text color */
}

.case-study-section .section-title {
    font-size: 36px; /* Match Oxper's title size */
    font-weight: 700;
    color: #fff; /* White title color */
    margin-bottom: 50px; /* Space below the title */
}

.case-study-section .case-study-content h3 {
    color: #fff; /* White color for the main case study title */
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.case-study-section .case-study-content h4 {
     color: #ccc; /* Light gray for the subtitle */
     font-size: 24px;
     font-weight: 600;
     margin-bottom: 20px;
}

.case-study-section .case-study-content p {
    color: #ccc; /* Light gray for the paragraph text */
    line-height: 1.6;
    margin-bottom: 30px;
}

.case-study-section .industry-tag {
    display: inline-block;
    padding: 8px 20px;
    background-color: #007bff; /* Blue background for the tag */
    color: #fff;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.case-study-section .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive grid */
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.case-study-section .result-item {
    text-align: left; /* Align text to the left */
    padding-right: 20px; /* Add padding to the right for the border */
    border-right: 1px solid #ccc; /* Add a light gray border to the right */
}

.case-study-section .result-item:last-child {
    border-right: none; /* Remove border from the last item */
    padding-right: 0;
}

.case-study-section .result-item h2 {
    color: #fff; /* White color for the result numbers */
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
}

.case-study-section .result-item p {
    color: #ccc; /* Light gray for the result description */
    font-size: 1rem;
    margin: 0;
}

.case-study-section .btn-outline-light {
    padding: 12px 30px; /* Button padding */
    border-radius: 5px; /* Button border radius */
    font-size: 18px; /* Button font size */
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-color: #fff; /* White border */
    color: #fff; /* White text */
}

.case-study-section .btn-outline-light:hover {
    background-color: #fff; /* White background on hover */
    color: #212121; /* Dark text on hover */
}

.case-study-section img {
    max-width: 80%; /* Limit image size */
    height: auto;
    border: 5px solid #fff; /* White border around the image */
}

@media (max-width: 991px) {
    .case-study-section .section-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .case-study-section img {
        max-width: 100%;
        margin-bottom: 30px; /* Add space below image on smaller screens */
    }
    
    .case-study-section .result-item {
        border-right: none; /* Remove right border on smaller screens */
        padding-right: 0;
        text-align: center; /* Center align text on smaller screens */
    }
    
    .case-study-section .result-item:not(:last-child) {
        border-bottom: 1px solid #ccc; /* Add bottom border between items on smaller screens */
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .case-study-section .btn-outline-light {
         width: 100%;
         text-align: center;
    }
}

/* Insights Page Styles */
.insights-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/insights-hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
}

.insight-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.insight-card:hover .insight-image img {
    transform: scale(1.1);
}

.insight-content {
    padding: 25px;
}

.insight-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.insight-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.insight-content p {
    color: var(--text-color);
    margin-bottom: 20px;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0;
    font-weight: 600;
}

.btn-link:hover {
    color: var(--dark-color);
}

.newsletter-section {
    background-color: #f8f9fa;
}

.newsletter-form .form-control {
    padding: 15px;
    border-radius: 30px 0 0 30px;
    border: 1px solid #ddd;
}

.newsletter-form .btn {
    padding: 15px 30px;
    border-radius: 0 30px 30px 0;
}

@media (max-width: 768px) {
    .insights-hero {
        padding: 60px 0;
    }
    
    .insight-card {
        margin-bottom: 30px;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: 30px;
        margin-bottom: 10px;
    }
}

/* Services Section Styles - Index Page */
.services-section {
    background-color: #fff; /* White background */
    padding: 80px 0; /* Adjust padding as needed */
}

.services-section .section-title {
    font-size: 36px; /* Match Oxper's title size */
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px; /* Space below the title */
}

.services-section .service-item-content {
    border-bottom: 1px solid #dee2e6; /* Add a light gray border at the bottom */
    padding-bottom: 20px; /* Add some space below the content and above the line */
    margin-bottom: 20px; /* Add space below the line */
}

.services-section .col-md-6:nth-child(odd) .service-item-content {
    border-right: 1px solid #dee2e6; /* Add a light gray border to the right of odd columns */
    padding-right: 20px; /* Add padding to the right */
    margin-right: 20px; /* Add margin to the right */
}

.services-section .col-md-6:nth-last-child(-n+2) .service-item-content {
    border-bottom: none; /* Remove the bottom border for the last two items */
    padding-bottom: 0;
    margin-bottom: 0;
}

.services-section h4 {
    font-size: 22px; /* Service item title size */
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.services-section p {
    color: #6c757d; /* Description text color */
    margin-bottom: 15px;
    line-height: 1.6;
}

.services-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-section ul li {
    color: #495057; /* List item text color */
    font-size: 16px;
    margin-bottom: 8px;
}

.services-section hr {
    border-top: 1px solid #dee2e6; /* Light gray border */
    margin: 30px 0; /* Space around the horizontal rule */
}

.services-section .btn-dark {
    background-color: #212529; /* Dark background for the button */
    color: #fff;
    border-color: #212529;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services-section .btn-dark:hover {
    background-color: #000;
    border-color: #000;
}

/* Add arrow icon to button (requires Font Awesome or similar) */
/* Example using a pseudo-element if needed */

@media (max-width: 991px) {
    .services-section .section-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .services-section .btn-dark {
        width: 100%;
        text-align: center;
    }
    
    .services-section .col-md-6:nth-child(odd) .service-item-content {
        border-right: none; /* Remove right border on smaller screens */
        padding-right: 0;
        margin-right: 0;
    }
    
    .services-section .service-item-content {
        border-bottom: 1px solid #dee2e6; /* Ensure bottom border is present on smaller screens except the last one */
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
     .services-section .col-md-6:last-child .service-item-content {
        border-bottom: none; /* Remove bottom border for the very last item on smaller screens */
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

/* Services Section Styles */
.services-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.1);
    margin: 0 auto 20px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    margin-bottom: 10px;
    color: #495057;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.service-features li i {
    margin-right: 10px;
    font-size: 14px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .service-card {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        height: 60px;
        width: 60px;
        line-height: 60px;
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
}

/* Discover What Sets Us Apart Section Styles */
.discover-section {
    background-color: #212121; /* Dark background color */
    padding: 80px 0; /* Adjust padding as needed */
    color: #fff; /* White text color */
}

.discover-section .section-title {
    font-size: 36px; /* Match Oxper's title size */
    font-weight: 700;
    color: #fff; /* White title color */
    margin-bottom: 50px; /* Space below the title */
}

.discover-item {
    margin-bottom: 30px; /* Space between items on smaller screens */
}

.discover-item h4 {
    font-size: 24px; /* Item title size */
    font-weight: 600;
    color: #fff; /* White title color */
    margin-bottom: 15px;
}

.discover-item p {
    color: #ccc; /* Light gray text for paragraphs */
    line-height: 1.6;
}

.discover-section .btn-outline-light {
    padding: 12px 30px; /* Button padding */
    border-radius: 5px; /* Button border radius */
    font-size: 18px; /* Button font size */
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-color: #fff; /* White border */
    color: #fff; /* White text */
}

.discover-section .btn-outline-light:hover {
    background-color: #fff; /* White background on hover */
    color: #212121; /* Dark text on hover */
}

/* Add arrow icon to button (requires Font Awesome or similar) */
/* Example using a pseudo-element if needed */

@media (max-width: 991px) {
    .discover-section .section-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    .discover-section .btn-outline-light {
         width: 100%;
         text-align: center;
    }
}

/* FAQ and Contact Section Styles */
.faq-contact-section {
    background-color: #fff; /* White background color */
    padding: 80px 0; /* Adjust padding as needed */
    color: #2c3e50; /* Dark text color */
    font-family: "Open Sans", Sans-serif;
}

.faq-contact-section .section-title {
    font-size: 36px; /* Match Oxper's title size */
    font-weight: 700;
    color: #2c3e50; /* Dark title color */
    margin-bottom: 50px; /* Space below the title */
    font-family: "Open Sans", Sans-serif;
}

.faq-contact-section .lead {
    font-size: 1.5rem;
    color: #6c757d; /* Secondary color for lead text */
    margin-bottom: 40px;
    font-family: "Open Sans", Sans-serif;
}

/* FAQ specific styles within the combined section */
.faq-contact-section .accordion-item {
    border: 1px solid #dee2e6; /* Light border */
    margin-bottom: 15px; /* Space between accordion items */
    border-radius: 5px; /* Rounded corners */
    overflow: hidden;
    font-family: "Open Sans", Sans-serif;
}

.faq-contact-section .accordion-header {
    background-color: #f8f9fa; /* Light background for header */
    font-family: "Open Sans", Sans-serif;
}

.faq-contact-section .accordion-button {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    background-color: #f8f9fa; /* Light background for button */
    padding: 15px 20px;
    border: none;
    text-align: left;
    box-shadow: none;
    transition: color 0.3s ease, background-color 0.3s ease;
    font-family: "Open Sans", Sans-serif;
}

.faq-contact-section .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #e9ecef; /* Slightly darker background when expanded */
    border-bottom: 1px solid #dee2e6;
    font-family: "Open Sans", Sans-serif;
}

.faq-contact-section .accordion-button:focus {
    outline: none;
    box-shadow: none;
     font-family: "Open Sans", Sans-serif;
}

.faq-contact-section .accordion-body {
    font-size: 16px;
    color: #495057;
    padding: 15px 20px;
    background-color: #fff;
    line-height: 1.6;
    font-family: "Open Sans", Sans-serif;
}

/* Customizing the accordion icon */
.faq-contact-section .accordion-button::after {
    font-family: "Font Awesome 5 Free";
    /* content: "\f078"; */
    font-weight: 900;
    float: right;
    transform: rotate(0deg);
    transition: transform 0.2s ease-in-out;
}

.faq-contact-section .accordion-button.collapsed::after {
    transform: rotate(-90deg);
}

/* Contact form specific styles within the combined section */
.faq-contact-section .form-control {
    background-color: #fff; /* White background for form inputs */
    border: 1px solid #dee2e6; /* Light gray border */
    color: #495057; /* Dark text color */
    padding: 15px 20px; /* Adjust padding */
    border-radius: 5px; /* Rounded corners */
    font-family: "Open Sans", Sans-serif;
}

.faq-contact-section .form-control::placeholder {
    color: #adb5bd; /* Gray placeholder text */
    font-family: "Open Sans", Sans-serif;
}

.faq-contact-section .form-control:focus {
    border-color: var(--primary-color); /* Primary color border on focus */
    box-shadow: none;
    font-family: "Open Sans", Sans-serif;
}

.faq-contact-section .btn-primary {
    background-color: #007bff; /* Primary button color */
    border-color: #007bff;
    padding: 12px 40px; /* Button padding */
    border-radius: 5px; /* Button border radius */
    font-size: 18px; /* Button font size */
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: "Open Sans", Sans-serif;
}

.faq-contact-section .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Image above contact form */
.faq-contact-section .contact-image {
    max-width: 150px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .faq-contact-section .section-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    .faq-contact-section .lead {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    .faq-contact-section .btn-primary {
         width: 100%;
         text-align: center;
    }
     .faq-contact-section .text-center.d-block.d-lg-none {
        margin-bottom: 30px !important;
    }
}

/* Hover Dropdown for Navigation */
@media only screen and (min-width: 992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; /* remove the gap so it doesn't close */
    }
}

/* Real Stories, Real Results Section Styles */
.real-stories-section {
    background-color: #f8f9fa; /* Light background color */
    padding: 80px 0; /* Adjust padding as needed */
}

.real-stories-section .section-title {
    font-size: 36px; /* Match Oxper's title size */
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px; /* Space below the title */
}

.testimonial-card-oxper {
    background: #fff; /* White background for testimonial card */
    padding: 30px; /* Adjust padding */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease; /* Hover effect */
}

.testimonial-card-oxper:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.testimonial-card-oxper .quote-icon i {
    color: var(--primary-color); /* Primary color for quote icon */
}

.testimonial-card-oxper .testimonial-text {
    font-size: 1.1rem; /* Testimonial text size */
    color: #495057; /* Dark gray text color */
    line-height: 1.6;
    margin-bottom: 20px; /* Space below text */
}

.testimonial-card-oxper .testimonial-author-info h5 {
    font-size: 1rem; /* Author name size */
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-card-oxper .testimonial-author-info p {
    font-size: 0.9rem; /* Author title size */
    color: #6c757d; /* Secondary color for author title */
    margin: 0;
}

@media (max-width: 991px) {
    .real-stories-section .section-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    .testimonial-card-oxper {
        margin-bottom: 30px;
    }
} 