/* Global Variables */
:root {
    /* Primary Colors - Dark Blue Theme */
    --primary-blue: #0d47a1;
    --primary-blue-light: #1565c0;
    --primary-blue-dark: #002171;
    --primary-teal: #1a237e;
    --primary-teal-light: #303f9f;
    --primary-teal-dark: #000051;
    --globe-blue: #283593;
    
    /* Secondary Colors */
    --secondary-light: #e8eaf6;
    --secondary-dark: #1a1a2e;
    
    /* Font Families */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

/* Typography */
body {
    font-family: var(--body-font);
    color: #000000;
    line-height: 1.6;
    background-color: #e8f4fc; /* Light blue background */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

p, .card-text, .lead, div p, li, .text-normal {
    color: #000000;
    font-weight: 400;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Utility Classes */
.bg-primary {
    background-color: var(--primary-blue) !important;
}

.bg-secondary {
    background-color: var(--primary-teal) !important;
}

.text-primary {
    color: var(--primary-blue) !important;
}

.text-secondary {
    color: var(--primary-teal) !important;
}

.text-dark {
    color: #000000 !important;
}

.text-muted {
    color: #555555 !important;
    font-weight: 400;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 6px rgba(20, 93, 160, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(20, 93, 160, 0.3);
}

.btn-secondary {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    box-shadow: 0 4px 6px rgba(49, 143, 154, 0.25);
}

.btn-secondary:hover {
    background-color: var(--primary-teal-dark);
    border-color: var(--primary-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(49, 143, 154, 0.3);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

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

.btn {
    transition: all 0.3s ease;
}

/* Custom gradient background */
.bg-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal-light) 100%);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
}

.bg-gradient::before {
    display: none;
}

/* Improve hero section readability */
#hero .hero-content {
    background-color: transparent !important;
    box-shadow: none !important;
    border-left: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

#hero h1 {
    color: #000000 !important;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

#hero .lead {
    color: #000000 !important;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

#hero .feature-item {
    margin-bottom: 1.5rem;
}

#hero .feature-item h4 {
    color: #000000 !important;
    font-weight: 600;
}

#hero .feature-item p {
    color: #000000 !important;
}

/* Exceptions for elements that should remain white text */
.bg-gradient p, 
.bg-gradient .lead,
.bg-gradient h1, 
.bg-gradient h2, 
.bg-gradient h3,
footer p,
footer li,
footer a,
.text-white,
section#cta p,
section#cta h2,
section#cta .lead,
footer .text-white {
    color: #ffffff !important;
}

/* Darken all headings */
h1, h2, h3, h4, h5, h6 {
    color: #000000 !important;
    font-weight: 600;
}

/* Fix hero section on inner pages */
.service-hero {
    padding-top: 6rem !important;
    padding-bottom: 4rem !important;
}

/* Text in the hero section */
.hero-content h1 {
    color: #000000 !important;
}

.hero-content p {
    color: #000000 !important;
}

.card-title {
    color: #000000 !important;
    font-weight: 700;
}

/* Make service page content stand out better */
.service-page p,
.service-page li {
    color: #000000 !important;
}

/* Cards styling for better readability */
.card {
    background-color: #e8f4fc !important;
    border: none !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 30px !important;
    border-top: 4px solid var(--primary-teal) !important;
    opacity: 1 !important;
}

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

.card-body {
    background-color: #e8f4fc !important;
    padding: 25px !important;
    opacity: 1 !important;
}

.card-title {
    color: #000000 !important;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-text {
    color: #000000 !important;
    font-size: 1rem;
    line-height: 1.6;
}

/* Service page specific styling */
#service-hero .hero-content {
    background-color: #e8f4fc !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left: 5px solid var(--primary-teal);
    opacity: 1 !important;
}

#service-hero .hero-content h1 {
    color: #000000 !important;
    font-weight: 700;
}

#service-hero .hero-content p {
    color: #000000 !important;
    font-size: 1.2rem;
}

/* Improved background colors */
.bg-light {
    background-color: #eef6fc !important; /* Light blue that complements brand colors */
    opacity: 1 !important;
}

.bg-pattern {
    background-color: #f0f7fb !important; /* Light blue tint */
    background-image: none;
    opacity: 1 !important;
}

/* List item styling for better visibility */
.list-unstyled li {
    margin-bottom: 0.75rem;
    color: #000000;
}

.list-unstyled li i {
    color: var(--primary-teal);
    margin-right: 0.5rem;
}

/* Footer styling */
footer {
    background: var(--primary-blue) !important;
    padding: 5rem 0 2rem;
    opacity: 1 !important;
}

footer a {
    color: #fff;
    transition: all 0.3s ease;
}

footer a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-teal);
}

