* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        body {
            background: #111;
            color: #fff;
        }
        
        /* General styles from the example header */
        .top-header {
            background: #000;
            color: #ccc;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .top-header-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .top-header-info a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        .top-header-info a i {
            margin-right: 5px;
            color: #ffb400;
        }
        .top-header-info a:hover {
            color: #fff;
        }
        .top-header-social {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .top-header-social a {
            color: #ccc;
            font-size: 16px;
            transition: color 0.3s;
        }
        .top-header-social a:hover {
            color: #ffb400;
        }
        .consultation-btn {
            background-color: #ffb400;
            color: #111;
            padding: 8px 16px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .consultation-btn:hover {
            background-color: #e6a200;
        }
        @media (max-width: 768px) {
            .top-header {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }
        
        nav {
            background: #1a1a1a;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        nav .logo {
            font-size: 22px;
            font-weight: 700;
            color: #ffb400;
            text-decoration: none;
        }
        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            transition: max-height 0.4s ease-in-out;
        }
        nav ul li a {
            text-decoration: none;
            color: #eee;
            font-weight: 500;
            transition: color 0.3s;
        }
        nav ul li a:hover {
            color: #ffb400;
        }
        .menu-toggle {
            display: none;
            font-size: 24px;
            color: #fff;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                overflow: hidden;
                max-height: 0;
                width: 100%;
                background: #1a1a1a;
                margin-top: 10px;
            }
            nav ul.active {
                max-height: 500px;
            }
            nav ul li {
                width: 100%;
                text-align: center;
                padding: 8px 0;
            }
            .menu-toggle {
                display: block;
            }
        }
        
        .nav-btn {
            padding: 8px 14px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: 0.3s;
        }
        .whatsapp-btn {
            background: #25D366;
            color: #fff;
        }
        .whatsapp-btn:hover {
            background: #1da851;
        }
        .call-btn {
            background: #ffb400;
            color: #111;
        }
        .whatsapp-btn i {
            animation: pulse 1.5s infinite;
            transform-origin: center;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); color: #fff; }
            100% { transform: scale(1); }
        }

        /* Contact Page specific styles */
        .contact-hero {
            background-color: #1a1a1a;
            text-align: center;
            padding: 60px 20px;
        }
        .contact-hero h1 {
            font-size: 40px;
            color: #ffb400;
            margin-bottom: 10px;
        }
        .contact-hero p {
            font-size: 18px;
            color: #ccc;
        }

        .contact-section {
            padding: 50px 20px;
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .contact-info-block {
            background: #1c1c1c;
            padding: 30px;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .info-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        .info-card i {
            font-size: 30px;
            color: #ffb400;
            margin-top: 5px;
        }
        .info-card-text h3 {
            font-size: 18px;
            color: #fff;
            margin-bottom: 5px;
        }
        .info-card-text p, .info-card-text a {
            font-size: 15px;
            color: #ccc;
            text-decoration: none;
            line-height: 1.5;
        }
        .info-card-text a:hover {
            text-decoration: underline;
        }

        .contact-form-block {
            background: #1c1c1c;
            padding: 30px;
            border-radius: 12px;
        }
        .contact-form-block h3 {
            font-size: 24px;
            color: #ffb400;
            margin-bottom: 10px;
        }
        .form-description {
            font-size: 15px;
            color: #ccc;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            font-size: 14px;
            color: #ccc;
            margin-bottom: 5px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            background: #2b2b2b;
            border: 1px solid #444;
            border-radius: 8px;
            color: #fff;
            font-size: 15px;
            transition: border-color 0.3s;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #ffb400;
        }
        .select-wrapper {
            position: relative;
        }
        .select-wrapper::after {
            content: '\f0d7';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: #ccc;
            font-size: 16px;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
        }
        .form-agreement {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .form-agreement input[type="checkbox"] {
            width: auto;
            min-width: 20px;
            height: 20px;
            cursor: pointer;
            margin-top: 3px;
            accent-color: #ffb400;
        }
        .form-agreement label {
            font-size: 14px;
            color: #ccc;
            line-height: 1.5;
            cursor: pointer;
        }
        .form-submit-btn {
            background: #ffb400;
            color: #111;
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .form-submit-btn:hover {
            background: #e6a200;
        }

        .map-section {
            padding: 0 20px 50px;
            max-width: 1200px;
            margin: auto;
        }
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }
        .map-container iframe {
            width: 100%;
            height: 450px;
            border: none;
        }
        @media (max-width: 768px) {
            .map-container iframe {
                height: 300px;
            }
        }

        /* Footer */
        .main-footer {
            background: #1a1a1a;
            padding: 50px 20px;
            color: #ccc;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: auto;
        }
        .footer-section h4 {
            color: #ffb400;
            font-size: 18px;
            margin-bottom: 15px;
            border-bottom: 2px solid #ffb400;
            padding-bottom: 5px;
        }
        .footer-section p {
            font-size: 14px;
            line-height: 1.6;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li a {
            text-decoration: none;
            color: #ccc;
            font-size: 14px;
            line-height: 2;
            transition: color 0.3s;
            display: block;
        }
        .footer-section ul li a:hover {
            color: #ffb400;
        }
        .footer-contact-info i {
            color: #ffb400;
            margin-right: 10px;
        }
        .footer-contact-info a {
            color: #ccc;
            text-decoration: none;
        }
        .social-icons a {
            color: #fff;
            font-size: 20px;
            margin-right: 15px;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: #ffb400;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            margin-top: 30px;
            border-top: 1px solid #333;
            font-size: 13px;
        }
        .footer-logo {
            max-width: 200px;
            margin-bottom: 15px;
            height: auto;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        body {
            background: #111;
            color: #fff;
        }
        
        /* Top Header */
        .top-header {
            background: #000;
            color: #ccc;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .top-header-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .top-header-info a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        .top-header-info a i {
            margin-right: 5px;
            color: #ffb400;
        }
        .top-header-info a:hover {
            color: #fff;
        }
        .top-header-social {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .top-header-social a {
            color: #ccc;
            font-size: 16px;
            transition: color 0.3s;
        }
        .top-header-social a:hover {
            color: #ffb400;
        }
        .consultation-btn {
            background-color: #ffb400;
            color: #111;
            padding: 8px 16px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .consultation-btn:hover {
            background-color: #e6a200;
        }
        @media (max-width: 768px) {
            .top-header {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }
        
        /* Main Navigation */
        nav {
            background: #1a1a1a;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        nav .logo {
            font-size: 22px;
            font-weight: 700;
            color: #ffb400;
        }
        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            transition: max-height 0.4s ease-in-out;
        }
        nav ul li a {
            text-decoration: none;
            color: #eee;
            font-weight: 500;
            transition: color 0.3s;
        }
        nav ul li a:hover {
            color: #ffb400;
        }
        .menu-toggle {
            display: none;
            font-size: 24px;
            color: #fff;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                overflow: hidden;
                max-height: 0;
                width: 100%;
                background: #1a1a1a;
                margin-top: 10px;
            }
            nav ul.active {
                max-height: 500px;
            }
            nav ul li {
                width: 100%;
                text-align: center;
                padding: 10px 0;
            }
            .menu-toggle {
                display: block;
            }
        }
        
        .nav-btn {
            padding: 8px 14px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: 0.3s;
        }
        .whatsapp-btn {
            background: #25D366;
            color: #fff;
        }
        .whatsapp-btn:hover {
            background: #1da851;
        }
        .call-btn {
            background: #ffb400;
            color: #111;
        }
        .whatsapp-btn i {
            animation: pulse 1.5s infinite;
            transform-origin: center;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); color: #fff; }
            100% { transform: scale(1); }
        }

        /* About Page specific styles */
        .hero-section {
            background-color: #1a1a1a;
            padding: 80px 20px;
            text-align: center;
        }
        .hero-section h1 {
            font-size: 44px;
            color: #ffb400;
            margin-bottom: 10px;
        }
        .hero-section p {
            font-size: 18px;
            color: #ccc;
            max-width: 800px;
            margin: 0 auto;
        }

        .section {
            padding: 50px 20px;
            max-width: 1200px;
            margin: auto;
        }
        .section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 40px;
            color: #ffb400;
        }
        .content-block {
            background: #1c1c1c;
            padding: 30px;
            border-radius: 12px;
            line-height: 1.7;
            margin-bottom: 30px;
        }
        .content-block h3 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 24px;
        }
        .content-block p {
            color: #ccc;
        }
        .content-block ul {
            list-style: none;
            padding: 0;
            margin-top: 15px;
        }
        .content-block ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            color: #ccc;
        }
        .content-block ul li::before {
            content: "\f00c"; /* FontAwesome check icon */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #ffb400;
        }

        .two-column-layout {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .two-column-layout img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }
        .two-column-layout .text-content {
            flex: 1;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            text-align: center;
        }
        .team-member {
            background: #1a1a1a;
            padding: 25px;
            border-radius: 12px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        .team-member img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid #ffb400;
        }
        .team-member h4 {
            font-size: 20px;
            margin-bottom: 5px;
            color: #ffb400;
        }
        .team-member p {
            font-size: 14px;
            color: #ccc;
        }

        .cta-section {
            text-align: center;
            padding: 60px 20px;
            background-color: #1a1a1a;
        }
        .cta-section h2 {
            font-size: 32px;
            color: #ffb400;
            margin-bottom: 20px;
        }
        .cta-section .cta-btn {
            display: inline-block;
            padding: 12px 28px;
            font-size: 16px;
            font-weight: 600;
            color: #111;
            background: #ffb400;
            border-radius: 30px;
            text-decoration: none;
            transition: 0.3s;
        }
        .cta-section .cta-btn:hover {
            background: #e6a200;
            transform: translateY(-2px);
        }

        /* Footer */
        .main-footer {
            background: #1a1a1a;
            padding: 50px 20px;
            color: #ccc;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: auto;
        }
        .footer-section h4 {
            color: #ffb400;
            font-size: 18px;
            margin-bottom: 15px;
            border-bottom: 2px solid #ffb400;
            padding-bottom: 5px;
        }
        .footer-section p {
            font-size: 14px;
            line-height: 1.6;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li a {
            text-decoration: none;
            color: #ccc;
            font-size: 14px;
            line-height: 2;
            transition: color 0.3s;
            display: block;
        }
        .footer-section ul li a:hover {
            color: #ffb400;
        }
        .footer-contact-info i {
            color: #ffb400;
            margin-right: 10px;
        }
        .footer-contact-info a {
            color: #ccc;
            text-decoration: none;
        }
        .social-icons a {
            color: #fff;
            font-size: 20px;
            margin-right: 15px;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: #ffb400;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            margin-top: 30px;
            border-top: 1px solid #333;
            font-size: 13px;
        }
        .footer-logo {
            max-width: 200px;
            margin-bottom: 15px;
            height: auto;
        }
    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        body {
            background: #111;
            color: #fff;
        }

        /* Top Header */
        .top-header {
            background: #000;
            color: #ccc;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .top-header-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .top-header-info a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        .top-header-info a i {
            margin-right: 5px;
            color: #ffb400;
        }
        .top-header-info a:hover {
            color: #fff;
        }
        .top-header-social {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .top-header-social a {
            color: #ccc;
            font-size: 16px;
            transition: color 0.3s;
        }
        .top-header-social a:hover {
            color: #ffb400;
        }
        .consultation-btn {
            background-color: #ffb400;
            color: #111;
            padding: 8px 16px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .consultation-btn:hover {
            background-color: #e6a200;
        }
        @media (max-width: 768px) {
            .top-header {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }

        /* Navbar */
        nav {
            background: #1a1a1a;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        nav .logo {
            font-size: 22px;
            font-weight: 700;
            color: #ffb400;
        }
        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            transition: max-height 0.4s ease-in-out;
        }
        nav ul li a {
            text-decoration: none;
            color: #eee;
            font-weight: 500;
            transition: color 0.3s;
        }
        nav ul li a:hover {
            color: #ffb400;
        }
        .menu-toggle {
            display: none;
            font-size: 24px;
            color: #fff;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                overflow: hidden;
                max-height: 0;
                width: 100%;
                background: #1a1a1a;
                margin-top: 10px;
            }
            nav ul.active {
                max-height: 500px;
            }
            nav ul li {
                width: 100%;
                text-align: center;
                padding: 10px 0;
            }
            .menu-toggle {
                display: block;
            }
        }

        /* WhatsApp & Call Buttons */
        .nav-btn {
            padding: 8px 14px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: 0.3s;
        }
        .whatsapp-btn {
            background: #25D366;
            color: #fff;
        }
        .whatsapp-btn:hover {
            background: #1da851;
        }
        .call-btn {
            background: #ffb400;
            color: #111;
        }
        .whatsapp-btn i {
            animation: pulse 1.5s infinite;
            transform-origin: center;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); color: #fff; }
            100% { transform: scale(1); }
        }

        /* Banner (Header Section) */
        header {
            max-width: 1200px;
            margin: 20px auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            background: #1c1c1c;
            padding: 20px;
            border-radius: 12px;
            flex-wrap: wrap;
            animation: fadeIn 1s ease-in-out;
            color: #fff;
        }
        header h1,
        header p {
            color: #fff;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .banner-text {
            flex: 1;
            min-width: 280px;
        }
        .banner-text h1 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            animation: slideIn 1s ease;
        }
        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-40px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .banner-text p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #ccc;
        }
        .cta-btn {
            display: inline-block;
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            color: #111;
            background: #ffb400;
            border-radius: 30px;
            text-decoration: none;
            transition: 0.3s;
        }
        .cta-btn:hover {
            background: #e6a200;
            transform: translateY(-2px);
        }
        .banner-form {
            flex: 1;
            background: #1c1c1c;
            padding: 20px;
            border-radius: 12px;
            min-width: 280px;
            animation: fadeInUp 1.2s ease;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .banner-form h2 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #ffb400;
        }
        .banner-form input,
        .banner-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 12px;
            border: none;
            border-radius: 8px;
            background: #2b2b2b;
            color: #fff;
            font-size: 14px;
        }
        .banner-form textarea {
            resize: none;
            height: 90px;
        }
        .banner-form button {
            width: 100%;
            padding: 12px;
            font-size: 15px;
            font-weight: 600;
            color: #111;
            background: #ffb400;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: 0.3s;
        }
        .banner-form button:hover {
            background: #e6a200;
        }

        /* Slider specific styles */
        .slider-container {
            max-width: 1600px;
            height: 375px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
        }
        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }
        .slides img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            flex-shrink: 0;
            display: block;
        }
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            padding: 12px;
            cursor: pointer;
            font-size: 18px;
            border-radius: 50%;
            transition: background 0.3s;
        }
        .slider-btn:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        .prev-btn {
            left: 10px;
        }
        .next-btn {
            right: 10px;
        }
        @media (max-width: 1600px) {
            .slider-container {
                width: 100%;
                border-radius: 0;
            }
        }

        /* About Us */
        .about {
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 50px 20px;
            max-width: 1200px;
            margin: auto;
            flex-wrap: wrap;
        }
        .about img {
            width: 100%;
            max-width: 500px;
            border-radius: 12px;
            object-fit: cover;
        }
        .about-text {
            flex: 1;
            min-width: 280px;
        }
        .about-text h2 {
            font-size: 26px;
            margin-bottom: 15px;
            color: #ffb400;
        }
        .about-text p {
            line-height: 1.7;
            color: #ccc;
            margin-bottom: 20px;
        }

        /* Stats */
        .stats {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 10px;
            text-align: center;
            flex-wrap: wrap;
        }
        .stat {
            background: #1c1c1c;
            padding: 18px;
            border-radius: 12px;
            flex: 1;
            min-width: 140px;
            transition: transform 0.3s;
        }
        .stat:hover {
            transform: translateY(-5px);
        }
        .stat i {
            font-size: 26px;
            margin-bottom: 8px;
            color: #ffb400;
        }
        .stat h3 {
            font-size: 18px;
            color: #fff;
            margin-bottom: 5px;
        }
        .stat p {
            color: #aaa;
            font-size: 13px;
        }

        /* Services */
        .services {
            padding: 50px 20px;
            max-width: 1200px;
            margin: auto;
        }
        .services h2 {
            text-align: center;
            font-size: 26px;
            margin-bottom: 30px;
            color: #ffb400;
        }
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }
        .service {
            background: #1c1c1c;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            transition: 0.3s;
        }
        .service:hover {
            transform: translateY(-5px);
        }
        .service i {
            font-size: 34px;
            margin-bottom: 12px;
            color: #ffb400;
        }
        .service h3 {
            margin-bottom: 8px;
            font-size: 18px;
        }


        /* Testimonials */
        .testimonials {
            padding: 60px 20px;
            background: linear-gradient(135deg, #1a1a1a, #000);
        }
        .testimonials h2 {
            text-align: center;
            font-size: 28px;
            margin-bottom: 40px;
            color: #ffb400;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1100px;
            margin: auto;
        }
        .testimonial {
            background: #1c1c1c;
            padding: 25px;
            border-radius: 14px;
            font-size: 15px;
            line-height: 1.6;
            color: #ddd;
            position: relative;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .testimonial:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
        }
        .testimonial:before {
            content: "“";
            font-size: 50px;
            color: #ffb400;
            position: absolute;
            top: -10px;
            left: 15px;
            opacity: 0.15;
        }
        .testimonial h4 {
            margin-top: 15px;
            color: #ffb400;
            font-weight: 600;
            text-align: right;
        }

        /* FAQ Section Styles */
        .faq-container {
            max-width: 900px;
            margin: auto;
            padding: 0 20px;
        }
        .faq-item {
            background: #1c1c1c;
            margin-bottom: 15px;
            border-radius: 12px;
            overflow: hidden;
        }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            outline: none;
            text-align: left;
            padding: 18px 20px;
            font-size: 16px;
            font-weight: 600;
            color: #ffb400;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question i {
            transition: transform 0.3s;
        }
        .faq-item.active .faq-question i {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            color: #ccc;
            line-height: 1.6;
            background: #222;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 15px 20px;
        }

        /* Contact */
        .contact {
            background: #111;
            padding: 60px 20px;
        }
        .contact-container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            gap: 30px;
            align-items: center;
            flex-wrap: wrap;
        }
        .contact-form {
            flex: 1;
            background: #1c1c1c;
            padding: 25px;
            border-radius: 12px;
            min-width: 280px;
        }
        .contact-form h2 {
            color: #ffb400;
            margin-bottom: 18px;
            font-size: 22px;
        }
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: none;
            border-radius: 8px;
            background: #2b2b2b;
            color: #fff;
            font-size: 14px;
        }
        .contact-form textarea {
            height: 90px;
            resize: none;
        }
        .contact-form button {
            width: 100%;
            padding: 12px;
            font-size: 15px;
            font-weight: 600;
            color: #111;
            background: #ffb400;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: 0.3s;
        }
        .contact-form button:hover {
            background: #e6a200;
        }
        .contact-image {
            flex: 1;
            min-width: 280px;
        }
        .contact-image img {
            width: 100%;
            border-radius: 12px;
            object-fit: cover;
        }

        /* Footer */
        .main-footer {
            background: #1a1a1a;
            padding: 50px 20px;
            color: #ccc;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: auto;
        }
        .footer-section h4 {
            color: #ffb400;
            font-size: 18px;
            margin-bottom: 15px;
            border-bottom: 2px solid #ffb400;
            padding-bottom: 5px;
        }
        .footer-section p {
            font-size: 14px;
            line-height: 1.6;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li a {
            text-decoration: none;
            color: #ccc;
            font-size: 14px;
            line-height: 2;
            transition: color 0.3s;
            display: block;
        }
        .footer-section ul li a:hover {
            color: #ffb400;
        }
        .footer-contact-info i {
            color: #ffb400;
            margin-right: 10px;
        }
        .footer-contact-info a {
            color: #ccc;
            text-decoration: none;
        }
        .social-icons a {
            color: #fff;
            font-size: 20px;
            margin-right: 15px;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: #ffb400;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            margin-top: 30px;
            border-top: 1px solid #333;
            font-size: 13px;
        }
        .footer-logo {
            max-width: 200px;
            margin-bottom: 15px;
            height: auto;
        }
    
    /* DROPDOWN FIX */
nav ul li{
    position: relative;
}

/* Arrow spacing */
nav ul li a .arrow{
    font-size:12px;
    margin-left:5px;
    transition:0.3s;
}

/* Rotate arrow */
nav ul li:hover .arrow{
    transform:rotate(180deg);
}

/* Dropdown menu */
nav ul li ul{
    position:absolute;
    top:40px;
    left:40%;
    background:#000;
    display:none;
    min-width:200px;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.6);
}

