  
  
  
   :root {
            --primary: #0a1e40;
            --text-light: #ffffff;
            --bg-light: #f8f9fb;
            --text-dark: #333;
            --border-color: #ddd;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
  
  /* Modern Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes slideInScale {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(30px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 50%, var(--primary) 100%);
            color: var(--text-light);
            padding: 8rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="a" patternUnits="userSpaceOnUse" width="40" height="40" patternTransform="scale(0.5)"><rect width="100%" height="100%" fill="none"/><path d="M11 6a5 5 0 01-5 5 5 5 0 01-5-5 5 5 0 015-5 5 5 0 015 5" stroke="rgba(255,255,255,0.1)" stroke-width="1" fill="none"/></pattern></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>') repeat;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease-out;
        }

        .hero-content p {
            font-size: 1.4rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        /* Unique Story Section */
        .story-section {
            padding: 4rem 0;
            position: relative;
            background: linear-gradient(45deg, var(--bg-light) 0%, #ffffff 100%);
        }

        .story-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary), #1a3a5c, var(--primary));
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .story-milestone {
            display: flex;
            align-items: center;
            margin-bottom: 6rem;
            position: relative;
        }

        .story-milestone:nth-child(even) {
            flex-direction: row-reverse;
        }

        .milestone-content {
            flex: 1;
            padding: 3rem;
            background: var(--text-light);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(10, 30, 64, 0.1);
            margin: 0 3rem;
            position: relative;
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .milestone-content.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .milestone-content::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 0;
            height: 0;
            border: 15px solid transparent;
        }

        .story-milestone:nth-child(odd) .milestone-content::before {
            right: -30px;
            border-left-color: var(--text-light);
            transform: translateY(-50%);
        }

        .story-milestone:nth-child(even) .milestone-content::before {
            left: -30px;
            border-right-color: var(--text-light);
            transform: translateY(-50%);
        }

        .milestone-icon {
            width: 100px;
            height: 100px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 3;
            border: 6px solid var(--text-light);
            box-shadow: 0 10px 30px rgba(10, 30, 64, 0.2);
            animation: pulse 2s infinite;
        }

        .milestone-icon svg {
            width: 40px;
            height: 40px;
            fill: var(--text-light);
        }

        .milestone-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .milestone-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-dark);
        }

        .story-title {
            text-align: center;
            margin-bottom: 5rem;
        }

        .story-title h2 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--primary), #1a3a5c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .story-title p {
            font-size: 1.3rem;
            color: var(--text-dark);
            opacity: 0.8;
        }

       

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .story-title h2 {
                font-size: 2.5rem;
            }

            .timeline-line {
                left: 30px;
            }

            .story-milestone {
                flex-direction: row !important;
                padding-left: 80px;
            }

            .milestone-content {
                margin: 0;
            }

            .milestone-content::before {
                left: -30px !important;
                border-right-color: var(--text-light) !important;
                border-left-color: transparent !important;
            }

            .milestone-icon {
                position: absolute;
                left: 0;
                width: 60px;
                height: 60px;
            }

            .milestone-icon svg {
                width: 25px;
                height: 25px;
            }

            .features-title h2 {
                font-size: 2.2rem;
            }

            .cta-content h2 {
                font-size: 2.2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 4rem 0;
            }

            .story-section {
                padding: 4rem 0;
            }

            .features-section {
                padding: 4rem 0;
            }

            .cta-section {
                padding: 4rem 0;
            }
        }                                             

       
        /* Stats Section */
        .stats-section {
            background: var(--primary);
            color: var(--text-light);
            padding: 4rem 0;
            margin: 4rem 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Why Choose Us */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-item {
            text-align: center;
            padding: 2rem;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .feature-icon svg {
            width: 40px;
            height: 40px;
            fill: var(--text-light);
        }

        .feature-item h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .feature-item p {
            line-height: 1.6;
        }

        /* Contact CTA */
        .cta-section {
            background: var(--bg-light);
            padding: 4rem 0;
            text-align: center;
            border-top: 1px solid var(--border-color);
        }

        .cta-content h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--text-light);
        }

        .btn-primary:hover {
            background: #1a3a5c;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: var(--text-light);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .two-column {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .stat-item h3 {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 4rem 0;
            }

            .about-content {
                padding: 3rem 0;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }