/* CSS Variables */
:root {
    --primary-pink: #e91e63;
    --primary-purple: #9c27b0;
    --primary-gradient: linear-gradient(90deg, #FFAA6F 0%, #F04988 15%, #8A64D4 45%, #4790CC 75%, #56BCAC 90%);
    --secondary-gradient: linear-gradient(145deg, #e91e63 0%, #9c27b0 50%, #4a90e2 100%);
    --footer-gradient: linear-gradient(130deg, #3DA7D9 0%, #8A5FD4 50%, #D74FA2 100%);
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --black: #212529;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-light: #adb5bd;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --shadow-xl: 0 1.25rem 4rem rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; */

    font-family: Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}


/* Warning Bar */
.warning-bar {
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1100;
}

/* Modern Navigation */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* padding: 1rem 0; */
    top: 40px;
    transition: var(--transition);
}

.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    top: 39px;
}

.brand-logo {
    height: 65px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.navbar-buttons .btn {
    margin: 0 0.25rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

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

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

/* Button Styles */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-white {
    border-color: white;
    color: white;
    background: transparent;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-pink);
    transform: translateY(-2px);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(233, 30, 99, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    }
}




/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: white;
}

.story-content {
    max-width: 100%;
}

.story-highlight {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary-pink);
    border-right: 5px solid var(--primary-pink);
    margin: 2rem 0;
}

.our-story img {
    max-width: 75%;
    max-height: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}


/* for take full width of image */

/* .our-story img {
            width: 100%;
            height: 65vh;
            border-radius: 20px;
            object-fit: cover;
            object-position: center;
            box-shadow: var(--shadow-xl);
        } */


/* Mission Vision Values */
.mission-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.mission-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 2rem;
    transition: var(--transition);
}

.mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: white;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-gradient);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    font-weight: 700;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-role {
    color: var(--primary-pink);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: var(--primary-gradient);
    background: linear-gradient(90deg, #2a4840, #1c4956, #522c60, #732b3c, #724f38);


    color: white;
    text-align: center;
}

.stat-card {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary-gradient);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 45%;
    position: relative;
}

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

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

.timeline-year {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-gradient);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: white;
}

.value-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 2px solid rgba(0, 0, 0, 0.253);
}

.value-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-pink);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    /* background: var(--primary-gradient); */
    background: linear-gradient(90deg, #2a4840, #1c4956, #522c60, #732b3c, #724f38);

    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-white {
    background: white;
    color: var(--primary-pink);
    border: none;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-pink);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline::before {
        display: none;
    }

    .timeline-content {
        width: 100% !important;
        margin: 0 !important;
    }

    .timeline-year {
        position: static;
        transform: none;
        margin: 0 auto 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .mission-card,
    .story-highlight {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .modern-navbar {
        margin-top: 1.3rem;
    }

}

/* Utility Classes */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--primary-gradient) !important;
}

.section-tag {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
}





/* Partners Section Styles Start Here */

.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Animated scroll container */
.marquee-content {
    display: flex;
    gap: 60px;
    animation: scrollLeft 30s linear infinite;
    width: max-content;
    align-items: center;
}

/* Partner logo styles */
.partner-logo {
    height: 119px;
    /* opacity: 0.7; */
    transition: opacity 0.3s ease;
}

.partners-section {
    background: url(/images/PARTNERBG.png);

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 5px;
    border-radius: 299px;
    overflow: hidden;
}

.partner-logo:hover {
    opacity: 1;
}

/* Marquee animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Partners Responsive Styles */
@media (max-width: 768px) {
    .partners-section {
        padding: 50px 0;
        border-radius: 0px;

    }

    .partner-logo {
        height: 50px;
    }

    .marquee-content {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .partner-logo {
        height: 40px;
    }

    .marquee-content {
        gap: 20px;
    }
}

/* Partners Section Styles End Here */



/* Footer */
.footer-section {
    /* background: var(--footer-gradient); */
    color: white;
    position: relative;
    border-radius: 40px 40px 0 0;
    margin-top: 100px;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--footer-gradient);
}



.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--footer-gradient);
    background: url('/images/footer_bg.png') center / cover no-repeat;

}

.footer-section .container-fluid {
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 2rem;
    color: white;
}

.brand-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: white;
    margin-bottom: 2rem;
}

.footer-robot {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

.brand-info {
    flex: 1;
}

.footer-logo {
    height: 65px;
    width: auto;
    /* filter: brightness(0) invert(1); */
    margin-bottom: 1rem;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.terms-info p {
    color: rgba(255, 255, 255);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
}

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid rgb(222, 41, 238);
    border-radius: 12px;
    padding: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(219, 50, 253, 0.3);
}

.social-links a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 3rem 0 2rem;
}

.footer-bottom {
    color: rgba(255, 255, 255);
}




/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.font-size-larger {
    font-size: larger;
}

.gradient-border {

    background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #FFAA6F 0%, #F04988 15%, #8A64D4 45%, #4790CC 75%, #56BCAC 90%) border-box;

    border-radius: 20px;
    border: 3px solid transparent;
}

.heading-box-shadow {
    box-shadow: rgba(198 26 239 / 35%) 0px 5px 15px;
    border-radius: 37px;
}

.about-us-hero {
    min-height: 100vh;
    background: url("/images/About_us_bg.jpg") no-repeat center center/cover;

    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

/* Black overlay */
.about-us-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /* 55% black overlay */
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.5rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hero Content Container */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 2rem 0;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: end;
    height: auto;

    position: relative;
}

/* Floating Contact Cards */
.floating-cards {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-top: 10rem;

}

.about-us-card {
    background: rgba(255, 255, 255, 0.15);
    /* backdrop-filter: blur(20px); */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem 0;
    color: white;
    transition: var(--transition);
    position: relative;
    animation: floatCard 6s ease-in-out infinite;
}

.about-us-card:nth-child(2) {
    animation-delay: 2s;
    margin-left: 2rem;
}

.about-us-card:nth-child(3) {
    animation-delay: 4s;
    margin-left: 4rem;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.about-us-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.about-us-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-lg);
}

.about-us-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.about-us-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Hero Content Styling */
.hero-content {
    color: white;
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #de32ee, #e9ac29, #40badf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #FFAA6F;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.8s both;
}


/* Quick Contact Floating Button */
.quick-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    animation: pulse 2s infinite;
    cursor: pointer;
    transition: var(--transition);
}

.quick-contact:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(233, 30, 99, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .about-us-hero {
        min-height: auto;
        padding: 100px 0 80px;
    }

    .hero-left,
    .hero-right {
        height: auto;
    }

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

    .floating-cards {
        margin-top: 3rem;
    }

    .about-us-card:nth-child(2),
    .about-us-card:nth-child(3) {
        margin-left: 0;
    }

    #navbarContent {
        background: white;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .about-us-card {
        padding: 1.5rem;
    }
}

.font-size-larger {
    font-size: larger;
}