body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #242424;
}
header {
    background: white;
    color: #242424;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 130px;
    border-bottom: 1px solid #ccc;
}

/* Set the default link color to match the CTA button color */
a {
    color: #ee3c2d; /* Replace with the blue color of your CTA buttons */
    text-decoration: none;
}

/* Set the visited link color to match the CTA button color */
a:visited {
    color: #ee3c2d; /* Same as default link color */
}

/* Set the hover state to match the hover color of CTA buttons */
a:hover {
    color: #96271e; /* Replace with the hover color of your CTA buttons */
    text-decoration: underline; /* Optional for emphasis */
}

/* Set the active link color to match the hover color */
a:active {
    color: #96271e; /* Same as hover color */
}


header h1 {
    display: none;
}

h2 {
    color: #242424;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #242424;
}
.logo-placeholder {
    height: 80px;
    width: 150px;
    background: #f3f3f3;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
}

nav {
    display: flex;
}
nav a {
    color: #ee3c2d;
    text-decoration: none;
    margin: 0 15px;
}
nav a:hover {
    color: #96271e;
    text-decoration: underline;
}

.hero {
    background: #f3f2f1;
    padding: 50px 20px;
    text-align: center;
    border-bottom: 1px solid #ccc;
}
.hero h1 {
    font-size: 2.5em;
    color: #242424;
}
.hero .cta-button {
    margin-top: 20px;
    display: inline-block;
    background: #ee3c2d;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}
.section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 50px;

}
.card {
    flex: 1 1 300px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    background: white;
}
.card h3 {
    color: #242424;
}
.card a {
    background: #ee3c2d;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border: 2px solid #ee3c2d; 
    display: inline-block;
}
.cta {
    text-align: center;
    margin-top: 30px;
}
.cta a {
    background: #ee3c2d;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
}
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 0px;
}
.contact-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.contact-card {
    flex: 1 1 300px;
    margin: 15px;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    background: white;
}
.contact-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.carousel {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
}
.carousel::-webkit-scrollbar {
    display: none;
}
.about {
    background: #f9f9f9;
    padding: 30px 20px;
    border-top: 0px solid #ccc;
    margin-bottom: 50px;
}


.about-card {
    flex: 1 1 300px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background: white;
}

.about-description {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.about-list {
    list-style-type: none; /* Removes default bullets */
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
}

.about-list li {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    padding-left: 25px; /* Creates space for custom bullets */
    position: relative;
}

.about-list li::before {
    content: "\2022"; /* Adds a custom bullet */
    color: #ee3c2d; /* KPI branding color for bullets */
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.6;
}

.customer-case-study {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
    display: flex;
    gap: 20px;
    align-items: center;
}

.case-study-details {
    flex: 1;
}
.top-customers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20px;
}
.customer-logo-placeholder {
    flex: 1 1 150px;
    height: 100px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px; /* Optional rounded corners */
    border: 0px solid #ddd; /* Optional border for a cleaner look */
}

.customer-list {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.customer-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    flex: 1 1 calc(50% - 30px);
}
.customer-list li {
    margin: 5px 0;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    width: 80%;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.contact-section {
    margin-bottom: 30px;
}

.carousel-prev,
.carousel-next {
    background-color: #ee3c2d;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50%;
    position: relative;
}

.carousel-prev {
    margin-right: 10px;
}

.carousel-next {
    margin-left: 10px;
}



.about-card {
    flex: 1 1 calc(33% - 20px); /* Adjusts width dynamically */
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background: white;
    text-align: center;
}

.about-card h3 {
    font-size: 1.25em;
    margin-bottom: 10px;
    color: #ee3c2d;
}

.about-card p {
    font-size: 1em;
    line-height: 1.5;
    color: #242424;
}
.about-card i {
    font-size: 2em;
    color: #333333;
    margin-bottom: 10px;
}

.about {
    background: #f9f9f9;
    padding: 50px 20px;
    border-top: 0px solid #ccc;
    text-align: center;
    margin-bottom: 0px;
}

.about-description {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.about-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0px;
}

.about-card {
    flex: 1 1 calc(33% - 20px); /* Responsive sizing */
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    max-width: 300px;
}

.about-card i {
    font-size: 2em;
    color: #333333;
    margin-bottom: 15px;
}

.about-card h3 {
    font-size: 1.25em;
    margin-bottom: 10px;
    color: #242424;
}

.about-card p {
    font-size: 1em;
    line-height: 1.5;
    color: #555;
}

/* Media Queries for Smaller Screens */
@media (max-width: 768px) {
    .about-cards {
        flex-direction: column;
        align-items: center;
    }
    .about-card {
        max-width: 100%;
    }
}

/* Contacts Section */
.contacts-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.contacts-group {
    flex: 1 1 calc(50% - 10px);
    max-width: 500px;
}

.contacts-group h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #ee3c2d;
    text-align: center;
}