/* Show dropdown */
nav ul li:hover ul{
    display:block;
}

/* Dropdown items */
nav ul li ul li{
    display:block;
    width:100%;
}

nav ul li ul li a{
    display:block;
    padding:12px 18px;
    color:#ccc;
    transition:0.3s;
}

/* Hover effect */
nav ul li ul li a:hover{
    background:#111;
    color:#ffb400;
}

/* IMPORTANT FIX */
nav{
    overflow:visible !important;
}

/* Dropdown Parent */
nav ul li{
    position:relative;
}

/* Dropdown Menu */
nav ul li ul{
    position:absolute;
    top:100%;
    left:0;
    background:#000;
    display:none;
    min-width:220px;
    border-radius:8px;
    z-index:9999; /* MOST IMPORTANT */
}

/* Show Dropdown */
nav ul li:hover ul{
    display:block;
}

/* Items */
nav ul li ul li{
    display:block;
}

nav ul li ul li a{
    display:block;
    padding:12px 18px;
    color:#ccc;
}

nav ul li ul li a:hover{
    background:#111;
    color:#ffb400;
}

/* MEGA MENU */
.mega-parent{
    position:relative;
}

.mega-menu{
    position:absolute;
    top:60px;
    left:60px;
    width:700px;
    background:#000;
    display:none;
    padding:25px;
    border-radius:10px;
    box-shadow:0 20px 40px rgba(0,0,0,0.7);
    z-index:9999;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* SHOW ON HOVER */
.mega-parent:hover .mega-menu{
    display:grid;
}

/* COLUMN */
.mega-column h4{
    color:#ffb400;
    margin-bottom:10px;
    font-size:16px;
}

.mega-column a{
    display:block;
    color:#ccc;
    text-decoration:none;
    margin:8px 0;
    font-size:14px;
    transition:0.3s;
}

.mega-column a:hover{
    color:#ffb400;
    padding-left:5px;
}

/* ARROW */
.arrow{
    font-size:12px;
    margin-left:5px;
    transition:0.3s;
}

.mega-parent:hover .arrow{
    transform:rotate(180deg);
}
    
.faq-answer{
display:none;
}

.faq-item.active .faq-answer{
display:block;
}

.testimonial-slider{
    overflow:hidden;
    position:relative;
}

.slider-track{
    display:flex;
    gap:20px;
    animation:scroll 20s linear infinite;
}

.testimonial-card{
    min-width:300px;
    background:#1a1a1a;
    padding:20px;
    border-radius:15px;
    border:1px solid #222;
}

@keyframes scroll{
    0%{transform:translateX(0);}
    100%{transform:translateX(-50%);}
}