/* Custom Variables */
:root {
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Lato', sans-serif;
    --color-primary: #F06436;
    --color-dark: #0f172a;
    --bd-gray-bg: #f8fafc;
    --bd-teal: #06b6d4;
    --bd-green: #10b981;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f1f5f9; /* Cool slate gray background */
    padding-top: 80px;
    color: #334155;
}

/* Typography */
h1, h2, h3, h4, h5, h6,
a,
.navbar-nav .nav-link,
.btn,
.mm-heading,
.mm-heading-decorated,
.navbar-brand-logo {
    font-family: 'Outfit', sans-serif;
}

/* Navbar Styling */
.navbar-custom {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08); /* Blue-tinted shadow */
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: transform 0.3s ease-in-out;
}

/* Logo */
.navbar-brand-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-dark);
    display: flex;
    align-items: center;
}
.logo-icon {
    height: 30px;
    margin-right: 10px;
    /* Gradient: Blue to Cyan split */
    background: linear-gradient(to right, var(--color-primary) 50%, var(--bd-teal) 50%);
    width: 30px;
    border-radius: 4px 0 4px 0;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 1rem 1.2rem !important;
    position: relative;
    transition: color 0.3s ease;
}

/* Chevron Arrow */
.navbar-nav .dropdown-toggle::after {
    border: none;
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.7rem;
    vertical-align: middle;
    margin-left: 0.5em;
    transition: transform 0.3s ease;
}

/* Active/Hover State for Main Links */
.navbar-nav .nav-item.dropdown:hover .nav-link,
.navbar-nav .nav-link.show {
    color: var(--color-primary);
}

/* Rotate arrow */
.navbar-nav .nav-item.dropdown:hover .dropdown-toggle::after,
.navbar-nav .nav-link.show::after {
     transform: rotate(180deg);
     color: var(--color-primary);
}

/* The Underline on the Main Link */
.navbar-nav .nav-item.dropdown:hover .nav-link::before,
.navbar-nav .nav-link.show::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.2rem;
    right: 1.2rem;
    height: 4px;
    background-color: var(--color-primary);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.navbar-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

/* MEGA MENU SETUP */
.nav-item.mega-dropdown {
    position: static !important;
}

.dropdown-menu.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 0;
    border: none;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
    border-radius: 0;
    margin-top: 0;
}

@media all and (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        visibility: visible;
        opacity: 1;
    }
}

/* Content Styling */
.mega-menu-sidebar {
    background-color: var(--bd-gray-bg);
    padding: 3rem 2rem;
}
.mega-menu-content {
     padding: 3rem 2rem;
}

.mm-heading {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    letter-spacing: -0.5px;
}

/* SQUARE DOT POSITIONING */
.mm-heading-decorated {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b; /* Slate 500 */
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 18px;
    padding-bottom: 0;
}

/* Creating the square */
.mm-heading-decorated::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
}

.mm-heading-decorated.text-orange {
    color: var(--color-primary);
}

/* Lists and Links */
.mm-list {
    list-style: none;
    padding-left: 0;
}
.mm-list li {
    margin-bottom: 0.8rem;
}
.mm-list a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.mm-list a:hover {
    color: var(--color-primary);
}

.link-underline-orange {
    text-decoration: underline;
    text-decoration-color: var(--color-primary);
    text-underline-offset: 4px;
    color: var(--color-dark);
    font-weight: 500;
}
.all-services-link {
    color: var(--color-dark);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 2rem;
}
.all-services-link i {
    margin-left: 8px;
    font-size: 0.8rem;
}

.btn-cta {
    background-color: var(--color-dark);
    color: white;
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--color-dark);
}
.btn-cta:hover {
    color: var(--color-dark);
    background-color: transparent;
    border: 1px solid var(--color-dark);
}

/* Navbar style design ended */

/* HERO SECTION STYLES */
.hero-section {
    position: relative;
    min-height: 85vh;
    width: 100%;
    overflow: hidden;
    background:
        linear-gradient(90deg, #ffffff 40%, rgba(255,255,255,0.9) 60%, rgba(255,255,255,0) 50%),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero-text-col {
    padding-top: 3rem;
    padding-bottom: 3rem;
    z-index: 2;
}

.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--color-dark);
}

.text-orange {
    color: var(--color-primary);
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.fade-out {
    opacity: 0;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.25rem;
    color: #64748b; /* Cool gray */
    line-height: 1.6;
    max-width: 600px;
}

@media (max-width: 991px) {
    .hero-section {
        background:
            linear-gradient(180deg, #ffffff 60%, rgba(255,255,255,0.4) 100%),
            url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        background-position: center center;
        min-height: auto;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* CLIENTS SECTION */
.clients-section {
    position: relative;
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
    z-index: 10;
    border-top-left-radius: 50% 60px;
    border-top-right-radius: 50% 60px;
    margin-top: -80px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.03);
}

.clients-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #64748b;
    line-height: 1.3;
}

.highlight-orange {
    color: #64748b;
    position: relative;
    white-space: nowrap;
    z-index: 1;
}

.highlight-orange::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    position: absolute;
    bottom: 2px;
    left: 0;
}

.dot-orange {
    color: var(--color-primary);
}

.client-logo {
    max-width: 100%;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #087a00;
    letter-spacing: -0.5px;
}

.client-link {
    display: block;
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}
.client-link:hover {
    text-decoration: underline;
    color: #1d4ed8; /* Darker blue */
}

@media (max-width: 991px) {
    .clients-section {
        border-top-left-radius: 50% 30px;
        border-top-right-radius: 50% 30px;
        margin-top: -40px;
        padding-top: 3rem;
    }
    .clients-heading {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 2rem;
    }
}

/* EXPERTISE SECTION STYLES */
:root {
    --bd-yellow: #f59e0b;
    --bd-blue: #3b82f6;
    --bd-pink: #ec4899;
    --bd-teal: #14b8a6;
    --bd-purple: #8b5cf6;
}

.expertise-section {
    background-color: #fff;
}

.expertise-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--color-dark);
    line-height: 1.2;
}

.expertise-item {
    padding-right: 1rem;
}

.expertise-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.text-yellow { color: var(--bd-yellow); }
.text-blue { color: var(--bd-blue); }
.text-pink { color: var(--bd-pink); }
.text-teal { color: var(--bd-teal); }
.text-purple { color: var(--bd-purple); }

