   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        :root {
            --primary: #ff0044;
            --secondary: #cc0036;
            --accent: #ff3366;
            --light: #fff5f7;
            --dark: #0f172a;
            --gray: #64748b;
            --success: #10b981;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --glow: 0 0 15px rgba(255, 0, 68, 0.5);
        }

        body {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #f1f5f9;
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 80px;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Fixed Navigation */
        .navigation-bar {
           /* position: fixed;*/
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid rgba(148, 163, 184, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
            gap: 30px;
        }

        .nav-item {
            list-style: none;
        }

        .nav-link {
            text-decoration: none;
            color: #cbd5e1;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 10px 20px;
            border-radius: 30px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: var(--transition);
            z-index: -1;
            border-radius: 30px;
        }

        .nav-link:hover::before, .nav-link.active::before {
            width: 100%;
        }

        .nav-link:hover, .nav-link.active {
            color: white;
            box-shadow: var(--glow);
        }

        /* Main Content Area */
        .main-content {
            min-height: calc(100vh - 80px);
            padding: 40px 0;
        }

        /* Sections - Hidden by default */
        .content-section {
            display: none;
            animation: fadeIn 0.6s ease-out;
        }

        .content-section.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #fff5f7, #ffb6c1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #94a3b8;
            max-width: 700px;
            margin: 0 auto;
        }

        .section-header::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            margin: 20px auto;
            border-radius: 2px;
        }

        /* About Section */
        .about-content {
            display: flex;
            gap: 50px;
            align-items: center;
            margin-bottom: 40px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #f0f9ff;
        }

        .about-text p {
            margin-bottom: 15px;
            color: #cbd5e1;
           
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.4; 
        }

        .about-image {
            flex: 1;
            text-align: center;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(148, 163, 184, 0.2);
        }

        /* Struggles and Achievements */
        .struggles-achievements {
            margin-top: 40px;
        }

        .struggles, .achievements {
            margin-bottom: 40px;
        }

        .struggles h3, .achievements h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .timeline {
            position: relative;
            padding-left: 30px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 30px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary);
            border: 3px solid #0f172a;
        }

        .timeline-item h4 {
            color: #f0f9ff;
            margin-bottom: 10px;
        }

        .timeline-item p {
            color: #cbd5e1;
        }

        /* Clients Section */
        .clients-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
        }

        .clients-intro h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #fff5f7, #ffb6c1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .clients-intro p {
            font-size: 1.2rem;
            color: #94a3b8;
            margin-bottom: 30px;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 25px;
        }

        .client-logo {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 10px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(148, 163, 184, 0.1);
            position: relative;
            overflow: hidden;
        }

        .client-logo:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 0, 68, 0.3);
            z-index: 2;
        }

        .client-logo.clickable {
            cursor: pointer;
        }

        .client-logo.clickable::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 0, 68, 0.1), transparent);
            opacity: 0;
            transition: var(--transition);
        }

        .client-logo.clickable:hover::after {
            opacity: 1;
        }

        .client-logo i {
            font-size: 2.5rem;
            color: var(--accent);
        }

        .client-logo .logo-text {
            font-weight: 700;
            font-size: 1.1rem;
            color: #f0f9ff;
            text-align: center;
        }

        /* Management Section */
        .management-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .management-card {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(148, 163, 184, 0.1);
            position: relative;
        }

        .management-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 0, 68, 0.3);
        }

        .management-header {
            height: 180px;
            background: linear-gradient(135deg, rgba(255, 0, 68, 0.1), rgba(255, 51, 102, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .management-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 15s linear infinite;
        }

        .management-image {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            border: 5px solid rgba(255, 0, 68, 0.3);
            overflow: hidden;
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .management-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .management-info {
            padding: 30px 25px 25px;
            text-align: center;
        }

        .management-info h3 {
            margin-bottom: 5px;
            color: #f0f9ff;
            font-size: 1.6rem;
        }

        .management-info .position {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
            font-size: 1.1rem;
        }

        .management-info p {
            color: #cbd5e1;
            margin-bottom: 20px;
            font-style: italic;
            font-size: 0.95rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 0, 68, 0.1);
            color: var(--accent);
            transition: var(--transition);
        }

        .social-links a:hover {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            transform: translateY(-3px);
        }

        /* Blog Section */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .blog-card {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(148, 163, 184, 0.1);
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .blog-image {
            height: 180px;
            background: linear-gradient(135deg, rgba(255, 0, 68, 0.1), rgba(255, 51, 102, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--accent);
            position: relative;
            overflow: hidden;
        }

        .blog-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 50%, rgba(15, 23, 42, 0.7) 100%);
        }

        .blog-content {
            padding: 25px;
        }

        .blog-content .date {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }

        .blog-content h3 {
            margin-bottom: 15px;
            color: #f0f9ff;
        }

        .blog-content p {
            color: #cbd5e1;
            margin-bottom: 20px;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(255, 0, 68, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 0, 68, 0.5);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        /* Footer */
        footer {
            background: rgba(15, 23, 42, 0.95);
            color: #f1f5f9;
            padding: 50px 0 20px;
            position: relative;
            margin-top: 60px;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: #f0f9ff;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .footer-column p {
            margin-bottom: 20px;
            color: #94a3b8;
            font-size: 0.95rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-links a i {
            font-size: 0.8rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-info div {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-info i {
            color: var(--accent);
            font-size: 1.1rem;
            margin-top: 5px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .social-icons a:hover {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .nav-container {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .nav-item {
                flex: 1 0 auto;
                text-align: center;
            }
            
            .management-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .management-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .management-card {
                max-width: 400px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                gap: 10px;
            }
            
            .nav-link {
                font-size: 0.9rem;
                padding: 6px 10px;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .clients-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 576px) {
            .nav-container {
                gap: 5px;
            }
            
            .nav-link {
                font-size: 0.8rem;
                padding: 5px 8px;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .clients-grid {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            }
            
            .management-header {
                height: 160px;
            }
            
            .management-image {
                width: 120px;
                height: 120px;
            }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }