﻿ <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            background: #eef2f6;
            overflow-x: hidden;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #0f1e2f;
        }
        ::-webkit-scrollbar-thumb {
            background: #f5b342;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ffd966;
        }

        /* ----- TOP INFO BAR ----- */
        .top-info-bar {
            background: linear-gradient(145deg, #1a2a3a 0%, #0f1e2f 100%);
            padding: 0.7rem 0;
            border-bottom: 3px solid #f5b342;
            color: #f0f6ff;
            font-size: 1rem;
            position: relative;
            z-index: 10;
            animation: slideDown 0.8s ease-out;
        }
        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }
        
        .social-left {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .social-icon {
            color: #eef3ff;
            font-size: 1.9rem;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.4rem;
            height: 2.4rem;
            border-radius: 30%;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            text-decoration: none;
        }
        .social-icon:hover {
            transform: translateY(-3px) scale(1.08);
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.25);
        }
        .bi-facebook:hover { color: #1877f2; }
        .bi-instagram:hover { color: #e1306c; }
        .bi-linkedin:hover { color: #0a66c2; }
        .bi-twitter-x:hover { color: #ffffff; }

        .contact-right {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #f0f6ff;
            text-decoration: none;
            transition: color 0.15s;
            font-size: 1.1rem;
        }
        .contact-item i {
            font-size: 1.6rem;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        }
        .contact-item:hover {
            color: #ffd966;
        }
        .contact-item:hover i {
            color: #f5b342;
            transform: scale(1.05);
        }
        .divider-vertical {
            width: 1px;
            height: 28px;
            background: rgba(255,255,255,0.2);
            margin: 0 0.2rem;
        }

        /* ----- HEADER NAV ----- */
        .header-nav {
            background: #0f1e2f;
            border-bottom: 2px solid #f5b342;
            box-shadow: 0 10px 20px -8px rgba(0,0,0,0.4);
            padding: 0.4rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .navbar .navbar-brand {
            color: #ffffff;
            font-weight: 700;
            font-size: 1.7rem;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 5px rgba(245,180,66,0.3);
        }
        .navbar .navbar-brand i {
            color: #f5b342;
            font-size: 2.2rem;
            margin-right: 0.3rem;
            filter: drop-shadow(0 0 8px #f5b34277);
        }
        .navbar-nav .nav-link {
            color: #eef3ff !important;
            font-weight: 500;
            padding: 0.6rem 1.3rem !important;
            transition: all 0.25s;
            border-radius: 40px;
            margin: 0 0.2rem;
        }
        .navbar-nav .nav-link:hover {
            background: #f5b342;
            color: #0f1e2f !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 14px -6px #f5b342;
        }

        /* Fixed Dropdown Styles */
        .dropdown-menu {
            background: #1a2a3a;
            border: 2px solid #f5b342;
            border-radius: 16px;
            padding: 0.8rem 0;
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
            animation: dropdownFade 0.3s ease;
            margin-top: 0.5rem !important;
        }
        @keyframes dropdownFade {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .dropdown-item {
            color: #eef3ff;
            padding: 0.7rem 1.8rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .dropdown-item:hover {
            background: #f5b342;
            color: #0f1e2f !important;
            padding-left: 2.3rem;
        }
        .dropdown-divider {
            background: #f5b342;
            opacity: 0.3;
            margin: 0.5rem 1rem;
        }

        /* ===== ORIGINAL 3D CINEMATIC SLIDER ===== */
        .carousel-section {
            perspective: 2200px;
            overflow: visible;
            margin-top: 0;
            position: relative;
            z-index: 5;
        }
        #itServicesCarousel {
            transform-style: preserve-3d;
            transition: transform 0.1s ease;
            box-shadow: 0 30px 40px -15px rgba(0,0,0,0.5);
            border-bottom: 4px solid #f5b342;
            border-top: 2px solid rgba(245,180,66,0.3);
        }
        .carousel-item {
            height: 75vh;
            min-height: 350px;
            background: #0f1e2f;
            transform-style: preserve-3d;
            position: relative;
        }
        .carousel-item img {
            object-fit: cover;
            height: 100%;
            width: 100%;
            filter: brightness(0.65) saturate(1.2);
            transform: scale(1.02);
            transition: transform 7s ease, filter 0.5s;
            animation: slowZoom 20s infinite alternate ease-in-out;
        }
        @keyframes slowZoom {
            0% { transform: scale(1.02) translateX(0); }
            100% { transform: scale(1.12) translateX(-1%) translateY(1%); }
        }
        .carousel-item.active img {
            animation: slowZoomPane 18s infinite alternate;
        }
        @keyframes slowZoomPane {
            0% { transform: scale(1.02) translateX(0) translateY(0); }
            100% { transform: scale(1.15) translateX(2%) translateY(-1.5%); }
        }

        .carousel-inner {
            transform-style: preserve-3d;
            box-shadow: 0 0 0 2px rgba(245,180,66,0.2) inset;
        }

        .carousel-caption {
            background: linear-gradient(145deg, rgba(10,22,35,0.85) 0%, rgba(2,12,22,0.95) 100%);
            border-left: 8px solid #f5b342;
            border-radius: 40px 10px 40px 10px;
            padding: 1.5rem 2.5rem;
            bottom: 15%;
            max-width: 600px;
            left: 8%;
            right: auto;
            text-align: left;
            box-shadow: 0 30px 40px -10px black, 0 0 0 2px rgba(245,180,66,0.3) inset;
            backdrop-filter: blur(10px);
            transform: rotateX(2deg) rotateY(-2deg) translateZ(20px);
            animation: floatCaption 4s infinite alternate ease-in-out;
            border-bottom: 3px solid #f5b342;
        }
        @keyframes floatCaption {
            0% { transform: rotateX(2deg) rotateY(-2deg) translateZ(20px) translateY(0); }
            100% { transform: rotateX(1deg) rotateY(-1deg) translateZ(30px) translateY(-5px); }
        }
        .carousel-caption h3 {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-shadow: 3px 3px 0 #0f1e2f, 5px 5px 15px black;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
        .carousel-caption p {
            font-size: 1.2rem;
            color: #f0f6ff;
            margin-bottom: 0;
            font-weight: 400;
            text-shadow: 2px 2px 5px black;
            opacity: 0.9;
        }
        .badge-it {
            background: #f5b342;
            color: #0f1e2f;
            padding: 0.3rem 1.5rem;
            border-radius: 60px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 0.7rem;
            font-size: 1rem;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 14px -4px #f5b342, 0 0 0 2px white;
            transform: translateZ(15px);
            animation: badgeGlow 2s infinite alternate;
        }
        @keyframes badgeGlow {
            0% { box-shadow: 0 8px 14px -4px #f5b342, 0 0 0 2px white; }
            100% { box-shadow: 0 8px 22px 0px #f5b342, 0 0 0 3px #ffffffcc; }
        }

        .carousel-control-prev, .carousel-control-next {
            width: 6%;
            opacity: 1;
            filter: drop-shadow(0 10px 8px black);
        }
        .carousel-control-prev-icon, .carousel-control-next-icon {
            background-color: #0f1e2f;
            border-radius: 50%;
            padding: 1.5rem;
            border: 3px solid #f5b342;
            background-size: 60%;
            box-shadow: 0 0 30px #f5b342, 0 15px 25px black;
            transition: all 0.2s;
            transform: scale(0.9) translateZ(30px);
        }
        .carousel-control-prev:hover .carousel-control-prev-icon,
        .carousel-control-next:hover .carousel-control-next-icon {
            transform: scale(1.1) translateZ(40px);
            background-color: #f5b342;
            border-color: white;
        }

        .carousel-indicators [data-bs-target] {
            background-color: #f5b342;
            width: 14px;
            height: 14px;
            border-radius: 0;
            transform: rotate(45deg) translateZ(10px);
            border: 2px solid white;
            margin: 0 6px;
            opacity: 0.8;
            box-shadow: 0 0 15px gold;
        }
        .carousel-indicators .active {
            opacity: 1;
            transform: rotate(45deg) scale(1.2) translateZ(20px);
            background-color: white;
            border-color: #f5b342;
        }

        /* ===== ABOUT US SECTION ===== */
        .about-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
            position: relative;
            overflow: hidden;
        }
        .about-title {
            color: #0f1e2f;
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }
        .about-title span {
            color: #f5b342;
            border-bottom: 3px solid #f5b342;
            padding-bottom: 5px;
        }
        .about-text {
            color: #4a5568;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        .about-features {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }
        .about-features li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem 1rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .about-features li:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(245,180,66,0.2);
        }
        .about-features i {
            color: #f5b342;
            font-size: 1.5rem;
            background: rgba(245,180,66,0.1);
            padding: 10px;
            border-radius: 50%;
        }
        .about-features strong {
            color: #0f1e2f;
        }
        .about-image-wrapper {
            position: relative;
            padding: 20px;
        }
        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            border: 4px solid #f5b342;
            transform: rotate(2deg);
            transition: all 0.3s ease;
        }
        .about-image:hover {
            transform: rotate(0deg) scale(1.02);
        }
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .experience-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: #f5b342;
            color: #0f1e2f;
            padding: 20px;
            border-radius: 50%;
            width: 120px;
            height: 120px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(245,180,66,0.5);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        .experience-badge span {
            font-size: 2rem;
            line-height: 1;
        }

        /* ===== SERVICES SECTION ===== */
        .services-section {
            padding: 80px 0;
            background: #0f1e2f;
        }
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-header h2 {
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .section-header h2 span {
            color: #f5b342;
        }
        .section-header p {
            color: #eef3ff;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }
        .service-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(245,180,66,0.2);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            border-color: #f5b342;
            box-shadow: 0 20px 30px rgba(245,180,66,0.3);
            background: #f5b342;
        }
        .service-card:hover .service-icon,
        .service-card:hover h3,
        .service-card:hover p {
            color: #0f1e2f;
        }
        .service-icon {
            font-size: 3rem;
            color: #f5b342;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        .service-card h3 {
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        .service-card p {
            color: #eef3ff;
            margin-bottom: 0;
            transition: all 0.3s ease;
            opacity: 0.8;
        }

        /* ===== WHAT WE DO SECTION ===== */
        .whatwedo-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
        }
        .process-step {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            border-bottom: 4px solid transparent;
        }
        .process-step:hover {
            transform: translateY(-10px);
            border-bottom-color: #f5b342;
            box-shadow: 0 20px 40px rgba(245,180,66,0.2);
        }
        .step-number {
            width: 60px;
            height: 60px;
            background: #f5b342;
            color: #0f1e2f;
            font-size: 1.8rem;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 10px 20px rgba(245,180,66,0.3);
        }
        .process-step h3 {
            color: #0f1e2f;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        .process-step p {
            color: #4a5568;
            margin-bottom: 0;
        }

        /* ===== WHY CHOOSE US SECTION ===== */
        .whychoose-section {
            padding: 80px 0;
            background: #0f1e2f;
            color: white;
        }
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(245,180,66,0.2);
        }
        .feature-box:hover {
            transform: translateY(-5px);
            background: rgba(245,180,66,0.1);
            border-color: #f5b342;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: #f5b342;
            margin-bottom: 20px;
        }
        .feature-box h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        .feature-box p {
            color: #eef3ff;
            opacity: 0.8;
            margin-bottom: 0;
        }

        /* ===== CONTACT FORM SECTION ===== */
        .contact-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
        }
        .contact-info {
            padding: 40px;
            background: #0f1e2f;
            border-radius: 30px;
            color: white;
            height: 100%;
            border: 3px solid #f5b342;
        }
        .contact-info h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #f5b342;
        }
        .contact-info p {
            color: #eef3ff;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        .contact-details {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }
        .contact-details li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            color: #eef3ff;
        }
        .contact-details i {
            color: #f5b342;
            font-size: 1.5rem;
            width: 40px;
        }
        .contact-form {
            padding: 40px;
            background: white;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-bottom: 5px solid #f5b342;
        }
        .form-title {
            font-size: 2rem;
            font-weight: 700;
            color: #0f1e2f;
            margin-bottom: 10px;
        }
        .form-subtitle {
            color: #64748b;
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .form-control:focus {
            outline: none;
            border-color: #f5b342;
            box-shadow: 0 0 0 3px rgba(245,180,66,0.2);
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: #f5b342;
            color: #0f1e2f;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 10px;
            width: 100%;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .submit-btn:hover {
            background: #ffd966;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(245,180,66,0.3);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: linear-gradient(145deg, #1a2a3a 0%, #0f1e2f 100%);
            color: #eef3ff;
            padding: 60px 0 20px;
            border-top: 4px solid #f5b342;
        }
        .footer h5 {
            color: #f5b342;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: #f5b342;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #eef3ff;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .footer-links a:hover {
            color: #f5b342;
            transform: translateX(5px);
        }
        .footer-contact {
            list-style: none;
            padding: 0;
        }
        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        .footer-contact i {
            color: #f5b342;
            font-size: 1.2rem;
        }
        .footer-newsletter input {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(245,180,66,0.3);
            color: white;
            padding: 10px 15px;
            border-radius: 8px;
            width: 100%;
            margin-bottom: 10px;
        }
        .footer-newsletter input:focus {
            outline: none;
            border-color: #f5b342;
        }
        .footer-newsletter button {
            background: #f5b342;
            color: #0f1e2f;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
        }
        .footer-newsletter button:hover {
            background: #ffd966;
            transform: translateY(-2px);
        }
        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(245,180,66,0.2);
        }
        .footer-bottom p {
            margin-bottom: 0;
            opacity: 0.8;
            font-size: 0.9rem;
        }

        /* Loading Animation */
        .loading-animation {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #0f1e2f;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        .loader {
            width: 80px;
            height: 80px;
            border: 5px solid rgba(245,180,66,0.2);
            border-top: 5px solid #f5b342;
            border-radius: 50%;
            animation: spin 1s infinite linear;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .carousel-item { height: 45vh; }
            .carousel-caption { padding: 1.2rem; }
            .carousel-caption h3 { font-size: 1.8rem; }
        }
        @media (max-width: 768px) {
            .carousel-item { height: 40vh; }
            .carousel-caption { left: 5%; right: 5%; padding: 1rem; }
            .carousel-caption h3 { font-size: 1.5rem; }
            .contact-info, .contact-form { padding: 30px; }
        }
    </style>