.expertise-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.expertise-desc {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

.link-underline-gray {
    color: #475569;
    text-decoration: underline;
    text-decoration-color: #cbd5e1;
    text-underline-offset: 3px;
    transition: all 0.2s;
}
.link-underline-gray:hover {
    color: var(--color-primary);
    text-decoration-color: var(--color-primary);
}

@media (max-width: 767px) {
    .expertise-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .all-services-link {
        margin-top: 0;
    }
}

/* FEATURED CAROUSEL STYLES */
.featured-section {
    background-color: #fff;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.featured-box {
    background-color: #1e293b; /* Deep Slate Blue */
    border-radius: 8px;
    color: white;
    box-shadow: 0 20px 50px rgba(30, 41, 59, 0.25);
    padding: 4rem 4rem;
}

.featured-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #e2e8f0;
}

.f-logo {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    opacity: 1;
}

.featured-main-logo {
    font-size: 3rem;
    line-height: 0.9;
    color: white;
}

.serif-font {
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: -1px;
}

.featured-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #cbd5e1; /* Light slate text */
}

.border-end-md {
    border-right: 1px solid rgba(255,255,255,0.1);
}

.btn-nav {
    background: none;
    border: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0;
}

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    border: none;
    margin: 0 6px;
    opacity: 1;
}
.carousel-indicators .active {
    background-color: var(--color-primary);
}

@media (max-width: 991px) {
    .featured-box {
        padding: 2rem;
    }
    .featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .featured-logos {
        width: 100%;
        justify-content: space-between;
        margin-left: 0;
    }
    .f-logo { margin-left: 0; font-size: 0.9rem; }

    .border-end-md {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .featured-main-logo { font-size: 2.5rem; }
}

/* WORKING WITH US SECTION */
.wonderful-section {
    position: relative;
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
    z-index: 20;
    border-top-left-radius: 50% 60px;
    border-top-right-radius: 50% 60px;
    margin-top: -80px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.03);
}

.wonder-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--color-dark);
    line-height: 1.2;
}

.wonder-item-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.wonder-item-desc {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

.wonder-icon {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-top: 2px;
    background-color: white;
}

@media (max-width: 768px) {
    .wonderful-section {
        border-top-left-radius: 50% 30px;
        border-top-right-radius: 50% 30px;
        margin-top: -40px;
        padding-top: 4rem;
    }
    .wonder-heading {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .col-md-6 {
        margin-bottom: 1rem;
    }
}

/* TEAM ASSEMBLY SECTION */
.team-assembly-section {
    background-color: var(--bd-gray-bg);
    padding-top: 8rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

.team-bg-shape {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 220px;
    background-color: #cbd5e1; /* Slate 300 */
    z-index: 0;
    clip-path: polygon(
        0% 40%, 15% 10%, 30% 30%, 45% 0%, 60% 25%,
        75% 10%, 90% 35%, 100% 15%, 100% 100%, 95% 80%, 0% 100%
    );
    border-radius: 20px;
}

.team-member-item {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

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

.team-img {
    max-width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
}

.team-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #64748b;
    margin-top: 1.5rem;
    line-height: 1.3;
}

.assemble-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #475569;
}

/* UPDATED GREEN BUTTON to Emerald */
.btn-green {
    background-color: var(--bd-green);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.8rem 2.5rem;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s ease;
}
.btn-green:hover {
    background-color: #059669; /* Darker emerald */
    color: white;
}

@media (max-width: 768px) {
    .team-bg-shape {
        display: none;
    }
    .team-img {
        max-height: 180px;
    }
    .team-row {
        gap: 1.5rem;
    }
}

/* PROCESS SECTION */
.process-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

.process-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--color-dark);
    line-height: 1.1;
}

.timeline-wrapper {
    position: relative;
    padding-left: 10px;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 3rem;
    border-left: 2px dashed #cbd5e1;
}

.timeline-item:last-child {
    border-left: none;
}

.timeline-marker {
    position: absolute;
    left: -21px;
    top: 0;
    width: 44px;
    height: 44px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    border: 6px solid #fff;
}

.marker-empty {
    background: transparent;
    border: none;
    width: 0;
}

.step-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.step-desc {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    max-width: 90%;
}

.btn-orange-process {
    background-color: var(--color-primary);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    transition: background-color 0.3s;
}
.btn-orange-process:hover {
    background-color: #1d4ed8;
    color: white;
}

@media (max-width: 991px) {
    .process-heading {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    .timeline-item {
        padding-left: 3.5rem;
    }
}

/* INSIGHTS SECTION */
.insights-section {
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 6rem;
}

.insights-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--color-dark);
}

.insights-link-all {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--color-dark);
    padding-bottom: 2px;
    transition: color 0.3s;
}
.insights-link-all:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.insight-card {
    background: transparent;
    border: none;
    transition: transform 0.3s ease;
}
.insight-card:hover {
    transform: translateY(-5px);
}

.img-overflow {
    overflow: hidden;
    border-radius: 12px;
}

.insight-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.insight-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-dark);
    line-height: 1.4;
    min-height: 3.5rem;
}

.insight-meta {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #64748b;
}

.logo-icon-sm {
    width: 20px;
    height: 20px;
    background: linear-gradient(to right, var(--color-primary) 50%, var(--bd-teal) 50%);
    border-radius: 4px 0 4px 0;
    display: inline-block;
}

.btn-insight-nav {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e2e8f0;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    z-index: 10;
    transition: all 0.3s;
}

.btn-insight-nav:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: white;
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

/* FOOTER SECTION */
.footer-section {
    border-top: 1px solid #e2e8f0;
    overflow-x: hidden;
}

.footer-left-content {
    padding: 5rem 2rem 5rem 5rem;
}

.footer-right-content {
    padding: 5rem 5rem 5rem 3rem;
    height: 100%; /* REQUIRED for vertical alignment */
}

.footer-right-col {
    background-color: #f1f5f9; /* Slate 100 */
    border-left: 1px solid #e2e8f0;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--bd-teal) 100%);
    border-radius: 50% 0 50% 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: #475569;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--color-primary);
}

.btn-orange-footer {
    background-color: var(--color-primary);
    color: white;
    border: none;
    transition: background-color 0.3s;
}
.btn-orange-footer:hover {
    background-color: #1d4ed8;
    color: white;
}

