
        /* Modern CSS with variables */
        :root {
            --primary: #0a0f1c;
            --secondary: #1a1f2e;
            --accent: #f97316;
            --accent-light: #fb923c;
            --gray: #6b7280;
            --light: #f9fafb;
            --border: #e5e7eb;
            --success: #10b981;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
            --shadow: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        body {
            background-color: #ffffff;
            color: #1f2937;
            line-height: 1.6;
            overflow-x: hidden;
               padding-top: 95px;   /* was 120px */
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 2px 24px;
        }

        /* Header Styles */
        .header-dark {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

.header-dark .top-bar {
    background: rgba(0,0,0,0.3);
    padding: 3px 0;              /* smaller height */
    font-size: 0.65rem;          /* very small text */
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

        .header-dark .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-dark .phone-number {
            background: var(--accent);
            padding: 3px 8px;
            border-radius: 22px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.65rem;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .header-dark .phone-number:hover {
            background: var(--accent-light);
            transform: scale(1.05);
        }

        .header-dark .social-links a {
            color: rgba(255,255,255,0.7);
       margin-left: 8px;
    font-size: 0.7rem;
            transition: all 0.3s ease;
        }

        .header-dark .social-links a:hover {
            color: var(--accent);
        }

        .header-dark .main-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .header-dark .logo h2 {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .header-dark .logo .ai {
            color: var(--accent);
            -webkit-text-fill-color: var(--accent);
        }

        .header-dark .nav-menu {
            display: flex;
            list-style: none;
            gap: 5px;
        }

        .header-dark .nav-item {
            position: relative;
        }

        .header-dark .nav-link {
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 500;
            font-size: 0.95rem;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .header-dark .nav-link:hover {
            background: rgba(255,255,255,0.1);
            color: var(--accent);
        }

        .header-dark .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 350px;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
            padding: 10px 0;
            margin-top: 10px;
        }

        li.nav-item.minn .dropdown-menu { 
            min-width: 202px;
        }
        
        .header-dark .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .header-dark .dropdown-menu a {
            color: #1f2937;
            padding: 12px 20px;
            display: block;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .header-dark .dropdown-menu a:hover {
            background: #f3f4f6;
            border-left-color: var(--accent);
            padding-left: 25px;
        }

        .header-dark .dropdown-menu h4 {
            padding: 10px 20px;
            color: var(--accent);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
            border-bottom: 1px solid #e5e7eb;
        }

		.dropdown-menu.dropdown-columns{ line-height: 1.4; }

        .dropdown-columns {
            display: flex;
            gap: 20px;
            padding: 15px;
            min-width: 500px;
        }

        .dropdown-column {
            flex: 1;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 400px;
            height: 100vh;
            background: #0f172a;
            z-index: 2000;
            overflow-y: auto;
            transition: right 0.3s ease;
            padding: 20px;
            box-shadow: -5px 0 30px rgba(0,0,0,0.3);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .mobile-nav-header h2 {
            color: white;
            font-size: 1.5rem;
        }

        .mobile-nav-header .ai {
            color: var(--accent);
        }

        .mobile-nav-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }

        .mobile-nav-menu {
            list-style: none;
        }

        .mobile-nav-item {
            margin-bottom: 5px;
        }

        .mobile-nav-link {
            color: white;
            text-decoration: none;
            padding: 15px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            cursor: pointer;
        }

        .mobile-nav-link i:first-child {
            color: var(--accent);
            margin-right: 10px;
            width: 20px;
        }

        .mobile-nav-link .fa-chevron-down {
            transition: transform 0.3s ease;
        }

        .mobile-dropdown {
            display: none;
            padding: 10px 0 10px 20px;
            background: rgba(0,0,0,0.2);
            border-radius: 8px;
            margin: 5px 0 15px;
        }

        .mobile-dropdown.active {
            display: block;
        }

        .mobile-dropdown a {
            color: #e0e0e0;
            text-decoration: none;
            padding: 12px 0;
            display: block;
            font-size: 0.95rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .mobile-dropdown a:last-child {
            border-bottom: none;
        }

        .mobile-dropdown h4 {
            color: var(--accent);
            font-size: 0.8rem;
            text-transform: uppercase;
            margin: 15px 0 5px;
            letter-spacing: 1px;
        }

        .mobile-dropdown h4:first-of-type {
            margin-top: 0;
        }

        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1999;
            display: none;
        }

        .mobile-nav-overlay.active {
            display: block;
        }

        .mobile-contact {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .mobile-contact a {
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 15px;
        }

        .mobile-contact i {
            color: var(--accent);
            margin-right: 10px;
            width: 20px;
        }

        .mobile-social {
            display: flex;
            gap: 20px;
            margin-top: 15px;
        }

        .mobile-social a {
            color: white;
            font-size: 1.2rem;
        }

        /* Hero Section */
        .hero-modern {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-modern::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.1"><path d="M0 0 L200 0 L200 200 Z" fill="%23f97316"/></svg>');
            background-size: 300px;
            opacity: 0.1;
        }

        .hero-modern .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .hero-content h1 span {
            color: var(--accent);
            display: block;
            font-size: 2rem;
            font-weight: 400;
            margin-top: 10px;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: #e0e0e0;
            margin-bottom: 32px;
            max-width: 500px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
        }

        .hero-stat-label {
            font-size: 0.9rem;
            color: #aaa;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            margin-top: 32px;
        }

        .btn-primary {
            background: var(--accent);
            color: white;
            padding: 14px 32px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 14px 32px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid rgba(255,255,255,0.2);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.3);
        }

        .hero-image {
            position: relative;
        }

 

        /* Trust Bar */
        .trust-bar {
            background: #f8fafc;
            padding: 40px 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .trust-bar p {
            text-align: center;
            color: #64748b;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .trust-logos {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            opacity: 0.7;
        }

        .trust-logos span {
            font-size: 1.2rem;
            font-weight: 600;
            color: #94a3b8;
        }

        /* Services Grid */
        .services-modern {
            padding: 100px 0;
            background: white;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 16px;
        }

        .section-header p {
            color: #64748b;
            font-size: 1.1rem;
        }

        .services-grid-modern {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card-modern {
            background: #f8fafc;
            border-radius: 24px;
            padding: 32px;
            transition: var(--transition);
            border: 1px solid #e2e8f0;
        }

        .service-card-modern:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent);
        }

        .service-icon-modern {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .service-icon-modern i {
            font-size: 1.8rem;
            color: var(--accent);
        }

        .service-card-modern h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: #0f172a;
        }

        .service-card-modern p {
            color: #475569;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            padding: 8px 0;
            color: #475569;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-features li i {
            color: var(--accent);
            font-size: 0.9rem;
        }

        /* Metrics Strip */
        .metrics-strip {
            background: #0f172a;
            padding: 60px 0;
            color: white;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .metric-item h3 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 8px;
        }

        .metric-item p {
            color: #94a3b8;
            font-size: 1rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: #f8fafc;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: white;
            padding: 32px;
            border-radius: 24px;
            box-shadow: var(--shadow);
            border: 1px solid #e2e8f0;
        }

        .testimonial-card:hover {
            box-shadow: var(--shadow-lg);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            background: #e2e8f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0f172a;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .testimonial-info h4 {
            color: #0f172a;
            margin-bottom: 4px;
        }

        .testimonial-info p {
            color: #64748b;
            font-size: 0.85rem;
        }

        .testimonial-quote {
            color: #475569;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .testimonial-meta {
            display: flex;
            justify-content: space-between;
            color: #94a3b8;
            font-size: 0.85rem;
            border-top: 1px solid #e2e8f0;
            padding-top: 20px;
        }

        .testimonial-meta span i {
            color: var(--accent);
            margin-right: 4px;
        }

        /* Hall of Fame */
        .hall-of-fame {
            padding: 80px 0;
            background: white;
        }

        .company-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .company-item {
            background: #f8fafc;
            padding: 20px;
            text-align: center;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            color: #475569;
            font-weight: 500;
            transition: var(--transition);
        }

        .company-item:hover {
            background: #0f172a;
            color: white;
            transform: translateY(-3px);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            padding: 80px 0;
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.1rem;
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: #f8fafc;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-top: 40px;
        }

        .form-container {
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
        }

        .form-container h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #1e293b;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: #f8fafc;
        }

        .form-control:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
            background: white;
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 16px;
            padding-right: 40px;
        }

        .contact-info-side {
            padding: 20px;
        }

        .contact-info-side h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 20px;
        }

        .contact-info-side > p {
            color: #475569;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .contact-details {
            margin-bottom: 40px;
        }

        .contact-detail-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        .contact-detail-item i {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: var(--accent);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .contact-detail-item h4 {
            color: #0f172a;
            margin-bottom: 5px;
            font-size: 1rem;
        }

        .contact-detail-item p {
            color: #64748b;
            line-height: 1.5;
            font-size: 0.95rem;
        }

        .contact-info-side ul {
            list-style: none;
            margin-top: 20px;
        }

        .contact-info-side ul li {
            padding: 10px 0;
            color: #475569;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid #e2e8f0;
        }

        .contact-info-side ul li:before {
            content: "✓";
            color: var(--accent);
            font-weight: bold;
            font-size: 1.1rem;
        }

        /* Footer */
        .footer-modern {
            background: #0f172a;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-about p {
            color: #94a3b8;
            margin: 20px 0;
            line-height: 1.6;
        }

        .footer-links h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-newsletter p {
            color: #94a3b8;
            margin-bottom: 20px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #334155;
            background: #1e293b;
            color: white;
        }

        .newsletter-form button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background: var(--accent-light);
        }

        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            color: #64748b;
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: #94a3b8;
            text-decoration: none;
            margin-left: 20px;
        }

        .footer-bottom a:hover {
            color: var(--accent);
        }

        /* Success Message */
        .success-message {
            background: #10b981;
            color: white;
            padding: 15px 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            display: none;
            font-size: 0.95rem;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .header-dark .nav-menu {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .hero-modern .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-content p {
                margin: 0 auto 32px;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .hero-cta {
                justify-content: center;
            }
            
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            body {
                   padding-top: 95px;   /* was 120px */
            }
        }

        @media (max-width: 768px) {
            .header-dark .top-bar {
                padding: 6px 0;
                font-size: 0.7rem;
            }
			
			.hero-image { display:none;}
            
            .header-dark .top-bar-content {
                flex-wrap: wrap;
                gap: 5px;
            }
            
            .header-dark .top-bar-content > div:first-child {
                width: 100%;
                text-align: center;
                font-size: 0.7rem;
            }
            
            .header-dark .phone-number {
                padding: 4px 10px;
                font-size: 0.75rem;
                gap: 4px;
            }
            
            .header-dark .phone-number i {
                font-size: 0.7rem;
            }
            
            .header-dark .social-links a {
                margin-left: 8px;
                font-size: 0.8rem;
            }
            
            .header-dark .main-nav {
                padding: 8px 0;
            }
            
            .header-dark .logo h2 {
                font-size: 1.2rem;
            }
            
            .mobile-menu-toggle {
                font-size: 1.5rem;
            }
            
            body {
                padding-top: 100px;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content h1 span {
                font-size: 1.5rem;
            }
            
            .metrics-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .contact-detail-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .header-dark .phone-number span {
                display: none;
            }
            
            .header-dark .phone-number i {
                margin-right: 0;
            }
            
            .header-dark .top-bar-content > div:first-child {
                font-size: 0.65rem;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content h1 span {
                font-size: 1.2rem;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }
            
            .hero-stat {
                width: 100%;
                text-align: center;
            }
            
            .mobile-nav {
                width: 90%;
            }
            
            .form-container {
                padding: 30px 20px;
            }
            
            .form-container h3 {
                font-size: 1.5rem;
            }
            
            .contact-info-side h3 {
                font-size: 1.5rem;
            }
        }
		
		.pull_left{ left: -130px !important;}
     
	 
 
.hero-image {
    position: relative;
    width: 100%;       /* size of globe container */
    height: auto;
    margin: 0 auto;
    top: 0px;
}

/* Globe stays steady */
.hero-image .globe {
    width: 670px;
    height: auto;
}

/* Rotating SVG ring with pulsing size */
.hero-image .rotating-svg {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 200px;      /* starting size */
    height: 200px;
    transform: translate(-50%, -50%) scale(1);
    animation: pulse 5s ease-in-out infinite alternate;
}

/* Rings inside SVG spin independently */
.rotating-ring {
    transform-origin: 200px 200px; /* center of SVG viewBox */
    animation: spin 20s linear infinite;
}

/* Centered text stays still */
.hero-image .center-text {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    font-weight: bold;
    color: white;
    pointer-events: none;
}

/* Keyframes for spinning rings */
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Keyframes for pulsing SVG size */
@keyframes pulse {
    0%   { transform: translate(-50%, -50%) scale(0.25); } /* 100px */
    50%  { transform: translate(-50%, -50%) scale(1); }    /* 400px */
    100% { transform: translate(-50%, -50%) scale(0.25); } 
}

/* Align phone number to right on mobile */
@media (max-width: 768px) { 

    .header-dark .top-bar-content > div:first-child {
        width: auto;       /* let it shrink */
        text-align: left;  /* keep the first div left-aligned */
        order: 1;          /* first item */
    }
}


img {
  -webkit-user-drag: none; /* Safari, Chrome */
  user-drag: none;         /* Non-standard but supported in some browsers */
  pointer-events: none;    /* Optional: disables all mouse interactions */
}

.service-card-modern {
    text-decoration: none;
    color: inherit;
    display: block;
}

.form-message{
    margin-top:15px;
    padding:12px 16px;
    border-radius:6px;
    font-size:14px;
    display:none;
}

.form-message.success{
    background:#e6f7ed;
    color:#1f7a3f;
    border:1px solid #b7ebc6;
}

.form-message.error{
    background:#fdecea;
    color:#a32626;
    border:1px solid #f5c2c7;
}

.contact-details a, .legal-container p a,  .cookie-content a, .contact-container a {
	color: #f97316 !important;}
	


/* Cookie Banner Redesign */
.cookie-banner {
    display: none;
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 30px;
    z-index: 9999;
    max-width: 1300px;
    margin: 0 auto;
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-banner-wrapper {
    background: #071026;
    color: white;
    padding: 24px 28px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(249, 115, 22, 0.2);
    display: flex;
    align-items: center;
    gap: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.cookie-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #f97316;
    flex-shrink: 0;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.cookie-content {
    flex: 1;
    padding: 0;
}

.cookie-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: -0.3px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 12px;
    opacity: 0.9;
    max-width: 600px;
}

.cookie-link {
    color: #f97316;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
}

.cookie-link:hover {
    gap: 10px;
    border-bottom-color: #f97316;
}

.cookie-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.cookie-link:hover i {
    transform: translateX(4px);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    min-width: 120px;
}

.cookie-btn-primary {
    background: #f97316;
    color: white;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.cookie-btn-primary:hover {
    background: #fb923c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(249, 115, 22, 0.5);
    transform: translateY(-2px);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 20px;
    }

    .cookie-banner-wrapper {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .cookie-content {
        text-align: center;
    }

    .cookie-content p {
        max-width: 100%;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-banner-wrapper {
        padding: 18px;
    }

    .cookie-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .cookie-content h4 {
        font-size: 16px;
    }

    .cookie-content p {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-btn {
        width: 100%;
        padding: 10px 20px;
        min-width: auto;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .cookie-banner {
        left: 8px;
        right: 8px;
        bottom: 8px;
    }

    .cookie-banner-wrapper {
        padding: 16px;
    }

    .cookie-icon {
        display: none;
    }
}