        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #0b0b0b;
            color: #fff;
            overflow-x: hidden;
        }

        /* HEADER */

        header {
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            position: fixed;
            top: 0;
            left: 0;
            z-index: 999;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            backdrop-filter: blur(10px);
            /*blog.html*/

        }

        .navbar {
            width: 92%;
            max-width: 1400px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-section img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .logo-text h2 {
            font-size: 24px;
            color: #FFD700;
            line-height: 1.1;
        }

        .logo-text span {
            font-size: 12px;
            color: #ccc;
        }

        .menu-toggle {
            display: none;
            color: #FFD700;
            font-size: 28px;
            cursor: pointer;
            background: transparent;
            border: 0;
        }

        nav {
            transition: 0.4s;
        }

        nav ul {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: #fff;
            font-weight: 500;
            transition: 0.3s;
        }

        nav ul li a:hover,
        .active {
            color: #FFD700;
        }

        /* HERO */

        .hero {
            width: 100%;
            height: 100vh;
            background:
                linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.75)),
                url('https://images.unsplash.com/photo-1555244162-803834f70033?q=80&w=1600&auto=format&fit=crop') center/cover;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        .hero-content {
            max-width: 900px;
            animation: fadeIn 2s ease;
        }

        .hero-content h1 {
            font-size: 65px;
            color: #FFD700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero-content p {
            font-size: 22px;
            line-height: 1.8;
            color: #f2f2f2;
            margin-bottom: 35px;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 34px;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: 0.4s;
        }

        .btn-primary {
            background: #FFD700;
            color: #000;
        }

        .btn-primary:hover {
            background: #fff;
            transform: translateY(-4px);
        }

        .btn-secondary {
            border: 2px solid #FFD700;
            color: #FFD700;
        }

        .btn-secondary:hover {
            background: #FFD700;
            color: #000;
        }

        /* ABOUT */

        .about {
            padding: 100px 8%;
            background: #111;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 42px;
            color: #FFD700;
            margin-bottom: 12px;
        }

        .section-title p {
            color: #ccc;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-content img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .about-text h2 {
            font-size: 42px;
            color: #FFD700;
            margin-bottom: 25px;
        }
        .about-text p {
            font-size: 17px;
            line-height: 2;
            color: #ddd;
        }

        /* SERVICES */

        .services {
            padding: 100px 8%;
            background: #0b0b0b;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: #151515;
            padding: 35px 25px;
            border-radius: 18px;
            text-align: center;
            transition: 0.4s;
            border: 1px solid rgba(255, 215, 0, 0.1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #FFD700;
        }

        .service-card i {
            font-size: 48px;
            color: #FFD700;
            margin-bottom: 20px;
        }

        .service-card h3 {
            margin-bottom: 15px;
            font-size: 24px;
        }

        .service-card p {
            color: #ccc;
            line-height: 1.8;
        }

        /* STATS */

        .stats {
            padding: 70px 8%;
            background: linear-gradient(to right, #1a1a1a, #0d0d0d);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            text-align: center;
        }

        .stat-box {
            padding: 25px;
        }

        .stat-box h2 {
            font-size: 48px;
            color: #FFD700;
        }

        .stat-box p {
            color: #ddd;
        }

        /* CONTACT */

        .contact {
            padding: 100px 8%;
            background: #111;
        }

        .contact-box {
            background: #151515;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
        }

        .contact-box h2 {
            color: #FFD700;
            margin-bottom: 20px;
            font-size: 40px;
        }

        .contact-box p {
            color: #ddd;
            margin-bottom: 15px;
            line-height: 1.8;
        }

        /* SOCIAL */

        .social-section {
            padding: 80px 8%;
            background: #0b0b0b;
            text-align: center;
        }

        .social-section h2 {
            color: #FFD700;
            font-size: 40px;
            margin-bottom: 20px;
        }

        .social-section p {
            color: #ccc;
            margin-bottom: 35px;
        }

        .social-icons {
            margin-top: 30px;
        }

        .social-icons a {
            width: 50px;
            height: 50px;
            background: #FFD700;
            color: #000;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin: 0 10px;
            text-decoration: none;
            font-size: 20px;
            transition: 0.3s;
        }

        .social-icons a:hover {
            transform: translateY(-5px);
            background: #fff;
        }

        /* CONTACT SECTION */

        .contact-section {
            padding: 100px 8%;
            background: #111;
        }

        .section-title-contact {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title-contact h2 {
            color: #FFD700;
            font-size: 42px;
            margin-bottom: 15px;
        }

        .section-title-contact p {
            color: #ccc;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-info {
            background: #151515;
            padding: 40px;
            border-radius: 20px;
        }

        .contact-info h3 {
            color: #FFD700;
            margin-bottom: 30px;
            font-size: 32px;
        }

        .info-box {
            display: flex;
            gap: 18px;
            margin-bottom: 30px;
        }

        .info-box i {
            font-size: 24px;
            color: #FFD700;
            min-width: 35px;
        }

        .info-box h4 {
            margin-bottom: 8px;
        }

        .info-box p,
        .info-box a {
            color: #ccc;
            line-height: 1.8;
            text-decoration: none;
        }

        /* FORM */

        .contact-form {
            background: #151515;
            padding: 40px;
            border-radius: 20px;
        }

        .contact-form h3 {
            color: #FFD700;
            margin-bottom: 30px;
            font-size: 32px;
        }

        .form-group {
            margin-bottom: 22px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px;
            border: none;
            outline: none;
            border-radius: 12px;
            background: #0f0f0f;
            color: #fff;
            font-size: 15px;
        }

        .form-group textarea {
            height: 140px;
            resize: none;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: #FFD700;
            border: none;
            border-radius: 50px;
            color: #000;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

        .submit-btn:hover {
            background: #fff;
        }

        /* MAP */

        .map-section {
            padding: 0 8% 100px;
            background: #111;
        }

        .map-box {
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid rgba(255, 215, 0, 0.2);
        }

        .map-box iframe {
            width: 100%;
            height: 450px;
            border: 0;
        }

        /* BLOG CSS */
        /*FEATURED BLOG
========================= */

        .featured-blog {
            width: 92%;
            max-width: 1400px;
            margin: 100px auto;
        }

        .featured-container {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            background: #151515;
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid rgba(255, 215, 0, 0.08);
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-content {
            padding: 55px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-tag {
            display: inline-block;
            background: #FFD700;
            color: #000;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 25px;
            width: max-content;
        }

        .featured-content h2 {
            font-size: clamp(30px, 4vw, 52px);
            line-height: 1.3;
            margin-bottom: 22px;
        }

        .featured-content p {
            color: #ccc;
            line-height: 1.9;
            margin-bottom: 30px;
        }

        .blog-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #FFD700;
            color: #000;
            padding: 15px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            width: max-content;
            transition: 0.3s;
        }

        .blog-btn:hover {
            background: #fff;
        }

        /* =========================
SECTION TITLE
========================= */

        .section-title-blog {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title-blog h2 {
            color: #FFD700;
            font-size: clamp(34px, 5vw, 52px);
            margin-bottom: 16px;
        }

        .section-title-blog p {
            color: #ccc;
            line-height: 1.9;
            max-width: 800px;
            margin: auto;
        }

        /* =========================
BLOG GRID
========================= */

        .blog-section {
            width: 92%;
            max-width: 1400px;
            margin: auto auto 100px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .blog-card {
            background: #151515;
            border-radius: 28px;
            overflow: hidden;
            transition: 0.4s;
            border: 1px solid rgba(255, 215, 0, 0.08);
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
        }

        .blog-image {
            overflow: hidden;
            position: relative;
        }

        .blog-image img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            transition: 0.5s;
        }

        .blog-card:hover img {
            transform: scale(1.08);
        }

        .blog-tag {
            position: absolute;
            top: 18px;
            left: 18px;
            background: #FFD700;
            color: #000;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
        }

        .blog-content {
            padding: 28px;
        }

        .blog-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-bottom: 18px;
            color: #aaa;
            font-size: 14px;
        }

        .blog-meta i {
            color: #FFD700;
        }

        .blog-content h3 {
            font-size: 24px;
            line-height: 1.5;
            margin-bottom: 18px;
        }

        .blog-content p {
            color: #ccc;
            line-height: 1.9;
            margin-bottom: 24px;
            font-size: 15px;
        }

        /* =========================
WHY US
========================= */
        /* WHY CHOOSE */

        .why {
            background: #111;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
        }

        .why-box {
            text-align: center;
            padding: 30px;
            background: #151515;
            border-radius: 18px;
        }

        .why-box i {
            font-size: 48px;
            color: #FFD700;
            margin-bottom: 20px;
        }

        .why-box h3 {
            margin-bottom: 15px;
        }

        .why-box p {
            color: #ccc;
            line-height: 1.8;
        }


        /* =========================
CTA
========================= */
        .cta {
            padding: 100px 8%;
            text-align: center;
            background:
                linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.8)),
                url('https://images.unsplash.com/photo-1466978913421-dad2ebd01d17?q=80&w=1600&auto=format&fit=crop') center/cover;
        }

        .cta h2 {
            font-size: 50px;
            color: #FFD700;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 18px;
            color: #eee;
            max-width: 850px;
            margin: auto;
            line-height: 1.9;
        }

        .cta-btn {
            display: inline-block;
            margin-top: 35px;
            padding: 16px 40px;
            background: #FFD700;
            color: #000;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: 0.3s;
        }

        .cta-btn:hover {
            background: #fff;
            transform: translateY(-4px);
        }

        /*about-us CSS */
        /* HIGHLIGHTS */

        .highlights {
            padding: 90px 8%;
            background: #0b0b0b;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 42px;
            color: #FFD700;
        }

        .section-title p {
            color: #bbb;
            margin-top: 10px;
        }

        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .highlight-box {
            background: #151515;
            padding: 35px 25px;
            border-radius: 18px;
            text-align: center;
            transition: 0.4s;
            border: 1px solid rgba(255, 215, 0, 0.1);
        }

        .highlight-box:hover {
            transform: translateY(-8px);
            border-color: #FFD700;
        }

        .highlight-box i {
            font-size: 48px;
            color: #FFD700;
            margin-bottom: 20px;
        }

        .highlight-box h3 {
            margin-bottom: 15px;
            font-size: 24px;
        }

        .highlight-box p {
            color: #ccc;
            line-height: 1.8;
        }

        /* EXPERIENCE SECTION */

        .experience {
            padding: 90px 8%;
            background: #111;
        }

        .exp-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .exp-box {
            padding: 30px;
            background: #151515;
            border-radius: 18px;
        }

        .exp-box h2 {
            color: #FFD700;
            font-size: 50px;
        }

        .exp-box p {
            color: #ddd;
            margin-top: 10px;
        }

        /*about-us CSS END*/

        /*BLOG CSS END */

        /*services CSS Starts */
        /* SERVICES */

        .services {
            background: #111;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
        }

        .service-card {
            background: #151515;
            border-radius: 20px;
            overflow: hidden;
            transition: 0.4s;
            border: 1px solid rgba(255, 215, 0, 0.08);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #FFD700;
        }

        .service-card img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }

        .service-content {
            padding: 28px;
        }

        .service-content i {
            font-size: 45px;
            color: #FFD700;
            margin-bottom: 20px;
        }

        .service-content h3 {
            font-size: 28px;
            margin-bottom: 15px;
        }

        .service-content p {
            color: #ccc;
            line-height: 1.9;
            margin-bottom: 18px;
        }

        .service-btn {
            display: inline-block;
            padding: 12px 28px;
            background: #FFD700;
            color: #000;
            text-decoration: none;
            border-radius: 40px;
            font-weight: 600;
            transition: 0.3s;
        }

        .service-btn:hover {
            background: #fff;
        }

        /* EXTRA SERVICES */

        .extra-services {
            background: #0b0b0b;
        }

        .extra-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 25px;
        }

        .extra-box {
            background: #151515;
            padding: 30px 25px;
            border-radius: 18px;
            text-align: center;
            transition: 0.4s;
        }

        .extra-box:hover {
            transform: translateY(-8px);
        }

        .extra-box i {
            font-size: 42px;
            color: #FFD700;
            margin-bottom: 18px;
        }

        .extra-box h4 {
            margin-bottom: 12px;
            font-size: 22px;
        }

        .extra-box p {
            color: #ccc;
            line-height: 1.8;
        }

        /* SERVICES CSS ENDS *?   
        /* FOOTER */

        footer {
            background: #000;
            padding: 40px 20px;
            border-top: 1px solid rgba(255, 215, 0, 0.1);
        }

        .footer-container {
            width: 92%;
            max-width: 1400px;
            margin: auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 25px;
            align-items: center;
        }

        .footer-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-left img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
        }

        .footer-left h3 {
            color: #FFD700;
        }

        .footer-center {
            text-align: center;
            color: #ccc;
            line-height: 1.8;
        }

        .footer-right {
            text-align: right;
        }

        .footer-right a {
            color: #FFD700;
            margin-left: 15px;
            font-size: 22px;
            transition: 0.3s;
        }

        .footer-right a:hover {
            color: #fff;
        }

        .copyright {
            margin-top: 20px;
            text-align: center;
            color: #888;
            font-size: 14px;
        }

        .floating-whatsapp {
            position: fixed;
            width: 60px;
            height: 60px;
            background: #25D366;
            right: 20px;
            bottom: 20px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            font-size: 32px;
            text-decoration: none;
            z-index: 999;
        }

        /* ANIMATION */

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* RESPONSIVE */
        /* =========================
TABLET
========================= */

        @media(max-width:1100px) {

            .featured-container {
                grid-template-columns: 1fr;
            }

            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

        }

        /* =========================*/
        @media(max-width:991px) {

            .about-content {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 42px;
            }

            nav ul {
                gap: 15px;
            }
        }

        @media(max-width:768px) {

            .navbar {
                flex-wrap: wrap;
            }

            .menu-toggle {
                display: block;
            }

            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: 0.4s;
            }

            nav.active {
                max-height: 500px;
            }

            nav ul {
                flex-direction: column;
                gap: 0;
                margin-top: 20px;
                background: #111;
                border-radius: 12px;
                overflow: hidden;
            }

            nav ul li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

            nav ul li a {
                display: block;
                padding: 18px 20px;
            }

            .hero-content h1 {
                font-size: 34px;
            }

            .hero-content p {
                font-size: 18px;
            }

            .cta h2 {
                font-size: 36px;
            }

            /*Blog CSS FOR MOBILE */
            .featured-content {
                padding: 35px 24px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-left {
                justify-content: center;
            }

            .footer-right {
                text-align: center;
            }
        }

        /*SMALL MOBILE
========================= */

        @media(max-width:480px) {

            .blog-content {
                padding: 22px;
            }

            .blog-content h3 {
                font-size: 22px;
            }

            .why-card {
                padding: 30px 22px;
            }

            .cta-section {
                padding: 55px 22px;
            }

        }