:root {
    --primary-color: #6c63ff;
    --secondary-color: #f50057;
    --dark-color: #121212;
    --darker-color: #0a0a0a;
    --light-color: #f4f4f4;
    --gray-color: #333333;
    --success-color: #5cb85c;
    --error-color: #d9534f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: var(--dark-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    padding-top: 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    padding-right: 30px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text h1 span {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #aaa;
}

.hero-img {
    flex: 1;
    text-align: center;
}

.hero-img img {
    max-width: 80%;
    animation: float 3s ease-in-out infinite;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #5a52e0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.btn-secondary {
    background: var(--secondary-color);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: #d80048;
    box-shadow: 0 10px 20px rgba(245, 0, 87, 0.2);
}

/* About Section */
.about {
    padding: 50px 0;
    background-color: var(--darker-color);
}

.section-title {
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: #fff;
    font-weight: 700;
}

/* .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--primary-color);
} */

.section-title p {
    color: #aaa;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-img {
    flex: 1;
    margin-right: 40px;
}

.about-img img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.about-text p {
    margin-bottom: 20px;
    color: #aaa;
}

.skills {
    margin-top: 30px;
}

.skill-item {
    margin-bottom: 15px;
}

.skill-name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    color: #ddd;
}

.skill-bar {
    height: 10px;
    background: #333;
    border-radius: 5px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 5px;
}

/* Journey Section */
.journey {
    padding: 100px 0;
    background-color: var(--dark-color);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}



.timeline-item {
    padding: 10px 40px;
    position: relative;
  
    box-sizing: border-box;
}


.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::after {
    right: -12px;
}

.right::after {
    left: -12px;
}

