:root{
            --primary: #6a1b9a;
            --primary-dark: #4a148c;
            --primary-light: #9c4dcc;
            --secondary: #ffa000;
            --accent: #7cb342;
            --light: #f5f5f5;
            --dark: #1a1a2e;
            --gray: #5d5d7a;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            --card-shadow: 0 20px 40px rgba(106, 27, 154, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--light);
            background: linear-gradient(135deg, var(--dark) 0%, #2d0b3d 100%);
            overflow-x: hidden;
            line-height: 1.6;
            background-attachment: fixed;
        }

        h1, h2, h3, h4 {
            font-family: 'Raleway', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: 1px;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(26, 26, 46, 0.95);
            box-shadow: var(--shadow);
            padding: 15px 0;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            transform: translateZ(20px);
            perspective: 1000px;
        }

        .logo-icon {
            font-size: 32px;
            color: var(--primary-light);
            text-shadow: 0 0 15px rgba(156, 77, 204, 0.7);
            animation: pulse 3s infinite;
        }

        .logo-text {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(to right, #9c4dcc, #ffa000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(156, 77, 204, 0.3);
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--light);
            font-weight: 500;
            font-size: 18px;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-btns {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transform-style: preserve-3d;
            perspective: 500px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            z-index: -1;
            transform: translateZ(20px);
            border-radius: 50px;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--primary-light));
            color: white;
            box-shadow: 0 10px 20px rgba(106, 27, 154, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-5px) rotateX(10deg);
            box-shadow: 0 15px 30px rgba(106, 27, 154, 0.6);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-light);
            color: var(--primary-light);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--light);
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            height: 100vh;
            background: rgba(26, 26, 46, 0.98);
            backdrop-filter: blur(10px);
            z-index: 999;
            padding: 100px 30px 30px;
            transition: var(--transition);
            box-shadow: 5px 0 15px rgba(0,0,0,0.2);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .mobile-nav.active {
            left: 0;
        }

        .mobile-nav a {
            color: var(--light);
            text-decoration: none;
            font-size: 20px;
            padding: 15px;
            border-radius: 10px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mobile-nav a:hover {
            background: rgba(106, 27, 154, 0.5);
            color: var(--secondary);
            transform: translateX(10px);
        }

        .mobile-nav a i {
            font-size: 24px;
            width: 30px;
        }

        .close-menu {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 30px;
            color: var(--secondary);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: ;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 80px;
            perspective: 1000px;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            transform: scale(1.1);
            filter: brightness(0.6) saturate(1.2);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 750px;
            color: white;
            animation: fadeInUp 1s ease-out;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            transform-style: preserve-3d;
        }

        .hero-subtitle {
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 25px;
            color: var(--secondary);
            font-weight: 500;
            display: inline-block;
            background: rgba(0,0,0,0.3);
            padding: 8px 20px;
            border-radius: 30px;
            transform: translateZ(30px);
        }

        .hero-title {
            font-size: 70px;
            margin-bottom: 25px;
            line-height: 1.1;
            transform: translateZ(50px);
            text-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }

        .hero-text {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            transform: translateZ(30px);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 60px;
            transform: translateZ(40px);
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            background: white;
            padding: 20px 30px;
            border-radius: 15px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(156, 77, 204, 0.3);
            transform-style: preserve-3d;
            transform: translateZ(20px);
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateZ(30px) translateY(-10px);
            background: rgba(106, 27, 154, 0.6);
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 5px;
            font-family: 'Montserrat', sans-serif;
            text-shadow: 0 0 10px rgba(255, 160, 0, 0.4);
        }

        .stat-text {
            font-size: 18px;
            opacity: 0.9;
            color: #30103f;
            font-weight: bold;
        }

        /* Sections Common */
        section {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .section-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            opacity: 0.2;
            filter: blur(2px);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
            position: relative;
            z-index: 2;
        }

        .section-subtitle {
            font-size: 20px;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 20px;
            display: inline-block;
            background: rgba(106, 27, 154, 0.4);
            padding: 8px 25px;
            border-radius: 30px;
        }

        .section-title {
            font-size: 48px;
            margin-bottom: 25px;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .section-text {
            font-size: 20px;
            color: #d0d0e3;
        }

        /* Vision Section */
        .vision {
            background: linear-gradient(45deg, rgba(26, 26, 46, 0.9), rgba(45, 11, 61, 0.9));
        }

        .vision-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .vision-card {
            background: rgba(26, 26, 46, 0.6);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--card-shadow);
            border: 1px solid rgba(156, 77, 204, 0.3);
            transform-style: preserve-3d;
            transform: translateZ(20px);
            transition: var(--transition);
            backdrop-filter: blur(5px);
            text-align: center;
            background: white;
        }

        .vision-card:hover {
            transform: translateZ(40px) translateY(-10px);
            box-shadow: 0 30px 50px rgba(106, 27, 154, 0.5);
            border: 1px solid var(--primary-light);
        }

        .vision-icon {
            font-size: 50px;
            color: var(--secondary);
            margin-bottom: 25px;
            text-shadow: 0 0 15px rgba(255, 160, 0, 0.4);
            transform: translateZ(30px);
        }

        .vision-title {
            font-size: 28px;
            margin-bottom: 20px;
            color: #6a1b9a;
        }

        .vision-text {
            color: #000000;
            font-size: 15px;
            line-height: 1.8;
            font-weight: bold;
        }

        /* Why Us Section */
        .why-us {
            background: linear-gradient(45deg, rgba(45, 11, 61, 0.9), rgba(26, 26, 46, 0.9));
        }

        .why-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .why-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
            gap: 40px;
        }

        .why-card {
            background: #1a1a2e;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--card-shadow);
            border: 1px solid rgba(156, 77, 204, 0.3);
            transform-style: preserve-3d;
            transform: translateZ(20px);
            transition: var(--transition);
            backdrop-filter: blur(5px);
            text-align: center;
        
        }

        .why-card:hover {
            transform: translateZ(40px) translateY(-10px);
            box-shadow: 0 30px 50px rgba(106, 27, 154, 0.5);
            border: 1px solid var(--primary-light);
        }

        .why-icon {
            /*font-size: 50px;*/
            /*color: var(--secondary);*/
            /*margin-bottom: 25px;*/
            /*text-shadow: 0 0 15px rgba(255, 160, 0, 0.4);*/
            /*transform: translateZ(30px);*/
            font-size: 50px;
            color: var(--secondary);
            margin-bottom: 25px;
            text-shadow: 0 0 15px rgba(255, 160, 0, 0.4);
            transform: translateZ(30px);
            background: white;
            padding: 5px;
            border-radius: 50pc;
            width: 100px;
            /* padding: 5px; */
            height: 95px;
            margin: 12px auto;
        }

        .why-title {
            font-size: 28px;
            margin-bottom: 20px;
            color: white;
        }

        .why-text {
            color: #d0d0e3;
            font-size: 18px;
            line-height: 1.8;
        }

        /* History Section */
        .history {
            background: linear-gradient(45deg, rgba(26, 26, 46, 0.9), rgba(45, 11, 61, 0.9));
        }

        .timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            z-index: 2;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary-light);
            left: 50%;
            margin-left: -2px;
            transform: translateZ(10px);
            box-shadow: 0 0 20px rgba(156, 77, 204, 0.7);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 70px;
            transform-style: preserve-3d;
        }

        .timeline-content {
            width: 45%;
            padding: 30px;
            background: rgba(26, 26, 46, 0.6);
            border-radius: 20px;
            box-shadow: var(--card-shadow);
            border: 1px solid rgba(156, 77, 204, 0.3);
            transform: translateZ(20px);
            transition: var(--transition);
            backdrop-filter: blur(5px);
        }

        .timeline-content:hover {
            transform: translateZ(40px);
            box-shadow: 0 30px 50px rgba(106, 27, 154, 0.5);
            border: 1px solid var(--secondary);
        }

        .timeline-item:nth-child(odd) .timeline-content {
            float: left;
        }

        .timeline-item:nth-child(even) .timeline-content {
            float: right;
        }

        .timeline-year {
            position: absolute;
            top: 20px;
            width: 100px;
            height: 100px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: white;
            left: 50%;
            margin-left: -50px;
            z-index: 2;
            transform: translateZ(30px);
            box-shadow: 0 0 20px rgba(106, 27, 154, 0.7);
            border: 3px solid var(--secondary);
        }

        .timeline-title {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .timeline-text {
            color: #d0d0e3;
            font-size: 17px;
            line-height: 1.7;
        }

        /* Video Testimonials Section */
        .video-testimonials {
            background: linear-gradient(45deg, rgba(26, 26, 46, 0.9), rgba(45, 11, 61, 0.9));
        }

        .videos-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .video-card {
            background: rgba(26, 26, 46, 0.6);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            transform: translateZ(20px);
            border: 1px solid rgba(156, 77, 204, 0.3);
            backdrop-filter: blur(5px);
        }

        .video-card:hover {
            transform: translateZ(40px) translateY(-10px);
            box-shadow: 0 30px 50px rgba(106, 27, 154, 0.5);
            border: 1px solid var(--secondary);
        }

        .video-player {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .video-player video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .video-card:hover .video-player video {
            transform: scale(1.05);
        }

        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(255, 160, 0, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            cursor: pointer;
            z-index: 2;
            transition: var(--transition);
        }

        .play-btn:hover {
            background: var(--secondary);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-content {
            padding: 25px;
        }

        .client-name {
            font-size: 22px;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .client-position {
            color: #d0d0e3;
            margin-bottom: 15px;
            font-size: 18px;
        }

        .client-quote {
            color: white;
            font-style: italic;
            line-height: 1.7;
            position: relative;
            padding-left: 20px;
        }

        .client-quote::before {
            content: """;
            position: absolute;
            left: -10px;
            top: -20px;
            font-size: 80px;
            color: rgba(255, 160, 0, 0.2);
            font-family: serif;
            line-height: 1;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(45deg, rgba(45, 11, 61, 0.9), rgba(26, 26, 46, 0.9));
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .contact-item {
            display: flex;
            gap: 25px;
            align-items: flex-start;
            background: #ffffff;
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(156, 77, 204, 0.2);
            transform: translateZ(20px);
            transition: var(--transition);
        }

        .contact-item:hover {
            transform: translateZ(30px);
            background: rgba(106, 27, 154, 0.5);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 160, 0, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--secondary);
            border: 2px solid var(--secondary);
            flex-shrink: 0;
        }

        .contact-text h4 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #6a1b9a;
        }

        .contact-text p {
            color: #1a1a1a;
            font-size: 18px;
            font-weight: bold;
        }

        .contact-form {
            background: rgba(26, 26, 46, 0.6);
            padding: 50px;
            border-radius: 25px;
            box-shadow: var(--card-shadow);
            border: 1px solid rgba(156, 77, 204, 0.3);
            transform: translateZ(30px);
            backdrop-filter: blur(5px);
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-input {
            width: 100%;
            padding: 18px 25px;
            border: 2px solid rgba(156, 77, 204, 0.3);
            border-radius: 12px;
            font-size: 18px;
            transition: var(--transition);
            font-family: 'Montserrat', sans-serif;
            background: rgba(26, 26, 46, 0.7);
            color: white;
            transform: translateZ(20px);
        }

        .form-input:focus {
            border-color: var(--primary-light);
            outline: none;
            transform: translateZ(30px);
            box-shadow: 0 0 20px rgba(156, 77, 204, 0.4);
        }

        textarea.form-input {
            min-height: 180px;
            resize: vertical;
        }

        .form-input::placeholder {
            color: #a0a0c0;
        }

        /* Footer */
        footer {
            background: linear-gradient(to top, #0f0c29, #302b63, #24243e);
            color: white;
            padding: 80px 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .footer-col h4 {
            font-size: 24px;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
            color: white;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #b0b0d0;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
            font-size: 17px;
        }

        .footer-links a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }

        .footer-social {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            transform: translateZ(20px);
            border: 1px solid rgba(156, 77, 204, 0.3);
            color: white;
            text-decoration: none;
        }

        .social-icon:hover {
            background: var(--primary);
            transform: translateZ(30px) translateY(-10px);
            box-shadow: 0 10px 20px rgba(106, 27, 154, 0.4);
        }

        .copyright {
            text-align: center;
            padding: 30px 0;
            margin-top: 70px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b0b0d0;
            font-size: 16px;
            position: relative;
            z-index: 2;
        }
        .hero-subtitle{
                margin-top: 25px;
            }
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate3d(0, 30px, 0);
            }
            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                text-shadow: 0 0 10px rgba(156, 77, 204, 0.7);
            }
            50% {
                transform: scale(1.1);
                text-shadow: 0 0 20px rgba(156, 77, 204, 0.9);
            }
            100% {
                transform: scale(1);
                text-shadow: 0 0 10px rgba(156, 77, 204, 0.7);
            }
        }

        .animate {
            opacity: 0;
            transform: translate3d(0, 30px, 0);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .animate.appear {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
        .animate {
          opacity: 0;
          transform: translateY(20px);
          transition: all 0.5s ease;
        }
        
        .animate.appear {
          opacity: 1;
          transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 60px;
            }
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 50px;
            }
            .contact-container {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 40px;
            }
            .why-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links, .nav-btns {
                display: none;
            }
            .mobile-menu {
                display: block;
            }
            .hero-title {
                font-size: 40px;
            }
            .hero-stats {
                justify-content: center;
            }
            .section-title {
                font-size: 36px;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
            .videos-container {
                grid-template-columns: 1fr;
            }
            .vision-container {
                grid-template-columns: 1fr;
            }
            .timeline::before {
                left: 30px;
            }
            
            .timeline-content {
                width: auto;
                float: none !important;
                margin-left: 80px;
                margin-right: 20px;
            }
            
            .timeline-year {
                left: 30px;
                margin-left: 0;
            }
        }

        @media (max-width: 576px) {
            .btn {
                padding: 12px 24px;
            }
            .hero-title {
                font-size: 36px;
            }
            .hero-subtitle {
                font-size: 16px;
            }
            .section-title {
                font-size: 32px;
            }
            .contact-form {
                padding: 30px;
            }
            .stat-item {
                padding: 15px 20px;
            }
            .stat-number {
                font-size: 36px;
            }
        }
        

        /* Products Section */
        .products {
            background: linear-gradient(45deg, rgba(45, 11, 61, 0.9), rgba(26, 26, 46, 0.9));
        }

        .products-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .product-card {
            background: rgba(26, 26, 46, 0.6);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            transform-style: preserve-3d;
            transform: translateZ(20px);
            border: 1px solid rgba(156, 77, 204, 0.3);
            backdrop-filter: blur(5px);
        }

        .product-card:hover {
            transform: translateZ(40px) translateY(-20px);
            box-shadow: 0 30px 50px rgba(106, 27, 154, 0.5);
            border: 1px solid var(--primary-light);
        }

        .product-img {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .product-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 60%, rgba(26, 26, 46, 0.9));
            z-index: 1;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-img img {
            transform: scale(1.1);
        }

        .product-content {
            padding: 30px;
        }

        .product-category {
            color: #7c00ff;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 10px;
            display: block;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: white;
            padding: 8px;
            text-align: center;
            border-radius: 10pc;
        }

        .product-title {
            font-size: 26px;
            margin-bottom: 20px;
            color: white;
            text-align: center;
        }

        .product-description {
            color: #d0d0e3;
            margin-bottom: 25px;
            font-size: 17px;
            
        }

        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .product-price {
            font-weight: 700;
            font-size: 24px;
            color: var(--primary-light);
            text-shadow: 0 0 10px rgba(156, 77, 204, 0.4);
        }
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate3d(0, 30px, 0);
            }
            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                text-shadow: 0 0 10px rgba(156, 77, 204, 0.7);
            }
            50% {
                transform: scale(1.1);
                text-shadow: 0 0 20px rgba(156, 77, 204, 0.9);
            }
            100% {
                transform: scale(1);
                text-shadow: 0 0 10px rgba(156, 77, 204, 0.7);
            }
        }

        .animate {
            opacity: 0;
            transform: translate3d(0, 30px, 0);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .animate.appear {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
        .animate {
          opacity: 0;
          transform: translateY(20px);
          transition: all 0.5s ease;
        }
        
        .animate.appear {
          opacity: 1;
          transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 60px;
            }
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 50px;
            }
            .contact-container {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 40px;
            }
            .why-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links, .nav-btns {
                display: none;
            }
            .mobile-menu {
                display: block;
            }
            .hero-title {
                font-size: 40px;
            }
            .hero-stats {
                justify-content: center;
            }
            .section-title {
                font-size: 36px;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
            .videos-container {
                grid-template-columns: 1fr;
            }
            .vision-container {
                grid-template-columns: 1fr;
            }
            .timeline::before {
                left: 30px;
            }
            
            .timeline-content {
                width: auto;
                float: none !important;
                margin-left: 80px;
                margin-right: 20px;
            }
            
            .timeline-year {
                left: 30px;
                margin-left: 0;
            }
        }

        @media (max-width: 576px) {
            .btn {
                padding: 12px 24px;
            }
            .hero-title {
                font-size: 36px;
            }
            .hero-subtitle {
                font-size: 16px;
            }
            .section-title {
                font-size: 32px;
            }
            .contact-form {
                padding: 30px;
            }
            .stat-item {
                padding: 15px 20px;
            }
            .stat-number {
                font-size: 36px;
            }
        }