.contacts-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contacts-group li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contacts-group img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.contacts-group div {
    font-size: 0.9em;
    line-height: 1.4;
    color: #242424;
}

.contacts-group a {
    color: #ee3c2d;
    text-decoration: none;
}

.contacts-group a:hover {
    text-decoration: underline;
}

.contacts-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contacts-group {
    flex: 1 1 calc(50% - 20px);
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-align: center;
}

.contacts-group h3 {
    margin-bottom: 15px;
    color: #ee3c2d;
    font-size: 1.5em;
}

.contacts-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contacts-group li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contacts-group img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.contacts-group div {
    font-size: 0.9em;
    line-height: 1.4;
    color: #555;
}

.contacts-group a {
    color: #ee3c2d;
    text-decoration: none;
}

.contacts-group a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: url('https://www.kpipartners.com/hubfs/images/partner-microsite/microsite-hero-databricks.jpg') no-repeat center center; 
    background-size: cover;
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
    border-bottom: 1px solid #ccc;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 1;
}

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

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
   color: #ffffff;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #ee3c2d;
    color: white;
    padding: 10px 20px;
    font-size: 1em;
    text-decoration: none;
    border: 2px solid #ee3c2d;  
    border-radius: 4px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #96271e;
}

/* Key Contacts Section */
.contacts-tabs {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.tab-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    background: #e0e0e0;
    border: none;
    margin: 0 5px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    color: #333;
    transition: background 0.3s ease;
}

.tab-button.active {
    background: #ee3c2d;
    color: white;
}

.tab-button:hover {
    background: #96271e;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.contacts-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contacts-list img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.contacts-list div {
    font-size: 0.9em;
    line-height: 1.4;
}

/* Key Contacts Section */
.contacts-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.contacts-group {
    flex: 1 1 calc(50% - 10px); /* Two columns */
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.contacts-group h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #ee3c2d;
    text-align: center;
}

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

.contacts-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contacts-list img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.contacts-list div {
    font-size: 0.9em;
    line-height: 1.4;
    color: #333;
}

.contacts-list a {
    color: #ee3c2d;
    text-decoration: none;
}

.contacts-list a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contacts-grid {
        flex-direction: column;
    }
    .contacts-group {
        flex: 1 1 100%;
    }
}


/* Contacts Section */
.contacts-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.contacts-group {
    flex: 1 1 calc(50% - 20px);
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-align: center; /* Centers the entire card */
}

.contacts-group h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #ee3c2d;
    text-align: center;
}

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

.contacts-list li {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the entire contact block */
    margin-bottom: 15px;
    text-align: left; /* Ensures text inside is left-aligned */
}

.contacts-list img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.contact-info {
    text-align: center; /* Left-aligns the icons within the contact block */
}

.contact-info strong {
    font-size: 1em;
    color: #333;
}

.contact-info a {
    color: #ee3c2d;
    text-decoration: none;
    font-size: 1.25em;
}

.contact-info a:hover {
    text-decoration: underline;
    color: #96271e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contacts-grid {
        flex-direction: column;
    }
    .contacts-group {
        flex: 1 1 100%;
    }
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.contact-card {
    text-align: center;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    transition: box-shadow 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.contact-card h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #ee3c2d;
}

.contact-card p {
    font-size: 0.9em;
    line-height: 1.4;
    color: #333;
}

.contact-card a {
    color: #ee3c2d;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Logo Styling */
.logo img {
    height: 50px; /* Adjust height as needed */
    width: auto;
    display: block;
    margin: 0 auto; /* Center logo vertically within the header */
}

/* Header Styling */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    height: 130px;
    background-color: white;
    border-bottom: 1px solid #ccc;
    position: relative;
}

