
    <style>
        /* Global Reset & Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
        /* Custom Colors */
        :root {
            --primary: #F98A05;
            --dark: #1a1a1a;
            --light-bg: #f8f9fc;
        }
        /* Submenu */
        .submenu-area {
            background: #111;
            padding: 8px 0;
            color: #fff;
        }
        .submenu-left-content ul, .submenu-right-content ul {
            list-style: none;
            display: flex;
            gap: 5px;
            margin: 0;
            padding: 0;
            align-items: center;
        }
        .submenu-left-content ul li, .submenu-right-content ul li {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .submenu-left-content a, .submenu-right-content a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
        }
        .submenu-right-content ul li p {
            margin: 0;
            color: #ccc;
        }
        /* Navbar */
        .navbar-area {
            background: #000;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            z-index: 999;
        }
        .main-nav {
            padding: 15px 0;
        }
        .navbar-nav .nav-link {
            font-weight: 600;
            color: #fff;
            margin: 0 10px;
        }
        /* Dropdown menu modern styling for dark navbar */
        .navbar-area .dropdown-menu {
            background-color: #0a0a0a;
            border: 1px solid rgba(249,138,5,0.4);
            border-radius: 16px;
            padding: 0.6rem 0;
            margin-top: 8px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.4);
        }
        .navbar-area .dropdown-item {
            color: #f0f0f0;
            font-weight: 500;
            padding: 8px 24px;
            transition: all 0.25s;
            font-size: 0.95rem;
        }
        .navbar-area .dropdown-item:hover {
            background-color: var(--primary);
            color: #000;
            transform: translateX(5px);
        }
        .navbar-area .dropdown-divider {
            border-top: 1px solid rgba(249,138,5,0.3);
            margin: 6px 0;
        }
        .dropdown-toggle::after {
            vertical-align: middle;
            transition: transform 0.2s;
        }
        .nav-item.dropdown.show .dropdown-toggle::after {
            transform: rotate(180deg);
        }
        /* Responsive adjustments: ensure dropdown full width on mobile if needed */
        @media (max-width: 991px) {
            .navbar-area .dropdown-menu {
                background-color: #111;
                border-left: 3px solid var(--primary);
                margin-top: 0;
                margin-bottom: 8px;
                box-shadow: none;
            }
            .navbar-nav .nav-link {
                margin: 6px 0;
            }
            .navbar-nav .dropdown-item {
                padding-left: 2rem;
            }
        }
        .default-btn {
            background:#ac8222;
            color: #fff;
            padding: 12px 28px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: 0.3s;
            border: none;
        }
        .default-btn:hover {
            background: #222;
            color: #fff;
        }
        /* Hero Slider */
        .mySlides {
            width: 100%;
            height: auto;
        }
        /* Section Titles */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title .top-title {
            color: var(--primary);
            font-weight: 600;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 10px;
        }
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
        }
        .left-title {
            text-align: left;
        }
        /* Stats Modern */
        .stats-modern {
            display: flex;
            gap: 1.5rem;
            margin: 2rem 0 1.5rem;
            flex-wrap: wrap;
        }
        .stat-item {
            background: rgba(0,0,0,0.05);
            border-radius: 20px;
            padding: 0.8rem 1.8rem;
            text-align: center;
            flex: 1;
            border: 1px solid rgba(249,138,5,0.3);
        }
        .stat-item h4 {
            font-size: 2rem;
            font-weight: 800;
            margin: 0;
            color: var(--primary);
        }
        .feature-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            padding: 0;
            margin: 20px 0;
        }
        .feature-list li {
            background: rgba(249,138,5,0.1);
            border-radius: 40px;
            padding: 5px 15px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        /* Service Cards */
        .service-modern-card {
            background: #fff;
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.4s;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        .service-modern-card:hover {
            transform: translateY(-12px);
        }
        .service-img {
            position: relative;
            overflow: hidden;
        }
        .service-img img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .service-modern-card:hover .service-img img {
            transform: scale(1.05);
        }
        .service-overlay-icon {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: var(--primary);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.6rem;
        }
        .service-content {
            padding: 1.5rem;
            text-align: center;
        }
        .service-content h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        /* Why Choose Modern Grid */
        .why-modern-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .why-card {
            background: white;
            border-radius: 24px;
            padding: 28px 20px;
            text-align: center;
            transition: 0.35s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-bottom: 3px solid transparent;
        }
        .why-card:hover {
            transform: translateY(-8px);
            border-bottom-color: var(--primary);
        }
        .why-icon {
            width: 70px;
            height: 70px;
            background: rgba(249,138,5,0.12);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 36px;
            color: var(--primary);
        }
        .why-card:hover .why-icon {
            background: var(--primary);
            color: white;
        }
        .why-card h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        /* Quick Connect */
        .quick-connect-section {
            background: linear-gradient(135deg, #0a0a0a 0%, #1e1a14 100%);
            padding: 70px 0;
        }
        .quick-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(12px);
            border-radius: 48px;
            padding: 40px;
            border: 1px solid rgba(249,138,5,0.3);
            text-align: center;
        }
        .quick-card h3 {
            color: var(--primary);
            font-size: 2rem;
            font-weight: 800;
        }
        .quick-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        .quick-btn {
            padding: 14px 32px;
            border-radius: 60px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }
        .btn-whatsapp {
            background: #25D366;
            color: white;
        }
        .btn-call {
            background: #0059ff;
            color: white;
        }
        .btn-whatsapp:hover, .btn-call:hover {
            transform: scale(1.05);
            color: white;
        }
        /* Gallery Items */
        .gallery-item {
            border-radius: 24px;
            overflow: hidden;
            margin-bottom: 30px;
            position: relative;
            cursor: pointer;
        }
        .gallery-item img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            transition: 0.3s;
        }
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
            padding: 15px;
            color: white;
            text-align: center;
            transform: translateY(100%);
            transition: 0.3s;
        }
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        /* Footer Modern */
        .footer-modern {
            background: #0d0d0d;
            padding: 60px 0 20px;
            color: #aaa;
        }
        .footer-modern a {
            color: #ccc;
            text-decoration: none;
            transition: 0.2s;
        }
        .footer-modern a:hover {
            color: var(--primary);
        }
        .contact-icon-link {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }
        .contact-icon-link i {
            font-size: 22px;
            color: var(--primary);
        }
        /* Floating Buttons */
        .floating-contact {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .contact-float-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            transition: 0.25s;
            text-decoration: none;
            position: relative;
        }
        .contact-float-btn.call-btn {
            background: #0059ff;
        }
        .contact-float-btn:hover {
            transform: scale(1.1);
        }
        .tooltip-text {
            position: absolute;
            right: 75px;
            background: #222;
            color: #fff;
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 13px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: 0.2s;
        }
        .contact-float-btn:hover .tooltip-text {
            opacity: 1;
            visibility: visible;
            right: 85px;
        }
        /* Accordion FAQ */
        .accordion-item {
            background: #222;
            border: none;
            margin-bottom: 15px;
        }
        .accordion-button {
            background: #2a2a2a;
            color: white;
            font-weight: 600;
        }
        .accordion-button:not(.collapsed) {
            background: var(--primary);
            color: #fff;
        }
        .accordion-body {
            background: #1e1e1e;
            color: #ccc;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .section-title h2 { font-size: 1.8rem; }
            .quick-card h3 { font-size: 1.5rem; }
            .floating-contact { bottom: 20px; right: 20px; }
            .contact-float-btn { width: 50px; height: 50px; font-size: 26px; }
        }
        .go-top {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: var(--primary);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 99;
        }
    </style>