footer hr {
    background-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

footer .social-icons a {
    font-size: 1.2rem;
    margin-right: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

footer .social-icons a:hover {
    transform: translateY(-3px);
    color: var(--primary-teal-light);
}

footer ul li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.invert-logo {
    filter: brightness(0) invert(1);
}

/* Optimizations for performance */
img {
    max-width: 100%;
    height: auto;
}

/* Fix heading readability with text-shadow for better contrast on gradient backgrounds */
.bg-gradient h1, 
.bg-gradient h2, 
.bg-gradient h3, 
.bg-gradient .lead,
.bg-gradient p {
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    opacity: 1 !important;
}

/* Fix for background-clip compatibility issue */
.dropdown-item.active {
    color: #fff;
    background-color: var(--primary-blue);
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
}

/* Ensure all white text on colored backgrounds has good contrast */
.bg-primary, .bg-secondary, .bg-gradient, #cta, .rich-bg {
    color: #ffffff;
}

.bg-primary p, .bg-secondary p, .bg-gradient p, #cta p, .rich-bg p {
    color: rgba(255, 255, 255, 0.9);
}

/* Process icon styling */
.process-icon {
    background-color: var(--primary-blue);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 8px rgba(20, 93, 160, 0.25);
}

.process-steps h3 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.process-steps p {
    color: #000000;
}

/* Hero Section */
#hero {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 100px 0;
    background-color: #e8f4fc;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(20, 93, 160, 0.85) 0%,
        rgba(49, 143, 154, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    background-color: #ffffff !important;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    padding: 3rem !important;
    border-left: 5px solid var(--primary-teal);
    backdrop-filter: blur(10px);
    opacity: 1 !important;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content .lead {
    font-size: 1.25rem;
    line-height: 1.6;
}

.feature-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: var(--primary-teal);
}

/* Services Section */
.service-card {
    border-radius: 12px;
    border: none;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

/* Fix text visibility in service section */
.service-card .card-text,
.service-card .card-title,
.service-card .service-icon {
    color: #000000;
}

.service-card p {
    color: #000000 !important;
}

.bg-light p, 
.bg-light h2, 
.bg-light h3, 
.bg-light .lead {
    color: #000000;
}

.bg-light .text-muted {
    color: #555555 !important;
}

/* CTA Section */
#cta {
    background-color: var(--primary-teal);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal-light) 100%);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
}

#cta h2, #cta p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

/* Footer */
footer {
    background: var(--primary-blue) !important;
    padding: 5rem 0 2rem;
    opacity: 1 !important;
}

footer a {
    color: #fff;
    transition: all 0.3s ease;
}

footer a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-teal);
}

footer hr {
    background-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

footer .social-icons a {
    font-size: 1.2rem;
    margin-right: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

footer .social-icons a:hover {
    transform: translateY(-3px);
    color: var(--primary-teal-light);
}

footer ul li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.invert-logo {
    filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    #hero {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-content {
        padding: 2rem !important;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    #hero {
        padding: 60px 0;
    }

    .hero-content {
        padding: 1.5rem !important;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content .lead {
        font-size: 1.1rem;
    }
}

/* About Page */
.team-card, .location-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

/* Services Pages */
.process-step {
    transition: all 0.3s ease;
}

.process-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 8px rgba(20, 93, 160, 0.25);
}

.process-icon-wrapper {
    display: flex;
    justify-content: center;
}

.process-steps h3 {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-steps p {
    color: #000000;
    font-size: 1rem;
}

/* Contact Page */
.contact-info i {
    color: var(--primary-teal);
}

.form-control:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 4px rgba(32, 122, 132, 0.1);
}

/* Section background colors */
section {
    position: relative;
    padding: 80px 0;
}

section.hero {
    padding: 100px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

section.bg-light {
    background-color: #eef6fc !important; /* Light blue that complements brand colors */
    opacity: 1 !important;
}

.card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    background-color: #ffffff;
    margin-bottom: 30px;
    color: #000000;
}

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

.card-body {
    padding: 2rem;
}

.card h3, .card h4, .card h5 {
    color: var(--primary-blue);
}

.card p {
    color: #000000;
}

/* Add subtle pattern to some sections */
.bg-pattern {
    background-color: #f0f7fb !important; /* Light blue tint */
    background-image: none;
    opacity: 1 !important;
}

/* Improve contrast in all cards */
.card {
    border-color: rgba(0, 0, 0, 0.08);
}

.card-body {
    background-color: #ffffff;
}

.card-title {
    color: var(--primary-blue);
}

.card-text {
    color: #000000;
}

/* Page specific backgrounds */
#mission-vision, #team, #journey, #office-locations {
    position: relative;
}

#mission-vision .card {
    border-top: 4px solid var(--primary-teal);
}

/* Service page hero sections */
.service-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal-light) 100%);
    position: relative;
    padding: 4rem 0;
    margin-top: 76px;
    opacity: 1 !important;
}

.service-hero:before {
    display: none;
}

/* Make sure buttons have consistent styling */
.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

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

.btn-outline-secondary {
    color: var(--primary-teal);
    border-color: var(--primary-teal);
}

.btn-outline-secondary:hover {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    color: white;
}

/* Fix the list items to use brand colors */
.list-unstyled li i {
    color: var(--primary-teal);
}

/* Invert logo in dark backgrounds */
.invert-logo {
    filter: brightness(0) invert(1);
}

