
        :root {
            --primary: #0066ff;
            --primary-dark: #0044cc;
            --secondary: #00f2ff;
            --accent: #ff3366;
            --dark: #050511;
            --dark-light: #0a0a1a;
            --light: #f5f5f5;
            --gray: #888;
            --success: #27ae60;
        }

        /* ========================================
           ANIMATION KEYFRAMES
           ======================================== */

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Animation utility classes */
        .animate-on-scroll {
            opacity: 0;
            transition: opacity 0.1s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .fade-in-left {
            animation: fadeInLeft 0.8s ease-out forwards;
        }

        .fade-in-right {
            animation: fadeInRight 0.8s ease-out forwards;
        }

        .scale-in {
            animation: scaleIn 0.6s ease-out forwards;
        }

        .slide-in-up {
            animation: slideInUp 0.6s ease-out forwards;
        }

        /* Stagger animation delays */
        .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
        .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
        .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
        .animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 600;
            margin-bottom: 20px;
            margin-top: 20px;
        }





        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }


        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title span {
            color: var(--secondary);
            position: relative;
        }

        .section-title span.pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                text-shadow: 0 0 5px var(--secondary);
            }

            50% {
                text-shadow: 0 0 20px var(--secondary), 0 0 30px var(--secondary);
            }

            100% {
                text-shadow: 0 0 5px var(--secondary);
            }
        }

        .hero-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Header Styles */
        header {
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(100, 116, 139, 0.2);
        }

        header.scrolled {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
            width: auto;
            object-fit: contain;
            display: block;
        }

        .logo span {
            color: var(--secondary);
        }

        .logo .tech {
            color: var(--secondary);
        }



        .cta-buttons:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ===== Dropdown Styles ===== */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dropdown-toggle i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .dropdown:hover .dropdown-toggle i {
            transform: rotate(180deg);
        }

        .dropdown-content a {
            display: block;
            padding: 12px 20px;
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.95rem;
            border-left: 4px solid transparent;
            margin: 2px 8px;
            border-radius: 4px;
        }

        .dropdown-content a:hover {
            background: rgba(37, 99, 235, 0.15);
            color: var(--secondary);
            border-left: 4px solid var(--secondary);
            transform: translateX(5px);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(-8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* CEO Hero Section */
        .ceo-hero {
            padding-top: 80px;
            padding-bottom: 18px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: transparent;
        }

        .ceo-hero::before {
            display: none;
        }

        .ceo-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--light);
        }

        .ceo-hero p {
            font-size: 1.3rem;
            color: var(--secondary);
            max-width: 800px;
            margin: 0 auto 2rem;
            align-items: center;
        }


        /* The Beginning Section - Purple Gradient */
        .beginning-section {
            margin: 30px 0;
            border: none;
            position: relative;
        }

        .beginning-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 10px;
        }


        .beginning-title {
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .beginning-titlee {
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .beginning-desc {
            color: #e0e0e0;
            margin-bottom: 25px;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .icon {
            font-size: 0.5rem;
        }

        /* The Breakthrough Section - Dark Gradient */
        .milestone-section {
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .content-area {
            background-color: #050511;
            padding: 3rem;
        }

        h1 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 0.5rem;
            margin-top: 80px;
            color: white;
            font-weight: 700;
        }

        .year {
            font-size: 1.2rem;
            text-align: center;
            color: #a0aec0;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #e2e8f0;
            align-items: center;

        }


        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-card {
            background: linear-gradient(135deg, #3C3586 0%, #304B8F 100%);
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }

        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #e2e8f0;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .stat-desc {
            font-size: 0.9rem;
            color: white;
        }

        .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
            margin: 2rem 0;
        }

        .cta-button {
            display: inline-block;
            background-color: #4299e1;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .cta-button:hover {
            background-color: #3182ce;
        }

        @media (max-width: 768px) {
            .content-area {
                padding: 2rem;
            }

            h1 {
                font-size: 2rem;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }
        }



        /* Building Our Home Section - Reversed Gradient */
        .home-section {
            background: linear-gradient(135deg, #442781, #295692);
            border-radius: 10px;
            padding: 50px;
            margin: 60px 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .home-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.1), transparent 70%);
            border-radius: 10px;
        }

        .home-title {
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 15px;
            text-align: center;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .home-subtitle {
            font-size: 1.3rem;
            color: #e0e0e0;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 500;
        }

        .home-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .home-text p {
            color: #e0e0e0;
            margin-bottom: 25px;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .home-services {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .home-service {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            padding: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            border-left: 4px solid #00f2ff;
            backdrop-filter: blur(10px);
        }

        .home-service:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.2);
            border-color: #00f2ff;
            box-shadow: 0 10px 25px rgba(0, 242, 255, 0.2);
        }

        .home-service h4 {
            color: #00f2ff;
            margin-bottom: 10px;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .home-service p {
            color: #e0e0e0;
            font-size: 1rem;
            margin: 0;
            line-height: 1.5;
        }

        /* Main card box */
        .beginning-card {
            width: 100%;
            max-width: 1250px;
            padding: 50px;
            background: linear-gradient(135deg, #442781 0%, #295692 100%);
            border-radius: 22px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        /* Text content */
        .beginning-left {
            flex: 1;
            color: white;
        }

        .beginning-title {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 4px;
            margin-top: 30px;
        }


        .beginning-desc {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        /* Image Section */
        .beginning-right img {
            width: 100%;
            max-width: 550px;
            height: auto;
            object-fit: cover;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .beginning-card {
                flex-direction: column;
                text-align: center;
            }

            .beginning-right img {
                max-width: 100%;
            }
        }


        /* Responsive Styles */
        @media (max-width: 992px) {

            .beginning-content,
            .breakthrough-content,
            .home-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .beginning-highlights,
            .breakthrough-stats,
            .home-services {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {

            .beginning-section,
            .breakthrough-section,
            .home-section {
                padding: 30px 20px;
            }

            .beginning-title,
            .breakthrough-title,
            .home-title {
                font-size: 2rem;
            }

            .breakthrough-stat-number {
                font-size: 2.5rem;
            }


            .beginning-highlights {
                grid-template-columns: 1fr;
            }
        }

        /* The Future Section */
        .future-section {
            background: rgba(10, 10, 26, 0.7);
            border-radius: 10px;
            padding: 50px;
            margin: 60px 0;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .future-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
            opacity: 0.1;
        }

        .future-title {
            font-size: 2.2rem;
            color: var(--secondary);
            margin-bottom: 30px;
            text-align: center;
        }

        .future-content {
            color: var(--gray);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .future-content p {
            margin-bottom: 25px;
        }

        .future-content strong {
            color: var(--secondary);
        }

        /* Responsive Styles for New Sections */
        @media (max-width: 992px) {

            .beginning-content,
            .breakthrough-content,
            .home-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .breakthrough-stats,
            .home-services {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {

            .beginning-section,
            .breakthrough-section,
            .home-section,
            .future-section {
                padding: 30px 20px;
            }

            .breakthrough-stat-number {
                font-size: 2.2rem;
            }

            .home-service {
                padding: 15px;
            }
        }

       
        /* Removed conflicting highlight-box styles - using more specific styles below */

        .highlight-boxx {
            width: 100%;
            height: 30%;
        }

        .set {
            display: flex;
            margin: 23px;
            gap: 20px;

        }

        .set img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .set-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            flex: 1;
            min-width: 200px;
        }

        /* Building Our Home Section - Reversed Gradient */
        .home-section {
            background: linear-gradient(135deg, #442781, #295692);
            border-radius: 10px;
            padding: 50px;
            margin: 60px 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .home-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.1), transparent 70%);
            border-radius: 10px;
        }

        .home-title {
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 15px;
            text-align: center;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .home-subtitle {
            font-size: 1.3rem;
            color: #e0e0e0;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 500;
        }

        .home-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .home-text p {
            color: #e0e0e0;
            margin-bottom: 25px;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .home-services {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .home-service {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            padding: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            border-left: 4px solid #00f2ff;
            backdrop-filter: blur(10px);
        }

        .home-service:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.2);
            border-color: #00f2ff;
            box-shadow: 0 10px 25px rgba(0, 242, 255, 0.2);
        }

        .home-service h4 {
            color: #00f2ff;
            margin-bottom: 10px;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .home-service p {
            color: #e0e0e0;
            font-size: 1rem;
            margin: 0;
            line-height: 1.5;
        }

        /* Main card box */
        .beginning-card {
            width: 100%;
            max-width: 1250px;
            padding: 50px;
            background: linear-gradient(135deg, #442781 0%, #295692 100%);
            border-radius: 22px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            margin: 0 auto;
        }

        /* Text content */
        .beginning-left {
            flex: 1;
            color: white;
        }

        .beginning-title {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 4px;
            margin-top: 30px;
        }

        .beginning-desc {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        /* Image Section */
        .beginning-right img {
            width: 100%;
            max-width: 550px;
            height: auto;
            object-fit: contain;
            border-radius: 10px;
        }

        /* Highlight wrapper */
        .highlight-wrapper {

            display: flex;
            flex-direction: row;
            gap: 20px;
            margin-top: 30px;
        }

        .highlight-box,
        .highlight-boxx {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .highlight-box img,
        .highlight-boxx img {
            width: 80px;
            height: 80px;
            margin-bottom: 15px;
            object-fit: contain;
        }

        /* Ensure images inside icon circles are properly sized */
        .highlight-item .icon-circle img,
        .highlight-item .icon-circlee img {
            width: 30px;
            height: 30px;
            object-fit: contain;
        }

        .set {
            display: flex;
            flex-direction: row;
            gap: 20px;
            width: 100%;
        }

        .set>div {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .set img {
            width: 50px;
            height: 50px;
            flex-shrink: 0;
            object-fit: contain;
        }

        .set h3 {
            color: #00f2ff;
            font-size: 1.1rem;
            margin: 0;
        }

        /* Responsive Styles for Building Our Home Section */
        
        /* Large tablets and small desktops */
        @media (max-width: 1200px) {
            .beginning-card {
                padding: 40px;
                gap: 40px;
            }

            .beginning-title {
                font-size: 32px;
            }

            .beginning-right img {
                max-width: 450px;
            }

            .set {
                flex-direction: row;
                gap: 18px;
            }

            .set img {
                width: 48px;
                height: 48px;
            }

            .set h3 {
                font-size: 1.05rem;
            }
        }

        /* Tablet 820px and similar */
        @media (max-width: 1024px) {
            .beginning-card {
                padding: 35px 30px;
                gap: 35px;
                max-width: 100%;
            }

            .beginning-title {
                font-size: 30px;
                margin-top: 20px;
            }

            .beginning-desc {
                font-size: 15px;
                line-height: 1.6;
            }

            .beginning-right img {
                max-width: 400px;
            }

            .highlight-wrapper {
                margin-top: 25px;
                gap: 15px;
            }

            .highlight-boxx {
                width: 100%;
            }

            .set {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 15px 10px;
                margin: 15px 0;
            }

            .set > div {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 8px;
                margin-bottom: 0;
            }

            .set img {
                width: 45px;
                height: 45px;
                margin: 0 auto;
            }

            .set h3 {
                font-size: 0.95rem;
                line-height: 1.3;
                margin: 0;
            }
        }

        @media (max-width: 992px) {
            .beginning-card {
                flex-direction: column;
                text-align: center;
                gap: 25px;
                padding: 30px 25px;
            }

            .beginning-left {
                width: 100%;
            }

            .beginning-right {
                width: 100%;
                display: flex;
                justify-content: center;
            }

            .beginning-right img {
                max-width: 450px;
                width: 100%;
            }

            .highlight-wrapper {
                flex-direction: column;
                gap: 15px;
                justify-content: center;
                align-items: center;
                width: 100%;
            }

            .highlight-boxx {
                width: 100%;
                max-width: 500px;
            }

            .highlight-box {
                min-width: 200px;
                max-width: 300px;
            }

            .set {
                flex-direction: row;
                gap: 15px;
            }

            .set>div {
                justify-content: center;
            }

            .home-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .home-section {
                padding: 30px 20px;
                margin: 40px 0;
            }

            .beginning-card {
                padding: 25px 20px;
                border-radius: 15px;
            }

            .beginning-title {
                font-size: 28px;
                margin-top: 20px;
            }

            .beginning-desc {
                font-size: 15px;
            }

            .home-title {
                font-size: 2rem;
            }

            .home-subtitle {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }

            .home-service {
                padding: 20px;
            }

            .home-service h4 {
                font-size: 1.1rem;
            }

            .set h3 {
                font-size: 1rem;
            }

            .set img {
                width: 45px;
                height: 45px;
            }

            .icon {
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 576px) {
            .home-section {
                padding: 25px 15px;
                margin: 30px 0;
            }

            .beginning-card {
                padding: 20px 15px;
                gap: 20px;
            }

            .beginning-title {
                font-size: 24px;
            }

            .beginning-desc {
                font-size: 14px;
            }

            .highlight-box img,
            .highlight-boxx img {
                width: 60px;
                height: 60px;
            }

            .set {
                gap: 10px;
            }

            .set>div {
                gap: 10px;
                margin-bottom: 10px;
            }

            .set img {
                width: 40px;
                height: 40px;
            }

            .icon {
                width: 40px;
                height: 40px;
            }

            .icon-circle img,
            .icon-circlee img {
                width: 25px;
                height: 25px;
            }

            .set h3 {
                font-size: 0.9rem;
            }

            .home-service {
                padding: 15px;
            }

            .home-service h4 {
                font-size: 1rem;
            }

            .home-service p {
                font-size: 0.9rem;
            }
        }

        /* Service Grid Styles for Building Our Home section */
        .service-grid {
            display: flex;
            flex-direction: row;
            gap: 20px;
            width: 100%;
            flex-wrap: wrap;
        }

        .service-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            flex: 1;
            min-width: 150px;
        }

        .service-item img.icon {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        .service-item h3 {
            color: #00f2ff;
            font-size: 1rem;
            margin: 0;
            text-align: center;
            line-height: 1.3;
        }

        /* Mobile-specific layout for service grid */
        @media (max-width: 768px) {
            .service-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px 15px;
                margin: 20px 0;
            }

            .service-item {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                gap: 10px;
                min-width: unset;
            }

            .service-item img.icon {
                width: 45px;
                height: 45px;
            }

            .service-item h3 {
                font-size: 0.85rem;
                line-height: 1.2;
            }
        }

        @media (max-width: 576px) {
            .service-grid {
                gap: 15px 10px;
                margin: 15px 0;
            }

            .service-item img.icon {
                width: 42px;
                height: 42px;
            }

            .service-item h3 {
                font-size: 0.8rem;
            }
        }

        /* Specific fix for iPhone 12 Pro (390x844) - Building Our Home section */
        @media (max-width: 390px) {
            .beginning-card {
                padding: 20px 15px;
                gap: 25px;
            }

            .beginning-left {
                width: 100%;
            }

            .beginning-desc {
                font-size: 13px;
                line-height: 1.6;
                margin-bottom: 15px;
            }

            .highlight-wrapper {
                margin-top: 20px;
                gap: 15px;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }

            .highlight-box {
                min-width: 100%;
                max-width: 100%;
            }

            .highlight-boxx {
                width: 100%;
            }

            .set {
                display: grid;
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto auto;
                gap: 12px 8px;
                margin: 10px 0;
                width: 100%;
            }

            /* Position divs (icons) in first row */
            .set>div:nth-child(1) {
                grid-column: 1;
                grid-row: 1;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .set>div:nth-child(3) {
                grid-column: 2;
                grid-row: 1;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            /* Position h3s (text) in second row */
            .set>h3:nth-child(2) {
                grid-column: 1;
                grid-row: 2;
                margin: 0;
                text-align: center;
            }

            .set>h3:nth-child(4) {
                grid-column: 2;
                grid-row: 2;
                margin: 0;
                text-align: center;
            }

            .set img,
            .set .icon {
                width: 45px;
                height: 45px;
                flex-shrink: 0;
                margin: 0 auto;
                display: block;
                object-fit: contain;
            }

            .set h3 {
                font-size: 0.75rem;
                margin: 0;
                text-align: center;
                line-height: 1.2;
                width: 100%;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }

            .beginning-right {
                width: 100%;
            }

            .beginning-right img {
                max-width: 100%;
                width: 100%;
            }
        }



        /* Removed conflicting percentage-based image styles - using fixed sizes instead */







        /* Responsive Styles */
        @media (max-width: 992px) {
            .highlight-boxx {
                width: 100%;
                /* margin-left: -12px; */
                height: 100%;
            }

            .vision-section {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                display: flex;
                flex-direction: column;
                gap: 40px;
                margin-bottom: 40px;
            }

            .mobile-menu-btn {
                display: block;
            }

            .ceo-hero {
                padding-top: 40px;
            }

            .beginning-section {
                margin-top: 0;
            }

            .beginning-title {
                margin-top: 30px;
            }

            .ceo-hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .ceo-section {
                padding: 30px 20px;
            }

            .ceo-quote {
                font-size: 1.5rem;
            }

            .newsletter-section {
                padding: 40px 20px;
            }

            .newsletter-form {
                flex-direction: column;
                gap: 15px;
            }

            .newsletter-input,
            .newsletter-btn {
                border-radius: 30px;
                width: 100%;
            }

            .ceo-stats {
                flex-direction: column;
                gap: 20px;
            }
        }

        @media (max-width: 576px) {




            .beginning-card {
                width: 100%;
                max-width: 1250px;
                padding: 12px;
                background: linear-gradient(135deg, #442781 0%, #295692 100%);
                border-radius: 22px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 50px;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            }

            .vision-section {
                grid-template-columns: 1fr;
            }

            .ceo-hero h1 {
                font-size: 2rem;
            }

            .ceo-quote {
                font-size: 1.3rem;
            }
        }
   
        /* Inner Card */
        .beginning-container {
            max-width: 1150px;
            width: 90%;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .beginning-title {
            font-size: 36px;
            font-weight: 900;
            margin-top: 80px;
            align-items: center;
            margin-bottom: 5px;
        }

        .beginning-subtitle {
            color: #d1d1d1;
            margin-bottom: 10px;
            font-size: 18px;
        }

        .beginning-desc {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 18px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 17px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Highlight wrapper styles are defined elsewhere */



        /* Responsive */
        @media (max-width: 992px) {
            .beginning-container {
                flex-direction: column;
                text-align: center;
            }

            .highlight-wrapper {
                flex-direction: row;
                /* margin-left:-28px ; */
            }
        }


        /* The Breakthrough Section */
        .breakthrough-section {
            background: rgba(10, 10, 26, 0.7);
            border-radius: 10px;
            padding: 50px;
            margin: 60px 0;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .breakthrough-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
            opacity: 0.1;
        }

        .breakthrough-title {
            font-size: 2.2rem;
            color: var(--secondary);
            margin-bottom: 15px;
            text-align: center;
        }

        .breakthrough-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 40px;
            text-align: center;
            font-weight: 500;
        }

        .breakthrough-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .breakthrough-text p {
            color: var(--gray);
            margin-bottom: 25px;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .breakthrough-stats {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .breakthrough-stat {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .breakthrough-stat:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 25px rgba(0, 102, 255, 0.2);
        }

        .breakthrough-stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--secondary);
            display: block;
            line-height: 1;
            margin-bottom: 10px;
        }

        .breakthrough-stat-label {
            color: var(--light);
            font-size: 1rem;
            line-height: 1.4;
        }

        /* Building Our Home Section */
        .home-section {
            background: rgba(10, 10, 26, 0.7);
            border-radius: 10px;
            padding: 50px;
            margin: 60px 0;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .home-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
            opacity: 0.1;
        }

        .home-title {
            font-size: 2.2rem;
            color: var(--secondary);
            margin-bottom: 15px;
            text-align: center;
        }

        .home-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 40px;
            text-align: center;
            font-weight: 500;
        }

        .home-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .home-text p {
            color: var(--gray);
            margin-bottom: 25px;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .home-services {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .home-service {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            border-left: 4px solid var(--secondary);
        }

        .home-service:hover {
            background: rgba(0, 102, 255, 0.1);
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .home-service h4 {
            color: var(--secondary);
            margin-bottom: 8px;
            font-size: 1.2rem;
        }

        .home-service p {
            color: var(--gray);
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.5;
        }

        /* Responsive Styles */
        
        /* Tablet optimization - 820px and similar sizes */
        @media (max-width: 1024px) {
            .ceo-hero h1 {
                font-size: 2.8rem;
            }

            .ceo-hero p {
                font-size: 1.1rem;
                padding: 0 20px;
            }

            .beginning-card {
                padding: 35px;
                gap: 35px;
            }

            .beginning-title {
                font-size: 32px;
            }

            .beginning-desc {
                font-size: 15px;
            }

            .beginning-right img {
                max-width: 450px;
            }

            .stats-container {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1.5rem;
            }

            .stat-card {
                padding: 1.2rem;
            }

            .stat-value {
                font-size: 2rem;
            }

            .content-area {
                padding: 2.5rem;
            }

            h1 {
                font-size: 2.2rem;
                margin-top: 60px;
            }

            .description {
                font-size: 1rem;
            }

            .set {
                gap: 15px;
            }

            .set img {
                width: 45px;
                height: 45px;
            }

            .set h3 {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 992px) {

            .beginning-content,
            .breakthrough-content,
            .home-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .beginning-highlights,
            .breakthrough-stats,
            .home-services {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {

            .beginning-section,
            .breakthrough-section,
            .home-section {
                padding: 1px 1px;
            }

            .breakthrough-stat-number {
                font-size: 2.2rem;
            }

            .home-service {
                padding: 15px;
            }

            .beginning-highlights {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .beginning-title {
                margin-top: 30px !important;
            }
        }

        /* ========================================
           MOBILE ANIMATION OPTIMIZATIONS
           ======================================== */
        
        @media (max-width: 768px) {
            /* Reduce animation complexity on mobile for better performance */
            .animate-on-scroll {
                will-change: opacity;
            }
            
            /* Faster animations on mobile */
            .fade-in-up,
            .fade-in-left,
            .fade-in-right,
            .scale-in,
            .slide-in-up {
                animation-duration: 0.5s;
            }
            
            /* Reduce transform distance for smoother mobile animations */
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            @keyframes fadeInLeft {
                from {
                    opacity: 0;
                    transform: translateX(-30px);
                }
                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }
            
            @keyframes fadeInRight {
                from {
                    opacity: 0;
                    transform: translateX(30px);
                }
                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }
        }

        /* Disable animations for users who prefer reduced motion */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            
            .animate-on-scroll {
                opacity: 1 !important;
                transform: none !important;
            }
        }
    