/* Center the logo */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 50px; /* Adjust logo size as needed */
    width: auto;
}



/* Customer Logos */
.customer-logo-placeholder {
    flex: 1 1 150px;
    height: 100px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%); /* Apply greyscale to all logos */
    padding: 10px; /* Ensure spacing within the placeholder */
    border-radius: 8px; /* Optional rounded corners */
}

/* Text List for Customers Without Logos */
.customer-text-list {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 50px;
}

.customer-text-list h3 {
    font-size: 1.5em;
    color: #242424;
    margin-bottom: 10px;
}

.customer-text-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.customer-text-list li {
    font-size: 1.1em;
    color: #555;
    background: #f3f3f3;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.customer-text-list li:hover {
    background: #ee3c2d;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
    margin-bottom: 50px;
}

.card {
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33% - 20px);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h3 {
    color: #242424;
    font-size: 1.25em;
    margin-bottom: 15px;
}

.card p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card a {
    background: #ee3c2d;
    border: 2px solid #ee3c2d;
    border-radius: 4px;
    color: white;
    display: inline-block;
    font-size: 0.9em;
    padding: 10px 20px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.card a:hover {
    background: #96271e;
}

.card i {
    color: #333333;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.offerings h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #242424;
    text-align: center;
}


.certifications-section {
    padding: 50px 20px;
    background: linear-gradient(to bottom, #f9f9f9, #f3f3f3);
    text-align: center;
    border-top: 0px solid #ccc;
    border-bottom: 0px solid #ccc;
    margin-bottom: 0px;
}

.certifications-section h2 {
    font-size: 2.5em;
    color: #242424;
    margin-bottom: 50px;
}

.certifications-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.featured-customers-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-align: center;
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.certification-card {
    flex: 1 1 calc(33% - 20px);
    max-width: 300px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.certification-card i {
    font-size: 2em;
    color: #333333;
    margin-bottom: 15px;
}

.certification-card h3 {
    font-size: 1.2em;
    color: #242424;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .certifications-grid {
        flex-direction: column;
        gap: 30px;
    }
    .certification-card {
        max-width: 100%;
    }
}

.resources-section {
    padding: 50px 20px;
    background: #f9f9f9;
    border-top: 0px solid #ccc;
    text-align: center;
}

.resources-section h2 {
    font-size: 2.5em;
    color: #242424;
    margin-bottom: 50px;
}

.resources-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
     margin-bottom: 50px;
}

.resource-card {
    flex: 1 1 calc(33% - 20px);
    max-width: 300px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.resource-card i {
    font-size: 2em;
    color: #333333;
    margin-bottom: 15px;
}

.resource-card h3 {
    font-size: 1.2em;
    color: #242424;
    margin-bottom: 10px;
}

.resource-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
}

.resource-card .cta-button {
    display: inline-block;
    background: #ee3c2d;
    color: white;
    padding: 10px 20px;
    font-size: 1em;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.resource-card .cta-button:hover {
    background: #96271e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .resources-grid {
        flex-direction: column;
        gap: 30px;
    }
    .resource-card {
        max-width: 100%;
    }
}


header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    height: 130px;
    background-color: white;
    border-bottom: 1px solid #ccc;
    position: relative;
}


/* Navigation Links */
.nav-links {
    padding-top: 20px;
    visibility: hidden;
    opacity: 10;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 130px;
    left: 0;
    width: 50%;
    border-top: 1px solid #ccc;
    z-index: 999;
    gap: 25px;
    transition: visibility 0.3s, opacity 0.3s ease;
    padding-bottom: 20px;
}

.nav-links.show {
    visibility: visible;
    opacity: 1;
}



/* Hamburger Menu */

.hamburger {
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    display: block;
    background: #242424;
    height: 3px;
    width: 25px;
    margin: 5px 0;
}




.calendar-icon {
    position: absolute;
    right: 20px; /* Adjust spacing from the right edge */
    font-size: 1.25em;
}

.calendar-icon a {
    text-decoration: none;
    color: #242424;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.calendar-icon a:hover {
    color: #96271e;
}


.logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.logos img {
    max-height: 75px; /* Adjust size as needed */
    width: auto;
}

.faq-section {
    padding: 40px 20px;
    margin: 0 auto;
    text-align: center;
    background: #f9f9f9;
}

.faq-section h2 {
    font-size: 2.5em;
    color: #242424;
    margin-bottom: 50px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto; /* Center horizontally */
    display: flex; /* Flex container */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items inside the accordion */
    justify-content: center; /* Optional: Center items vertically */
    margin-bottom: 50px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    background: white;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 1em;
    color: #242424;
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* Adjust this based on content length */
    padding: 15px 20px; /* Adds spacing when expanded */
}

.accordion-header {
    background: #ee3c2d;
    color: white;
    padding: 15px 20px;
    text-align: left;
    font-size: 1.2em;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(180deg);
}


/* FEATURED CUSTOMER ENHANCEMENT */
/* Featured Customers Section */
.featured-customers {
    margin: 40px 0;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
}

.section-heading {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

/* Featured Customer Container */
.featured-customer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;

}

.customer-details {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.customer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

blockquote {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 15px;
}

.quote-author {
    font-size: 1em;
    color: #777;
    margin-bottom: 25px;
    text-align: center;
}

.customer-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.metric {
    text-align: center;
}

.metric h3 {
    font-size: 1.5em;
    color: #ee3c2d;
    margin-bottom: 5px;
}

.metric p {
    font-size: 0.9em;
    color: #555;
}

.cta-button-feature {
    display: inline-block;
    background: #ee3c2d;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 1em;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    text-align: center;
    transition: background 0.3s ease;
}

.cta-button-feature:hover {
    background: #96271e;
}

/* Customer Image */
.customer-image {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Additional Customers List */
.customer-text-list {
    text-align: center;
}

.customer-text-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.customer-text-list li {
    font-size: 1em;
    color: #555;
    background: #ccc;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.customer-text-list li:hover {
    background: #ee3c2d;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .featured-customer-container {
        flex-direction: column;
    }

    .customer-details, .customer-image {
        flex: 1 1 100%;
    }

    .customer-metrics {
        flex-direction: column;
    }
}
/* Hide the customer image for small screens */
@media (max-width: 768px) {
    .customer-image {
        display: none;
    }
}

.accelerators .offerings {
    margin-bottom: 50px;
    background: #f9f9f9;
}


.scheduler-widget iframe {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: 100%;
    height: 600px;
    margin-bottom: 50px;

}

.schedule {
    margin-bottom: 50px;
    background: #f9f9f9;

}

/* VALUE PROP AREA */

/* Value Propositions Section */
.value-propositions {
    padding: 30px 20px;
    background: #f9f9f9;
    text-align: center;
    width: 100%; /* Ensures full-width background */
    margin: 0 auto;
}

.value-propositions h2 {
    font-size: 2.5em;
    color: #242424;
    margin-bottom: 20px;
}

.value-prop-description {
    font-size: 1.2em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.value-propositions .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.value-propositions .card {
    flex: 1 1 calc(33% - 20px);
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-propositions .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.value-propositions .card i {
    font-size: 2em;
    color: #333333;
    margin-bottom: 15px;
}

.value-propositions .card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #242424;
}

.value-propositions .card p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}

.value-propositions .cta-button-card {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #ee3c2d;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1em;
    transition: background 0.3s ease;
}

.value-propositions .cta-button-card:hover {
    background: #96271e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .value-propositions .cards {
        flex-direction: column;
    }

    .value-propositions .card {
        flex: 1 1 100%;
    }
}




/* ACCELERATORS BACKGROUND */
#accelerators {
    background-color: #f3f3f3; /* Use a color consistent with other sections */
    width: 100%; /* Ensures the background spans the full width of the screen */
    padding: 50px 20px; /* Adds padding inside the section */
    margin: 0; /* Removes any default margins */
    box-sizing: border-box; /* Ensures padding doesn't affect width calculations */
}


/* Fixes */

#value-propositions,
#accelerators {
    background-color: #f3f3f3; /* Match other sections */
    padding: 20px 0;
    width: 100%; /* Ensures full-width background */
}

