/* ===== CSS VARIABLES ===== */
        :root {
            --primary: #ff6b00;
            --primary-dark: #e05e00;
            --primary-light: #fff0e6;
            --secondary: #2d3748;
            --dark: #121212;
            --dark-card: #1e1e1e;
            --light: #ffffff;
            --gray-bg: #f8fafc;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --radius: 16px;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        /* ===== BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Times New Roman', Times, serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--light);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family:  'Times New Roman';
            font-weight: 700;
            line-height: 1.2;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* ===== ANIMATION CLASSES ===== */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }

        /* ===== LAYOUT UTILITIES ===== */
        .container {
            width: 90%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 100px 0;
        }

        .section-bg {
            background-color: var(--gray-bg);
        }

        .section-title {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--dark);
            text-align: center;
        }

        .section-subtitle {
            color: var(--text-light);
            font-size: 1.15rem;
            max-width: 600px;
            margin: 0 auto 3rem;
            text-align: center;
        }

        .highlight {
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: var(--primary-light);
            z-index: -1;
            border-radius: 4px;
        }

        /* ===== BUTTON STYLES ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--light);
            box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--light);
            border: 2px solid var(--light);
        }

        .btn-outline:hover {
            background-color: var(--light);
            color: var(--dark);
            transform: translateY(-3px);
        }

        /* ===== HEADER STYLES ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 1000;
            transition: var(--transition);
            background: transparent;
        }

        .header.scrolled {
            background: rgba(18, 18, 18, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 15px 0;
            box-shadow: var(--shadow-sm);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--light);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo i {
            color: var(--primary);
            font-size: 1.5rem;
        }

        .logo span {
            color: var(--primary);
        }

        /* ===== NAVIGATION STYLES ===== */
        .nav-list {
            display: flex;
            gap: 2.5rem;
        }

        .nav-link {
            color: var(--light);
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            padding: 5px 0;
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
            border-radius: 2px;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%), 
                        url('images/Cover page image.jpg') no-repeat center center/cover;
            color: var(--light);
            padding-top: 80px;
        }

        .hero-content {
            max-width: 800px;
            text-align: center;
            animation: fadeInUp 1s ease-out;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 107, 0, 0.2);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 107, 0, 0.3);
            backdrop-filter: blur(5px);
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            margin-bottom: 1.5rem;
            line-height: 1.1;
            text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        }

        .hero-title span {
            color: var(--primary);
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            font-weight: 400;
            margin-bottom: 2.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            color: #e2e8f0;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== LOGO SCROLLER ===== */
        .logo-container {
            width: 100%;
            overflow: hidden;
            background-color: var(--dark);
            padding: 20px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .logo-scroll {
            display: flex;
            width: max-content;
            animation: scroll 35s linear infinite;
        }
        
        .logo-item {
            margin: 0 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .logo-item img {
            height: 50px;
            object-fit: contain;
            filter: grayscale(100%) opacity(1);
            transition: var(--transition);
        }
        
        .logo-item img:hover {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.5);
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ===== ABOUT SECTION ===== */
        .about-wrapper {
            background: var(--light);
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            padding: 50px;
            position: relative;
            overflow: hidden;
        }

        .about-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: var(--primary);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .about-text p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            color: var(--text-light);
        }

        .about-text strong {
            color: var(--text-dark);
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #e2e8f0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
        }

        .feature-text {
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
        }
        
        /* ===== SERVICES SECTION ===== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .service-card {
            position: relative;
            height: 320px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            cursor: pointer;
            background: #000;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .service-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            transition: transform 0.6s ease;
            opacity: 0.8;
        }

        .service-card:hover img {
            transform: scale(1.1);
            opacity: 0.6;
        }

        .service-card .content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
            color: var(--light);
            transition: var(--transition);
        }

        .service-icon {
            width: 45px;
            height: 45px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 15px;
            transform: translateY(20px);
            opacity: 0;
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            transform: translateY(0);
            opacity: 1;
        }

        .service-card h2 {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 0;
            transform: translateY(15px);
            transition: var(--transition);
        }

        .service-card:hover h2 {
            transform: translateY(0);
            color: var(--primary);
        }

        /* ===== CONTACT SECTION ===== */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .contact-card {
            background: var(--light);
            padding: 35px 25px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid #f1f5f9;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-light);
        }

        .contact-icon-wrapper {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: var(--gray-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.8rem;
            transition: var(--transition);
        }

        .contact-card:hover .contact-icon-wrapper {
            background: var(--primary);
            color: var(--light);
        }

        .contact-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .contact-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* ===== FOOTER ===== */
        .footer {
            background-color: var(--dark);
            color: #94a3b8;
            padding: 80px 0 0;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--light);
            margin-bottom: 20px;
            font-family: 'Poppins', sans-serif;
        }

        .footer-logo span {
            color: var(--primary);
        }

        .footer-desc {
            margin-bottom: 25px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-heading {
            color: var(--light);
            font-size: 1.2rem;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            transition: var(--transition);
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 25px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-bottom p span {
            color: var(--primary);
        }

        /* ===== FLOATING BUTTONS & MODAL (Preserved from original) ===== */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: flex-end;
        }

        .Btn {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 55px;
            height: 55px;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition-duration: 0.3s;
            box-shadow: var(--shadow-lg);
            text-decoration: none;
        }

        .whatsapp-btn { background-color: #25D366; }
        .support-btn { background-color: var(--primary); }

        .sign {
            width: 100%;
            transition-duration: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sign svg, .sign i {
            width: 28px;
            font-size: 24px;
            color: white;
            fill: white;
        }

        .text {
            position: absolute;
            right: 0%;
            width: 0%;
            opacity: 0;
            color: white;
            font-size: 1.1em;
            font-weight: 600;
            transition-duration: 0.3s;
            display: flex;
            align-items: center;
        }

        .Btn:hover {
            width: 160px;
            border-radius: 40px;
        }

        .Btn:hover .sign {
            width: 30%;
            padding-left: 15px;
        }

        .Btn:hover .text {
            opacity: 1;
            width: 70%;
            padding-right: 15px;
        }

        /* Support Modal Styles */
        .support-modal {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 1001;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .support-modal.active { display: flex; }

        .support-content {
            background-color: white;
            border-radius: var(--radius);
            width: 100%; max-width: 450px;
            overflow: hidden;
            animation: modalFadeIn 0.3s ease;
        }

        @keyframes modalFadeIn {
            from { opacity: 0; transform: scale(0.95) translateY(20px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

        .support-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white; padding: 25px;
            display: flex; justify-content: space-between; align-items: center;
        }

        .support-body { padding: 30px; }

        .support-option {
            display: flex; align-items: center; gap: 15px;
            padding: 15px; border: 1px solid #e2e8f0;
            border-radius: 12px; margin-bottom: 15px;
            transition: var(--transition); cursor: pointer;
        }

        .support-option:hover {
            border-color: var(--primary);
            background-color: var(--primary-light);
            transform: translateX(5px);
        }

        .support-icon {
            width: 45px; height: 45px; border-radius: 50%;
            background-color: white; display: flex;
            align-items: center; justify-content: center;
            color: var(--primary); font-size: 20px;
            box-shadow: var(--shadow-sm);
        }

        .support-text h4 { color: var(--dark); margin-bottom: 4px; }
        .support-text p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

        .close-btn { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 992px) {
            .hero-title { font-size: 3rem; }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; color: var(--light); }
            .header.scrolled .mobile-menu-btn { color: var(--light); }

            .nav-menu {
                position: fixed; top: 0; right: -100%;
                width: 80%; max-width: 300px; height: 100vh;
                background-color: var(--dark);
                padding: 100px 30px;
                transition: right 0.3s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            }

            .nav-menu.active { right: 0; }
            .nav-list { flex-direction: column; gap: 30px; }
            .nav-link { font-size: 1.2rem; }
            
            .hero { text-align: center; }
            .hero-buttons { flex-direction: column; }
            
            .about-wrapper { padding: 30px 20px; }
            
            .footer-bottom { flex-direction: column; text-align: center; }
        }

        @media (max-width: 576px) {
            .section { padding: 60px 0; }
            .section-title { font-size: 2rem; }
            .floating-buttons { bottom: 20px; right: 20px; }
            .Btn { width: 50px; height: 50px; }
        }