/*

TemplateMo 596 Electric Xtra

https://templatemo.com/tm-596-electric-xtra

*/

@charset "utf-8";

/* CSS Document */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background: #FDFBF7;
            color: #2B2825;
            overflow-x: hidden;
            position: relative;
            font-weight: 400;
        }

        /* Animated background with hexagon pattern */
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, transparent 2%, rgba(255, 94, 0, 0.03) 2%, rgba(255, 94, 0, 0.03) 3%, transparent 3%),
                radial-gradient(circle at 75% 75%, transparent 2%, rgba(0, 178, 255, 0.03) 2%, rgba(0, 178, 255, 0.03) 3%, transparent 3%);
            background-size: 80px 80px;
            animation: grid-move 30s linear infinite;
            z-index: -2;
        }

        /* Animated shapes */
        .shapes-container {
            position: fixed;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
        }

        .shape-circle {
            width: 300px;
            height: 300px;
            border: 2px solid #FF5E00;
            border-radius: 50%;
            top: 10%;
            left: 10%;
            animation: float-rotate 20s ease-in-out infinite;
        }

        .shape-triangle {
            width: 0;
            height: 0;
            border-left: 100px solid transparent;
            border-right: 100px solid transparent;
            border-bottom: 173px solid rgba(0, 178, 255, 0.2);
            top: 60%;
            right: 15%;
            animation: float-rotate 25s ease-in-out infinite reverse;
        }

        .shape-square {
            width: 150px;
            height: 150px;
            border: 2px solid #00B2FF;
            transform: rotate(45deg);
            bottom: 20%;
            left: 20%;
            animation: float-rotate 22s ease-in-out infinite;
        }

        @keyframes float-rotate {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            25% {
                transform: translateY(-30px) rotate(90deg) scale(1.1);
            }
            50% {
                transform: translateY(20px) rotate(180deg) scale(0.9);
            }
            75% {
                transform: translateY(-10px) rotate(270deg) scale(1.05);
            }
        }

        /* Gradient overlay */
        .gradient-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(255, 94, 0, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(0, 178, 255, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 50% 50%, rgba(253, 251, 247, 0.9) 0%, transparent 100%);
            z-index: -1;
            animation: gradient-shift 10s ease-in-out infinite;
        }

        @keyframes gradient-shift {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(180deg); }
        }

        @keyframes grid-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(80px, 80px); }
        }

        /* Floating particles */
        .particle {
            position: fixed;
            pointer-events: none;
            opacity: 0;
            z-index: 1;
        }

        .particle::before {
            content: '';
            position: absolute;
            width: 2px;
            height: 2px;
            background: #FF5E00;
            box-shadow: 0 0 10px #FF5E00, 0 0 20px #FF5E00;
            animation: float-up 15s linear infinite;
        }

        @keyframes float-up {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(720deg);
                opacity: 0;
            }
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            background: rgba(253, 251, 247, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 94, 0, 0.1);
        }

        nav.scrolled {
            padding: 15px 50px;
            background: rgba(253, 251, 247, 0.98);
            box-shadow: 0 5px 30px rgba(255, 94, 0, 0.05);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 10px;
        }

        .logo-svg {
            width: 40px;
            height: 40px;
        }

        .logo-text {
            font-family: 'Orbitron', monospace;
            font-size: 24px;
            font-weight: 900;
            background: linear-gradient(45deg, #FF5E00, #4DD2FF);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite;
            white-space: nowrap;
        }

        @keyframes glow {
            0%, 100% { 
                filter: brightness(1.15) saturate(1.2);
            }
            50% { 
                filter: brightness(1.35) saturate(1.4);
            }
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #2B2825;
            display: inline-block;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 16px;
            font-family: 'Orbitron', monospace;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.7;
            white-space: nowrap;
        }

        .nav-links a.active {
            opacity: 1;
            color: #FF5E00;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .nav-links a:hover::before,
        .nav-links a.active::before {
            border-color: #FF5E00;
            box-shadow: inset 0 0 10px rgba(255, 94, 0, 0.125);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #FF5E00, #00B2FF);
            transition: width 0.3s ease;
            box-shadow: 0 0 10px rgba(255, 94, 0, 0.2);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        /* Mobile menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: #FF5E00;
            transition: all 0.3s ease;
        }
        
        .menu-toggle.active span {
            background: #2B2825 !important;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 80px 20px 20px;
        }

        .hero-content {
            text-align: center;
            max-width: 1200px;
            animation: fade-in-up 1s ease-out;
            z-index: 10;
            width: 100%;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Text Rotator Styles */
        .text-rotator {
            position: relative;
            min-height: 100px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .text-set {
            position: absolute;
            width: 100%;
            opacity: 0;
            display: none;
        }

        .text-set.active {
            position: relative;
            opacity: 1;
            display: block;
        }


        .char {
            display: inline;
        }


        @keyframes charFlyIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .char.out {
            animation: charFlyOut 0.3s ease-in forwards;
        }

        @keyframes charFlyOut {
            to {
                opacity: 0;
                transform: translateY(-30px) rotateX(90deg);
            }
        }

        .subtitle {
            font-size: 1.5rem;
            margin: 20px 0;
            opacity: 0;
            text-shadow: 0 0 10px rgba(43, 40, 37, 0.075);
            font-weight: 300;
        }

        .subtitle.visible {
            animation: subtitleFade 0.8s ease-out 0.5s forwards;
        }

        @keyframes subtitleFade {
            to {
                opacity: 1;
            }
        }

        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .glitch-text {
            font-family: 'Orbitron', monospace;
            font-size: clamp(1.2rem, 3.5vw, 2.0rem);
            font-weight: 900;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            line-height: 1.4;
            white-space: normal !important;
            word-wrap: break-word;
            color: #2B2825;
            animation: glitch-anim 0.4s infinite linear alternate-reverse;
        }

        @keyframes glitch-anim {
            0% { text-shadow: -2px 1px #FF5E00, 2px -1px #00B2FF; }
            20% { text-shadow: 2px -1px #FF5E00, -2px 2px #00B2FF; }
            40% { text-shadow: -2px -2px #FF5E00, 1px -1px #00B2FF; }
            60% { text-shadow: 1px 2px #FF5E00, -2px -1px #00B2FF; }
            80% { text-shadow: -1px -1px #FF5E00, 2px 2px #00B2FF; }
            100% { text-shadow: 2px 0px #FF5E00, -2px 0px #00B2FF; }
        }

        .subtitle {
            font-size: 1.5rem;
            margin: 20px 0;
            opacity: 1;
            animation: fade-in 1s ease-out 0.5s both;
            text-shadow: 0 0 10px rgba(43, 40, 37, 0.075);
            font-weight: 400;
            color: rgba(43, 40, 37, 0.9);
        }

        @keyframes fade-in {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .cta-container {
            position: absolute;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            z-index: 100;
        }

        .cta-button {
            padding: 12px 30px;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-family: 'Orbitron', monospace;
            font-weight: 700;
        }

        .cta-primary {
            background: linear-gradient(45deg, #FF5E00, #00B2FF);
            color: white;
            animation: pulse 2s infinite;
            box-shadow: 0 0 30px rgba(255, 94, 0, 0.125);
        }

        @keyframes pulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 30px rgba(255, 94, 0, 0.125);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 0 40px rgba(255, 94, 0, 0.2);
            }
        }

        .cta-secondary {
            background: transparent;
            color: rgba(43, 40, 37, 0.7);
            border: 2px solid rgba(43, 40, 37, 0.3);
            box-shadow: none;
            font-weight: 500;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(43, 40, 37, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-secondary:hover {
            background: rgba(43, 40, 37, 0.05);
            color: white;
            transform: translateY(-2px);
            box-shadow: none;
            border-color: rgba(43, 40, 37, 0.85);
        }

        /* Features Section with Tabs */
        .features {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .section-title {
            font-family: 'Orbitron', monospace;
            font-size: 3rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #FF5E00, #00B2FF);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
        }

        .features-container {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 40px;
            align-items: start;
        }

        .feature-tabs {
            background: rgba(43, 40, 37, 0.03);
            border: 1px solid rgba(255, 94, 0, 0.2);
            border-radius: 10px;
            padding: 20px;
            backdrop-filter: blur(10px);
        }

        .tab-item {
            padding: 15px 20px;
            margin-bottom: 10px;
            cursor: pointer;
            border: 1px solid transparent;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1rem;
        }

        .tab-item:hover {
            background: rgba(255, 94, 0, 0.1);
            border-color: rgba(255, 94, 0, 0.3);
        }

        .tab-item.active {
            background: linear-gradient(45deg, rgba(255, 94, 0, 0.2), rgba(0, 178, 255, 0.2));
            border-color: #FF5E00;
            box-shadow: 0 0 20px rgba(255, 94, 0, 0.075);
        }

        .tab-icon {
            font-size: 1.5rem;
        }

        .feature-content {
            background: rgba(43, 40, 37, 0.03);
            border: 1px solid rgba(255, 94, 0, 0.2);
            border-radius: 10px;
            padding: 40px;
            backdrop-filter: blur(10px);
            min-height: 400px;
        }

        .content-panel {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .content-panel.active {
            display: block;
        }

        .content-panel h3 {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #2B2825, #FF5E00);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .content-panel p {
            line-height: 1.8;
            opacity: 1;
            color: rgba(43, 40, 37, 0.92);
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .feature-list {
            list-style: none;
            margin-top: 20px;
        }

        .feature-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            opacity: 1;
            color: rgba(43, 40, 37, 0.92);
        }

        .feature-list li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #FF5E00;
            font-size: 1.2rem;
        }

        /* About Section */
        .about {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #FF5E00, #00B2FF);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-text p {
            line-height: 1.8;
            opacity: 1;
            color: rgba(43, 40, 37, 0.92);
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .about-visual {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-graphic {
            width: 300px;
            height: 300px;
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        .about-graphic::before,
        .about-graphic::after {
            content: '';
            position: absolute;
            border: 2px solid #FF5E00;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(255, 94, 0, 0.125);
        }

        .about-graphic::before {
            width: 100%;
            height: 100%;
            animation: rotate 20s linear infinite;
        }

        .about-graphic::after {
            width: 80%;
            height: 80%;
            top: 10%;
            left: 10%;
            border-color: #00B2FF;
            animation: rotate 15s linear infinite reverse;
            box-shadow: 0 0 30px rgba(0, 178, 255, 0.125);
        }

        /* Alternative graphic for second row */
        .about-graphic-alt {
            width: 300px;
            height: 300px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
        }

        .hexagon {
            position: absolute;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #FF5E00, #00B2FF);
            opacity: 0.3;
            clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
        }

        .hexagon:nth-child(1) {
            width: 150px;
            height: 150px;
            animation: hexagon-rotate 8s linear infinite;
        }

        .hexagon:nth-child(2) {
            width: 100px;
            height: 100px;
            animation: hexagon-rotate 12s linear infinite reverse;
            opacity: 0.5;
        }

        .hexagon:nth-child(3) {
            width: 200px;
            height: 200px;
            animation: hexagon-rotate 15s linear infinite;
            opacity: 0.2;
        }

        @keyframes hexagon-rotate {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
            100% { transform: rotate(360deg) scale(1); }
        }

        /* Contact Section */
        .contact {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: auto auto;
            gap: 60px;
        }

        .contact-form {
            background: rgba(43, 40, 37, 0.03);
            border: 1px solid rgba(255, 94, 0, 0.2);
            border-radius: 10px;
            padding: 40px;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: #FF5E00;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(43, 40, 37, 0.05);
            border: 1px solid rgba(255, 94, 0, 0.3);
            color: white;
            font-size: 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-family: 'Rajdhani', sans-serif;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #FF5E00;
            box-shadow: 0 0 20px rgba(255, 94, 0, 0.075);
            background: rgba(43, 40, 37, 0.08);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, #FF5E00, #00B2FF);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Orbitron', monospace;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 94, 0, 0.125);
        }

        .contact-info {
            padding: 40px;
        }

        .contact-info h3 {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #2B2825, #FF5E00);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .info-item {
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #FF5E00, #00B2FF);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .info-details h4 {
            color: #FF5E00;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .info-details p {
            opacity: 0.8;
        }

        /* Map Section */
        .map-container {
            margin-top: 40px;
            background: rgba(43, 40, 37, 0.03);
            border: 1px solid rgba(255, 94, 0, 0.2);
            border-radius: 10px;
            padding: 20px;
            backdrop-filter: blur(10px);
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .map-placeholder {
            text-align: center;
            opacity: 0.6;
        }

        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 40%, rgba(255, 94, 0, 0.1) 50%, transparent 60%);
            animation: scan 3s linear infinite;
        }

        @keyframes scan {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Footer */
        footer {
            background: rgba(253, 251, 247, 0.9);
            border-top: 1px solid rgba(255, 94, 0, 0.2);
            padding: 40px 20px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #FF5E00;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .footer-links a:hover {
            color: #00B2FF;
            text-shadow: 0 0 10px currentColor;
        }

        .copyright {
            opacity: 0.85;
            font-size: 0.9rem;
        }

        .copyright a {
            color: #FF5E00;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .copyright a:hover {
            color: #00B2FF;
            text-shadow: 0 0 10px currentColor;
        }

        /* Scanlines effect */
        .scanlines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            background: linear-gradient(
                transparent 50%,
                rgba(255, 94, 0, 0.01) 50%
            );
            background-size: 100% 4px;
            animation: scanlines 8s linear infinite;
            z-index: 2;
            pointer-events: none;
        }

        @keyframes scanlines {
            0% { transform: translateY(0); }
            100% { transform: translateY(10px); }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0);
                box-shadow: 0 0 30px rgba(255, 94, 0, 0.125);
            }
            50% { 
                transform: translateY(-10px);
                box-shadow: 0 10px 40px rgba(255, 94, 0, 0.175);
            }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25D366, #128C7E); /* WhatsApp green colors */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.125); /* Green shadow */
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none; /* Remove underline from link */
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.2); /* More intense green shadow on hover */
}

.whatsapp-icon {
    width: 30px; /* Adjusted size for better fit */
    height: 30px; /* Adjusted size for better fit */
    fill: #2B2825;
}

/* Existing styles below */
.contact-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-intro {
    text-align: center;
    margin-bottom: 20px;
    opacity: 0.8;
}
        /* Responsive */
        @media (max-width: 1200px) {
            nav {
                padding: 15px 20px;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(253, 251, 247, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }

            .nav-links a {
                display: block;
                width: 100%;
                text-align: center;
                padding: 15px 20px;
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-content {
                padding: 0 20px;
            }

            .glitch-text {
                font-size: clamp(1.2rem, 4.9vw, 2.4rem);
            }

            .text-rotator {
                min-height: 150px;
            }

            .subtitle {
                font-size: 1.2rem;
            }

            .cta-container {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
            }

            .features-container {
                grid-template-columns: 1fr;
            }

            .feature-tabs {
                display: block;
                padding: 20px;
                max-width: 100%;
            }

            .tab-item {
                width: 100%;
                margin-bottom: 10px;
            }

            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .about-graphic {
                width: 200px;
                height: 200px;
            }

            .shape-circle,
            .shape-triangle,
            .shape-square {
                transform: scale(0.6);
            }
        }

        /* Top sticky social bar */
        .social-topbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #EAE4D9;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            padding: 8px 0;
            z-index: 1001;
            border-bottom: 1px solid rgba(255, 94, 0, 0.3);
        }

        .social-topbar a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 24px;
            transition: transform 0.2s;
        }

        .social-topbar a:hover {
            transform: scale(1.1);
        }

        .social-topbar img {
            width: 24px;
            height: 24px;
            display: block;
        }

        .contact-buttons {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            width: 100%;
        }

/* Custom Overrides */
body {
    background: #EAE4D9 !important;
}

.grid-bg, .shapes-container, .gradient-overlay, .scanlines, .particle {
    display: none !important;
}

/* Fix CTA buttons overlapping text */
.cta-container {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: 40px !important;
}

/* Fix Hero overlap on small height PC screens */
.hero {
    padding: 120px 20px 40px !important;
}

@media (min-width: 769px) {
    .hero {
        padding: 180px 20px 40px !important;
    }
}

.hero-content {
    flex: none !important;
}
.text-rotator {
    min-height: 250px !important;
}

/* Fix Contact form width on PC */
@media (min-width: 769px) {
    .contact-form, .contact-info {
        max-width: 700px;
        margin: 0 auto;
        width: 100%;
    }
}

.article-container { max-width: 800px; margin: 120px auto 60px; padding: 0 20px; font-family: 'Rajdhani', sans-serif; color: rgba(43, 40, 37, 0.85); line-height: 1.8; font-size: 1.15rem; position: relative; z-index: 2; text-align: left; }
.breadcrumbs { font-family: 'Rajdhani', sans-serif; font-size: 0.9rem; color: rgba(43, 40, 37, 0.85); margin-bottom: 30px; }
.breadcrumbs a { color: #00B2FF; text-decoration: none; transition: color 0.3s; }
.breadcrumbs a:hover { color: #FF5E00; }
.breadcrumbs span { margin: 0 10px; }
.article-header { margin-bottom: 50px; }
.article-header h1 { font-family: 'Orbitron', monospace; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.2; margin-bottom: 25px; background: linear-gradient(45deg, #2B2825, #FF5E00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.article-meta { display: flex; align-items: center; gap: 15px; font-size: 0.9rem; color: rgba(43, 40, 37, 0.85); border-bottom: 1px solid rgba(43, 40, 37, 0.1); padding-bottom: 20px; }
.author-name { color: #FF5E00; font-weight: 600; }
.badge-category { display:inline-block; padding: 3px 12px; border-radius: 20px; border: 1px solid rgba(0, 178, 255, 0.4); color: #00B2FF; text-transform: uppercase; font-size: 0.78rem; font-weight:bold;}
.article-cover { width: 100%; height: auto; border-radius: 12px; margin-bottom: 40px; border: 1px solid rgba(255, 94, 0, 0.3); box-shadow: 0 10px 30px rgba(253, 251, 247, 0.7); display: block; }
.article-body h2 { font-family: 'Orbitron', monospace; font-size: 1.8rem; color: #2B2825; margin: 50px 0 20px; position: relative; }
.article-body h2::after { content: ''; display: block; width: 50px; height: 3px; background: #FF5E00; margin-top: 10px; border-radius: 2px; }
.article-body h3 { font-family: 'Orbitron', monospace; font-size: 1.4rem; color: #00B2FF; margin: 40px 0 15px; }
.article-body p { margin-bottom: 25px; }
.article-body a { color: #FF5E00; text-decoration: none; border-bottom: 1px solid transparent; transition: border-bottom 0.3s; }
.article-body a:hover { border-bottom: 1px solid #FF5E00; }
.article-body ul, .article-body ol { margin-bottom: 25px; padding-left: 20px; }
.article-body li { margin-bottom: 10px; }
.article-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 20px 0; border: 1px solid rgba(43, 40, 37, 0.1); display: block; }
.article-body pre, .article-body code { background-color: #EAE4D9; color: #00B2FF; padding: 2px 5px; border-radius: 4px; font-family: monospace; border: 1px solid #333; }
.article-body pre { padding: 15px; overflow-x: auto; display: block; margin-bottom: 25px; }
.article-cta { margin-top: 60px; padding: 40px; background: linear-gradient(135deg, rgba(255, 94, 0, 0.1), rgba(0, 178, 255, 0.1)); border: 1px solid rgba(255, 94, 0, 0.3); border-radius: 12px; text-align: center; }
.article-cta h3 { font-family: 'Orbitron', monospace; font-size: 1.5rem; margin-bottom: 15px; color: #2B2825; }
.article-cta p { margin-bottom: 30px; font-size: 1.1rem; }
.cta-btn { display: inline-block; background: #2B2825; color: #000000; padding: 15px 30px; font-weight: bold; text-transform: uppercase; border-radius: 30px; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(43, 40, 37, 0.2); }
.article-author { display: flex; align-items: flex-start; gap: 20px; margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(43, 40, 37, 0.1); }
.author-avatar { width: 80px; height: 80px; border-radius: 50%; background: #F4EFE6; border: 2px solid #FF5E00; display: flex; align-items: center; justify-content: center; font-size: 30px; font-weight: bold; color: #FF5E00; flex-shrink: 0; }
.author-bio h4 { font-family: 'Orbitron', monospace; font-size: 1.2rem; margin-bottom: 5px; }
.author-bio p { font-size: 0.95rem; color: rgba(43, 40, 37, 0.85); margin: 0; line-height: 1.5; }
@media(max-width: 768px) { .article-header h1 { font-size: 2rem; } .article-author { flex-direction: column; align-items: center; text-align: center; } }
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(253, 251, 247, 0.85);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: #EAE4D9;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #00B2FF;
            width: 80%;
            max-width: 500px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 178, 255, 0.5);
            color: #2B2825;
        }

        .modal-content p {
            font-size: 2em;
        }

        .loader {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #00B2FF;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 2s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        #closeSuccessModal {
            background-color: #00B2FF;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 15px;
            transition: background-color 0.3s;
        }

        #closeSuccessModal:hover {
            background-color: #008fcc;
        }

        /* Container to center buttons */
        .contact-buttons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            /* space between buttons */
            flex-wrap: wrap;
            /* stack vertically if needed */
            margin: 20px 0;
        }

        /* WhatsApp Button */
        #whatsapp-button {
            position: relative;
            background-color: #25D366;
            color: white;
            font-family: Arial, sans-serif;
            font-size: 16px;
            padding: 12px 20px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            border-radius: 6px;
            overflow: hidden;
            transition: background-color 0.2s, transform 0.2s;
            animation: jiggle 1.5s infinite ease-in-out;
        }

        #whatsapp-button img {
            width: 24px;
            height: 24px;
        }

        #whatsapp-button:hover {
            background-color: #20b358;
            transform: translateY(-1px);
        }

        /* Shine effect */
        #whatsapp-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -75%;
            width: 50%;
            height: 100%;
            background: linear-gradient(120deg,
                    rgba(43, 40, 37, 0.2) 0%,
                    rgba(43, 40, 37, 0.6) 50%,
                    rgba(43, 40, 37, 0.2) 100%);
            transform: skewX(-20deg);
            animation: shine 1s infinite;
        }

        /* Shine animation */
        @keyframes shine {
            0% {
                left: -75%;
            }

            50% {
                left: 125%;
            }

            100% {
                left: 125%;
            }
        }

        /* Jiggle animation */
        @keyframes jiggle {

            0%,
            100% {
                transform: rotate(0deg) scale(1) translateY(0);
            }

            25% {
                transform: rotate(1.23deg) scale(1.0164) translateY(-0.41px);
            }

            50% {
                transform: rotate(-1.23deg) scale(1.0164) translateY(0.41px);
            }

            75% {
                transform: rotate(1.23deg) scale(1.0164) translateY(-0.41px);
            }
        }



        /* Responsive behavior */
        @media (max-width: 768px) {
            .contact-buttons {
                flex-direction: column;
                /* stack vertically on mobile/iPad */
            }
        }

        .whatsapp-float {
            position: fixed;
            width: 55px;
            height: 55px;
            bottom: 18px;
            /* Moved up to clear Crisp chat */
            left: 20px;
            z-index: 1000;
            background-color: #25D366;
            border-radius: 50%;
            text-align: center;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
            animation: jiggle 1.5s infinite ease-in-out;

        }

        .whatsapp-float img {
            width: 40px;
            height: 40px;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }
.artistic-message {
                            display: grid;
                            grid-template-columns: minmax(30px, 1fr) auto minmax(30px, 1fr);
                            gap: 15px;
                            align-items: start;
                            text-align: center;
                            font-family: 'Rajdhani', sans-serif;
                            font-size: 15px;
                            font-weight: 500;
                            letter-spacing: 1px;
                            text-transform: uppercase;
                            color: rgba(43, 40, 37, 0.85);
                            margin: 35px auto 25px auto;
                            width: 100%;
                            max-width: 600px;
                        }

                        .artistic-message::before,
                        .artistic-message::after {
                            content: '';
                            height: 1px;
                            margin-top: 0.75em;
                            border-radius: 2px;
                        }

                        .artistic-message::before {
                            background: linear-gradient(to right, transparent, rgba(255, 94, 0, 0.8));
                        }

                        .artistic-message::after {
                            background: linear-gradient(to left, transparent, rgba(0, 178, 255, 0.8));
                        }