#value-propositions .cards,
#accelerators .cards {
    max-width: 1200px;
    margin: 0 auto;
}

#value-propositions {
    background-color: #f3f3f3; /* Consistent background color */
    padding: 50px 20px;
    width: 100%; /* Full-width background */
}

.customer-section {
    padding: 30px 20px;
}

.customer-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #242424;
    text-align: center;
}

.customer-section .description {
    text-align: justify; /* Justify the text */
    max-width: 800px;
    margin: 0 auto 20px; /* Center the text */
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

#accelerators {
    background-color: #f3f3f3;
    padding: 50px 20px;
    margin: 0 auto;
    text-align: center;
    width: 100%; /* Full-width */
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

#accelerators .cards {
    max-width: 1200px; /* Center content inside the section */
    margin: 0 auto;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    #value-propositions .cards,
    #accelerators .cards {
        flex-direction: column;
        gap: 20px; /* Ensure proper spacing */
    }

    #value-propositions .card,
    #accelerators .card {
        flex: 1 1 100%; /* Make cards stack vertically */
    }

    .customer-section .description {
        text-align: left; /* Left-align for smaller screens */
        padding: 0 10px; /* Add padding for readability */
    }
}


/* FLOATING NAVIGATION */
/* Floating Navigation Container */
.floating-nav {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    width: 50px;
    height: 50px;
    background: #ee3c2d;
    color: #FFFFFF; /* Icon color */
    font-size: 1.5em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

/* Hover Effect */
.floating-btn:hover {
    background: #96271e;
    transform: scale(1.1);
    color: #FFFFFF; /* Keep icons white on hover */
}

/* Adjustments for Font Awesome Icons */
.floating-btn i {
    color: #FFFFFF; /* Explicitly set icon color to white */
    pointer-events: none; /* Prevent interaction with the icon itself */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }
}

/* Back to Top Button */
.back-to-top {
    left: 20px; /* Position the button on the left */
}

/* Schedule a Meeting Button */
.schedule-meeting {
    right: 20px; /* Position the button on the right */
}


.accelerators-description {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.offerings-description {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Fix For Case Study Button Text Color */
.cta-button-feature {
    display: inline-block;
    background: #ee3c2d;
    color: #FFFFFF !important; /* Ensures text remains white */
    padding: 10px 20px;
    font-size: 1em;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    text-align: center;
    transition: background 0.3s ease;
}

.cta-button-feature:hover {
    background: #96271e;
    color: #FFFFFF !important; /* Ensures text remains white on hover */
}

/* Fix For Overflow Issue */
html, body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
    max-width: 100%;
}
.featured-customer-container,
.value-propositions,
.cards,
.accelerators {
    max-width: 100%;
    overflow-x: hidden;
}
* {
    box-sizing: border-box; /* Prevents padding/margins from increasing element width */
}

 /* STYLING FOR CONTACT SECTION */
/* Contact Primary Section */
.contact-primary-section {
    background: #333; /* Dark grey background */
    padding: 50px 20px;
    text-align: center;
    color: white;
    border-top: 0px solid #444;
}

.contact-primary-section h2 {
    font-size: 2.5em;
    color: white;
    margin-bottom: 10px;
}

/* Contact Intro Description */
.contact-intro {
    font-size: 1.1em;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Contact Container */
.contact-primary-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    background: #444;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 10px;
}

/* Contact Photo */
.contact-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff; /* White border for a professional touch */
}

/* Contact Details */
.contact-details {
    text-align: center;
    margin-top: 0px;
}

/* Name, Title, and Company */
.contact-details h3 {
    font-size: 1.8em;
    color: white;
    margin-bottom: 0px;
    margin-top: 0px;
}

.contact-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #bbb;
    margin-bottom: 2px;
}

.contact-company {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 0px;
}

/* Contact Info */
.contact-info p {
    font-size: 1em;
    color: #ddd;
    margin-bottom: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.contact-info i {
    color: #ee3c2d;
    font-size: 1.2em;
}

/* Clickable Links */
.contact-info a {
    color: #ee3c2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #66a3ff;
    text-decoration: underline;
}

/* Contact Buttons */
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    margin-button: 20px;
    width: 100%;
}