.footer-phone {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.footer-section .form-control {
    border: 1px solid #cbd5e1;
    border-right: none;
    padding: 0.6rem 1rem;
}
.footer-section .btn-outline-dark {
    border: 1px solid var(--color-dark);
    background: white;
    color: var(--color-dark);
}
.footer-section .btn-outline-dark:hover {
    background: #f1f5f9;
    color: black;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: #334155;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.social-link:hover {
    background-color: var(--color-primary);
    color: white;
}

@media (max-width: 991px) {
    .footer-left-content,
    .footer-right-content {
        padding: 3rem 1.5rem;
    }
    .footer-right-col {
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }
    /* We don't need to hide the spacer here because I added d-lg-block to the HTML directly */
}

/*----------------------------------  SERVICES PAGES -----------------------------------*/

/*----------------------------------  SERVICES PAGES -----------------------------------*/

/*----------------------------------  TECHNOLOGY PAGES -----------------------------------*/
/*technology hero section*/
.tech-hero-section {
    background-color: #fff;
    padding-top: 3rem;
    overflow: hidden; /* Hides cards if they float too far */
}

/* --- Typography --- */
.tech-hero-section .breadcrumb-nav {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.tech-hero-section .section-label {
    color: #8c98a4;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.tech-hero-section h1 {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    color: #000;
    margin-bottom: 10px;
}

.tech-hero-section .text-highlight {
    color: #F06436; /* The specific orange from the image */
}

/* --- Search Bar --- */
.tech-search-box {
    position: relative;
    max-width: 500px;
    margin: 40px auto 0;
}

.tech-search-box .form-control {
    height: 55px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    padding-left: 50px; /* Space for icon */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-size: 1rem;
}

.tech-search-box .form-control:focus {
    box-shadow: 0 4px 15px rgba(240, 100, 54, 0.15); /* Orange glow */
    border-color: #F06436;
}

.tech-search-box .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 5;
}

/* --- Floating Tech Cards --- */
.tech-card {
    background: white;
    border-radius: 12px;
    padding: 15px 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 140px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

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

.tech-card img {
    height: 30px; /* Placeholder styling for logos */
    width: auto;
    object-fit: contain;
}

.tech-card span {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

/* Staggering effect to look "scattered" */
.col-left .tech-card:nth-child(even) { margin-left: 40px; }
.col-left .tech-card:nth-child(odd) { margin-left: 0px; }

.col-right .tech-card:nth-child(even) { margin-right: 40px; margin-left: auto; }
.col-right .tech-card:nth-child(odd) { margin-right: 0px; margin-left: auto; }

/* Hide side columns on mobile */
@media (max-width: 992px) {
    .tech-bg-col {
        display: none !important; /* Added !important to override the 'd-flex' class */
    }
    .tech-hero-section h1 {
        font-size: 2.5rem;
    }
}
/*technology hero section*/

/*TECH FILTERING SECTION*/
/* --- Component Wrapper --- */
.tech-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 3rem;
}

/* --- Filter Buttons --- */
.filter-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-right: 10px;
    color: var(--color-dark); /* Navy Slate */
}

.filter-btn {
    font-family: 'Outfit', sans-serif;
    border: none;
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;

    /* Default State: Light cool gray */
    background-color: #e2e8f0;
    color: var(--color-dark);
}

.filter-btn:hover {
    background-color: #cbd5e1;
    transform: translateY(-1px);
}

/* Active State: Uses your "Electric Blue" variable */
.filter-btn.active {
    background-color: var(--color-primary); /* #2563eb */
    color: #ffffff; /* White text reads better on deep blue */
}

/* --- The Grid --- */
.tech-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    min-height: 400px; /* Prevents page collapse during transition */
    transition: opacity 0.3s ease-in-out; /* Smooth Fade Transition */
    opacity: 1;
}

/* Fade out state for smooth switching */
.tech-grid-container.fade-out {
    opacity: 0;
}

/* --- Alphabet Divider --- */
.alpha-header {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 30px 0 15px 0;
    color: #94a3b8; /* Slate-400 for subtle text */
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.alpha-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #e2e8f0;
    margin-left: 20px;
}

/* --- Tech Card --- */
.tech-card {
    background: white;
    width: calc(20% - 16px); /* 5 cols */
    height: 140px;
    border: 1px solid #e2e8f0;
    border-radius: 12px; /* Slightly softer corners */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive sizes */
@media (max-width: 992px) { .tech-card { width: calc(33.33% - 14px); } }
@media (max-width: 600px) { .tech-card { width: calc(50% - 10px); } }

.tech-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px -8px rgba(15, 23, 42, 0.15); /* Using dark var shadow */
    border-color: var(--color-primary); /* Highlight border on hover */
}

.tech-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
    z-index: 1;
}

.tech-card:hover img {
    transform: translateY(-12px) scale(0.95);
}

