﻿ :root {
            --primary-blue: #1e40af;
            --primary-red: #dc2626;
            --light-blue: #dbeafe;
            --light-bg: #f8fafc;
            --dark-text: #1e293b;
            --medium-text: #475569;
            --light-text: #64748b;
            --white: #ffffff;
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.08);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            position: relative;
            overflow-x: hidden;
        }

        /* Animated Background Elements */
        .background-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.03), rgba(220, 38, 38, 0.03));
            animation: float 20s infinite linear;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 8%;
            animation-delay: -5s;
            animation-duration: 25s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 15%;
            animation-delay: -10s;
            animation-duration: 30s;
        }

        .shape-4 {
            width: 250px;
            height: 250px;
            top: 30%;
            right: 15%;
            animation-delay: -15s;
        }

        .grid-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(30, 64, 175, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(30, 64, 175, 0.02) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 40s infinite linear;
        }

        .pulse-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--primary-blue);
            border-radius: 50%;
            animation: pulse 3s infinite;
        }

        .dot-1 {
            top: 25%;
            left: 12%;
            animation-delay: 0s;
        }

        .dot-2 {
            top: 70%;
            right: 20%;
            animation-delay: 1.5s;
            background: var(--primary-red);
        }

        .dot-3 {
            bottom: 30%;
            left: 25%;
            animation-delay: 3s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(20px, 20px) rotate(90deg);
            }
            50% {
                transform: translate(0, 40px) rotate(180deg);
            }
            75% {
                transform: translate(-20px, 20px) rotate(270deg);
            }
        }

        @keyframes gridMove {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(50px, 50px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.7;
            }
            50% {
                transform: scale(2);
                opacity: 0.3;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animated-element {
            animation: fadeInUp 0.8s ease-out;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }
        
        header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(30, 64, 175, 0.1);
            position: relative;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
        
        header::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
            border-radius: 3px;
        }
        
        h1 {
            color: var(--primary-blue);
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 700;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .subtitle {
            color: var(--primary-red);
            font-size: 1.3rem;
            font-weight: 500;
            letter-spacing: -0.2px;
        }
        
        .profile-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 40px;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }
        
        .profile-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background-color: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 4px solid var(--white);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        .profile-img::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }
        
        .profile-img:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-hover);
        }
        
        .profile-img:hover::before {
            opacity: 1;
        }
        
        .profile-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        
        .profile-info {
            text-align: center;
        }
        
        .profile-info h2 {
            color: var(--primary-blue);
            margin-bottom: 5px;
            font-size: 1.8rem;
            font-weight: 600;
        }
        
        .profile-info p {
            color: var(--medium-text);
            font-style: italic;
            font-size: 1.1rem;
        }
        
        .video-section {
            margin-bottom: 30px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }
        
        .video-container {
            width: 100%;
            background-color: var(--light-blue);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        
        .content-section {
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            animation: fadeInUp 0.8s ease-out 0.8s both;
        }

        .content-section:nth-child(2) {
            animation-delay: 1s;
        }

        .content-section:nth-child(3) {
            animation-delay: 1.2s;
        }

        .content-section:nth-child(4) {
            animation-delay: 1.4s;
        }

        .content-section:nth-child(5) {
            animation-delay: 1.6s;
        }
        
        .content-section:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
        }
        
        .content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-blue), var(--primary-red));
            border-radius: var(--border-radius) 0 0 var(--border-radius);
        }
        
        .content-section h2 {
            color: var(--primary-red);
            margin-bottom: 20px;
            font-size: 1.5rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .content-section p {
            margin-bottom: 15px;
            color: var(--medium-text);
            line-height: 1.7;
        }
        
        .content-section ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
        
        .content-section li {
            margin-bottom: 10px;
            color: var(--medium-text);
            line-height: 1.6;
            position: relative;
        }

        .content-section li::before {
            content: '▸';
            color: var(--primary-blue);
            font-weight: bold;
            position: absolute;
            left: -15px;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(220, 38, 38, 0.05));
            border-left: 0px solid var(--primary-red);
            padding: 25px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            position: relative;
            transition: var(--transition);
        }

        .highlight-box:hover {
            transform: translateX(5px);
        }
        
        .highlight-box::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 3rem;
            color: var(--primary-red);
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .highlight-box p {
            margin: 0;
            font-style: italic;
            position: relative;
            z-index: 1;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
            color: var(--white);
            border-radius: var(--border-radius);
            padding: 35px 30px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out 1.8s both;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            z-index: 0;
            animation: rotate 20s infinite linear;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        .cta-section h2 {
            margin-bottom: 20px;
            font-size: 1.8rem;
            position: relative;
            z-index: 1;
        }
        
        .cta-section p {
            text-align: left;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .cta-section ul {
            text-align: left;
            margin: 20px 0;
            padding-left: 20px;
            position: relative;
            z-index: 1;
        }
        
        .cta-section li {
            margin-bottom: 8px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: white;
            color: #1e40af;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 15px;
            transition: all 0.3s ease;
            border: 2px solid white;
        
         
        }
        
       
        }
        
        footer {
            text-align: center;
            padding: 25px 20px;
            color: var(--light-text);
            font-size: 0.9rem;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            margin-top: 20px;
            animation: fadeInUp 0.8s ease-out 2s both;
        }
        
        @media (max-width: 600px) {
            .container {
                padding: 15px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1.1rem;
            }
            
            .content-section {
                padding: 25px 20px;
            }
            
            .cta-section {
                padding: 25px 20px;
            }
            
            .profile-img {
                width: 150px;
                height: 150px;
            }

            .floating-shape {
                display: none;
            }

            .shape-1, .shape-2 {
                display: block;
                width: 150px;
                height: 150px;
            }
        }