

        .industries-section {
            padding: 80px 0;
            background-color: #111111;
        }

        .industries-section .section-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            color: #D4AF37;
            margin-bottom: 15px;
        }

        .industries-section .section-description {
            text-align: center;
            font-size: 1.1rem;
            color: #aaaaaa;
            max-width: 700px;
            margin: 0 auto 50px;
            font-weight: 300;
            line-height: 1.6;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .solution-card {
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5), 0 0 10px rgba(212, 175, 55, 0.1);
            transition: box-shadow 0.3s, transform 0.3s;
        }

        .solution-card:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.3);
            transform: translateY(-5px);
        }

        .card-img {
            width: 100%;
            height: 220px;
            overflow: hidden;
        }

        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .solution-card:hover .card-img img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 25px 20px;
        }

        .card-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #2980b9;
            font-weight: 600;
        }

        .card-content p {
            color: #aaaaaa;
            line-height: 1.6;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .link-arrow {
            color: #c0392b;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            text-decoration: none;
            transition: gap 0.3s;
        }

        .link-arrow:hover {
            gap: 10px;
            color: #a03022;
        }

        .view-all-link {
            text-align: center;
            margin-top: 40px;
        }

        .view-all-link a {
            display: inline-block;
            background-color: #D4AF37;
            color: white;
            padding: 12px 35px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s;
        }

        .view-all-link a:hover {
            background-color: #f1f1f1;
            color: #000000 !important;
        }

        @media (max-width:900px) {
            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width:600px) {
            .solutions-grid {
                grid-template-columns: 1fr;
            }

            .card-img {
                height: 180px;
            }
        }

        .footer-cert-logos {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            align-items: center;
        }

        .footer-cert-logos img {
            height: 70px;
            width: auto;
            object-fit: contain;
            background-color: #1a1a1a;
            padding: 10px 15px;
            border-radius: 10px;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .footer-cert-logos img:hover {
            transform: scale(1.08);
        }

        @media (max-width:768px) {
            .footer-cert-logos {
                justify-content: flex-start;
                margin-bottom: 20px;
            }

            .footer-cert-logos img {
                height: 60px;
                padding: 8px 12px;
            }
        }


        .hero-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            z-index: 10;
        }

        .hero-content {
            flex: 1.2;
            animation: cubic-bezier(0.19, 1, 0.22, 1) 1.5s both fadeInUP;
            margin-top: -60px;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 3.8rem;
            line-height: 1.15;
            margin-bottom: 25px;
            color: var(--text-bright);
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .uae-flag-hero {
            border-radius: 6px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .uae-flag-hero:hover {
            transform: translateY(-6px) scale(1.08) rotate(2deg);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
            border-color: rgba(212, 175, 55, 0.5);
        }

        .hero-content .highlight {
            color: #D4AF37;
            display: block;
            background: linear-gradient(135deg, #F9DF9F, #D4AF37);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 600px;
            line-height: 1.7;
            font-family: 'Inter', sans-serif;
            margin-left: auto;
            margin-right: auto;
        }

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








        .hero-bg-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.03);
            filter: blur(60px);
            animation: pulse-glow 10s infinite alternate;
        }

        .circle-1 {
            width: 500px;
            height: 500px;
            top: -150px;
            left: -150px;
        }

        .circle-2 {
            width: 400px;
            height: 400px;
            bottom: -100px;
            right: 5%;
            background: rgba(212, 175, 55, 0.02);
        }

        .orb {
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
            top: 15%;
            right: 15%;
            border-radius: 50%;
            animation: float-around 25s infinite linear;
        }

        @media (max-width:1200px) {
            .hero-content h1 {
                font-size: 3.5rem;
            }
        }

        @media (max-width:992px) {
            .hero-wrapper {
                flex-direction: column;
                text-align: center;
                gap: 50px;
                padding-top: 40px;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .hero-content p {
                margin: 0 auto 40px;
            }

            .hero-buttons {
                justify-content: center;
            }


        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: #D4AF37;
            color: #0c0c0c !important;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 700;
            font-family: 'Outfit', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 2px solid #D4AF37;
        }

        .btn:hover {
            background-color: transparent;
            color: #D4AF37 !important;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .btn-secondary {
            background-color: #D4AF37;
            border: 2px solid #D4AF37;
            color: #000000 !important;
        }

        .btn-secondary:hover {
            background-color: transparent;
            color: #D4AF37 !important;
        }

        .btn-large {
            padding: 13px 30px;
            font-size: 0.95rem;
            min-width: 180px;
            /* Standardize width for better balance */
            text-align: center;
        }

        .manufacturing-section {
            padding: 80px 0;
        }

        .manufacturing-wrapper {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .manufacturing-image {
            flex: 1;
        }

        .manufacturing-content {
            flex: 1;
        }

        .section-title.left-align {
            text-align: left;
        }

      
        


        .vision-title {
            font-size: 3rem;
            margin-bottom: 30px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .vision-title .highlight {
            position: relative;
            display: inline-block;
        }

        .vision-description p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .vision-btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: #1a1a1a;
            color: #D4AF37;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .vision-btn:hover {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            transform: translateY(-3px);
        }

        .contact-cta {
            padding: 80px 0;
            text-align: center;
        }

        .contact-info p {
            margin: 10px 0;
        }

        footer {
            background-color: #050505;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            color: #999;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 40px;
            padding: 0 15px;
        }

        .footer-section h3,
        .footer-section h4 {
            color: white;
            margin-bottom: 20px;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: #999;
            text-decoration: none;
        }

        .footer-section ul li a:hover {
            color: white;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (max-width:768px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }



            .manufacturing-wrapper {
                flex-direction: column;
            }



            .vision-title {
                font-size: 2rem;
            }

            .vision-description p {
                font-size: 1rem;
            }

            .vision-section {
                background-attachment: scroll;
                padding: 60px 0;
            }
        }

        .seo-insights-section {
            background-color: #0c0c0c !important;
            color: #ccc !important;
            padding: 100px 0;
        }

        .seo-content-wrapper h2 {
            background: linear-gradient(135deg, #F9DF9F, #D4AF37);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 2.5rem;
            margin-bottom: 50px !important;
            text-align: center;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .seo-content-wrapper h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
        }

        .seo-block {
            position: relative;
            margin-bottom: 100px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .seo-block.active-animate {
            opacity: 1;
            transform: translateY(0);
        }

        .seo-block-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .seo-image-container {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            z-index: 2;
        }

        .seo-image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 1px solid rgba(212, 175, 55, 0.3);
            pointer-events: none;
            z-index: 3;
            border-radius: 15px;
        }

        .seo-text-container h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 900;
            color: #ffffff !important;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            line-height: 1.2;
        }

        .seo-text-container h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: #D4AF37;
        }

        .seo-text-container p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #ddd;
        }

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

        .seo-block:hover .seo-image-container img {
            transform: scale(1.1);
        }

        .seo-text-container {
            padding: 10px;
            min-width: 0;
        }

        @media (max-width: 900px) {

            .seo-block-grid,
            .seo-block:nth-child(even) .seo-block-grid,
            .seo-block.reveal-right .seo-block-grid {
                grid-template-columns: 1fr !important;
                gap: 25px;
            }

            .seo-image-container {
                height: auto;
            }

            .seo-image-container img {
                height: auto;
                object-fit: contain;
            }

            .seo-block.reveal-right .seo-image-container {
                order: -1;
            }

            /* Image first on mobile */
            .seo-text-container {
                padding: 0 15px 20px;
            }
        }
    
        .menu-toggle-btn {
            color: #1a1a1a !important;
        }
    