/* Hover Footer (Name) */
.tech-name-slide {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: var(--bd-gray-bg);
    color: var(--color-dark);
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-top: 1px solid #e2e8f0;

    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.tech-card:hover .tech-name-slide {
    transform: translateY(0);
}
/*TECH FILTERING SECTION*/

/*----------------------------------  TECHNOLOGY PAGES -----------------------------------*/


/*--------------------------------- CONTACT US PAGE -----------------------------*/
/* CONTACT HERO SECTION */
.contact-hero-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

.contact-subheading {
    display: block;
    font-family: var(--font-primary); /* Outfit */
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #64748b; /* Cool Gray */
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.contact-heading {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 800;
    font-size: 3.8rem; /* Large impact font */
    color: var(--color-dark);
    line-height: 1.1;
}

.contact-img-wrapper {
    position: relative;
    border-radius: 24px; /* Matches the rounded look in the image */
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1); /* Soft shadow depth */
}

.contact-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover effect (Optional) */
.contact-img-wrapper:hover .contact-img {
    transform: scale(1.02);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .contact-heading {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    .contact-hero-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}
/* CONTACT HERO SECTION */
/* --- CONTACT OPTIONS SECTION --- */
.contact-options-section {
    background-color: #fff;
    padding-bottom: 6rem;
}

/* The Card Wrapper */
.option-card {
    background-color: #fff;
    border: 1px solid #e2e8f0; /* Light border per image */
    border-radius: 12px;       /* Rounded corners */
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
}

/* Hover Effect: Lift and Shadow */
.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}

/* Typography */
.option-title {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.option-text {
    font-family: var(--font-secondary); /* Lato */
    font-size: 1rem;
    color: #475569; /* Slate Text */
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Specific text colors */
.text-orange { color: var(--color-primary); }
.text-dark   { color: var(--color-dark); }

/* Black Buttons */
.btn-black {
    background-color: #0f172a; /* Use brand dark or #000 */
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    border: 1px solid #0f172a;
    transition: all 0.3s;
}

.btn-black:hover {
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
}

/* --- BOTTOM INFO AREA --- */
.info-label {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.info-link {
    font-family: var(--font-secondary);
    color: #475569;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s;
}
.info-link:hover {
    color: var(--color-primary);
}

/* Social Icons */
.social-icons-wrapper {
    display: flex;
    gap: 10px;
}

.social-icon-box {
    width: 40px;
    height: 40px;
    background-color: #334155; /* Slate */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 1.1rem;
}

.social-icon-box:hover {
    background-color: var(--color-primary); /* Electric Blue/Orange on hover */
    color: white;
}

@media (max-width: 991px) {
    .option-card {
        padding: 2rem;
    }
}
/* --- CONTACT OPTIONS SECTION --- */
/* --- OFFICES SECTION --- */
.offices-section {
    background-color: #fff;
    padding-top: 4rem;
    padding-bottom: 6rem;
}

.offices-heading {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

.office-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 10px;
    transition: transform 0.3s ease;
}

/* Optional hover effect */
.office-card:hover {
    transform: translateY(-5px);
}

.office-img-wrapper {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    overflow: hidden;
    border-radius: 4px; /* Slight rounding like the reference */
}

.office-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.office-card:hover .office-img {
    transform: scale(1.05);
}

.office-info {
    display: flex;
    flex-direction: column;
}

.office-city {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.2rem;
    color: #475569; /* Slate Gray */
    margin-bottom: 0.5rem;
}

.office-address {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #64748b; /* Lighter text for address */
    line-height: 1.5;
    margin-bottom: 0;
}

/* Mobile Adjustment */
@media (max-width: 576px) {
    .office-card {
        flex-direction: column;
    }
    .office-img-wrapper {
        width: 100%;
        height: 180px;
        margin-bottom: 1rem;
    }
}
/* --- OFFICES SECTION --- */

/*--------------------------------- CONTACT US PAGE -----------------------------*/

/*--------------------------------- ABOUT PAGE -----------------------------*/

/*--------------------------------- ABOUT PAGE -----------------------------*/

/*--------------------------------- FAQ PAGE -----------------------------*/
/*--------------------------------- FAQ PAGE -----------------------------*/

/*--------------------------------- TECH TALENTS PAGE -----------------------------*/
/* --- BENEFITS OF WORKING WITH US SECTION --- */
.benefits-section {
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.benefits-heading {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.benefits-sub {
    font-family: var(--font-secondary); /* Lato */
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.5;
    max-width: 400px;
}

/* Image Styling */
.benefits-img-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 20px; /* Rounded corners */
    /* Ensure it sticks to bottom if flex container allows */
    margin-top: auto;
}

.benefits-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* List Styling */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Spacing between items */
}

.benefit-item {
    display: flex;
    align-items: flex-start; /* Align icon to top of text */
    gap: 1.5rem;
}

.benefit-icon {
    font-size: 1.4rem;
    color: var(--color-primary); /* The specific orange color */
    min-width: 30px; /* Prevent shrinking */
    padding-top: 4px; /* Slight visual adjustment to align with text cap-height */
}

.benefit-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.benefit-desc {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Black Button with Arrow */
.btn-black-arrow {
    background-color: #000;
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-black-arrow:hover {
    background-color: #333;
    color: white;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .benefits-heading {
        font-size: 2rem;
    }
    .benefits-img-wrapper {
        margin-top: 2rem;
        max-height: 300px;
    }
}
/* --- END BENEFITS OF WORKING WITH US SECTION --- */
/* --- FLEXIBLE WAYS SECTION --- */
.flexible-ways-section {
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.flexible-heading {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--color-dark); /* #0f172a */
}

/* Custom Nav Pills Container */
.custom-pills-nav {
    background-color: #e2e8f0; /* Light gray background */
    border-radius: 8px;
    padding: 5px;
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
}

.custom-pills-nav .nav-item {
    flex: 1;
    text-align: center;
    justify-items: anchor-center;
}

/* The Button Styling */
.custom-pills-nav .nav-link {
    color: var(--color-dark);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    padding: 12px 20px;
    background: transparent;

    /* 1. SMOOTHER BUTTON COLOR CHANGE */
    transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

/* Active State */
.custom-pills-nav .nav-link.active {
    background-color: #0f172a; /* Dark Navy/Black */
    color: white;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15); /* Softer shadow */
}

.custom-pills-nav .nav-link:hover:not(.active) {
    background-color: rgba(255,255,255,0.6);
}

/* Tab Content Typography */
.tab-content-heading {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--color-dark);
}

.tab-content-heading .text-orange {
    color: var(--color-primary);
}

.flexible-icon {
    width: 180px;
    height: auto;
    opacity: 0.9;
}

/* --- 2. SOFT CONTENT TRANSITION LOGIC --- */

/* Default hidden state: Transparent and slightly pushed down */
.tab-content .tab-pane {
    display: none; /* Bootstrap standard */
    opacity: 0;
    transform: translateY(15px); /* Start 15px lower */
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Being visible but not yet fully active (Bootstrap adds 'active' class) */
.tab-content .tab-pane.active {
    display: block; /* Make it exist */
}

/* The actual animation happens when 'show' is added */
.tab-content .tab-pane.show {
    opacity: 1;
    transform: translateY(0); /* Slide up to natural position */
}

@media (max-width: 991px) {
    .flexible-heading {
        font-size: 2rem;
    }
    .custom-pills-nav {
        flex-direction: column;
        background: transparent;
        padding: 0;
    }
    .custom-pills-nav .nav-link {
        background-color: #e2e8f0;
        margin-bottom: 10px;
    }
    .tab-content-heading {
        text-align: center;
        font-size: 2rem;
    }
}
/* --- END FLEXIBLE WAYS SECTION --- */
/*--------------------------------- TECH TALENTS PAGE -----------------------------*/
/*--------------------------------- JOIN US PAGE -----------------------------*/
/* --- WHY PICORETECH SECTION --- */
.why-picoretech-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Header Typography */
.why-heading {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.why-subheading {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.4;
}

.why-desc {
    font-family: var(--font-secondary); /* Lato */
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Image Styling */
.why-img-wrapper {
    height: 100%;
    min-height: 500px; /* Ensure height matches content roughly */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Feature Box Styling */
.feature-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--color-primary); /* #F06436 */
    margin-bottom: 1rem;
}

.feature-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.feature-text {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .why-heading {
        font-size: 2.2rem;
    }
    .why-img-wrapper {
        min-height: 300px;
        margin-bottom: 2rem;
    }
}
/* --- END WHY PICORETECH SECTION --- */
/* --- THE PICORETECH WAY SECTION --- */
.picoretech-way-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Image Styling */
.way-img-wrapper {
    width: 100%;
    height: 300px; /* Fixed height for consistency */
    border-radius: 20px; /* Specific rounded corners per image */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.way-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.way-img-wrapper:hover .way-img {
    transform: scale(1.05);
}

/* Typography */
.way-heading {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 800; /* Extra bold */
    font-size: 2.8rem;
    color: #000; /* Pure black */
    margin-bottom: 1.5rem;
}

.way-desc {
    font-family: var(--font-secondary); /* Lato */
    font-size: 1.1rem;
    color: #475569; /* Slate */
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Custom Link Style */
.way-link {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #000; /* The distinct underline */
    padding-bottom: 5px;
    transition: color 0.3s, border-color 0.3s;
    display: inline-block; /* Allows padding/border to work nicely */
}

.way-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .way-heading {
        font-size: 2.2rem;
    }
    /* Images are hidden on mobile via d-none d-lg-block in HTML
       to keep focus on text, as is common in this layout type */
}
/* --- END THE PICORETECH WAY SECTION --- */
/* --- RECOGNIZED EXCELLENCE SECTION --- */
.awards-section {
    background-color: #f8fafc; /* Very light gray/blue tint background */
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.awards-heading {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 800;
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 1rem;
}

.awards-subheading {
    font-family: var(--font-secondary); /* Lato */
    font-size: 1.15rem;
    color: #475569; /* Slate */
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Award Item Styling */
.award-item {
    text-align: center;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.award-logo-wrapper {
    height: 100px; /* Fixed height for alignment */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.award-logo {
    max-height: 100%;
    width: auto;
    filter: grayscale(100%); /* Make logos B&W for elegance */
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* Color on hover */
.award-item:hover .award-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.award-text {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    min-height: 3rem; /* Align lines across items */
}

.award-year {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    color: #0f172a; /* Dark text */
    position: relative;
    padding-top: 10px;
}

/* The Orange Line Above the Year */
.award-year::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-primary); /* #F06436 */
    margin: 0 auto 8px auto; /* Centered above year */
}

@media (max-width: 991px) {
    .awards-heading {
        font-size: 2.2rem;
    }
}
/* --- END RECOGNIZED EXCELLENCE SECTION --- */
/* --- TEAM TESTIMONIALS SECTION --- */
.team-testimonials-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Typography */
.team-testi-heading {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 3rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}
.team-testi-heading .text-orange { color: var(--color-primary); }

.team-testi-sub {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* --- LAYOUT WRAPPER --- */
.testimonial-wrapper {
    position: relative;
    max-width: 1000px; /* Width of the whole block */
    margin: 4rem auto 0 auto; /* Space for top overlap */
    display: flex;
    align-items: center; /* Center vertically if image height varies */
}

/* 1. The Image Box (Overlaps Left) */
.testi-img-box {
    width: 350px; /* Fixed width for image container */
    height: 450px; /* Taller than the card to stick out top/bottom if needed */
    flex-shrink: 0;
    position: relative;
    z-index: 10; /* Sits on top of the card */
    margin-right: -50px; /* Negative margin pulls the card UNDER the image */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); /* Lift it up */
    background-color: #fff; /* Fallback */
}

.testi-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 2. The Dark Content Card */
.testimonial-card {
    background-color: #0f172a; /* Dark Navy */
    color: white;
    border-radius: 20px;
    padding: 4rem 4rem 4rem 6rem; /* Large Left padding clears the image overlap */
    flex-grow: 1; /* Takes remaining width */
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1; /* Sits below image */
}

.testi-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.testi-quote {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
    color: #fff;
    margin-bottom: 2rem;
}

.quote-mark { color: var(--color-primary); font-weight: 700; }

.author-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.author-role {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 0;
}

/* Navigation Buttons */
.nav-buttons-container {
    display: flex;
    justify-content: center;
}

.btn-nav-orange {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-nav-orange:hover {
    background-color: #d9532a;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .testimonial-wrapper {
        flex-direction: column; /* Stack vertically on mobile */
        margin-top: 2rem;
    }

    .testi-img-box {
        width: 100%;
        max-width: 400px;
        height: 300px;
        margin-right: 0;
        margin-bottom: -50px; /* Pull card up into image */
    }

    .testimonial-card {
        width: 100%;
        padding: 5rem 2rem 3rem 2rem; /* Clear the overlap area */
        text-align: center;
    }
}
/* --- END TEAM TESTIMONIALS SECTION --- */
/* --- TEAM TESTIMONIALS SECTION --- */
.team-testimonials-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow: hidden; /* Stops any horizontal scrollbar glitches */
}

/* Typography */
.team-testi-heading {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 3rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}
.team-testi-heading .text-orange { color: var(--color-primary); }

.team-testi-sub {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* --- CAROUSEL CONTAINER --- */
#teamCarousel {
    position: relative;
    max-width: 960px;
    margin: 100px auto 0 auto;
    /* Reserve space at bottom for buttons */
    padding-bottom: 80px;
}

/* --- WRAPPER --- */
.testimonial-wrapper-cutout {
    position: relative;
    /* No padding bottom needed here anymore, handled by main container */
}

/* 1. The Cutout Image */
.cutout-img-container {
    position: absolute;
    bottom: 0; /* Aligns with bottom of the BLACK CARD */
    left: 20px;
    width: 320px;
    height: auto;
    z-index: 10;
    pointer-events: none;
}

.cutout-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.5));
}

/* 2. The Black Card */
.testimonial-card-black {
    background-color: #111;
    border-radius: 24px;
    padding: 3.5rem 2rem 3.5rem 0;
    position: relative;
    min-height: 340px;
    z-index: 1;
    overflow: hidden;
}

/* Watermark */
.card-watermark {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    width: 250px;
    height: 250px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: 0;
}

/* Content Text */
.testi-content-right {
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.testi-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.testi-quote-text {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 400;
    color: #fff;
    margin-bottom: 2rem;
}

.quote-mark { color: var(--color-primary); font-weight: 700; }

.author-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.author-role {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 0;
}

/* 3. STATIC NAVIGATION BUTTONS */
/* These are positioned absolutely relative to #teamCarousel, NOT the slide */
.static-nav-container {
    position: absolute;
    bottom: 0; /* Sit at the very bottom of the carousel block */
    left: 20px; /* Align with the image left */
    display: flex;
    z-index: 100; /* Ensure clickable */
}

.btn-nav-orange {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-nav-orange:hover {
    background-color: #d9532a;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    #teamCarousel {
        margin-top: 2rem;
        padding-bottom: 0; /* Remove fixed height padding */
    }

    .testimonial-wrapper-cutout {
        display: flex;
        flex-direction: column;
    }

    .cutout-img-container {
        position: relative;
        bottom: auto;
        left: auto;
        width: 200px;
        margin: 0 auto -50px auto;
        z-index: 10;
    }

    .testimonial-card-black {
        text-align: center;
        padding: 4rem 2rem 3rem 2rem;
    }

    .card-watermark {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .testi-content-right {
        padding-left: 0;
    }

    /* Move static buttons to be relative center on mobile */
    .static-nav-container {
        position: relative;
        bottom: auto;
        left: auto;
        justify-content: center;
        margin-top: 2rem;
        width: 100%;
    }
}
/* --- END TEAM TESTIMONIALS SECTION --- */
/*--------------------------------- JOIN US PAGE -----------------------------*/
/*--------------------------------- COMPANY CULTURE PAGE -----------------------------*/
/* --- WHAT WE BELIEVE SECTION --- */
.principles-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Left Column Typography */
.principles-heading {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 800;
    font-size: 3rem;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.principles-heading .text-orange {
    color: var(--color-primary); /* #F06436 */
}

.principles-sub {
    font-family: var(--font-secondary); /* Lato */
    font-size: 1.15rem;
    color: #64748b; /* Slate */
    line-height: 1.6;
    max-width: 400px;
}

/* --- CARD STYLING --- */
.principle-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    position: relative; /* For absolute positioning of the eye button */
    border: 1px solid #e2e8f0; /* Default light border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Specific Border Colors */
.principle-card.card-orange { border-color: var(--color-primary); }
.principle-card.card-blue { border-color: #3b82f6; /* Blue */ }
.principle-card.card-teal { border-color: #14b8a6; /* Teal */ }
.principle-card.card-yellow { border-color: #eab308; /* Yellow */ }

/* Icon Styling */
.principle-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.principle-icon.icon-orange { color: var(--color-primary); }
.principle-icon.icon-blue { color: #3b82f6; }
.principle-icon.icon-teal { color: #14b8a6; }
.principle-icon.icon-yellow { color: #eab308; }

/* Card Typography */
.principle-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.principle-text {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 3rem; /* Ensure space for the eye button */
}

/* Eye Button Styling */
.principle-eye-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f5f9; /* Light gray background */
    color: #64748b;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.principle-eye-btn:hover {
    background-color: #e2e8f0;
    color: var(--color-dark);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .principles-heading {
        font-size: 2.5rem;
    }
    .principles-sub {
        max-width: 100%;
    }
    .principle-card {
        padding: 2rem;
    }
}
/* --- END WHAT WE BELIEVE SECTION --- */
/* --- CAREER CTA SECTION --- */
.career-cta-section {
    background-color: #1e293b; /* Dark Slate/Navy Background */
    padding-top: 6rem;
    padding-bottom: 6rem;
    color: white;
}

/* Avatar Group styling */
.avatar-group {
    display: flex;
    justify-content: center;
    gap: 8px; /* Spacing between circles */
}

.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #1e293b; /* Matches bg to create seamless look */
    transition: transform 0.3s ease;
}

.avatar-img:hover {
    transform: scale(1.1);
    z-index: 2;
}

/* Typography Left Side */
.career-heading {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.career-desc {
    font-family: var(--font-secondary); /* Lato */
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1; /* Light grey text */
    max-width: 700px;
    margin: 0 auto; /* Center the text block */
}

/* White Card Styling */
.career-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    color: var(--color-dark); /* Dark text for inside card */
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.card-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.card-text {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.card-text strong {
    color: #0f172a;
    font-weight: 700;
}

/* Blue Button */
.btn-blue-block {
    display: block;
    width: 100%;
    background-color: #1d4ed8; /* Bright Blue */
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-blue-block:hover {
    background-color: #1e40af; /* Darker Blue */
    color: white;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .career-heading {
        font-size: 2.2rem;
    }
    .career-card {
        margin-top: 3rem;
    }
}
/* --- END CAREER CTA SECTION --- */
/*--------------------------------- COMPANY CULTURE PAGE -----------------------------*/

/*--------------------------------- SCHEDULE A CALL PAGE -----------------------------*/
.contact-section {
    min-height: 100vh;
    overflow-x: hidden;
}

/*--- Left Column Styling ---*/
.form-column {
    background-color: #ffffff;
    padding: 4rem 3rem;
}

@media (min-width: 992px) {
    .form-column {
        padding-left: 8rem; /* Extra padding for desktop to center content visually */
        padding-right: 4rem;
    }
}

.form-label {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.form-control {
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: #000;
}

/* Custom Radio Buttons */
.custom-radio .form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.1em;
    border: 2px solid #555;
}

.custom-radio .form-check-input:checked {
    background-color: #000;
    border-color: #000;
}

.custom-radio .form-check-label {
    margin-left: 0.3rem;
    color: #333;
}

.btn-black {
    background-color: #111;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-black:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-1px);
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 1rem;
}

/*--- Right Column Styling (Pink + Curve) ---*/
.testimonial-column {
    background-color: #FFF0ED; /* The specific light pink/peach color */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The Curve Effect using SVG */
.curve-separator {
    position: absolute;
    top: 0;
    left: -1px; /* Overlap slightly to prevent gaps */
    width: 150px; /* Width of the curve area */
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.testimonial-card {
    background: white;
    border: none;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 450px;
    position: relative;
    z-index: 20;
}

.quote-icon {
    font-size: 3rem;
    color: #ffdcd6; /* Light peach for the quote marks */
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: serif;
}

.logo-placeholder {
    font-weight: bold;
    color: #D52B1E; /* J&J Red */
    font-family: serif;
    font-size: 1.2rem;
}
/*--------------------------------- SCHEDULE A CALL PAGE -----------------------------*/

/*--------------------------------- AWARDS PAGE -----------------------------*/
/* =========================================
   START: AWARDS HERO SECTION STYLES
   ========================================= */

.awards-hero-section {
    background-color: #f8fafc; /* Very light cool gray/white background */
    padding-top: 2rem;
    padding-bottom: 8rem; /* Extra space at bottom for the trophy visual */
    overflow: hidden;
    position: relative;
}

/* --- BREADCRUMB STYLES --- */
.custom-breadcrumb {
    display: flex;
    align-items: center;
    font-family: var(--font-primary); /* Outfit */
    font-size: 0.9rem;
    font-weight: 700; /* Bold text per image */
    color: var(--color-dark);
}

.breadcrumb-icon {
    color: var(--color-dark);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.breadcrumb-icon:hover {
    color: var(--color-primary);
}

.breadcrumb-separator {
    margin: 0 12px;
    font-size: 0.7rem;
    color: #94a3b8; /* Lighter gray for chevron */
}

.breadcrumb-current {
    color: var(--color-dark);
}

/* --- HERO VISUAL & TYPOGRAPHY --- */

.hero-content-wrapper {
    position: relative;
    padding-top: 8rem;
    min-height: 400px; /* Ensures space for the image */
}

/* Eyebrow Label */
.hero-eyebrow {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #64748b; /* Slate 500 */
    margin-bottom: 1rem;
}

/* Main Heading */
.hero-main-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
}

/* Subtext Paragraph */
.hero-subtext {
    font-family: var(--font-secondary); /* Lato */
    font-size: 1.25rem;
    color: #64748b; /* Slate 500 */
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
}

/* --- TROPHY BACKGROUND IMAGE STYLES --- */

.trophy-bg-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%); /* Center and pull slightly up */
    width: 600px; /* Fixed width for the background visual */
    height: auto;
    z-index: 0; /* Behind text */
    pointer-events: none; /* User clicks pass through to text */
    opacity: 0.15; /* Make it subtle/transparent like a watermark */
}

.trophy-img {
    width: 100%;
    height: auto;
    display: block;
    /* Optional: filter to make a colored image look grayscale/glassy */
    filter: grayscale(100%) contrast(1.2);
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .hero-main-title {
        font-size: 2.5rem;
    }

    .trophy-bg-layer {
        width: 80%;
        opacity: 0.1; /* Even fainter on mobile to not distract reading */
    }

    .hero-subtext {
        font-size: 1.1rem;
    }
}

/* =========================================
   END: AWARDS HERO SECTION STYLES
   ========================================= */

/* =========================================
   START: FEATURED AWARDS SECTION STYLES
   ========================================= */

.featured-awards-section {
    background-color: transparent; /* Allows it to sit on previous bg if needed */
    padding-bottom: 5rem;
    position: relative;
    z-index: 10;
    margin-top: -3rem; /* Optional: Pulls it up slightly over previous section if desired */
}

/* Dark Container Box */
.featured-awards-card {
    background-color: #0b0f19; /* Very dark, almost black background */
    border-radius: 12px;
    padding: 4rem 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Typography */
.fa-heading {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 400; /* Thinner weight for elegance */
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

/* Award Item Wrapper */
.award-feature-item {
    text-align: center;
    padding: 0 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Image/Logo Handling */
.award-img-container {
    height: 100px; /* Fixed height for alignment */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: white; /* Logos in image seem to have white boxes */
    border-radius: 4px;
    max-width: 180px; /* Constrain width */
    padding: 10px;
}

.award-feature-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* The Orange Divider Line */
.award-feature-divider {
    width: 40px;
    height: 1px;
    background-color: var(--color-primary);
    margin: 0 auto 1.5rem auto;
}

/* Description Text */
.award-feature-text {
    font-family: var(--font-secondary); /* Lato */
    font-size: 1.1rem;
    color: #e2e8f0; /* Off-white for readability on dark */
    line-height: 1.5;
    margin-bottom: 0.5rem;
    flex-grow: 1; /* Pushes year to bottom if text lengths vary */
}

/* Year */
.award-feature-year {
    display: block;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff;
    margin-top: 5px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .featured-awards-card {
        padding: 3rem 1.5rem;
    }

    .featured-awards-section {
        margin-top: 0; /* Reset negative margin on mobile */
    }

    .award-feature-item {
        margin-bottom: 2rem;
    }
}
/* =========================================
   END: FEATURED AWARDS SECTION STYLES
   ========================================= */
/*--------------------------------- AWARDS PAGE -----------------------------*/

/*--------------------------------- CERTIFICATIONS PAGE -----------------------------*/
/* =========================================
   START: CERTIFICATIONS HERO SECTION STYLES
   ========================================= */

.certifications-hero-section {
    background-color: #f8fafc; /* Cool white background */
    padding-top: 2rem;
    padding-bottom: 8rem;
    position: relative;
    overflow: hidden;
}

/* --- REUSING BREADCRUMB STYLES --- */
/* (If you already added .custom-breadcrumb from the previous answer,
    you don't need to paste this block again) */
.custom-breadcrumb {
    display: flex;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark);
}

.breadcrumb-icon {
    color: var(--color-dark);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.breadcrumb-icon:hover { color: var(--color-primary); }

.breadcrumb-separator {
    margin: 0 12px;
    font-size: 0.7rem;
    color: #94a3b8;
}

.breadcrumb-current { color: var(--color-dark); }


/* --- CONTENT WRAPPER --- */
.cert-content-wrapper {
    position: relative;
    padding-top: 4rem; /* Push text down to center over seal */
    min-height: 450px;
}

/* Eyebrow Label */
.cert-eyebrow {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 800; /* Extra bold */
    text-transform: uppercase;
    letter-spacing: 3px; /* Wide tracking */
    color: #334155; /* Darker slate than previous section */
    margin-bottom: 1rem;
}

/* Main Heading */
.cert-main-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 4rem; /* Very large font size */
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

/* Subtext */
.cert-subtext {
    font-family: var(--font-secondary);
    font-size: 1.35rem; /* Large readable subtext */
    color: #475569; /* Slate 600 */
    line-height: 1.5;
    max-width: 850px;
    margin: 0 auto;
}

/* --- SEAL BACKGROUND IMAGE --- */
.seal-bg-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px; /* Fixed size for the seal */
    height: 500px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.08; /* Very faint, subtle background */
    display: flex;
    align-items: center;
    justify-content: center;
}

.seal-img {
    width: 100%;
    height: auto;
    /* Optional sepia filter to make generic icons look "gold/parchment" like */
    filter: sepia(1) hue-rotate(20deg) saturate(0.5);
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .cert-main-title {
        font-size: 2.8rem;
    }

    .cert-subtext {
        font-size: 1.1rem;
    }

    .seal-bg-layer {
        width: 350px;
        height: 350px;
    }
}

/* =========================================
   END: CERTIFICATIONS HERO SECTION STYLES
   ========================================= */

/* =========================================
   START: PARTNER CARDS SECTION STYLES
   ========================================= */

.partner-cards-section {
    background-color: #fff;
    padding-top: 2rem; /* Spacing after the hero section */
    padding-bottom: 6rem;
}

/* Card Container */
.partner-card {
    background-color: #fff;
    border: 1px solid #e2e8f0; /* Light gray border */
    border-radius: 12px;
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    transition: box-shadow 0.3s ease;
}

.partner-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Logo Column */
.partner-logo-col {
    flex-shrink: 0;
    width: 140px; /* Fixed width for logo area to align text nicely */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0.5rem; /* Optical alignment with title */
}

.partner-logo {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
}

/* Content Column */
.partner-content-col {
    flex-grow: 1;
}

.partner-title {
    font-family: var(--font-primary);
    font-weight: 700; /* Regular bold */
    font-size: 1.25rem;
    color: #334155; /* Slate color */
    margin-bottom: 1rem;
    line-height: 1.3;
}

.partner-desc {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #64748b; /* Lighter text */
    line-height: 1.6;
    margin-bottom: 0;
}

/* Underline Style for keywords */
.text-underline-link {
    text-decoration: underline;
    text-decoration-color: #94a3b8;
    text-underline-offset: 3px;
    color: #475569; /* Slightly darker than normal text */
    cursor: text; /* Or pointer if they are real links */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .partner-card {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .partner-logo-col {
        width: 100%;
        align-items: flex-start;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .partner-logo {
        max-height: 60px; /* Smaller logos on mobile */
    }
}
/* =========================================
   END: PARTNER CARDS SECTION STYLES
   ========================================= */
/*--------------------------------- CERTIFICATIONS PAGE -----------------------------*/


/* =========================================
PRIVACY POLICY PAGE STYLES
========================================= */

/* 1. ENABLE SMOOTH SCROLLING GLOBALLY */
html {
    scroll-behavior: smooth;
}

.privacy-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 8rem;
}

/* --- HEADER --- */
.privacy-eyebrow {
    display: block;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.privacy-main-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.privacy-last-updated {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #64748b; /* Slate 500 */
    font-style: italic;
}

/* --- LEFT NAVIGATION (STICKY) --- */
.privacy-nav-wrapper {
    background-color: var(--bd-gray-bg); /* #f8fafc */
    padding: 2rem;
    border-radius: 12px;
    /* Sticks 100px from the top of the viewport */
    top: 100px;
    position: -webkit-sticky;
    position: sticky;
    /* Ensures it stays above other content if overlapping occurs */
    z-index: 10;
}

.privacy-nav-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}

.privacy-nav-wrapper .nav-link {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #64748b;
    padding: 0.6rem 0;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    padding-left: 10px;
    margin-bottom: 5px;
    cursor: pointer;
}

/* Hover State */
.privacy-nav-wrapper .nav-link:hover {
    color: var(--color-primary);
    background-color: transparent;
    padding-left: 15px;
}

/* Active State */
.privacy-nav-wrapper .nav-link.active {
    color: var(--color-dark);
    font-weight: 700;
    background-color: transparent;
    border-left-color: var(--color-primary);
}

/* --- RIGHT CONTENT --- */
.privacy-block {
    margin-bottom: 4rem;
    /* 2. OFFSET FIX:
       This ensures when you click, the title isn't hidden behind a fixed header.
       Adjust 120px depending on your navbar height. */
    scroll-margin-top: 120px;
}

.privacy-heading {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.privacy-content p {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: #475569; /* Slate 600 */
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Bullet Lists */
.privacy-list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-list li {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.privacy-list li::marker {
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 991px) {
    .privacy-main-title {
        font-size: 2.5rem;
    }

    .privacy-nav-wrapper {
        position: relative;
        top: 0;
        margin-bottom: 3rem;
    }
}

/* =========================================
TERMS OF SERVICE PAGE STYLES
========================================= */

.terms-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 8rem;
}

/* --- HEADER --- */
.terms-eyebrow {
    display: block;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.terms-main-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.terms-last-updated {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #64748b;
    font-style: italic;
}

/* --- STICKY NAVIGATION --- */
.terms-nav-wrapper {
    background-color: var(--bd-gray-bg); /* #f8fafc */
    padding: 2rem;
    border-radius: 12px;
    top: 100px; /* Distance from top of screen */
    position: -webkit-sticky;
    position: sticky;
    z-index: 10;
}

.terms-nav-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}

.terms-nav-wrapper .nav-link {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #64748b;
    padding: 0.6rem 0;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    padding-left: 10px;
    margin-bottom: 5px;
    cursor: pointer;
}

/* Hover State */
.terms-nav-wrapper .nav-link:hover {
    color: var(--color-primary);
    background-color: transparent;
    padding-left: 15px;
}

/* Active State */
.terms-nav-wrapper .nav-link.active {
    color: var(--color-dark);
    font-weight: 700;
    background-color: transparent;
    border-left-color: var(--color-primary);
}

/* --- CONTENT BLOCKS --- */
.terms-block {
    margin-bottom: 4rem;
    /* 1. SCROLL MARGIN OFFSET:
       This ensures the heading isn't covered by a fixed header when scrolling. */
    scroll-margin-top: 120px;
}

.terms-heading {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.terms-content p {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Terms List Styles */
.terms-list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.terms-list li {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.terms-list li::marker {
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 991px) {
    .terms-main-title {
        font-size: 2.5rem;
    }
    .terms-nav-wrapper {
        position: relative;
        top: 0;
        margin-bottom: 3rem;
    }
}

/* =========================================
SOCIAL RESPONSIBILITY STYLES
========================================= */

.csr-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.csr-eyebrow {
    display: block;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.csr-heading {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 3rem;
    color: var(--color-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.csr-desc {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* --- CARD STYLES --- */
.csr-card {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.csr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Image Container */
.csr-img-box {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.csr-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.csr-card:hover .csr-img {
    transform: scale(1.05);
}

/* The floating icon circle */
.csr-icon-overlay {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 4px solid #fff; /* Creates the "cutout" look */
    z-index: 2;
}

/* Content */
.csr-content {
    padding: 2rem 1.5rem;
}

.csr-card-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.csr-card-text {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- IMPACT STRIP --- */
.csr-impact-strip {
    background-color: var(--color-dark); /* Navy */
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-top: 2rem;
    color: white;
}

.impact-number {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.impact-label {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #cbd5e1; /* Light Slate */
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Add border between items on desktop only */
@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid rgba(255,255,255,0.1);
    }
}

@media (max-width: 991px) {
    .csr-heading {
        font-size: 2.2rem;
    }
}

/* =========================================
PRESS / NEWSROOM STYLES
========================================= */

.press-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.press-eyebrow {
    display: block;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.press-heading {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 3rem;
    color: var(--color-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.press-desc {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* --- PRESS CARDS --- */
.press-card {
    display: block;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.press-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.press-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.press-card:hover .press-img {
    transform: scale(1.05);
}

.press-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--color-dark);
    color: white;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
}

.press-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

.press-date {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 0.8rem;
    display: block;
}

.press-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-dark);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Pushes link to bottom */
}

.read-more-link {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- DIVIDER --- */
.press-divider {
    border-top: 1px solid #e2e8f0;
    margin: 4rem 0;
    opacity: 1;
}

/* --- MEDIA KIT (ASSETS) --- */
.kit-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.kit-desc {
    font-family: var(--font-secondary);
    color: #64748b;
    margin-bottom: 2rem;
}

.kit-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kit-item {
    display: flex;
    align-items: center;
    background-color: var(--bd-gray-bg);
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.kit-item:hover {
    border-color: var(--color-primary);
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.kit-icon {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-right: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.kit-info h5 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--color-dark);
}

.kit-info p {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0;
}

.btn-download {
    margin-left: auto; /* Pushes to right */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e2e8f0;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.kit-item:hover .btn-download {
    background-color: var(--color-dark);
    color: #fff;
}

/* --- CONTACT CARD --- */
.media-contact-card {
    background-color: var(--color-dark);
    color: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    height: 100%;
}

.contact-card-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-card-text {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-card-info {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--color-dark);
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: rgba(240, 100, 54, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

/* Responsive */
@media (max-width: 991px) {
    .press-heading {
        font-size: 2.2rem;
    }
}