/* --- Global Reset and Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #05091d;
    --primary-yellow: #FFD700;
    --white: #fff;
    --light-gray: #f4f4f4;
    --text-color: #333;
}

body {
    font-family: 'Manrope', 'Poppins', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* --- Reusable Components --- */
.container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-size: 60px;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Poppins', sans-serif;
    line-height: 68.4px;
    text-transform: capitalize;
}

.section-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    text-align: center;
    color: #7a7a7a;
    max-width: 800px;
    margin: 0 auto 60px;
}

.btn-combo {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border: none;
    border-radius: 999px;
    padding: 5px 16px 5px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(255, 215, 0, 0.35);
    transition: transform 0.15s ease, background-color 0.2s ease;
    text-decoration: none;
}

.btn-combo:hover {
    background-color: #e6c200;
    transform: translateY(-1px);
}

.btn-combo .btn-text {
    line-height: 1;
}

.btn-combo .btn-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(255, 215, 0, 0.35);
}

.btn-combo .btn-circle svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-dark);
}

/* --- Header Styles --- */
.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1920px;
    z-index: 30;
}

.header-top {
    padding-left: 40px;
    padding-right: 0px;
    background-color: var(--primary-yellow);
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    width: 100%;
    height: 100%;
}

.social-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
}

.contact-info-item svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.social-icons {
    display: flex;
    gap: 17px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(5, 9, 29, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(5, 9, 29, 0.2);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-dark);
}

.header-main {
    background-color: #f4f4f4;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    width: 100%;
    height: 100%;
}

.logo img {
    height: 67px;
    width: 210px;
}

.navigation {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    padding: 20px 0;
    transition: color 0.3s ease;
    text-transform: capitalize;
    line-height: 28px;
    position: relative;
}
.nav-link.active {
    color: var(--primary-yellow);
    border-bottom: 2px solid var(--primary-yellow);
    position: relative; /* Add this */
    list-style: none; /* Add this */
}

.nav-link:hover {
    color: var(--primary-yellow);
}

.header-contact-btn {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border: none;
    padding: 19.5px 35px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.header-contact-btn:hover {
    background-color: #e6c200;
}

.header-contact-btn svg {
    width: 23px;
    height: 16px;
}

/* New hamburger menu styles */
.hamburger {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary-dark);
    transition: all 0.3s ease;
}


/* --- Main Home Sections --- */
.hero-section {
    padding-top: 180px;
    padding-bottom: 80px;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(to right, #6c7180 2.838%, #5e606a 14.986%, #010101 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1290px;
    width: 100%;
    gap: 80px;
    position: relative;
    z-index: 2;
    padding: 0 40px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    max-width: 700px;
}

.hero-title {
    font-size: 60px;
    font-weight: 600;
    color: var(--white);
    line-height: 68.4px;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
}

.hero-description {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 28px;
    margin-bottom: 40px;
    font-family: 'Manrope', sans-serif;
}

.hero-btn-primary {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border: none;
    padding: 19.5px 35px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.hero-btn-primary:hover {
    background-color: #e6c200;
}

.hero-btn-primary svg {
    width: 23px;
    height: 16px;
}

.hero-image {
    width: 670px;
    height: auto;
    display: flex;
    justify-content: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-image-ring {
    position: relative;
    width: 520px;
    height: 520px;
}

.hero-image-circle {
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f6f6f6 60%, #efefef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    overflow: hidden;
}

.hero-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
}

.hero-btn-secondary:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.06);
}

