        /* Modern E-commerce Layout */
        :root {
            --primary: #1a237e;
            --primary-light: #534bae;
            --primary-dark: #000051;
            --secondary: #00b0ff;
            --accent: #ff4081;
            --success: #00c853;
            --warning: #ff9100;
            --light: #f5f5f5;
            --dark: #212121;
            --gray: #757575;
            --light-gray: #f0f0f0;
            --border: #e0e0e0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-footer: 0 -5px 25px rgba(0, 0, 0, 0.1);
            --radius: 12px;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: #f8fafc;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Simple Announcement Bar */
        .announcement-bar {
            background: var(--primary);
            color: white;
            padding: 8px 0;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Simple Header */
        .simple-header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        /* Logo - Text Only */
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-text {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #0066cc 0%, #00ccff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
            position: relative;
            padding-left: 15px;
        }

        .logo-text::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 30px;
            background: linear-gradient(to bottom, #0066cc, #00ccff);
            border-radius: 3px;
        }

        /* Simple Navigation */
        .simple-nav {
            display: flex;
            gap: 5px;
            flex: 1;
            justify-content: center;
        }

        .nav-link {
            padding: 12px 20px;
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: var(--radius);
            transition: var(--transition);
            white-space: nowrap;
        }

        .nav-link:hover {
            background: var(--light);
            color: var(--primary);
        }

        .nav-link.active {
            background: var(--primary);
            color: white;
        }

        /* Header Actions */
        .header-actions-simple {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .action-btn {
            background: var(--light);
            border: none;
            padding: 10px 15px;
            border-radius: var(--radius);
            color: var(--dark);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .action-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .action-btn.whatsapp {
            background: #25D366;
            color: white;
        }

        .action-btn.whatsapp:hover {
            background: #128C7E;
        }

        /* Mobile Menu Button */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            padding: 10px;
        }

        /* Mobile Navigation - FIXED */
        .mobile-nav-simple {
            display: none;
            background: white;
            padding: 0 20px;
            border-top: 1px solid var(--border);
            flex-direction: column;
            gap: 10px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
        }

        .mobile-nav-simple.active {
            display: flex;
            max-height: 500px;
            padding: 20px;
            animation: slideDown 0.3s ease-in-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* NEW Hero Slider */
        .hero-slider {
            max-width: 1400px;
            margin: 30px auto;
            padding: 0 20px;
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            height: 500px;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: var(--radius);
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            padding: 0 60px;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            background: rgba(0, 102, 204, 0.85);
            color: white;
            padding: 40px;
            border-radius: var(--radius);
            max-width: 600px;
            backdrop-filter: blur(5px);
        }

        .slide-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 600;
            line-height: 1.2;
        }

        .slide-subtitle {
            font-size: 1.0rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .slider-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .slider-btn {
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .slider-btn-primary {
            background: var(--accent);
            color: white;
        }

        .slider-btn-primary:hover {
            background: #e91e63;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 64, 129, 0.3);
        }

        .slider-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .slider-btn-secondary:hover {
            background: white;
            color: #0066cc;
            transform: translateY(-3px);
        }

        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            backdrop-filter: blur(5px);
            z-index: 10;
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .prev-slide {
            left: 20px;
        }

        .next-slide {
            right: 20px;
        }

        /* NEW About Section */
        .about-section {
            max-width: 1400px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .about-container {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .about-content {
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .about-badge {
            display: inline-block;
            background: linear-gradient(135deg, #00ccff, #0066cc);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .about-title {
            font-size: 2.5rem;
            color: #0066cc;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .about-description {
            color: var(--gray);
            margin-bottom: 30px;
            font-size: 17px;
            line-height: 1.7;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .about-feature i {
            color: #00ccff;
            font-size: 1.5rem;
            margin-top: 5px;
        }

        .about-feature h4 {
            color: #0066cc;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .about-feature p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .about-image {
            position: relative;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* NEW Call to Action Section */
        .cta-section {
            max-width: 1400px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .cta-container {
            background: linear-gradient(135deg, #004080 0%, #0066cc 100%);
            border-radius: var(--radius);
            padding: 80px 60px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('assets/images/1TB%20Hard%20Disk%20Banner.jpeg');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 1;
        }

        .cta-container > * {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .cta-feature {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: var(--radius);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cta-feature i {
            font-size: 2.5rem;
            color: #00ccff;
            margin-bottom: 20px;
        }

        .cta-feature h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        /* WD Hard Disks Section */
        .wd-section {
            max-width: 1400px;
            margin: 80px auto;
            padding: 0 20px;
            position: relative;
        }

        .wd-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .wd-badge {
            display: inline-block;
            background: linear-gradient(135deg, #0056b3, #007bff);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .wd-title {
            font-size: 2.5rem;
            color: #007bff;
            margin-bottom: 15px;
        }

        .wd-description {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .wd-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .wd-feature {
            background: white;
            padding: 30px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-left: 4px solid #007bff;
        }

        .wd-feature:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .wd-feature i {
            font-size: 2.5rem;
            color: #007bff;
            margin-bottom: 20px;
        }

        .wd-feature h3 {
            color: #0056b3;
            margin-bottom: 10px;
        }

        /* Seagate Hard Disks Section */
        .seagate-section {
            max-width: 1400px;
            margin: 80px auto;
            padding: 0 20px;
            position: relative;
        }

        .seagate-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .seagate-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff4081, #ff9100);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .seagate-title {
            font-size: 2.5rem;
            color: #272425;
            margin-bottom: 15px;
        }

        .seagate-description {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .seagate-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .seagate-feature {
            background: white;
            padding: 30px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-left: 4px solid #482632;
        }

        .seagate-feature:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .seagate-feature i {
            font-size: 2.5rem;
            color: #5b7fff;
            margin-bottom: 20px;
        }

        .seagate-feature h3 {
            color: #140007;
            margin-bottom: 10px;
        }

        /* Products Grid - UPDATED with image styles */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .product-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            border: 1px solid var(--border);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: #00ccff;
        }

        .product-image-container {
            height: 340px;
            width: 100%;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 10px;
        }

        .product-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: var(--transition);
            border-radius: 15px;
        }

        .product-card:hover .product-image {
            transform: scale(1.05);
        }

        .product-image-placeholder {
            font-size: 3rem;
            color: var(--gray);
        }

        .wd-product .product-image-container {
            background: linear-gradient(135deg, #007bff08 0%, #e6f2ff 100%);
        }

        .seagate-product .product-image-container {
            background: linear-gradient(135deg, #fff0f5 0%, #ffe6f2 100%);
        }

        .product-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 160px;
        }

        .product-category {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .product-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
        }

        /* Product Actions */
        .product-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: auto;
        }

        .product-actions-row {
            display: flex;
            gap: 10px;
        }

        .product-actions-row button {
            flex: 1;
        }

        /* Enquiry and WhatsApp buttons */
        .enquiry-btn {
            background: var(--warning);
            color: white;
            border: none;
            padding: 12px;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .enquiry-btn:hover {
            background: #e68200;
        }

        .whatsapp-btn {
            background: #25D366;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 26px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .whatsapp-btn:hover {
            background: #128C7E;
        }

        /* Quick Enquiry Popup - UPDATED */
        .quick-enquiry-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 4000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: fadeIn 0.3s ease-out;
            overflow-y: auto;
        }

        .quick-enquiry-popup.active {
            display: flex;
        }

        .quick-enquiry-content {
            background: white;
            border-radius: var(--radius);
            padding: 30px;
            width: 100%;
            max-width: 500px;
            position: relative;
            box-shadow: var(--shadow-hover);
            max-height: 90vh;
            overflow-y: auto;
            animation: slideIn 0.3s ease-out;
        }

        .quick-enquiry-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light-gray);
        }

        .quick-enquiry-header h3 {
            color: #0066cc;
            font-size: 1.5rem;
            margin: 0;
        }

        .close-quick-enquiry {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--gray);
            transition: var(--transition);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-quick-enquiry:hover {
            background: var(--light-gray);
            color: var(--accent);
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-size: 0.95rem;
            transition: var(--transition);
            background: white;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #00ccff;
            box-shadow: 0 0 0 3px rgba(0, 204, 255, 0.1);
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        /* WhatsApp Button Fixed */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: var(--transition);
        }

        .whatsapp-float:hover {
            background: #128C7E;
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        /* Brand Comparison Section */
        .brand-comparison {
            max-width: 1400px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .comparison-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .comparison-title {
            font-size: 2.5rem;
            color: #0066cc;
            margin-bottom: 20px;
        }

        .comparison-table {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .comparison-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            border-bottom: 1px solid var(--border);
        }

        .comparison-row:first-child {
            background: var(--light);
            font-weight: 600;
        }

        .comparison-cell {
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .comparison-cell.feature {
            justify-content: flex-start;
            text-align: left;
            background: var(--light);
        }

        /* Main Content Area */
        .main-content {
            flex: 1;
        }

        /* Why Choose Us Section - FIXED */
        .why-choose-section {
            max-width: 1400px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .why-choose-section .section-title {
            font-size: 2.5rem;
            color: #0066cc;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            padding-bottom: 20px;
        }

        .why-choose-section .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #00ccff;
            border-radius: 2px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border-top: 4px solid #00ccff;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #00ccff 0%, #0066cc 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 25px;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h3 {
            color: #0066cc;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .feature-card p {
            color: var(--gray);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Footer Redesign - FIXED */
        .main-footer {
            background: linear-gradient(135deg, #004080 0%, #0066cc 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer-wave {
            position: absolute;
            top: -100px;
            left: 0;
            width: 100%;
            height: 100px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f8fafc' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-position: center;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 20px 60px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            color: white;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #00ccff;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-links a:hover {
            color: #00ccff;
            transform: translateX(5px);
        }

        .contact-info-footer {
            list-style: none;
        }

        .contact-info-footer li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-info-footer i {
            color: #00ccff;
            margin-top: 5px;
            font-size: 1.1rem;
        }

        .newsletter {
            margin-top: 25px;
        }

        .newsletter h4 {
            margin-bottom: 20px;
            color: white;
            font-size: 1.1rem;
        }

        .newsletter-input-group {
            display: flex;
            gap: 10px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: #00ccff;
            background: rgba(255, 255, 255, 0.15);
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: #00ccff;
            transform: translateY(-3px);
        }

        .footer-map {
            height: 108px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius);
            overflow: hidden;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            flex-direction: column;
        }

        .footer-map i {
            font-size: 3rem;
            margin-bottom: 10px;
            opacity: 0.7;
        }

        /* Sub Footer - FIXED */
        .sub-footer {
            background: rgba(0, 0, 0, 0.2);
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
        }

        .sub-footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        .footer-payment-methods {
            display: flex;
            gap: 15px;
            align-items: center;
            flex-wrap: wrap;
        }

        .payment-method {
            width: 50px;
            height: 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .payment-method:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .footer-extra-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .footer-extra-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-extra-links a:hover {
            color: #00ccff;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .simple-nav {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .about-container {
                grid-template-columns: 1fr;
            }
            
            .about-content {
                padding: 40px;
            }
            
            .slide-content {
                padding: 30px;
            }
            
            .slide-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
            
            .hero-slider {
                height: 400px;
            }
            
            .slide {
                padding: 0 30px;
            }
            
            .slide-content {
                max-width: 100%;
                padding: 25px;
            }
            
            .slide-title {
                font-size: 1.8rem;
            }
            
            .slide-subtitle {
                font-size: 0.8rem;
            }
            
            .slider-buttons {
                flex-direction: column;
            }
            
            .slider-btn {
                justify-content: center;
            }
            
            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .about-title {
                font-size: 2rem;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                height: 300px;
            }
            
            .cta-container {
                padding: 40px 30px;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .wd-features,
            .seagate-features {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
            
            .sub-footer-content {
                flex-direction: column;
                text-align: center;
                gap: 25px;
            }
            
            .footer-extra-links {
                justify-content: center;
                gap: 20px;
            }
            
            .footer-payment-methods {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .header-content {
                padding: 12px 15px;
            }
            
            .logo-text {
                font-size: 1.4rem;
            }
            
            .action-btn span {
                display: none;
            }
            
            .action-btn {
                padding: 10px;
            }
            
            .logo-text::before {
                height: 25px;
                width: 4px;
            }
            
            .hero-slider {
                height: 350px;
                margin: 15px auto;
            }
            
            .slide {
                padding: 0 20px;
            }
            
            .slide-content {
                padding: 20px;
            }
            
            .slide-title {
                font-size: 0.9rem;
            }
            
            .about-content {
                padding: 30px 20px;
            }
            
            .about-title {
                font-size: 1.8rem;
            }
            
            .cta-container {
                padding: 30px 20px;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 60px 20px 40px;
            }
            
            .newsletter-input-group {
                flex-direction: column;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .why-choose-section .section-title {
                font-size: 2rem;
            }
        }

        .slider-buttons a {
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .phone-call-btn, .whatsapp-btn {
            transition: all 0.3s ease;
        }

        .phone-call-btn:hover {
            background-color: #28a745; /* Green hover for phone */
        }

        .whatsapp-btn:hover {
            background-color: #25D366; /* WhatsApp green hover */
        }

        /* Orbitonix Logo Style */
        .orbitonix-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #0066cc 0%, #00ccff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
            position: relative;
            padding-left: 15px;
        }

        .orbitonix-logo::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 30px;
            background: linear-gradient(to bottom, #0066cc, #00ccff);
            border-radius: 3px;
        }

        .logo-text1 {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(90deg, #0066cc 0%, #00ccff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        
        
        /* Orbitonix CTA Section Styles */
.orbitonix-cta-section {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    padding: 80px 20px;
    color: white;
    font-family: 'Segoe UI', Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.orbitonix-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.orbitonix-cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.orbitonix-cta-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
    color: #e8eaf6;
    opacity: 0.9;
}

.orbitonix-cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.orbitonix-cta-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.orbitonix-cta-feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.orbitonix-cta-feature i {
    font-size: 3rem;
    color: #64b5f6;
    margin-bottom: 20px;
    display: block;
}

.orbitonix-cta-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.orbitonix-cta-feature p {
    color: #e8eaf6;
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
}

.orbitonix-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.orbitonix-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 250px;
}

.orbitonix-btn i {
    font-size: 1.2rem;
}

.orbitonix-btn-primary {
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(41, 182, 246, 0.3);
}

.orbitonix-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(41, 182, 246, 0.4);
    background: linear-gradient(135deg, #29b6f6 0%, #039be5 100%);
}

.orbitonix-btn-secondary {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.orbitonix-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .orbitonix-cta-title {
        font-size: 2.2rem;
    }
    
    .orbitonix-cta-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .orbitonix-cta-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .orbitonix-cta-feature {
        padding: 25px 15px;
    }
    
    .orbitonix-btn {
        min-width: 100%;
        padding: 16px 25px;
    }
    
    .orbitonix-cta-buttons {
        flex-direction: column;
    }
}

/* Animation for section entrance */
@keyframes orbitonixFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.orbitonix-cta-section {
    animation: orbitonixFadeInUp 0.8s ease-out;
}

/* Background pattern */
.orbitonix-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}


        /* ===== REDESIGNED PARAGRAPH SECTION – minimal, elegant, radius ===== */
        .three-box-section {
            background: linear-gradient(145deg, #f5f9ff 0%, #edf2fa 100%);
            padding: 70px 0;
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
        }
        .three-box-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .section-header-centered {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-badge {
            background: #004d99;
            color: white;
            padding: 8px 24px;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 20px;
            letter-spacing: 0.4px;
            text-transform: uppercase;
        }
        .main-heading {
            font-size: 2.8rem;
            color: #0b1f33;
            margin-bottom: 16px;
            font-weight: 700;
            line-height: 1.2;
        }
        .main-heading span {
            color: #004d99;
            border-bottom: 4px solid rgba(0, 77, 153, 0.3);
            padding-bottom: 8px;
            display: inline-block;
        }
        .subhead {
            max-width: 800px;
            margin: 20px auto 0;
            color: #2c3e5c;
            font-size: 1.2rem;
            line-height: 1.5;
            font-weight: 400;
        }

        /* redesigned paragraphs – clean, spacious, radius */
        .paragraph-collection {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin: 50px 0;
        }

        .paragraph-card {
            background: #ffffffd9;
            backdrop-filter: blur(8px);
            border-radius: 48px;               /* large, soft radius */
            padding: 36px 42px;
            border: 1px solid rgba(255,255,255,0.7);
            box-shadow: 0 12px 30px -8px rgba(0,60,120,0.12);
            transition: all 0.3s ease;
        }

        .paragraph-card:hover {
            background: white;
            box-shadow: 0 24px 44px -12px rgba(0,77,153,0.22);
            border-color: rgba(0,77,153,0.2);
            transform: scale(1.01);
        }

        .card-title {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .card-title i {
            font-size: 2.0rem;
            color: #004d99;
            width: 56px;
            height: 56px;
            background: rgba(0,77,153,0.08);
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .card-title h3 {
            font-size: 2.0rem;
            color: #0a1c2f;
            font-weight: 650;
            margin: 0;
            letter-spacing: -0.01em;
        }

        .card-title h3 span {
            color: #004d99;
            font-weight: 700;
            background: rgba(0,77,153,0.06);
            padding: 4px 16px;
            border-radius: 60px;
            margin-left: 10px;
            font-size: 1.8rem;
            white-space: nowrap;
        }

        .paragraph-card p {
            color: #1e3349;
            line-height: 1.8;
            font-size: 1.15rem;
            margin: 0 0 20px 68px;      /* align with text after icon space */
        }

        .pill-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0,77,153,0.07);
            color: #004d99;
            font-weight: 500;
            padding: 8px 24px;
            border-radius: 60px;
            font-size: 1rem;
            border: 1px solid rgba(0,77,153,0.2);
            margin-left: 68px;
            backdrop-filter: blur(2px);
        }

        .pill-tag i {
            font-size: 1rem;
        }

        /* extra seo block – refreshed */
        .extra-seo-block {
            background: white;
            padding: 45px 48px;
            border-radius: 48px;
            box-shadow: 0 16px 36px -12px rgba(0,44,88,0.2);
            margin: 60px 0 20px;
            border: 1px solid rgba(0,77,153,0.15);
        }
        .extra-seo-block h2 {
            color: #0b2b4a;
            margin-bottom: 25px;
            font-size: 2rem;
            font-weight: 700;
        }
        .extra-seo-block p {
            font-size: 1.1rem;
            color: #1e344b;
            line-height: 1.8;
            margin-bottom: 24px;
        }
        .extra-seo-block strong {
            color: #004d99;
            font-weight: 600;
        }
        .keyword-strip {
            font-weight: 500;
            margin-top: 25px;
            background: #f2f7ff;
            padding: 16px 24px;
            border-radius: 60px;
            color: #0b2b4a;
            border: 1px solid rgba(0,77,153,0.2);
        }

        @media (max-width: 700px) {
            .main-heading { font-size: 2rem; }
            .paragraph-card { padding: 28px 22px; }
            .card-title { flex-wrap: wrap; }
            .card-title h3 span { 
                display: inline-block;
                margin-left: 0;
                margin-top: 6px;
                font-size: 1.5rem;
            }
            .paragraph-card p, .pill-tag { margin-left: 0; }
            .extra-seo-block { padding: 28px 22px; }
        }

        
        
        