/* Buttons */
.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ee3c2d;
    color: white !important; /* Ensures text remains white */
    padding: 12px 20px;
    font-size: 1em;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    width: 250px; /* Uniform button width */
    text-align: center;
}

/* Ensures link text remains white in all states */
.contact-button:visited,
.contact-button:active,
.contact-button:hover,
.contact-button:focus {
    color: white !important;
    text-decoration: none;
}

/* Ensures icon color stays white */
.contact-button i {
    margin-right: 8px;
    color: white !important;
}

/* Hover state */
.contact-button:hover {
    background: #96271e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-primary-container {
        text-align: center;
        padding: 20px;
    }

    .contact-info p {
        justify-content: center;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-button {
        width: 100%;
    }
}
 /* NAV FIX */
.nav-links {
    display: none; /* Initially hidden */
    flex-direction: column;
    background: #f6f6f6;
    position: absolute;
    top: 130px;
    left: 0;
    width: 100%;
    border-top: 1px solid #ccc;
    z-index: 999;
    gap: 15px;
    padding: 10px;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, height 0.3s ease-in-out;
}

.nav-links a {
    display: block; /* Ensure each link takes full width */
    padding: 5px 10px;
    color: #242424;
    text-decoration: none;
    font-size: 1em;
    width: 100%;
}

.nav-links.show {
    display: block; /* Switch to block so links stack */  
    visibility: visible;
    opacity: 0.90;
    height: auto;
    width: 45%;
}

.body {
    border-top: 3px solid #333333 important;
}

/* Alternate Button Style */
.cards .cta-button-alt {
    display: inline-block;
    background: white; !important;
    color: #ee3c2d; !important;
    border: 2px solid #ee3c2d; !important;
    padding: 10px 20px;
    font-size: 1em;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Hover State */
.cards .cta-button-alt:hover {
    background: #ee3c2d; !important;
    color: white; !important;
}

/* CUSTOMER CARDS */
.customer-section {
    text-align: center;
    padding: 40px 20px;
    background: #FFFFFF;
}

.customer-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #242424;
}

.customer-description {
    font-size: 1.2em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.customer-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.customer-card {
    flex: 1 1 calc(33% - 20px);
    max-width: 300px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.customer-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333333;
}

.customer-card i {
    font-size: 1.0em;
    color: #333333;
    margin-bottom: 10px;
}

.customer-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.customer-card li {
    font-size: 1em;
    color: #555;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .customer-cards {
        flex-direction: column;
        align-items: center;
    }

    .customer-card {
        max-width: 100%;
    }
}


/* awards section */
.awards-section {
    text-align: center;
    padding: 50px 20px;
    background: #f9f9f9;
}

.awards-description {
    font-size: 1.2em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Gartner Highlight Section */
.gartner-highlight {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 20px;
    margin: 20px auto 40px;
    border-radius: 8px;
    max-width: 900px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gartner-logo {
    max-width: 180px;
    margin-right: 20px;
}

.gartner-description {
    font-size: 1.1em;
    color: #333;
    max-width: 600px;
    text-align: left;
}

/* Awards Grid */
.awards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.award-card {
    flex: 1 1 calc(33% - 20px);
    max-width: 300px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.award-card i {
    font-size: 2em;
    color: #333333;
    margin-bottom: 15px;
}

.award-card h3 {
    font-size: 1.2em;
    color: #242424;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gartner-highlight {
        flex-direction: column;
        text-align: center;
    }

    .gartner-logo {
        margin-bottom: 15px;
    }

    .awards-grid {
        flex-direction: column;
        gap: 30px;
    }

    .award-card {
        max-width: 100%;
    }
}


/* expertise section */
/* Key Areas of Expertise */
.expertise-section {
    padding: 40px 20px;
    text-align: center;
    background: #f9f9f9;
}


/* Expertise Grid */
.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual Cards */
.expertise-card {
    flex: 1 1 calc(33.3% - 20px);
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-3px);
}

.expertise-card i {
    font-size: 2em;
    color: #333333;
    margin-bottom: 10px;
}

.expertise-card h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #242424;
}

.expertise-card p {
    font-size: 0.9em;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .expertise-card {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .expertise-card {
        flex: 1 1 100%;
    }
}