.stats-section {
    width: 100%;
    height: 200px;
    background: linear-gradient(to right, #6c7180 2.838%, #5e606a 14.986%, #010101 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stats-background {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1290px;
    padding: 0 40px;
    box-sizing: border-box;
    gap: 30px;
    margin: 0 auto;
}

.stats-title-bg {
    position: relative;
    width: 380px;
    height: 150px;
    border-radius: 4px;
    background-color: var(--light-gray);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 380px;
}

.stats-title {
    color: var(--primary-dark);
    font-size: 32px;
    font-weight: 800;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    padding: 0 30px;
    line-height: 1.2;
}

.stats-content {
    position: relative;
    height: 150px;
    border-radius: 4px;
    background-color: var(--primary-yellow);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    justify-items: center;
    column-gap: 40px;
    padding: 0 0px;
    flex: 1 1 auto;
    min-width: 0;
}

.stat-item {
    text-align: center;
    color: #000;
    width: 100%;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    padding: 0 8px;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    line-height: normal;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    line-height: normal;
}

.stat-sublabel {
    font-size: 12px;
    font-weight: normal;
    font-family: 'Roboto', sans-serif;
    line-height: normal;
}

.stats-content .stat-item:not(:first-child):before {
    content: '';
    position: absolute;
    left: -20px;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: rgba(5,9,29,0.15);
}

.services-section {
    padding: 120px 80px 120px;
    box-sizing: border-box;
    overflow: hidden;
}

.services-container {
    max-width: 1290px;
    margin: 0 auto;
    margin-bottom: -100px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.service-card {
    background: var(--light-gray);
    width: 100%;
    max-width: 427px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 16px 16px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-icon {
    position: absolute;
    left: 23px;
    top: -103px;
    width: 60px;
    height: 60px;
    z-index: 2;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 36px;
    text-transform: capitalize;
}
.service-description {
    font-size: 16px;
    color: #7a7a7a;
    line-height: 28px;
    font-family: 'Manrope', sans-serif;
    flex: 1;
}

/* About Section (Homepage) */
.about-section {
    width: 100%;
    max-width: 1920px;
    height: 631px;
    overflow: hidden;
    padding: 120px 80px;
    margin: 0 auto;
}

.about-container {
    width: 1290px;
    height: 633px;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: flex-start;
    gap: 0;
}

.about-image {
    flex: 1;
    height: 569.17px;
    max-width: 1290px;
    min-width: 0;
    position: relative;
}

.about-image-group {
    position: relative;
    display: inline-grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    place-items: start;
}

.about-image-main {
    grid-area: 1 / 1;
    width: 538.397px;
    height: 358.931px;
    border-radius: 21px;
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-overlay {
    grid-area: 1 / 1;
    margin-left: 171.404px;
    margin-top: 189.269px;
    width: 443.596px;
    height: 295.731px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 10px solid white;
}

.about-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    width: 643px;
    height: 509px;
    padding: 0 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1290px;
}

.about-title {
    font-size: 60px;
    font-weight: 600;
    color: var(--primary-dark);
    font-family: 'Poppins', sans-serif;
    line-height: 68.4px;
    text-transform: capitalize;
}

.about-description {
    font-size: 18px;
    color: #7a7a7a;
    line-height: 28px;
    font-family: 'Manrope', sans-serif;
    padding-bottom: 20px;
}

.about-btn {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border: none;
    padding: 19.5px 35px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    position: relative;
    z-index: 2;
    text-transform: capitalize;
}

.about-btn:hover {
    background-color: #e6c200;
}

.about-btn svg {
    width: 23px;
    height: 16px;
}
/* Products Section */
.products-section {
    padding: 120px 80px 120px;
    box-sizing: border-box;
    overflow: hidden;
}

.products-container {
    max-width: 1290px;
    margin: 0 auto;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.product-card {
    background: var(--light-gray);
    width: 100%;
    max-width: 427px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.product-image img {
    width: 100%;
    height: fit-content;
    object-fit: cover;
}

.product-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 30px 20px 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 42.64px;
    text-transform: capitalize;
}

.product-description {
    font-size: 18px;
    color: #7a7a7a;
    line-height: 28px;
    font-family: 'Manrope', sans-serif;
    margin: 0 20px 30px;
}
/* --- Leadership Section (Carousel) --- */
.leadership-section {
    width: 100%;
    overflow: hidden;
    max-width: 1920px;
    padding: 120px 80px;
    box-sizing: border-box;
    margin: 0 auto;
}

.leadership-container {
    max-width: 1440px;
    margin: 0 auto;
}

.leadership-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    height: 61.39px;
    width: 1266px;
    position: relative;
}

.leadership-btn {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border: none;
    padding: 19.5px 35px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-transform: capitalize;
}

.leadership-btn:hover {
    background-color: #e6c200;
}

.leadership-btn svg {
    width: 23px;
    height: 16px;
}

.leadership-grid {
    overflow: hidden;
}

.leadership-carousel {
    overflow: hidden;
    position: relative;
}

.leader-track {
    display: flex;
    gap: 40px;
    will-change: transform;
    transition: transform 600ms ease;
}

.leader-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    flex: 0 0 calc((100% - 3 * 40px) / 4);
    max-width: calc((100% - 3 * 40px) / 4);
    display: flex;
    flex-direction: column;
}

.leader-card:hover {
    transform: translateY(-5px);
}

.leader-image {
    width: 100%;
    height: 388px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info {
    padding: 29px 20px 30px;
    text-align: center;
}

.leader-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    line-height: 36px;
    text-transform: capitalize;
}

.leader-title {
    font-size: 18px;
    color: #7a7a7a;
    font-family: 'Manrope', sans-serif;
    line-height: 28px;
    margin-bottom: 20px;
}


/* Standard Work Process Section */
.work-process-section {
    width: 100%;
    max-width: 1920px;
    padding: 120px 80px;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: center;
}

.flow-diagram {
    max-width: 100%;
    height: auto;
}

/* Our Core Focus Areas Section */
.focus-areas-section {
    padding: 120px 0;
    text-align: center;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.focus-card {
    background-color: var(--light-gray);
    border-radius: 16px;
    padding: 40px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.focus-card.highlighted {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.focus-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.focus-card.highlighted h3 {
    color: var(--primary-dark);
}

.focus-card ul {
    list-style: none;
    padding: 0;
}

.focus-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
    color: #7a7a7a;
}

.focus-card.highlighted ul li {
    color: var(--primary-dark);
}

.focus-card ul li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary-yellow);
}

.focus-card.highlighted ul li svg {
    color: var(--primary-dark);
}

/* Standard Work Process Section */
.work-process-section {
    padding: 120px 0;
    text-align: center;
}

.process-steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 80px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps-container::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 80%;
    height: 1px;
    background: url("data:image/svg+xml,%3Csvg width='100%25' height='1' viewBox='0 0 1000 1' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0.5L1000 0.5' stroke='%23FFD700' stroke-dasharray='5 5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 16px;
    color: #7a7a7a;
}

/* --- Contact Form Section (Homepage) --- */
.contact-section {
    max-height: 500px;
    padding: 20px 0;
}

.contact-container {
    display: flex;
    gap: 20px; /* Reduced gap for a more compact design */
    max-width: 900px; /* New, smaller max-width */
    max-height: 480px;
    margin: 0 auto;
    background-color: var(--primary-dark);
    border-radius: 16px;
    overflow: hidden;
}

.contact-form-container {
    background-color: var(--primary-dark);
    color: white;
    padding: 25px; /* Reduced padding */
    flex: 1;
}

.contact-form-container h2 {
    font-size: 36px; /* Slightly smaller font size */
    font-weight: 600;
    margin-bottom: 50px; /* Reduced margin */
    line-height: 1.2;
}

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px; /* Reduced margin */
}

.contact-form-container input,
.contact-form-container textarea {
    flex: 1;
    padding: 16px 18px; /* Slightly smaller padding */
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    color: white;
    font-size: 16px;
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-container textarea {
    height: 130px; /* Reduced height */
    resize: vertical;
    margin-bottom: 10px;
}

.send-message-btn {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border: none;
    padding: 16px 28px; /* Slightly smaller padding */
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.send-message-btn:hover {
    background-color: #e6c200;
}

/* --- New styles for the right section --- */
.contact-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px; /* Reduced padding */
}

.image-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-links-container {
    display: flex;
    gap: 20px;
    flex: 1;
}

.contact-link-box {
    height: 100px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2px; /* Reduced padding */
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-link-box:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-link-box .icon {
    width: 20px; /* Smaller icon size */
    height: 20px;
    color: var(--primary-yellow);
    margin-bottom: 8px; /* Reduced margin */
}

.contact-link-box .link-text {
    font-size: 16px; /* Smaller font size */
    font-weight: 600;
}
/* --- Footer --- */
.footer {
    width: 100%;
    max-width: 1920px;
    background-color: var(--light-gray);
    padding: 80px 0 30px;
    margin: 0 auto;
}

.footer-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section {
    text-align: left;
}

.footer-logo img {
    height: 67px;
    width: 210px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 16px;
    color: #7a7a7a;
    line-height: 24px;
    font-family: 'Manrope', sans-serif;
}

.footer-heading {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #7a7a7a;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-contact p {
    color: #7a7a7a;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 24px;
    font-family: 'Manrope', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #7a7a7a;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
}

/* --- Sidebar and Overlay --- */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    z-index: 50;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    border-left: 2px solid var(--primary-yellow);
}

.contact-sidebar.active {
    right: 0;
}

.sidebar-content {
    padding: 30px 32px;
    height: 100%;
    width: 400px;
    box-sizing: border-box;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-dark);
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    line-height: 26px;
}

.sidebar-close {
    background-color: var(--primary-yellow);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sidebar-close:hover {
    background-color: #e6c200;
}

.sidebar-company-info {
    margin-bottom: 32px;
}

.sidebar-company-info p {
    color: #7a7a7a;
    line-height: 28px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
}

.sidebar-contact-info {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-icon {
    background-color: var(--primary-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}
.sidebar-socials {
    display: flex;
    gap: 12px;
}

.contact-details p {
    color: var(--primary-dark);
    line-height: 28px;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
}

.sidebar-action {
    margin-top: 32px;
    margin-bottom: 32px;
}

.sidebar-contact-btn {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border: none;
    padding: 19.5px 35px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.sidebar-contact-btn:hover {
    background-color: #e6c200;
}

.sidebar-contact-btn svg {
    width: 23px;
    height: 16px;
}


/*==========================================================
    TABLET AND MOBILE RESPONSIVENESS
==========================================================*/

/* --- Tablet Styles (992px) --- */
@media (max-width: 992px) {
    /* Global */
    .container {
        padding: 0 20px;
    }
    .section-title, .about-title {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 40px;
    }
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .products-section, .services-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Hide the desktop header top bar */
    .header-top {
        display: none;
    }

    /* Set up the main header for tablet */
    .header-main {
        height: 60px;
        padding: 0 20px;
    }

    /* Use flexbox to align items on the ends */
    .header-main-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        position: relative;
        width: 100%; /* Ensure it takes full width to distribute space */
    }

    /* Hide desktop navigation elements */
    .navigation {
        display: none;
        list-style: none;
    }
    
    /* Display the contact button on mobile */
    .btn-combo {
        display: flex;
        align-items: center;
        z-index: 8;
         
        /* Ensure the button doesn't shrink more than its content */
        flex-shrink: 0; 
    }
    
    
    /* Display the hamburger menu on mobile */
    .nav-toggle {
        display: flex;
        align-items: center;
        z-index: 10;
        /* Ensure the hamburger doesn't shrink */
        flex-shrink: 0;
    }
    
    /* Center the logo using absolute positioning */
    .logo {
        position: absolute;
        left: 40%;
        transform: translateX(-50%);
        height: 50px;
        max-width: calc(100% - 160px); /* Adjust max-width to account for hamburger and button */
        z-index: 1; /* Lower z-index so button can overlap if necessary */
        text-align: center; /* Center the image within its container */
    }

    .logo img {
        height: 100%;
        width: auto; /* Allow image to scale down */
        max-width: 100%; /* Prevent image from overflowing its container */
        object-fit: contain; /* Ensure logo fits within its bounds */
    }

    /* Hamburger Menu Styles */
    .nav-toggle {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 25px;
        height: 20px;
    }
    
    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--primary-dark);
        transition: all 0.3s ease;
    }

    /* Mobile Navigation Menu */
    .navigation {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: white;
        padding: 80px 40px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: transform 0.4s ease-in-out;
        transform: translateX(100%);
        z-index: 20;
    }

    /* Class added by JavaScript to open the menu */
    .nav-open .navigation {
        transform: translateX(0);
        display: flex;
    }
    /* Hero Section */
    .hero-section {
        padding-top: 150px;
        padding-bottom: 60px;
        min-height: auto;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-title {
        font-size: 42px;
        line-height: 50px;
        margin-bottom: 20px;
    }
    .hero-text {
        max-width: 100%;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-image {
        width: 100%;
        height: auto;
        justify-content: center;
    }
    .hero-image-ring {
        width: 400px;
        height: 400px;
    }
    .hero-image-circle {
        width: 400px;
        height: 400px;
    }

    /* Stats Section */
    .stats-section {
        height: auto;
    }
    .stats-background {
        flex-direction: column;
        height: auto;
        padding: 40px 20px;
        gap: 30px;
    }
    .stats-title-bg {
        width: 100%;
        height: auto;
        padding: 20px;
        flex: none;
    }
    .stats-title {
        font-size: 28px;
    }
    .stats-content {
        grid-template-columns: 1fr 1fr;
        height: auto;
        padding: 20px;
        gap: 20px;
    }
    .stats-content .stat-item:not(:first-child):before {
        display: none;
    }

    /* Services & Products */
    .services-section, .products-section {
        padding: 80px 20px;
    }
    .services-grid, .products-grid {
        grid-template-columns: 1fr 1fr;
    }
    .service-icon {
        top: -83px;
    }

    /* About Section */
    .about-section {
        height: auto;
        padding: 80px 20px;
    }
    .about-container {
        flex-direction: column;
        height: auto;
        gap: 40px;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .about-content {
        width: 100%;
        height: auto;
        padding: 0;
        text-align: center;
    }
    .about-btn {
        align-self: center;
    }
    .about-image {
        height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .about-image-group {
       display: inline-grid;
        position: relative;
        grid-template-columns: max-content;
    grid-template-rows: max-content;
    place-items: start;
        width: 100%;
        max-width: 500px; /* Constrain image group width */
        margin: 0 auto;
    }
    .about-image-main {
        width: 100%;
        height: auto;
    }
    .about-image-overlay {
        position: absolute; /* Maintain overlap */
        top: 50%;
        right: 0;
        transform: translate(0, -10%);
        width: 60%;
        height: auto;
        border: 5px solid white;
    }

    /* Leadership Carousel */
    .leadership-section {
        padding: 80px 20px;
    }
    .leadership-header {
        flex-direction: column;
        text-align: center;
        height: auto;
        width: 100%;
        margin-bottom: 40px;
        gap: 20px;
    }
    .leadership-btn {
        position: static;
        transform: none;
    }
    .leader-track {
        gap: 20px;
    }
    .leader-card {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        width: auto;
    }
    .leader-image {
        height: 250px;
    }
    /* Work Process & Focus Areas */
    .work-process-section, .focus-areas-section {
        padding: 80px 20px;
    }
    .process-steps-container {
        flex-direction: column;
        margin-top: 40px;
        gap: 40px;
    }
    .process-steps-container::after {
        display: none;
    }
    .focus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    /* Contact Section */
    .contact-section {
        padding: 40px 0;
    }
    .contact-container {
        flex-direction: column;
        gap: 0;
        border-radius: 0;
    }
    .contact-form-container {
        padding: 20px;
    }
    .contact-form-container h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .contact-info-section {
        display: none;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    .contact-form-container input,
    .contact-form-container textarea {
        padding: 12px 15px;
    }

    /* Footer */
    .footer {
        padding: 60px 20px 20px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    .footer-section {
        text-align: center;
    }
    .footer-logo img {
        margin: 0 auto 15px;
    }
}

/* --- Mobile Phone Styles (576px) --- */
@media (max-width: 576px) {
    /* Global */
    .section-title, .about-title {
        font-size: 32px;
        line-height: 40px;
    }
    .section-subtitle {
        font-size: 14px;
    }
    .container {
        padding: 0 15px;
    }
    .products-section, .services-section {
        padding-left: 15px;
        padding-right: 15px;
    }

   .header-main {
        height: 50px;
    }

    .header-main-content {
        padding: 0 0px;
    }

    .logo {
        height: 40px;
        /* Adjust max-width for smaller screens */
        max-width: calc(100% - 130px); 
    }

    .btn-combo {
         padding: 5px 12px; /* Smaller padding for button */
        font-size: 13px; /* Smaller font size for button text */
    }
    
    .btn-combo .btn-circle svg {
        width: 12px;
        height: 12px;
    }
    
    .btn-combo .btn-text {
        font-size: 13px;
    }

    .hamburger {
        width: 20px;
        height: 16px;
    }
    /* Add a hamburger toggle here if you have one */
 /* This makes the main container a column, stacking the title on top of the stats section */
    .stats-background {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 20px; 
        gap: 1px;
    }

    /* This ensures the title is visible and takes full width on mobile */
    .stats-title-bg {
        width: 100%;
        text-align: center;
        padding: 0;
        margin-bottom: 20px; /* Add space below the title */
    }

    .stats-title {
        font-size: 28px;
    }

    /* This makes the stats themselves display in a row */
    .stats-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: nowrap; /* Prevents wrapping and forces a single line */
        gap: 10px;
        width: 100%; /* Ensures it takes the full width of the parent container */
        padding: 0;
    }
    
    .stats-content .stat-item {
        /* Allows each stat to grow and share the available space equally */
        flex-grow: 1;
        flex-shrink: 1;
        min-width: 0; /* Allows items to shrink as needed */
        text-align: center;
        padding: 5px;
    }
    .stat-sublabel{
        display: none;
    }

    /* Removes the separator between stat items */
    .stats-content .stat-item:not(:first-child):before {
        display: none;
    }
    /* Hero Section */
    .hero-title {
        font-size: 32px;
        line-height: 40px;
    }
    .hero-description {
        font-size: 16px;
    }
    .hero-image-ring {
        width: 300px;
        height: 300px;
    }
    .hero-image-circle {
        width: 300px;
        height: 300px;
    }
    .hero-ctas {
        flex-direction: column;
        gap: 10px;
    }
    .hero-btn-primary, .hero-btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    /* Stats Section */
    .stats-background {
        padding: 20px;
    }
    .stats-content {
        grid-template-columns: 1fr;
        padding: 10px;
        gap: 15px;
    }
    .stat-number {
        font-size: 20px;
    }
    .stat-label, .stat-sublabel {
        font-size: 12px;
    }

    /* Services & Products */
    .services-grid, .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* About Section */
    .about-image-group {
        display: inline-grid;
        position: relative;
        grid-template-columns: max-content;
    grid-template-rows: max-content;
    place-items: start;
        width: 100%;
        max-width: 300px; /* Constrain image group width */
        margin: 0 auto;
    }
    .about-image-main {
        width: 100%;
        height: auto;
        max-width: 330px; /* Added to keep the main image from being too large */
        z-index: 1; /* Ensure it's on top of the overlay if needed */
    }
    .about-image-overlay {
        display: none;
        position: relative;
        width: 50%;
        height: auto;
        border: 5px solid white;
        margin-top: -30%; /* Pull up the second image to overlap */
        z-index: 0;
    }
    .about-image-overlay img {
        width: 100%;
        height: auto;
    }
    .about-content {
        text-align: center;
    }
    
    /* Leadership Carousel */
    .leader-card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    .leader-image {
        height: 300px;
    }
    .leader-info {
        padding: 20px 10px;
    }

    /* Work Process & Focus Areas */
    .work-process-section, .focus-areas-section {
        padding: 40px 15px;
    }
    .focus-grid {
        gap: 20px;
    }

    /* Contact Section */
    .contact-form-container h2 {
        font-size: 28px;
    }
    .form-row {
        flex-direction: column;
    }

    /* Footer */
    .footer {
        padding: 40px 10px 10px;
    }
    .footer-logo img {
        height: 50px;
    }

    /* Sidebar */
    .contact-sidebar {
        width: 90%;
    }
    .sidebar-content {
        width: 100%;
    }
}

/* --- ABOUT US PAGE STYLES --- */
.about-page {
    padding-top: 140px; /* Space for the fixed header */
}

/* About Us Hero Section */
.about-hero {
    position: relative;
    background: linear-gradient(to right, #6c7180 2.838%, #5e606a 14.986%, #010101 100%);
    height: 400px;
    display: flex;
    
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.about-hero h1 {
    
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin: 0;
}

.about-hero p {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    opacity: 0.8;
}

/* About Mission Section */
.about-mission {
    padding: 100px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.mission-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.mission-text p {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Leadership Section (About Page) */
.about-leadership-section {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.about-leadership-section .section-title {
    margin-bottom: 20px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.leader-card {
    text-align: center;
}

.leader-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.leader-name {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.leader-title {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin-bottom: 15px;
}

.leader-bio {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Management Section (Accordion) */
.management-section {
    padding: 100px 0;
}

.management-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 20px 0;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
}

.accordion-header:hover {
    color: var(--primary-yellow);
}

.member-role {
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-bottom: 0;
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* Adjust this value as needed to accommodate content */
    padding-bottom: 20px;
}

/* What Drives Us Section */
.drives-us-section {
    background-color: var(--primary-dark);
    padding: 100px 0;
    color: var(--white);
}

.drives-us-section .section-title {
    color: var(--white);
    margin-bottom: 60px;
}

.drives-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.drives-us-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.drives-us-item p,
.drives-us-item ul {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.drives-us-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drives-us-item ul li {
    margin-bottom: 8px;
}

/* Get In Touch Section */
.contact-form-section {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
}

.contact-form-container h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-form-container .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form-container textarea {
    width: 100%;
    resize: vertical;
    margin-bottom: 20px;
}

.contact-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

/* Digitally Driven Section */
.digitally-driven-section {
    padding: 100px 0;
}

.digitally-driven-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.driven-image-container {
    width: 100%;
}

.driven-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.driven-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.driven-content p {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}


/* Bio Truncation and Display */
.bio-short {
    overflow: hidden;
    max-height: 48px; /* Adjust this value to control how much text is initially shown */
    position: relative;
    transition: max-height 0.3s ease-out;
}

.bio-full {
    display: none;
    transition: display 0.3s ease-out;
}


/* The state when the button is clicked */
.bio-wrapper.expanded .bio-short {
    max-height: 1000px; /* A large value to reveal all text */
}

.bio-wrapper.expanded .bio-full {
    display: block;
}

.bio-wrapper.expanded .bio-short {
    display: none;
}
.accordion-content.closed {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.accordion-content {
    max-height: 500px; /* A large value to allow the content to expand */
    opacity: 1;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