/* Fixing the background-clip compatibility issue and improving text contrast across all pages */
.bg-gradient h1, 
.bg-gradient h2, 
.bg-gradient h3, 
.bg-gradient .lead,
.bg-gradient p {
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    opacity: 1 !important;
}

.dropdown-item.active {
    color: #fff;
    background-color: var(--primary-blue);
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
}

/* Ensure all white text on colored backgrounds has good contrast */
.bg-primary, .bg-secondary, .bg-gradient, #cta, .rich-bg {
    color: #ffffff;
}

.bg-primary p, .bg-secondary p, .bg-gradient p, #cta p, .rich-bg p {
    color: rgba(255, 255, 255, 0.9);
}

/* Process icon styling */
.process-icon {
    background-color: var(--primary-blue);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 8px rgba(20, 93, 160, 0.25);
}

.process-steps h3 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.process-steps p {
    color: #000000;
}

/* Logo size adjustment - restored to original size */
.navbar-brand img {
    height: 50px; /* Increased from reduced size */
}

/* Improve service hero text visibility */
#service-hero h1,
#service-hero .lead,
#service-hero p {
    color: #ffffff !important;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

#service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Make all div text properly visible */
div p {
    color: #000000 !important;
}

.text-white {
    color: #ffffff !important;
}

.bg-gradient p,
.bg-gradient .lead,
.bg-gradient h1,
.bg-gradient h2,
.bg-gradient h3 {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

/* Service page specific styling */
.service-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal-light) 100%);
    position: relative;
    padding: 4rem 0;
    margin-top: 76px;
    opacity: 1 !important;
}

.service-hero h1,
.service-hero .lead,
.service-hero p {
    color: #ffffff !important;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

.service-page h3 {
    color: var(--primary-blue) !important;
    font-weight: 600;
}

.service-page p, 
.service-page li {
    color: #000000 !important;
}

/* Make benefit text more visible */
.benefit-item h3 {
    color: var(--primary-blue) !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #000000 !important;
}

/* Fix all section headers */
section h2 {
    color: var(--primary-blue) !important;
    font-weight: 700;
}

section .lead {
    color: #000000 !important;
    font-weight: 400;
}

/* Only exception for sections with gradient backgrounds */
section.bg-gradient .lead,
section.bg-gradient p,
section#cta .lead,
section#cta p {
    color: #ffffff !important;
}

/* Enhance statistics sections */
.text-center h3.text-primary {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue) !important;
    margin-bottom: 0.5rem;
}

.text-center .text-muted {
    font-weight: 500;
    font-size: 1rem;
    color: #444444 !important;
}

/* Add subtle animation to make stats more engaging */
.col-md-3:hover .text-center {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.col-md-3 .text-center {
    transition: transform 0.3s ease;
    padding: 1rem;
    border-radius: 8px;
}

/* Add visual enhancement to stats */
.stats-item .text-center {
    background-color: #f9fdff;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border-bottom: 3px solid var(--primary-teal);
    height: 100%;
    opacity: 1 !important;
}

/* Make about section more vibrant */
#about-us p {
    color: #000000 !important;
    line-height: 1.8;
}

#about-us .lead {
    color: #000000 !important;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

#about-us h2 {
    color: var(--primary-blue) !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

#about-us h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-teal);
    bottom: -12px;
    left: 0;
}

/* Adjust mission and vision sections */
#mission-vision .card {
    border-top: 4px solid var(--primary-teal);
    transition: all 0.3s ease;
    background-color: #fff;
    height: 100%;
}

#mission-vision .card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

#mission-vision .card-title {
    color: var(--primary-blue) !important;
    font-weight: 600;
}

#mission-vision .card-text {
    color: #000000 !important;
}

/* Enhanced styling for all content sections */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-blue) !important;
}

section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #000000 !important;
}

/* Make all div content areas more vibrant */
.card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.1);
    margin-bottom: 30px;
    border-top: 4px solid var(--primary-teal);
    opacity: 1 !important;
}

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

.card-body {
    padding: 25px;
}

.card-title {
    color: var(--primary-blue) !important;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-text {
    color: #000000 !important;
    font-size: 1rem;
    line-height: 1.6;
}

/* Service page enhancements */
.service-feature {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-teal);
    transition: all 0.3s ease;
}

.service-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-feature h3 {
    color: var(--primary-blue) !important;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-feature p {
    color: #000000 !important;
}

/* Add vibrant backgrounds to alternating sections */
.bg-light {
    background-color: #dfeef9 !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bg-white {
    background-color: #e8f4fc !important;
}

/* Section dividers */
.section-divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-teal) 100%) !important;
    margin: 0 auto 30px;
    opacity: 1 !important;
}

/* Process sections */
.process-step {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--primary-teal);
    opacity: 1 !important;
}

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

.process-step .step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: var(--primary-blue) !important;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-step p {
    color: #000000 !important;
}

/* Benefits section */
.benefit-item {
    padding: 25px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-teal);
    opacity: 1 !important;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-item .icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.benefit-item h3 {
    color: var(--primary-blue) !important;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #000000 !important;
    margin-bottom: 0;
}
