/* ===== RESET & BASE ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Poppins', sans-serif; color: #333; line-height: 1.6; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; transition: color 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section-padding { padding: 80px 0; }
        .section-title { text-align: center; margin-bottom: 50px; }
        .section-title h2 { font-size: 2.2rem; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
        .section-title p { color: #666; max-width: 600px; margin: 0 auto; font-size: 1rem; }
        .btn-primary { display: inline-block; background: #1D4ED8; color: #fff; padding: 14px 36px; border-radius: 6px; font-weight: 600; font-size: 1rem; transition: all 0.3s; border: 2px solid #1D4ED8; cursor: pointer; }
        .btn-primary:hover { background: transparent; color: #1D4ED8; }
        .btn-outline { display: inline-block; background: transparent; color: #fff; padding: 14px 36px; border-radius: 6px; font-weight: 600; font-size: 1rem; transition: all 0.3s; border: 2px solid #fff; cursor: pointer; }
        .btn-outline:hover { background: #fff; color: #1D4ED8; }
        .text-blue { color: #1D4ED8; }

        /* ===== NAVBAR ===== */
        .navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.08); transition: all 0.3s; }
        .navbar .container { display: flex; align-items: center; justify-content: space-between; height: 75px; }
        .navbar .logo { font-size: 1.7rem; font-weight: 800; color: #1D4ED8; }
        .navbar .logo span { color: #1a1a2e; }
        .nav-links { display: flex; gap: 30px; align-items: center; }
        .nav-links a { font-weight: 500; font-size: 0.95rem; color: #333; transition: color 0.3s; }
        .nav-links a:hover, .nav-links a.active { color: #1D4ED8; }
        .nav-links .btn-primary { padding: 10px 26px; color: #fff; }
        .nav-links .btn-primary:hover { color: #fff; background: #1640b0; }
        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
        .hamburger span { width: 28px; height: 3px; background: #333; border-radius: 3px; transition: 0.3s; }

        /* ===== HERO ===== */
        .hero { padding: 140px 0 80px; background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%); min-height: 90vh; display: flex; align-items: center; }
        .hero .container { display: flex; align-items: center; gap: 60px; }
        .hero-content { flex: 1; }
        .hero-content .subtitle { display: inline-block; background: rgba(29,78,216,0.1); color: #1D4ED8; padding: 6px 18px; border-radius: 30px; font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; }
        .hero-content h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.2; color: #1a1a2e; margin-bottom: 20px; }
        .hero-content h1 span { color: #1D4ED8; }
        .hero-content p { font-size: 1.05rem; color: #555; margin-bottom: 30px; max-width: 500px; }
        .hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
        .hero-image { flex: 1; }
        .hero-image img { border-radius: 16px; box-shadow: 0 20px 60px rgba(29,78,216,0.15); }

        /* ===== SERVICES ===== */
        .services { background: #fff; }
        .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
        .service-card { background: #fff; border-radius: 12px; padding: 35px 25px; text-align: center; box-shadow: 0 5px 30px rgba(0,0,0,0.06); transition: all 0.3s; border: 1px solid #f0f0f0; }
        .service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(29,78,216,0.12); border-color: #1D4ED8; }
        .service-card .icon { width: 70px; height: 70px; background: rgba(29,78,216,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.6rem; color: #1D4ED8; transition: all 0.3s; }
        .service-card:hover .icon { background: #1D4ED8; color: #fff; }
        .service-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; color: #1a1a2e; }
        .service-card p { font-size: 0.92rem; color: #666; }

        /* ===== ABOUT ===== */
        .about { background: #f8faff; }
        .about .container { display: flex; align-items: center; gap: 60px; }
        .about-image { flex: 1; }
        .about-image img { border-radius: 16px; box-shadow: 0 15px 50px rgba(0,0,0,0.1); }
        .about-content { flex: 1; }
        .about-content .label { display: inline-block; background: rgba(29,78,216,0.1); color: #1D4ED8; padding: 6px 18px; border-radius: 30px; font-size: 0.85rem; font-weight: 600; margin-bottom: 15px; }
        .about-content h2 { font-size: 2rem; font-weight: 700; color: #1a1a2e; margin-bottom: 15px; line-height: 1.3; }
        .about-content > p { color: #666; margin-bottom: 25px; font-size: 0.95rem; }
        .checkmarks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
        .checkmarks li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: #444; }
        .checkmarks li i { color: #1D4ED8; font-size: 1.1rem; }

        /* ===== BEST SERVICES ===== */
        .best-services { background: #fff; }
        .best-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
        .best-card { background: #f8faff; border-radius: 12px; padding: 35px 25px; text-align: center; transition: all 0.3s; border: 1px solid #eef2ff; }
        .best-card:hover { background: #1D4ED8; transform: translateY(-6px); box-shadow: 0 15px 40px rgba(29,78,216,0.2); }
        .best-card:hover h3, .best-card:hover p, .best-card:hover .icon { color: #fff; }
        .best-card .icon { font-size: 2.2rem; color: #1D4ED8; margin-bottom: 18px; transition: color 0.3s; }
        .best-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; color: #1a1a2e; transition: color 0.3s; }
        .best-card p { font-size: 0.9rem; color: #666; transition: color 0.3s; }

        /* ===== PROJECTS ===== */
        .projects { background: #f8faff; }
        .projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
        .project-item { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
        .project-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
        .project-item:hover img { transform: scale(1.08); }
        .project-overlay { position: absolute; inset: 0; background: rgba(29,78,216,0.75); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s; }
        .project-item:hover .project-overlay { opacity: 1; }
        .project-overlay a { width: 50px; height: 50px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #1D4ED8; font-size: 1.2rem; }

        /* ===== PRICING ===== */
        .pricing { background: #fff; }
        .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: center; }
        .pricing-card { background: #f8faff; border-radius: 16px; padding: 40px 30px; text-align: center; border: 2px solid #eef2ff; transition: all 0.3s; }
        .pricing-card.featured { background: #1D4ED8; color: #fff; transform: scale(1.05); border-color: #1D4ED8; box-shadow: 0 20px 50px rgba(29,78,216,0.25); }
        .pricing-card .plan-name { font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
        .pricing-card .price { font-size: 3rem; font-weight: 800; margin-bottom: 5px; }
        .pricing-card .price sup { font-size: 1.4rem; vertical-align: super; }
        .pricing-card .period { font-size: 0.9rem; margin-bottom: 25px; opacity: 0.8; }
        .pricing-card ul { margin-bottom: 30px; }
        .pricing-card ul li { padding: 8px 0; font-size: 0.95rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
        .pricing-card.featured ul li { border-bottom-color: rgba(255,255,255,0.15); }
        .pricing-card .btn-primary { width: 100%; text-align: center; }
        .pricing-card.featured .btn-primary { background: #fff; color: #1D4ED8; border-color: #fff; }
        .pricing-card.featured .btn-primary:hover { background: transparent; color: #fff; }

        /* ===== FAQ ===== */
        .faq { background: #f8faff; }
        .faq-list { max-width: 800px; margin: 0 auto; }
        .faq-item { background: #fff; border-radius: 10px; margin-bottom: 15px; box-shadow: 0 2px 15px rgba(0,0,0,0.04); overflow: hidden; border: 1px solid #eef2ff; }
        .faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; cursor: pointer; font-weight: 600; font-size: 1rem; color: #1a1a2e; transition: color 0.3s; }
        .faq-question:hover { color: #1D4ED8; }
        .faq-question i { transition: transform 0.3s; color: #1D4ED8; }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 25px; }
        .faq-answer p { color: #666; font-size: 0.95rem; line-height: 1.7; }
        .faq-item.active .faq-answer { max-height: 300px; padding: 0 25px 20px; }
        .faq-item.active .faq-question i { transform: rotate(180deg); }

        /* ===== CTA ===== */
        .cta { background: linear-gradient(135deg, #1D4ED8 0%, #1a3fa0 100%); padding: 80px 0; text-align: center; color: #fff; }
        .cta h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 15px; }
        .cta p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

        /* ===== TEAM ===== */
        .team { background: #fff; }
        .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
        .team-card { text-align: center; }
        .team-card .img-wrap { border-radius: 12px; overflow: hidden; margin-bottom: 18px; position: relative; }
        .team-card .img-wrap img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform 0.4s; }
        .team-card:hover .img-wrap img { transform: scale(1.05); }
        .team-card .social-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(29,78,216,0.85); display: flex; justify-content: center; gap: 12px; padding: 12px; opacity: 0; transition: opacity 0.3s; }
        .team-card:hover .social-overlay { opacity: 1; }
        .team-card .social-overlay a { color: #fff; font-size: 1rem; transition: transform 0.3s; }
        .team-card .social-overlay a:hover { transform: scale(1.2); }
        .team-card h3 { font-size: 1.1rem; font-weight: 600; color: #1a1a2e; margin-bottom: 4px; }
        .team-card p { font-size: 0.9rem; color: #1D4ED8; font-weight: 500; }

        /* ===== STATS ===== */
        .stats { background: linear-gradient(135deg, #1D4ED8 0%, #1a3fa0 100%); padding: 60px 0; }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; color: #fff; }
        .stat-item h3 { font-size: 2.8rem; font-weight: 800; margin-bottom: 5px; }
        .stat-item p { font-size: 0.95rem; opacity: 0.9; }

        /* ===== TESTIMONIAL ===== */
        .testimonial { background: #f8faff; }
        .testimonial-card { max-width: 750px; margin: 0 auto; text-align: center; background: #fff; border-radius: 16px; padding: 45px 40px; box-shadow: 0 5px 30px rgba(0,0,0,0.06); }
        .testimonial-card .stars { color: #f5a623; font-size: 1.2rem; margin-bottom: 20px; }
        .testimonial-card blockquote { font-size: 1.05rem; color: #555; line-height: 1.8; font-style: italic; margin-bottom: 25px; }
        .testimonial-card .author { display: flex; align-items: center; justify-content: center; gap: 15px; }
        .testimonial-card .author img { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; }
        .testimonial-card .author-info h4 { font-weight: 600; color: #1a1a2e; font-size: 1rem; }
        .testimonial-card .author-info p { font-size: 0.85rem; color: #1D4ED8; }

        /* ===== BLOG ===== */
        .blog { background: #fff; }
        .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .blog-card { border-radius: 12px; overflow: hidden; box-shadow: 0 5px 25px rgba(0,0,0,0.06); transition: all 0.3s; background: #fff; }
        .blog-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
        .blog-card .img-wrap { overflow: hidden; height: 220px; }
        .blog-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
        .blog-card:hover .img-wrap img { transform: scale(1.06); }
        .blog-card .content { padding: 25px; }
        .blog-card .meta { display: flex; gap: 15px; font-size: 0.82rem; color: #888; margin-bottom: 10px; }
        .blog-card .meta span i { color: #1D4ED8; margin-right: 5px; }
        .blog-card h3 { font-size: 1.1rem; font-weight: 600; color: #1a1a2e; margin-bottom: 10px; line-height: 1.4; }
        .blog-card h3:hover { color: #1D4ED8; }
        .blog-card p { font-size: 0.9rem; color: #666; margin-bottom: 15px; }
        .blog-card .read-more { color: #1D4ED8; font-weight: 600; font-size: 0.9rem; }
        .blog-card .read-more i { margin-left: 5px; transition: margin-left 0.3s; }
        .blog-card .read-more:hover i { margin-left: 10px; }

        /* ===== PARTNERS ===== */
        .partners { background: #f8faff; padding: 60px 0; }
        .partners-grid { display: flex; align-items: center; justify-content: center; gap: 50px; flex-wrap: wrap; }
        .partners-grid .partner { opacity: 0.5; transition: opacity 0.3s; filter: grayscale(100%); }
        .partners-grid .partner:hover { opacity: 1; filter: grayscale(0%); }
        .partners-grid .partner img { height: 50px; width: auto; }

        /* ===== FOOTER ===== */
        .footer { background: #0f172a; color: #ccc; padding: 70px 0 0; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-col h3 { color: #fff; font-size: 1.15rem; font-weight: 600; margin-bottom: 20px; }
        .footer-col .logo { font-size: 1.7rem; font-weight: 800; color: #fff; margin-bottom: 15px; }
        .footer-col .logo span { color: #1D4ED8; }
        .footer-col p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 15px; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul li a { font-size: 0.9rem; transition: color 0.3s; }
        .footer-col ul li a:hover { color: #1D4ED8; }
        .footer-col .contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; }
        .footer-col .contact-item i { color: #1D4ED8; margin-top: 3px; }
        .footer-social { display: flex; gap: 12px; margin-top: 15px; }
        .footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ccc; transition: all 0.3s; }
        .footer-social a:hover { background: #1D4ED8; color: #fff; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; font-size: 0.85rem; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .services-grid, .best-services-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
            .pricing-card.featured { transform: scale(1); }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; position: absolute; top: 75px; left: 0; width: 100%; background: #fff; flex-direction: column; padding: 20px; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
            .nav-links.active { display: flex; }
            .hamburger { display: flex; }
            .hero .container { flex-direction: column; text-align: center; }
            .hero-content h1 { font-size: 2.2rem; }
            .hero-content p { margin: 0 auto 30px; }
            .hero-buttons { justify-content: center; }
            .about .container { flex-direction: column; }
            .projects-grid, .blog-grid { grid-template-columns: 1fr; }
            .services-grid, .best-services-grid { grid-template-columns: 1fr; }
            .team-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-grid { grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .checkmarks { grid-template-columns: 1fr; }
            .section-title h2 { font-size: 1.7rem; }
        }
        @media (max-width: 480px) {
            .hero-content h1 { font-size: 1.8rem; }
            .team-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; }
        }