
/*
Theme Name: Raza Lucky Theme
Author: Mohd Raza Lucky
Version: 1.0
Description: Converted from static HTML to WordPress theme.
*/
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }
        body {
            font-family: 'Inter', sans-serif;
            background: #fbfdff;
            color: #171e26;
            line-height: 1.5;
            overflow-x: hidden;
        }
        /* modern minimal variables */
        :root {
            --primary: #0b2b4f;
            --primary-light: #1f4b7a;
            --accent: #3b82f6;
            --gray-light: #f0f4f9;
            --gray-mid: #5e6f8d;
            --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.03), 0 8px 10px -6px rgba(0,0,0,0.02);
            --shadow-hover: 0 25px 35px -12px rgba(0,35,80,0.15);
            --border-subtle: 1px solid rgba(0,0,0,0.03);
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 28px;
        }
        /* header / nav */
        header {
            position: sticky;
            top: 0;
            background: rgba(255,255,255,0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: var(--border-subtle);
            z-index: 999;
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        .logo a {
            font-weight: 700;
            font-size: 1.7rem;
            letter-spacing: -0.02em;
            color: var(--primary);
            text-decoration: none;
        }
        .logo span {
            color: var(--accent);
            font-weight: 500;
        }
        .nav-menu {
            display: flex;
            gap: 2rem;
            align-items: center;
            list-style: none;
        }
        .nav-menu li a {
            font-weight: 500;
            font-size: 1rem;
            color: #1f2a41;
            text-decoration: none;
            transition: 0.2s;
            padding-bottom: 4px;
            border-bottom: 2px solid transparent;
        }
        .nav-menu li a:hover {
            border-bottom-color: var(--accent);
            color: var(--primary);
        }
        .nav-toggle {
            display: none;
            font-size: 1.8rem;
            color: var(--primary);
            cursor: pointer;
        }
        /* mobile menu */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background: rgba(255,255,255,0.98);
                backdrop-filter: blur(12px);
                width: 100%;
                padding: 2rem 0;
                gap: 1.5rem;
                box-shadow: 0 30px 40px -20px rgba(0,0,0,0.2);
                transition: left 0.3s ease;
                border-top: 1px solid #eef2f6;
            }
            .nav-menu.active {
                left: 0;
            }
            .nav-toggle {
                display: block;
            }
        }
        /* hero abstract animation */
        .hero {
            position: relative;
            isolation: isolate;
            padding: 5rem 0 6rem;
            background: linear-gradient(145deg, #f9fcff 0%, #e7f0fd 100%);
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 30%, rgba(59,130,246,0.08) 0%, transparent 40%),
                        radial-gradient(circle at 90% 70%, rgba(15,50,90,0.06) 0%, transparent 45%);
            z-index: 0;
        }
        .hero .container {
            position: relative;
            z-index: 5;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .hero-content {
            max-width: 600px;
        }
        .hero h1 {
            font-size: 3.3rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        .hero h1 span {
            color: var(--accent);
            border-bottom: 4px solid rgba(59,130,246,0.2);
        }
        .hero p {
            font-size: 1.3rem;
            color: var(--gray-mid);
            margin-bottom: 2.5rem;
            max-width: 550px;
        }
        .btn-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .btn {
            display: inline-block;
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            border: 1px solid transparent;
            background: white;
            color: var(--primary);
            box-shadow: 0 6px 14px rgba(0,20,50,0.05);
        }
        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 12px 22px -8px rgba(11,43,79,0.3);
        }
        .btn-primary:hover {
            background: var(--primary-light);
            transform: translateY(-4px);
        }
        .btn-outline {
            background: transparent;
            border: 1px solid #cbd5e1;
            color: #1f2a41;
        }
        .btn-outline:hover {
            border-color: var(--accent);
            background: white;
            transform: translateY(-2px);
        }
        .hero-image {
            max-width: 400px;
            border-radius: 30px;
            box-shadow: var(--shadow-hover);
        }
        .hero-image img {
            width: 100%;
            border-radius: 30px;
            display: block;
        }
        /* section general */
        section {
            padding: 5rem 0;
        }
        .section-title {
            font-size: 2.4rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .section-sub {
            color: var(--gray-mid);
            max-width: 700px;
            margin-bottom: 3.5rem;
            font-size: 1.2rem;
        }
        .about-grid {
            display: flex;
            gap: 4rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .about-text {
            flex: 2;
            min-width: 300px;
        }
        .about-text h3 {
            font-size: 1.9rem;
            font-weight: 550;
            margin-bottom: 1rem;
            color: #0b2b4f;
        }
        .about-text p {
            color: #2d3a5e;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .about-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }
        .stat-item {
            font-weight: 600;
            color: var(--primary);
        }
        .stat-item span {
            font-size: 2rem;
            display: block;
            font-weight: 700;
        }
        /* services cards */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
            gap: 2rem;
        }
        .service-card {
            background: white;
            padding: 2rem 1.5rem;
            border-radius: 28px;
            box-shadow: var(--shadow-sm);
            border: var(--border-subtle);
            transition: all 0.25s;
            text-align: center;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: transparent;
        }
        .service-card i {
            font-size: 2.4rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }
        .service-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1e293b;
        }
        /* portfolio cards */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }
        .portfolio-item {
            border-radius: 24px;
            overflow: hidden;
            background: white;
            box-shadow: var(--shadow-sm);
            transition: 0.3s ease;
            position: relative;
        }
        .portfolio-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s;
            display: block;
        }
        .portfolio-item:hover img {
            transform: scale(1.05);
        }
        .portfolio-info {
            padding: 1.5rem;
            background: white;
            position: relative;
        }
        .portfolio-info h4 {
            font-size: 1.2rem;
            font-weight: 600;
        }
        .portfolio-info p {
            color: var(--gray-mid);
        }
        .portfolio-item::after {
            content: '→';
            position: absolute;
            bottom: 20px;
            right: 20px;
            font-size: 1.6rem;
            opacity: 0;
            transition: 0.2s;
            color: var(--accent);
        }
        .portfolio-item:hover::after {
            opacity: 1;
            right: 25px;
        }
        /* testimonials */
        .testimonials {
            background: #f8fafd;
        }
        .testimonial-card {
            background: white;
            border-radius: 30px;
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            border: var(--border-subtle);
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .author-img {
            width: 48px;
            height: 48px;
            border-radius: 100px;
            object-fit: cover;
        }
        /* PRICING section - 3 cards */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .pricing-card {
            background: white;
            border-radius: 32px;
            padding: 2.5rem 1.8rem;
            box-shadow: var(--shadow-sm);
            border: var(--border-subtle);
            transition: 0.2s;
            display: flex;
            flex-direction: column;
        }
        .pricing-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-6px);
        }
        .pricing-card.popular {
            border: 2px solid var(--accent);
            position: relative;
            background: #ffffff;
        }
        .popular-tag {
            position: absolute;
            top: -12px;
            left: 30px;
            background: var(--accent);
            color: white;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            letter-spacing: 0.3px;
        }
        .pricing-card h3 {
            font-size: 1.7rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }
        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin: 0.8rem 0 0.2rem;
            line-height: 1;
        }
        .price small {
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--gray-mid);
        }
        .pricing-desc {
            color: var(--gray-mid);
            border-bottom: 1px solid #eef2f6;
            padding-bottom: 1.2rem;
            margin-bottom: 1.5rem;
        }
        .pricing-features {
            list-style: none;
            margin: 1.5rem 0 2rem;
            flex-grow: 1;
        }
        .pricing-features li {
            padding: 0.6rem 0;
            border-bottom: 1px dashed #e2e8f0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .pricing-features i {
            color: var(--accent);
            font-size: 1rem;
            width: 20px;
        }
        .pricing-card .btn {
            margin-top: auto;
            text-align: center;
        }
        /* blog previews */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
        }
        .blog-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: 0.2s;
        }
        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        .blog-card img {
            height: 160px;
            width: 100%;
            object-fit: cover;
        }
        .blog-content {
            padding: 1.5rem;
        }
        .blog-content h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        /* contact */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            border-radius: 40px;
            border: 1px solid #e2e8f0;
            margin-bottom: 1.2rem;
            font-family: 'Inter', sans-serif;
            background: white;
            transition: 0.2s;
        }
        .contact-form input:focus, .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
        }
        .contact-form textarea {
            border-radius: 28px;
            resize: vertical;
        }
        .contact-info i {
            color: var(--accent);
            width: 28px;
        }
        /* floating whatsapp */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            box-shadow: 0 12px 28px rgba(37,211,102,0.3);
            transition: 0.2s;
            z-index: 999;
            text-decoration: none;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
            background: #20b859;
        }
        /* footer */
        footer {
            background: #0f172b;
            color: #b9c7dd;
            padding: 3rem 0 1.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-col p {
            margin: 1rem 0;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li a {
            color: #b9c7dd;
            text-decoration: none;
            line-height: 2.2;
        }
        .footer-links li a:hover {
            color: white;
        }
        .social-links a {
            color: white;
            margin-right: 1.2rem;
            font-size: 1.4rem;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid #1f2b44;
            padding-top: 2rem;
            font-size: 0.9rem;
        }
        hr {
            opacity: 0.2;
        }
        img {
            max-width: 100%;
            height: auto;
        }