.timeline-content {
    padding: 20px;
    background-color: var(--gray-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content .date {
    color: #999;
    font-style: italic;
    margin-bottom: 10px;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background-color: var(--darker-color);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--gray-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.project-img {
    height: 200px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    margin-bottom: 10px;
    color: #fff;
}

.project-info p {
    color: #aaa;
    margin-bottom: 15px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.project-tag {
    background: #222;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 10px;
    margin-bottom: 10px;
    color: #ddd;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--dark-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    text-align: center;
    padding: 40px;
    background: var(--gray-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-color);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #aaa;
}

.testimonial-author {
    font-weight: 600;
    color: #fff;
}

.testimonial-position {
    color: #999;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--darker-color);
}

.contact-content {
    display: flex;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    margin-right: 40px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-info p {
    margin-bottom: 30px;
    color: #aaa;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-detail i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.social-links {
    display: flex;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.contact-form {
    flex: 1;
    background: var(--gray-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    background-color: #222;
    color: #ddd;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #2a2a2a;
}

/* Footer */
footer {
    background: var(--darker-color);
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: #fff;
}

.footer-section p {
    margin-bottom: 20px;
    color: #aaa;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #aaa;
}

/* Enhanced Responsive Design */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .about-content, .contact-content {
        flex-direction: column;
    }

    .about-img, .contact-info {
        margin-right: 0;
        margin-bottom: 40px;
    }
    
    .navbar-nav {
        text-align: center;
        padding-top: 1rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .about-highlights {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        margin-top: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}
.card-text{
    font-size: 0.9rem;
}

/* Additional modern enhancements */
.navbar-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Timeline responsive styles */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--dark-color);
}

.timeline-item:nth-child(odd)::before {
    right: -11px;
}

.timeline-item:nth-child(even)::before {
    left: -11px;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100% !important;
        left: 0 !important;
        padding-left: 4rem !important;
        padding-right: 1rem !important;
    }
    
    .timeline-item::before {
        left: 20px !important;
    }
    
    .hero-content h1 {
        font-size: clamp(2.5rem, 6vw, 4rem) !important;
    }
    
    .venture-card {
        margin-bottom: 2rem;
    }
    
    .contact-info-card {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .stats-row .col-md-4 {
        margin-bottom: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .venture-header {
        padding: 2rem !important;
    }
    
    .venture-content {
        padding: 2rem !important;
    }
    
    .about-highlights .highlight-card {
        margin-bottom: 1.5rem;
    }
}

/* Hover effects for better interactivity */
.highlight-card {
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Form styling improvements */
.form-label {
    color: #ddd;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.3s ease;
}

a, button, .btn {
    transition: all 0.3s ease !important;
}

/* Loading state */
body {
    transition: opacity 0.5s ease-in-out;
}

/* Clean Hero Section Styles */
.hero-section-clean {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
    padding: 80px 0 50px;
}

/* Professional Header Styles */
.professional-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-name {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title-professional {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.location-badge {
    background: rgba(108, 99, 255, 0.1);
    color: #ddd;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(108, 99, 255, 0.2);
    display: inline-block;
}

/* Content Sections */
.section-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.mission-section {
    margin-bottom: 3rem;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ddd;
    margin: 0;
}

/* Achievements Grid */
.achievements-section {
    margin-bottom: 3rem;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(108, 99, 255, 0.05);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: white;
}

.achievement-content h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.achievement-content p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Expertise Tags */
.expertise-section {
    margin-bottom: 3rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.expertise-tag {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(108, 99, 255, 0.2);
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    background: rgba(108, 99, 255, 0.2);
    transform: translateY(-2px);
}

/* Clean Buttons */
.cta-section {
    margin-top: 3rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-primary-clean {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary-clean:hover {
    background: #5a52e0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
    color: white;
}

.btn-linkedin-clean {
    background: #0077b5;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-linkedin-clean:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3);
    color: white;
}

.btn-tofler-clean {
    background: #28a745;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-tofler-clean:hover {
    background: #1e7e34;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
    color: white;
}

.btn-outline-clean {
    background: transparent;
    color: #ddd;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.btn-outline-clean:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Profile Sidebar */
.profile-sidebar {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.profile-section {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-image-wrapper {
    position: relative;
    display: inline-block;
}

.profile-image-clean {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    object-fit: cover;
    transition: all 0.3s ease;
}

.profile-image-clean:hover {
    transform: scale(1.05);
    border-color: var(--secondary-color);
}

.profile-status {
    margin-top: 1rem;
    color: #4ade80;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Quick Stats */
.quick-stats {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-title,
.focus-title,
.contact-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.stat-item-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stat-number-clean {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label-clean {
    color: #aaa;
    font-size: 0.85rem;
}

/* Current Focus */
.current-focus {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.focus-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.focus-icon {
    width: 40px;
    height: 40px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.focus-content strong {
    color: #fff;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.3rem;
}

.focus-content p {
    color: #aaa;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Quick Contact */
.contact-quick {
    margin-bottom: 0;
}

.contact-item-quick {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.contact-item-quick i {
    width: 20px;
    color: var(--primary-color);
    margin-right: 0.8rem;
}

.contact-item-quick a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item-quick a:hover {
    color: var(--primary-color);
}

/* Responsive Design for Clean Hero */
@media (max-width: 992px) {
    .hero-name {
        font-size: 2.8rem;
        text-align: center;
    }
    
    .hero-title-professional {
        text-align: center;
    }
    
    .location-badge {
        display: block;
        text-align: center;
        margin: 1rem auto 0;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-sidebar {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-name {
        font-size: 2.4rem;
    }
    
    .hero-title-professional {
        font-size: 1.3rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
    
    .achievement-item {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
    }
    
    .achievement-icon {
        margin: 0 auto 1rem;
    }
    
    .expertise-tags {
        justify-content: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* Additional Mobile Responsiveness */
@media (max-width: 480px) {
    .hero-name {
        font-size: 2rem;
    }
    
    .hero-title-professional {
        font-size: 1.1rem;
    }
    
    .section-heading {
        font-size: 1.2rem;
    }
    
    .achievement-item {
        padding: 1rem;
    }
    
    .achievement-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .expertise-tag {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .profile-sidebar {
        padding: 1.5rem;
    }
    
    .profile-image-clean {
        width: 120px;
        height: 120px;
    }
    
    .stat-number-clean {
        font-size: 1.3rem;
    }
    
    .focus-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Print Styles for SEO */
@media print {
    .navbar, .scroll-indicator, .floating-elements {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-section-clean {
        background: white;
    }
}

