  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* ----- HEADER (LIGHT GLASS, SMOOTH) ----- */
        header {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 12px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(211, 16, 39, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            transition: all 0.3s ease;
        }

        header:hover {
            background: rgba(255, 255, 255, 0.85);
            box-shadow: 0 8px 30px rgba(211, 16, 39, 0.08);
        }

        .logo img {
            max-height: 48px;
            width: auto;
            filter: drop-shadow(0 0 5px rgba(211,16,39,0.2));
            transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2), filter 0.3s;
        }
        .logo img:hover {
            transform: scale(1.03) translateY(-2px);
            filter: drop-shadow(0 10px 18px rgba(211,16,39,0.3));
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.2s ease, transform 0.2s;
            letter-spacing: 0.3px;
            position: relative;
            display: inline-block;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
        }

        nav ul li a:hover {
            color: var(--primary-red);
            transform: translateY(-1px);
        }
        nav ul li a:hover::after {
            width: 100%;
        }
  @media (max-width: 900px) {
            .dynamic-word { font-size: 3.2rem; }
            .static-title { font-size: 1.5rem; }
            .cursor-blink { height: 3.2rem; }
            .logo-img { max-width: 280px; }
        }

        @media (max-width: 700px) {
            nav ul { display: none; }
            .btn-projects { padding: 8px 20px; }
            .dynamic-word { font-size: 2.4rem; }
            .static-title { font-size: 1.1rem; }
            .cursor-blink { height: 2.4rem; }
            .description { font-size: 1rem; }
            .btn { padding: 12px 28px; }
        } .btn-projects {
            background: var(--gradient);
            color: white;
            padding: 10px 28px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2);
            box-shadow: 0 8px 18px rgba(211,16,39,0.25);
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-projects:hover {
            transform: scale(1.05) translateY(-3px);
            box-shadow: 0 16px 28px rgba(211,16,39,0.4);
        }
      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        :root {
            --primary-red: #d31027;
            --secondary-red: #ea384d;
            --dark-red: #b00c1e;
            --gradient: linear-gradient(135deg, #d31027 0%, #b00c1e 100%);
            --light-bg: #f8fafc;
            --pure-white: #ffffff;
            --text-dark: #1e293b;
            --text-soft: #475569;
            --shadow-card: 0 30px 50px -25px rgba(211, 16, 39, 0.2), 0 15px 30px -15px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 45px 65px -25px rgba(180, 20, 30, 0.35), 0 25px 40px -20px rgba(0, 0, 0, 0.15);
            --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        body {
            background-color: var(--light-bg);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 3rem 1.5rem;
            position: relative;
            overflow-x: hidden;
        }

        /* floating background elements */
        .bg-bubble {
            position: fixed;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(211, 16, 39, 0.04) 0%, transparent 70%);
            top: -200px;
            right: -100px;
            z-index: -1;
            animation: floatAround 20s infinite alternate ease-in-out;
        }

        .bg-bubble-2 {
            position: fixed;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(211, 16, 39, 0.03) 0%, transparent 70%);
            bottom: -250px;
            left: -150px;
            z-index: -1;
            animation: floatAround2 25s infinite alternate ease-in-out;
        }

        @keyframes floatAround {
            0% {
                transform: translate(0, 0) scale(1);
            }

            100% {
                transform: translate(80px, 60px) scale(1.2);
            }
        }

        @keyframes floatAround2 {
            0% {
                transform: translate(0, 0) scale(1);
            }

            100% {
                transform: translate(-100px, -80px) scale(1.3);
            }
        }

        /* main container */
        .about-page {
            max-width: 1300px;
            width: 100%;
            
        }

        /* ===== COMPANY SECTION ===== */
        .company-section {
            margin-bottom: 7rem;
            animation: fadeUp 1s ease forwards;
        }

        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(40px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .company-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .company-header h2 {
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            text-shadow: 0 10px 25px rgba(211, 16, 39, 0.15);
        }

        .company-header p {
            font-size: 1.2rem;
            color: var(--text-soft);
            max-width: 750px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .company-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 3rem;
            background: var(--pure-white);
            border-radius: 60px;
            padding: 3rem 3.5rem;
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.4s;
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .company-content:hover {
            box-shadow: var(--shadow-hover);
        }

        .company-text {
            flex: 2;
            min-width: 300px;
        }

        .company-text h3 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .company-text h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--gradient);
            border-radius: 4px;
            transition: width 0.4s;
        }

        .company-content:hover .company-text h3::after {
            width: 120px;
        }

        .company-text p {
            color: var(--text-soft);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .company-stats {
            display: flex;
            gap: 2.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-soft);
            letter-spacing: 0.5px;
        }

        .company-image {
            flex: 1;
            min-width: 250px;
            display: flex;
            justify-content: center;
        }

        .company-image img {
            max-width: 100%;
            width: 280px;
            border-radius: 40px;
            box-shadow: 0 30px 40px -20px rgba(211, 16, 39, 0.4);
            transition: transform 0.5s var(--transition-bounce);
        }

        .company-content:hover .company-image img {
            transform: scale(1.03) rotate(2deg);
        }

        /* ===== LEADER SECTION (FOUNDER & CO-FOUNDER) ===== */
        .leader-section {
            margin-top: 4rem;
            animation: fadeUp 1s 0.2s ease forwards;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .leader-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .leader-header h2 {
            font-size: 3.2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
        }

        .leader-header h2 span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .leader-header p {
            font-size: 1.2rem;
            color: var(--text-soft);
            max-width: 600px;
            margin: 0 auto;
        }

        .leader-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
        }

        /* leader card */
        .leader-card {
            background: var(--pure-white);
            width: 350px;
            border-radius: 50px 50px 40px 40px;
            padding: 2.5rem 2rem 2.8rem;
            position: relative;
            box-shadow: var(--shadow-card);
            transition: all 0.5s var(--transition-bounce);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.8);
            animation: cardPop 0.7s var(--transition-bounce) forwards;
            opacity: 0;
            transform: scale(0.95);
        }

        .leader-card:nth-child(1) {
            animation-delay: 0.3s;
        }

        .leader-card:nth-child(2) {
            animation-delay: 0.5s;
        }

        @keyframes cardPop {
            0% {
                opacity: 0;
                transform: scale(0.9) translateY(30px);
            }

            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .leader-card:hover {
            transform: translateY(-20px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border-color: rgba(211, 16, 39, 0.25);
        }

        .leader-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 52px;
            padding: 2px;
            background: var(--gradient);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .leader-card:hover::before {
            opacity: 0.7;
        }

        .leader-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: linear-gradient(145deg, #f0f4fa, #ffffff);
            padding: 8px;
            margin-bottom: 1.8rem;
            box-shadow: 0 20px 30px -12px rgba(211, 16, 39, 0.3), 0 0 0 3px rgba(255, 255, 255, 0.9);
            transition: all 0.5s var(--transition-bounce);
        }

        .leader-card:hover .leader-image {
            transform: scale(1.08) rotate(5deg);
            box-shadow: 0 30px 40px -15px #d31027, 0 0 0 4px rgba(211, 16, 39, 0.3);
        }

        .leader-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid white;
        }

        .leader-name {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.2;
            margin-bottom: 0.2rem;
        }

        .leader-role {
            font-size: 1.1rem;
            font-weight: 600;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .leader-role::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 20%;
            width: 60%;
            height: 2px;
            background: var(--gradient);
            border-radius: 2px;
            opacity: 0.4;
            transition: all 0.4s;
        }

        .leader-card:hover .leader-role::after {
            width: 80%;
            left: 10%;
            opacity: 0.9;
        }

        .leader-bio {
            color: var(--text-soft);
            font-size: 0.98rem;
            line-height: 1.7;
            margin: 1.2rem 0 1.8rem;
            font-weight: 400;
            padding: 0 0.5rem;
            flex: 1;
        }

        .leader-social {
            display: flex;
            gap: 1.4rem;
            justify-content: center;
            margin-top: 0.5rem;
        }

        .leader-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #f1f5f9;
            color: var(--primary-red);
            font-size: 1.4rem;
            text-decoration: none;
            transition: all 0.4s var(--transition-bounce);
            border: 1px solid rgba(211, 16, 39, 0.15);
        }

        .leader-social a:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-8px) scale(1.15);
            box-shadow: 0 15px 20px -6px #d31027;
            border-color: transparent;
        }

        .leader-card .quote-icon {
            position: absolute;
            bottom: 20px;
            right: 25px;
            font-size: 2.5rem;
            color: rgba(211, 16, 39, 0.06);
            transition: all 0.4s;
        }

        .leader-card:hover .quote-icon {
            color: rgba(211, 16, 39, 0.2);
            transform: scale(1.2) rotate(6deg);
        }

        /* responsive */
        @media (max-width: 850px) {
            .company-content {
                flex-direction: column;
                text-align: center;
                padding: 2rem;
            }

            .company-text h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .company-stats {
                justify-content: center;
            }

            .company-image img {
                width: 220px;
            }

            .leader-card {
                width: 300px;
            }

            .leader-name {
                font-size: 2rem;
            }
        }

        @media (max-width: 600px) {
            .company-header h2 {
                font-size: 2.5rem;
            }

            .leader-header h2 {
                font-size: 2.5rem;
            }
        }
      :root {
            --primary-red: #d31027;
            --secondary-red: #ea384d;
            --dark-red: #b00c1e;
            --gradient: linear-gradient(135deg, #d31027 0%, #b00c1e 100%);
            --gradient-dark: linear-gradient(135deg, #a00c1a 0%, #7a0a15 100%);
            --light-bg: #f8fafc;
            --pure-white: #ffffff;
            --text-dark: #1e293b;
            --text-soft: #475569;
            --footer-bg: #d31027;  /* solid red fallback */
            --footer-gradient: linear-gradient(145deg, #d31027, #a00c1e, #7a0a15);
            --footer-text: #ffffff;
            --footer-text-muted: rgba(255,255,255,0.8);
            --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        body {
            background-color: var(--light-bg);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        /* dummy content to show footer at bottom */
        .dummy-content {
            flex: 1;
            padding: 4rem 2rem;
            text-align: center;
            background: linear-gradient(145deg, #f1f5f9, #ffffff);
        }
        .dummy-content h1 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        .dummy-content p {
            color: var(--text-soft);
            max-width: 600px;
            margin: 0 auto;
        }

        /* ===== FOOTER STYLES - RED GRADIENT BACKGROUND ===== */
        .footer {
            background: var(--footer-gradient);
            color: var(--footer-text);
            position: relative;
            overflow: hidden;
            padding: 4rem 2rem 2rem;
            box-shadow: 0 -20px 40px -15px rgba(160, 20, 30, 0.5);
            animation: footerRise 1s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
        }

        @keyframes footerRise {
            0% { opacity: 0; transform: translateY(50px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* animated lighter red orbs for depth */
        .footer::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
            top: -250px;
            right: -150px;
            z-index: 0;
            animation: footerOrb 20s infinite alternate ease-in-out;
        }
        .footer::after {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            bottom: -300px;
            left: -200px;
            z-index: 0;
            animation: footerOrb2 25s infinite alternate ease-in-out;
        }

        @keyframes footerOrb {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(60px, 40px) scale(1.2); }
        }
        @keyframes footerOrb2 {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(-80px, -50px) scale(1.3); }
        }

        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem 2rem;
        }

        /* footer columns with fade animation */
        .footer-col {
            animation: fadeCol 0.8s ease forwards;
            opacity: 0;
            transform: translateY(20px);
        }
        .footer-col:nth-child(1) { animation-delay: 0.1s; }
        .footer-col:nth-child(2) { animation-delay: 0.2s; }
        .footer-col:nth-child(3) { animation-delay: 0.3s; }
        .footer-col:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeCol {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* logo / brand */
        .footer-logo {
            margin-bottom: 1.5rem;
            display: inline-block;
        }
        .footer-logo img {
            max-width: 180px;
            filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
            transition: transform 0.4s var(--transition-bounce);
        }
        .footer-logo img:hover {
            transform: scale(1.05) translateY(-3px);
            filter: drop-shadow(0 15px 25px rgba(0,0,0,0.4));
        }

        .footer-about {
            color: var(--footer-text-muted);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        /* social icons - light on red */
        .social-links {
            display: flex;
            gap: 1rem;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            color: white;
            font-size: 1.3rem;
            transition: all 0.4s var(--transition-bounce);
            border: 1px solid rgba(255,255,255,0.3);
            text-decoration: none;
            backdrop-filter: blur(4px);
        }
        .social-links a:hover {
            background: white;
            color: var(--primary-red);
            transform: translateY(-8px) scale(1.12);
            border-color: transparent;
            box-shadow: 0 15px 25px -8px rgba(0,0,0,0.4);
        }

        /* footer headings */
        .footer-heading {
            font-size: 1.3rem;
            font-weight: 600;
            color: white;
            margin-bottom: 1.8rem;
            position: relative;
            display: inline-block;
            text-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: width 0.4s;
            box-shadow: 0 0 10px rgba(255,255,255,0.5);
        }
        .footer-col:hover .footer-heading::after {
            width: 70px;
        }

        /* links */
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 1rem;
        }
        .footer-links a {
            color: var(--footer-text-muted);
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .footer-links a i {
            color: white;
            font-size: 0.8rem;
            transition: transform 0.3s;
        }
        .footer-links a:hover {
            color: white;
            transform: translateX(8px);
            text-shadow: 0 0 8px rgba(255,255,255,0.5);
        }
        .footer-links a:hover i {
            transform: translateX(4px);
        }

        /* contact info */
        .contact-info {
            list-style: none;
        }
        .contact-info li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1.2rem;
            color: var(--footer-text-muted);
            transition: transform 0.3s;
        }
        .contact-info li i {
            width: 24px;
            color: white;
            font-size: 1.2rem;
        }
        .contact-info li:hover {
            transform: translateX(5px);
            color: white;
        }

        /* newsletter */
        .newsletter-text {
            color: var(--footer-text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        .newsletter-form {
            display: flex;
            max-width: 300px;
            border-radius: 50px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.3);
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(8px);
            transition: all 0.3s;
        }
        .newsletter-form:hover {
            box-shadow: 0 5px 25px rgba(0,0,0,0.3);
            border-color: white;
        }
        .newsletter-form input {
            flex: 1;
            padding: 12px 18px;
            border: none;
            background: transparent;
            color: white;
            font-size: 0.9rem;
            outline: none;
        }
        .newsletter-form input::placeholder {
            color: rgba(255,255,255,0.6);
        }
        .newsletter-form button {
            background: white;
            border: none;
            color: var(--primary-red);
            padding: 0 18px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        .newsletter-form button:hover {
            background: var(--gradient-dark);
            color: white;
            transform: scale(1.05);
        }

        /* footer bottom */
        .footer-bottom {
            max-width: 1300px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            color: var(--footer-text-muted);
            font-size: 0.9rem;
            position: relative;
            z-index: 10;
        }
        .footer-bottom a {
            color: var(--footer-text-muted);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-bottom a:hover {
            color: white;
        }
        .footer-bottom .heart {
            color: white;
            animation: heartbeat 1.5s infinite;
        }
        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        /* responsive */
        @media (max-width: 700px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 500px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        /* scroll indicator for demo */
        .scroll-note {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: white;
            border-radius: 40px;
            padding: 8px 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border: 1px solid #d3102740;
            color: var(--text-soft);
            font-size: 0.85rem;
            z-index: 100;
            backdrop-filter: blur(4px);
        }
        .scroll-note i {
            color: var(--primary-red);
        }  .bg-float {
            position: fixed;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(211,16,39,0.04) 0%, transparent 70%);
            top: -150px;
            right: -150px;
            z-index: -1;
            animation: floatBg 22s infinite alternate ease-in-out;
        }

        .bg-float-2 {
            position: fixed;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(211,16,39,0.03) 0%, transparent 70%);
            bottom: -200px;
            left: -150px;
            z-index: -1;
            animation: floatBg2 25s infinite alternate ease-in-out;
        }

        @keyframes floatBg {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(70px, 50px) scale(1.2); }
        }
        @keyframes floatBg2 {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(-60px, -70px) scale(1.3); }
        }

        /* main services container */
        .services-section {
            max-width: 1300px;
            width: 100%;
            margin: 0 auto;
        }

        /* header with smooth entrance */
        .section-header {
            text-align: center;
            margin-bottom: 5rem;
            animation: fadeScale 1s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
        }

        @keyframes fadeScale {
            0% { opacity: 0; transform: scale(0.9) translateY(30px); }
            100% { opacity: 1; transform: scale(1) translateY(0); }
        }

        .section-header h2 {
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            text-shadow: 0 10px 25px rgba(211,16,39,0.2);
        }

        .section-header p {
            font-size: 1.25rem;
            color: var(--text-soft);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
        }

        /* service cards grid */
        .services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2.5rem 2rem;
        }

        /* individual card – beautiful, smooth, with micro-animations */
        .service-card {
            background: var(--pure-white);
            width: 320px;
            border-radius: 40px;
            padding: 2.5rem 1.8rem 2.8rem;
            position: relative;
            box-shadow: var(--shadow-card);
            transition: all 0.5s var(--transition-bounce);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.8);
            backdrop-filter: blur(4px);
            animation: cardRise 0.8s var(--transition-bounce) forwards;
            opacity: 0;
            transform: translateY(40px);
        }

        /* staggered animation */
        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes cardRise {
            0% { opacity: 0; transform: translateY(50px) scale(0.95); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }

        .service-card:hover {
            transform: translateY(-22px) scale(1.03);
            box-shadow: var(--shadow-hover);
            border-color: rgba(211, 16, 39, 0.25);
        }

        /* glowing border effect on hover */
        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 42px;
            padding: 2px;
            background: var(--gradient);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .service-card:hover::before {
            opacity: 0.7;
        }

        /* icon container – smooth animations */
        .card-icon {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(145deg, #f1f5f9, #ffffff);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            box-shadow: 0 20px 25px -12px rgba(211,16,39,0.25), 0 0 0 2px rgba(255,255,255,0.9);
            transition: all 0.5s var(--transition-bounce);
        }

        .service-card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 30px 35px -14px #d31027, 0 0 0 3px rgba(211,16,39,0.25);
        }

        .card-icon i {
            font-size: 3.8rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.4s;
        }

        .service-card:hover .card-icon i {
            transform: scale(1.1);
        }

        /* title */
        .card-title {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }

        /* underline animated */
        .title-underline {
            width: 60px;
            height: 3px;
            background: var(--gradient);
            border-radius: 3px;
            margin: 0.5rem 0 1.2rem;
            transition: width 0.4s var(--transition-bounce);
        }

        .service-card:hover .title-underline {
            width: 100px;
        }

        /* description */
        .card-desc {
            color: var(--text-soft);
            font-size: 0.98rem;
            line-height: 1.7;
            margin: 0.8rem 0 1.5rem;
            font-weight: 400;
            flex: 1;
        }

        /* learn more link with micro animation */
        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-red);
            font-weight: 600;
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: 0.5px;
            padding: 8px 18px;
            border-radius: 40px;
            background: rgba(211,16,39,0.04);
            transition: all 0.4s var(--transition-bounce);
            border: 1px solid transparent;
        }

        .card-link i {
            transition: transform 0.3s;
        }

        .service-card:hover .card-link {
            background: var(--gradient);
            color: white;
            gap: 15px;
            padding: 8px 25px;
            border-color: rgba(255,255,255,0.2);
            box-shadow: 0 10px 18px -8px #d31027;
        }

        .service-card:hover .card-link i {
            transform: translateX(8px);
        }

        /* floating corner ornament */
        .card-ornament {
            position: absolute;
            bottom: 20px;
            right: 20px;
            font-size: 2.8rem;
            color: rgba(211,16,39,0.05);
            transition: all 0.5s;
            z-index: 0;
        }

        .service-card:hover .card-ornament {
            color: rgba(211,16,39,0.15);
            transform: scale(1.2) rotate(8deg);
        }

        /* responsive */
        @media (max-width: 800px) {
            .section-header h2 { font-size: 2.8rem; }
            .service-card { width: 290px; }
        }
        @media (max-width: 650px) {
            .services-grid { gap: 1.8rem; }
            .section-header p { font-size: 1rem; }
            .card-title { font-size: 1.7rem; }
        }/* ===== GLOBAL RESPONSIVE FIXES ===== */

/* Small devices (phones, 600px and below) */
@media (max-width: 600px) {
    /* Header fixes */
    header {
        padding: 10px 4%;
    }
    
    .logo img {
        max-height: 35px;
    }
    
    .btn-projects {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    
    /* Hero section */
    .dynamic-word {
        font-size: 2.2rem !important;
        letter-spacing: 1px;
    }
    
    .cursor-blink {
        height: 2.2rem !important;
        width: 6px;
    }
    
    .word-wrapper {
        gap: 5px;
    }
    
    .container {
        padding: 10px;
        margin-top: 60px;
    }
    
    /* Company section */
    .company-content {
        padding: 1.5rem;
        border-radius: 30px;
    }
    
    .company-text h3 {
        font-size: 1.6rem;
    }
    
    .company-text p {
        font-size: 0.95rem;
    }
    
    .company-image img {
        width: 180px;
        height: 180px;
    }
    
    /* Services section */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .service-card {
        width: 100%;
        max-width: 300px;
        padding: 1.8rem 1.2rem;
    }
    
    .card-icon {
        width: 90px;
        height: 90px;
    }
    
    .card-icon i {
        font-size: 2.8rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    /* Leader section */
    .leader-header h2 {
        font-size: 2rem;
    }
    
    .leader-card {
        width: 100%;
        max-width: 300px;
        padding: 1.8rem 1.2rem;
    }
    
    .leader-image {
        width: 120px;
        height: 120px;
    }
    
    .leader-name {
        font-size: 1.6rem;
    }
    
    .leader-bio {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .newsletter-form {
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Medium devices (tablets, 601px to 900px) */
@media (min-width: 601px) and (max-width: 900px) {
    /* Header */
    header {
        padding: 10px 5%;
    }
    
    nav ul {
        gap: 20px;
    }
    
    /* Hero */
    .dynamic-word {
        font-size: 3.5rem !important;
    }
    
    .cursor-blink {
        height: 3.5rem !important;
    }
    
    /* Company section */
    .company-content {
        padding: 2rem;
    }
    
    .company-text h3 {
        font-size: 1.9rem;
    }
    
    /* Services grid */
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-card {
        width: calc(50% - 1rem);
        min-width: 260px;
    }
    
    /* Leader grid */
    .leader-grid {
        gap: 2rem;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large devices (laptops, 901px to 1200px) */
@media (min-width: 901px) and (max-width: 1200px) {
    .service-card {
        width: calc(33.33% - 2rem);
    }
    
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Extra small devices (very small phones, 400px and below) */
@media (max-width: 400px) {
    .dynamic-word {
        font-size: 1.8rem !important;
    }
    
    .cursor-blink {
        height: 1.8rem !important;
        width: 5px;
    }
    
    .btn-projects {
        padding: 4px 12px;
        font-size: 0.7rem;
    }
    
    .company-image img {
        width: 150px;
        height: 150px;
    }
    
    .leader-card {
        padding: 1.5rem 1rem;
    }
}

/* Fix for hero section alignment */
@media (max-width: 768px) {
    .hero {
        align-items: center; /* Small screens pe center align */
    }
    
    .container.bottom-center {
        padding: 2rem 1rem;
    }
}

/* Fix for navigation on mobile */
@media (max-width: 700px) {
    nav ul {
        display: none;
    }
    
    /* Optional: Add mobile menu button */
    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        color: var(--primary-red);
        cursor: pointer;
    }
}

/* Fix for images */
img {
    max-width: 100%;
    height: auto;
}

/* Fix for text overflow */
.dynamic-word, .card-title, .leader-name, .company-text h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ensure proper spacing on all devices */
.about-page, .services-section, .leader-section {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    overflow-x: hidden;
}

/* Fix for floating elements on mobile */
@media (max-width: 768px) {
    .bg-float, .bg-float-2, .bg-bubble, .bg-bubble-2 {
        width: 300px;
        height: 300px;
    }
}