:root {
            --primary-color: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary-color: #7c3aed;
            --dark-color: #1e293b;
            --light-color: #f8fafc;
            --gray-color: #64748b;
            --light-gray: #e2e8f0;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }
        strong{
            font-weight: normal;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
            background-color: var(--light-color);
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            padding-bottom: 60px; ;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        .hero-title span {
            color: var(--primary-color);
            position: relative;
        }
        
        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: rgba(37, 99, 235, 0.2);
            z-index: -1;
        }
        
        .hero-description {
            font-size: 1.1rem;
            color: var(--gray-color);
            margin-bottom: 2rem;
            text-align: justify;
        }
        
        .hero-img-container {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 500px;
        }
        
        .hero-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .hero-img-container:hover img {
            transform: scale(1.03);
        }
        
        .carousel-indicators {
            bottom: 20px;
        }
        
        .carousel-indicators button {
            width: 10px !important;
            height: 10px !important;
            border-radius: 50%;
            margin: 0 5px;
            background-color: rgba(255, 255, 255, 0.5);
        }
        
        .carousel-indicators button.active {
            background-color: var(--primary-color);
        }
        
        /* Buttons */
        .btn-primary-custom {
            background-color: var(--primary-color);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
            color: white;
        }
        
        .btn-outline-custom {
            background-color: transparent;
            color: var(--primary-color);
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid var(--primary-color);
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-outline-custom:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        .btn-warning-custom {
            background-color: var(--warning-color);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-warning-custom:hover {
            background-color: #d97706;
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(245, 158, 11, 0.35);
            color: white;
        }
        
        .btn-icon {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .section-title {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--primary-color);
            border-radius: 2px;
        }
        
        .section-title-warning::after {
            background-color: var(--warning-color);
        }
        
        .skill-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--primary-color);
            transition: var(--transition);
            height: 100%;
        }
        
        .skill-card-warning {
            border-left: 4px solid var(--warning-color);
        }
        
        .skill-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
        }
        
        .skill-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background-color: rgba(37, 99, 235, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-size: 1.8rem;
        }
        
        .skill-icon-warning {
            background-color: rgba(245, 158, 11, 0.1);
            color: var(--warning-color);
        }
        
        .skill-title {
            font-size: 1.4rem;
            color: var(--dark-color);
            margin-bottom: 10px;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background-color: var(--dark-color);
            color: white;
            position: relative;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: var(--light-gray);
            font-weight: 500;
        }
        
        /* Services Section */
        .services-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
        }
        
        .service-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }
        
        .service-icon-warning {
            background: linear-gradient(135deg, var(--warning-color), #f97316);
        }
        
        /* SEO Section */
        .seo-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .seo-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
            color: var(--warning-color);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .seo-metrics {
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
            border-radius: var(--border-radius);
            padding: 40px;
            margin-top: 40px;
            border: 1px solid rgba(245, 158, 11, 0.2);
        }
        
        .metric-item {
            text-align: center;
            padding: 20px;
        }
        
        .metric-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--warning-color);
            margin-bottom: 10px;
        }
        
        .metric-label {
            font-size: 1rem;
            color: var(--dark-color);
            font-weight: 500;
        }
        
        .seo-checklist {
            list-style: none;
            padding: 0;
        }
        
        .seo-checklist li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .seo-checklist li i {
            color: var(--success-color);
            font-size: 1.2rem;
        }
        
        /* Projects Section */
        .projects-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .project-card {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 100%;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .project-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        
        .project-content {
            padding: 20px;
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 0;
            background-color: #f8fafc;
        }
        
        .testimonial-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 100%;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--gray-color);
        }
        
        .client-info {
            display: flex;
            align-items: center;
        }
        
        .client-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background-color: #f8fafc;
        }
        
        .contact-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            height: 100%;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(37, 99, 235, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary-color);
            font-size: 1.3rem;
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .social-link:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
            color: white;
        }
        
        /* Utility Classes */
        .text-primary-custom {
            color: var(--primary-color) !important;
        }
        
        .text-warning-custom {
            color: var(--warning-color) !important;
        }
        
        .highlight {
            background-color: rgba(37, 99, 235, 0.1);
            padding: 2px 8px;
            border-radius: 4px;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .highlight-warning {
            background-color: rgba(245, 158, 11, 0.1);
            color: var(--warning-color);
        }
        
        .mb-6 {
            margin-bottom: 4rem;
        }
        
        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--gray-color);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-img-container {
                height: 400px;
                margin-top: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.3rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stat-number, .metric-number {
                font-size: 2.5rem;
            }
            
            .hero-section {
                padding-top: 100px;
            }
        }