        :root {
            --primary: #007AFF;
            --primary-dark: #0056CC;
            --primary-light: #E6F2FF;
            --black: #0D0D0D;
            --white: #FFFFFF;
            --gray-1: #F9FAFB;
            --gray-2: #F2F2F7;
            --gray-3: #E5E5EA;
            --gray-4: #8E8E93;
            --gray-5: #3A3A3C;
            --accent: #5E5CE6;
            --radius-sm: 8px;
            --radius: 20px;
            --radius-lg: 30px;
            --radius-xl: 40px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
            --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            --ease-out: cubic-bezier(0, 0, 0.2, 1);
            --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
            --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--black);
            background-color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        section {
            padding: 8rem 0;
            position: relative;
        }

        h1, h2, h3, h4, h5 {
            line-height: 1.2;
            font-weight: 600;
            color: var(--black);
            font-family: 'Poppins', sans-serif;
        }

        h1 {
            font-size: clamp(3rem, 6vw, 4.5rem);
            margin-bottom: 2rem;
            letter-spacing: -0.03em;
        }

        h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 3rem;
            letter-spacing: -0.02em;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
        }

        p {
            color: var(--gray-4);
            margin-bottom: 2rem;
            font-size: clamp(1rem, 2vw, 1.125rem);
            line-height: 1.7;
        }

        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition-fast);
        }

        a:hover {
            color: var(--primary-dark);
        }

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

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            border-radius: 100px;
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
            text-align: center;
            cursor: pointer;
            border: none;
            outline: none;
            position: relative;
            overflow: hidden;
            will-change: transform;
            font-family: 'Inter', sans-serif;
        }

        .btn i {
            font-size: 1.1em;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
            box-shadow: var(--shadow);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-4px) scale(1.02);
            box-shadow: var(--shadow-lg);
        }

        .btn-primary:active {
            transform: translateY(0) scale(0.98);
            box-shadow: var(--shadow-sm);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background-color: var(--primary-light);
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }

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

        .text-left {
            text-align: left;
        }

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

        .bg-primary {
            background-color: var(--primary);
        }

        .bg-white {
            background-color: var(--white);
        }

        .bg-black {
            background-color: var(--black);
        }

        .bg-gray {
            background-color: var(--gray-1);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 1.5rem 0;
            transition: var(--transition);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        header.scrolled {
            padding: 1rem 0;
            box-shadow: var(--shadow-sm);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: var(--transition);
        }

        .logo:hover {
            transform: translateY(-2px);
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.25rem;
            animation: pulse 3s infinite var(--ease-in-out);
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--black);
            letter-spacing: -0.5px;
            font-family: 'Poppins', sans-serif;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        nav ul li a {
            color: var(--black);
            font-weight: 500;
            position: relative;
            font-size: 1rem;
            transition: var(--transition-fast);
            font-family: 'Inter', sans-serif;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.4s var(--ease-out);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--black);
            z-index: 1001;
            transition: var(--transition);
        }

        .mobile-menu-btn:hover {
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            min-height: 110vh;
            display: flex;
            align-items: center;
            padding-top: 8rem;
            position: relative;
            overflow: hidden;
            background: linear-gradient(to bottom, var(--white) 0%, var(--gray-1) 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 30%, rgba(0, 107, 255, 0.08) 0%, transparent 50%);
            z-index: -1;
        }

        .hero-content {
            max-width: 600px;
            animation: fadeInUp 1s var(--ease-out) 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: clamp(3rem, 6vw, 4.5rem);
            margin-bottom: 2rem;
            line-height: 1.1;
        }

        .hero p {
            font-size: clamp(1.125rem, 2vw, 1.375rem);
            margin-bottom: 3rem;
            color: var(--gray-4);
            animation-delay: 0.4s;
        }

        .hero-tagline {
            font-size: 0.25rem;
            color: var(--primary);
            font-weight: 500;
            font-family: 'Poppins', sans-serif;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            animation-delay: 0.6s;
        }

        .hero-image {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 50%;
            max-width: 700px;
            animation: fadeIn 1.2s var(--ease-out) 0.4s both;
            filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.16));
        }

        .hero-image img {
            border-radius: var(--radius-xl);
            transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
            transition: transform 1s var(--ease-out);
        }

        .hero-image:hover img {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }

        /* Floating Shapes Animation */
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            filter: blur(80px);
            z-index: -1;
            animation-timing-function: var(--ease-in-out);
            animation-iteration-count: infinite;
        }

        .shape-1 {
            width: 600px;
            height: 600px;
            background: var(--primary);
            top: -200px;
            right: -200px;
            animation: float 20s ease-in-out infinite;
        }

        .shape-2 {
            width: 400px;
            height: 400px;
            background: var(--primary-dark);
            bottom: -100px;
            left: -100px;
            animation: float 18s ease-in-out infinite reverse;
        }

        .shape-3 {
            width: 300px;
            height: 300px;
            background: var(--primary);
            top: 40%;
            left: 30%;
            animation: float 15s ease-in-out infinite 2s;
        }

        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, 40px) rotate(5deg);
            }
            66% {
                transform: translate(-20px, 30px) rotate(-5deg);
            }
            100% {
                transform: translate(0, 0) rotate(0deg);
            }
        }

        /* About Section */
        .about {
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 70%, rgba(0, 107, 255, 0.05) 0%, transparent 50%);
            z-index: -1;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .section-header {
            max-width: 700px;
            margin: 0 auto 4rem;
            text-align: center;
        }

        .section-subtitle {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.875rem;
            display: inline-block;
            position: relative;
            padding-left: 2rem;
            font-family: 'Inter', sans-serif;
        }

        .section-subtitle::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 1.5rem;
            height: 2px;
            background-color: var(--primary);
            transform: translateY(-50%);
        }

        .about-content h2 {
            text-align: left;
        }

        .about-points {
            margin-top: 3rem;
        }

        .about-point {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding: 2rem;
            border-radius: var(--radius-lg);
            background-color: var(--white);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }

        .about-point::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary) 0%, var(--primary-dark) 100%);
            transition: var(--transition);
        }

        .about-point:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .about-point:hover::before {
            width: 6px;
        }

        .about-point-icon {
            min-width: 60px;
            height: 60px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .about-point:hover .about-point-icon {
            transform: rotate(10deg) scale(1.1);
        }

        .about-image {
            position: relative;
            height: 100%;
            perspective: 1000px;
        }

        .about-image img {
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            transform: perspective(1000px) rotateY(-15deg);
            transition: transform 0.7s var(--ease-out), box-shadow 0.7s var(--ease-out);
            backface-visibility: hidden;
        }

        .about-image:hover img {
            transform: perspective(1000px) rotateY(0deg);
            box-shadow: var(--shadow-lg);
        }

        /* Mission Vision Section */
        .mission-vision {
            background-color: var(--gray-1);
            position: relative;
            overflow: hidden;
        }

        .mission-vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .mission-card, .vision-card {
            background-color: var(--white);
            border-radius: var(--radius-lg);
            padding: 3rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

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

        .mission-card::before, .vision-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
        }

        .mission-card h3, .vision-card h3 {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .mission-card h3 i, .vision-card h3 i {
            color: var(--primary);
            font-size: 1.75rem;
        }

        /* Products Section */
        .products {
            position: relative;
            overflow: hidden;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .product-card {
            background-color: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }

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

        .product-image {
            height: 200px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s var(--ease-out);
        }

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

        .product-content {
            padding: 2rem;
        }

        .product-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent) 0%, #7A1BCC 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 100px;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 0.875rem;
        }

        .product-card .btn {
            margin-top: 1rem;
            width: 100%;
        }

        /* Footer */
        footer {
            background-color: var(--black);
            color: var(--white);
            padding: 6rem 0 3rem;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
        }

        footer h3,
        footer a {
            color: var(--white);
        }

        footer p {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 4rem;
            margin-bottom: 5rem;
        }

        .footer-about {
            max-width: 350px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .footer-logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.25rem;
        }

        .footer-about p {
            margin-bottom: 2rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }

        .social-link:hover {
            background-color: var(--primary);
            transform: translateY(-5px) scale(1.1);
        }

        .footer-links h3 {
            margin-bottom: 2rem;
            font-size: 1.25rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 3px;
        }

        .footer-links ul {
            list-style: none;
        }

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

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition-fast);
            display: inline-block;
            position: relative;
        }

        .footer-links ul li a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--white);
            transition: width 0.3s var(--ease-out);
        }

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

        .footer-links ul li a:hover::after {
            width: 100%;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 3rem;
            text-align: center;
            font-size: 0.875rem;
        }

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

        /* Responsive */
        @media (max-width: 1024px) {
            .about-container, .mission-vision-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-image {
                order: -1;
                max-width: 600px;
                margin: 0 auto;
            }

            .hero-image {
                width: 45%;
            }

            section {
                padding: 6rem 0;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }

            nav#mainNav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-content {
                max-width: 100%;
                text-align: center;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image {
                position: relative;
                width: 100%;
                max-width: 500px;
                margin: 4rem auto 0;
                top: auto;
                right: auto;
                transform: none;
            }

            .about-content h2 {
                text-align: center;
            }

            .footer-grid {
                gap: 3rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 4rem 0;
            }

            .hero {
                padding-top: 6rem;
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

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

            .about-point {
                flex-direction: column;
                gap: 1.5rem;
                padding: 1.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-about {
                max-width: 100%;
            }

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

        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Enhanced Mobile Menu */
        .mobile-menu-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 900;
            opacity: 0;
            transition: opacity 0.4s var(--ease-out);
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-menu-container.show {
            opacity: 1;
            pointer-events: all;
        }

        .mobile-menu-content {
            background-color: var(--white);
            width: 90%;
            max-width: 400px;
            border-radius: var(--radius-xl);
            padding: 3rem 2rem;
            transform: translateY(20px) scale(0.95);
            opacity: 0;
            transition: all 0.5s var(--ease-elastic);
            box-shadow: var(--shadow-lg);
        }

        .mobile-menu-container.show .mobile-menu-content {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        .mobile-menu-nav ul {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            list-style: none;
        }

        .mobile-menu-nav ul li a {
            display: block;
            padding: 1.25rem 1.5rem;
            border-radius: var(--radius);
            transition: var(--transition-fast);
            color: var(--black);
            font-weight: 500;
            font-size: 1.125rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .mobile-menu-nav ul li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.1), transparent);
            transition: left 0.6s;
        }

        .mobile-menu-nav ul li a:hover::before {
            left: 100%;
        }

        .mobile-menu-nav ul li a:hover {
            background-color: var(--primary-light);
            color: var(--primary);
            transform: translateX(5px);
        }

        .mobile-menu-nav .btn {
            margin-top: 1.5rem;
            width: 100%;
        }

        /* Enhanced 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);
            }
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Enhanced Button Animations */
        .btn {
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        /* Enhanced Card Animations */
        .product-card, .mission-card, .vision-card {
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .product-card:hover, .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px) rotateX(5deg);
        }

        /* Utility Classes */
        .mt-1 {
            margin-top: 0.5rem;
        }

        .mt-2 {
            margin-top: 1rem;
        }

        .mt-3 {
            margin-top: 1.5rem;
        }

        .mt-4 {
            margin-top: 2rem;
        }

        .mt-5 {
            margin-top: 3rem;
        }

        .mb-1 {
            margin-bottom: 0.5rem;
        }

        .mb-2 {
            margin-bottom: 1rem;
        }

        .mb-3 {
            margin-bottom: 1.5rem;
        }

        .mb-4 {
            margin-bottom: 2rem;
        }

        .mb-5 {
            margin-bottom: 3rem;
        }

        .py-5 {
            padding-top: 3rem;
            padding-bottom: 3rem;
        }

        .px-3 {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
.footer-bottom {
  display: flex;
  flex-direction: column; /* stack items vertically */
  align-items: center;    /* center horizontally */
  justify-content: center;
  text-align: center;
  padding: 20px 0;
}

.footer-logo {
  width: 30%;
  height: auto; /* keeps aspect ratio */
  margin-bottom: 10px;
}