@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');
        
:root {
    --primary: #2563eb;      /* Main blue */
    --primary-dark: #1d4ed8; /* Darker blue */
    --primary-light: #3b82f6; /* Lighter blue */
    --secondary: #ff9800;    /* Main amber/orange */
    --secondary-dark: #ed8c02; /* Darker amber */
    --secondary-light: #ffb74d; /* Lighter amber */
    --light: #1e293b;        /* Dark blue-gray for "light" sections */
    --dark: #0f172a;         /* Darker blue for dark sections */
    --accent: #10b981;       /* Green accent */
    --text-light: #f8fafc;   /* Light text */
    --text-muted: #ccd1da;   /* Muted text */
    --card-bg: #1e293b;      /* Card background */
    --card-darker: #0f172a;  /* Darker card background */
    --section-bg: #0f172a;   /* Section background */
    --border-color: #334155; /* Border color */
    --border-light: #475569; /* Lighter border color */
    --overlay-dark: rgba(15, 23, 42, 0.1); /* Dark overlay */
    --overlay-light: rgba(37, 99, 235, 0.2); /* Light overlay */
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    background-color: var(--dark);
    color: var(--text-light);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .nav-link, .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    background-color: transparent;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: var(--dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-light) !important;
}

.navbar-brand span {
    color: var(--secondary);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-light);
    padding: 0.75rem 1rem;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--secondary);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Mobile navbar styles */
@media (max-width: 991.98px) {
    .navbar-brand {
        font-size: 1rem;
    }
    .navbar-collapse {
        background: rgba(18, 24, 38, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 10px;
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-collapse .navbar-nav {
        padding: 0.5rem 0;
    }
    
    .navbar-collapse .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: 5px;
    }
    
    .navbar-collapse .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .navbar-collapse .btn {
        margin: 0.5rem 1rem !important;
        width: calc(100% - 2rem);
        text-align: center;
    }
}

.nav-link {
    margin: 0 0rem;
    padding: 0.5rem 0.7rem !important;
    transition: all 0.3s ease;
    color: var(--text-light) !important;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: all 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

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

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
}

.btn-secondary:hover {
    background-color: #e68a00;
    border-color: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
}

/* Hero Section */
.process-hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1620 0%, #1f2d40 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.process-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(13, 110, 253, 0.1) 0%, transparent 60%);
    z-index: 1;
}

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

.process-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(13, 110, 253, 0.15);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 1.5rem;
    position: relative;
}

.process-badge span {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 8px;
}

.badge-pulse {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    position: relative;
}

.badge-pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.8);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text);
    position: relative;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text);
    max-width: 600px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(13, 110, 253, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.stat-icon i {
    color: white;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

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

.hero-image-container {
    position: relative;
    padding-top: 20px;
}

.hero-image-main {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.hero-image-accent {
    position: absolute;
    top: 0;
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--background);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transform: translateY(-40%);
}

.accent-icon {
    color: white;
    font-size: 2rem;
}

.floating-card {
    position: absolute;
    background: rgba(38, 38, 38, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    max-width: 220px;
}

.floating-card i {
    font-size: 1.5rem;
    margin-right: 12px;
    color: var(--secondary);
}

.floating-card span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.card-1 {
    left: -40px;
    top: 30%;
    animation: float 5s ease-in-out infinite;
}

.card-2 {
    right: -30px;
    bottom: 20%;
    animation: float 5s ease-in-out infinite 1s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.hero-scroll-indicator a:hover {
    color: white;
}

.scroll-icon {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-icon i {
    font-size: 1rem;
}

/* Process Timeline */
.process-timeline {
    padding: 100px 0;
    position: relative;
    background-color: var(--background);
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    transform: translateX(-50%);
    border-radius: 4px;
    opacity: 0.7;
}

.timeline-tag {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
    color: var(--text);
}

.section-subheading {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(13, 110, 253, 0.2);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -15px;
    width: 30px;
    height: 30px;
    background-color: var(--card-bg);
    transform: rotate(45deg);
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-color: var(--card-bg);
    transform: rotate(45deg);
    box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-point {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 5px rgba(13, 110, 253, 0.2), 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.timeline-point i {
    color: white;
    font-size: 1.5rem;
}

.timeline-step {
    position: absolute;
    top: 25px;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 3; /* Ensure step number appears above the icon */
}

.timeline-item:nth-child(odd) .timeline-step {
    left: 45%;
    transform: translateX(-150%);
}

.timeline-item:nth-child(even) .timeline-step {
    right: 45%;
    transform: translateX(150%);
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.timeline-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.timeline-icon-row {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.process-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    background-color: rgba(13, 110, 253, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.process-icon:hover i {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.4);
}

.process-icon span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--dark-bg);
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
    z-index: 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: var(--card-bg);
}

.accordion-button {
    padding: 20px 30px;
    font-weight: 600;
    color: var(--primary);
    background-color: var(--card-bg);
    box-shadow: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-button:not(.collapsed) {
    color: white;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
    filter: invert(0.8);
}

.accordion-body {
    padding: 20px 30px;
    color: var(--text-light);
    background-color: var(--card-bg);
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    color: white;
    padding: 80px 0 30px;
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translateY(-5px);
    color: white;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--accent);
    padding-left: 5px;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.copyright {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .floating-card {
        max-width: 200px;
    }
    
    .card-1 {
        left: -20px;
    }
    
    .card-2 {
        right: -10px;
    }
}

@media (max-width: 992px) {
    .process-hero {
        padding-top: 130px;
        padding-bottom: 100px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        margin-top: 50px;
        display: flex;
        justify-content: center;
    }
    
    .hero-image-container {
        max-width: 450px;
    }
    
    .floating-card {
        position: relative;
        margin: 1rem 0;
        max-width: none;
    }
    
    .card-1 {
        left: 0;
        top: unset;
        bottom: calc(100% - 30px);
    }
    
    .card-2 {
        right: 0;
        bottom: -60px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .process-hero {
        padding-top: 120px;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex-basis: calc(50% - 1rem);
    }
}

@media (max-width: 576px) {
    .hero-stats {
        flex-direction: column;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .hero-image-container {
        max-width: 100%;
    }
    
    .floating-card {
        padding: 10px;
    }
    
    .floating-card i {
        font-size: 1.2rem;
    }
    
    .floating-card span {
        font-size: 0.8rem;
    }
}

/* Timeline Responsive Styles */
@media (max-width: 992px) {
    .timeline-content {
        width: 65%;
    }
    
    .timeline-item:nth-child(odd) .timeline-step {
        left: 30%;
    }
    
    .timeline-item:nth-child(even) .timeline-step {
        right: 30%;
    }
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -15px;
        right: auto;
        top: 25px;
        box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.2);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        border-right: none;
        border-top: none;
    }
    
    .timeline-point {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-step {
        left: 30px !important;
        right: auto !important;
        transform: translateX(-150%) !important;
    }
    
    .timeline-icon-row {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .process-icon {
        flex-basis: calc(50% - 10px);
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-title {
        font-size: 1.25rem;
    }
    
    .timeline-text {
        font-size: 0.9rem;
    }
    
    .timeline-icon-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .process-icon {
        flex-basis: 100%;
        margin-bottom: 15px;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .section-subheading {
        font-size: 1rem;
    }
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.active {
    opacity: 1;
}