        :root {
            --primary-dark: #27418C;
            --primary-medium: #1B80BF;
            --accent-blue: #38A654;
            --accent-green: #68BF50;
            --light-bg: #F2F2F2;
            --white: #FFFFFF;
            --text-dark: #333333;
            --text-light: #666666;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 15px rgba(39, 65, 140, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header img{
            width: 200px;
            height: 60px;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            font-weight: bold;
        }
        .logo-text{
            display: flex;
            align-items: center;
        }



        .logo-text p {
            color: var(--primary-dark);
            font-size: 20px;
            font-weight: 500;
            font-style: italic;
            margin-left: 50px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover {
            color: var(--primary-medium);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent-green);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h2 {
            font-size: 42px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--accent-green);
            color: var(--white);
            padding: 15px 35px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(104, 191, 80, 0.3);
        }

        .cta-button:hover {
            background-color: var(--accent-blue);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(104, 191, 80, 0.4);
        }

        /* Technologies Section */
        .technologies {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            color: var(--primary-dark);
            font-size: 36px;
            margin-bottom: 15px;
        }

        .section-title p {
            color: var(--text-light);
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .tech-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
            padding: 30px 20px;
        }

        .tech-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(39, 65, 140, 0.1);
        }

        .tech-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: var(--white);
        }

        .angular .tech-icon {
            background-color: #D823C2
        }

        .javascript .tech-icon {
            background-color: #F7DF1E;
            color: #333;
        }

        .git .tech-icon {
            background-color: #F1502F;
        }

        .htmlcss .tech-icon {
            background: linear-gradient(45deg, #E34F26, #1572B6);
        }

        .tech-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .tech-card p {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 15px;
        }

        .tech-link {
            display: inline-block;
            color: var(--primary-medium);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s;
        }

        .tech-link:hover {
            color: var(--accent-green);
        }

        .tech-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .tech-link:hover i {
            transform: translateX(5px);
        }

        /* Features Section */
        .features {
            padding: 80px 0;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 40px;
        }

        .feature {
            display: flex;
            gap: 20px;
        }

        .feature-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background-color: rgba(27, 128, 191, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-medium);
            font-size: 24px;
        }

        .feature-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary-dark);
        }

        .feature-content p {
            color: var(--text-light);
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 70px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background-color: #1a1a2e;
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo .logo-text h1 {
            color: var(--white);
        }

        .footer-logo .logo-text p {
            color: #aaa;
        }

        .footer-links h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent-green);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }

            nav ul {
                gap: 15px;
            }

            .hero h2 {
                font-size: 32px;
            }

            .hero p {
                font-size: 18px;
            }

            .section-title h2 {
                font-size: 30px;
            }

            .tech-grid {
                grid-template-columns: 1fr;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }
        }