/* --- Variables & Theme Setup --- */
:root {
    --primary-color: #0f172a;
    /* Deep Navy */
    --secondary-color: #7c3aed;
    /* Vibrant Violet */
    --accent-color: #06b6d4;
    /* Cyan/Electric Blue */
    --text-color: #f1f5f9;
    --text-muted: #94a3b8;
    --bg-dark: #020617;
    --bg-card: rgba(30, 41, 59, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-main: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    --font-heading: 'Orbitron', sans-serif;
    --font-sub: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 20px rgba(124, 58, 237, 0.5);
    --nav-height: 80px;
}

/* --- Reset & Base Styles --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Hiding default cursor for custom one */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Custom Cursor --- */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    opacity: 1;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-highlight {
    color: var(--accent-color);
}

.section-padding {
    padding: 100px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    box-shadow: 0 0 15px var(--secondary-color);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* --- Particle Canvas --- */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

/* --- Header & Nav --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

.logo-img {
    height: 60px;
    width: auto;
    filter: invert(1);
}

.nav-menu {
    position: relative;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-sub);
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-toggle,
.nav-close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.2), transparent 60%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-sub);
    color: var(--accent-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
    background: rgba(6, 182, 212, 0.1);
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Hologram Animation */
.hologram-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.planet {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, #a78bfa, #4c1d95);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.5) inset, 0 0 30px rgba(124, 58, 237, 0.3);
    position: relative;
    z-index: 2;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.orbit-1 {
    width: 250px;
    height: 250px;
    animation: spin 10s linear infinite;
    border-top-color: var(--accent-color);
}

.orbit-2 {
    width: 350px;
    height: 350px;
    animation: spin-rev 15s linear infinite;
    border-bottom-color: var(--secondary-color);
}

.orbit-3 {
    width: 450px;
    height: 450px;
    animation: spin 20s linear infinite;
}

.floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.card-seo {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.card-ppc {
    bottom: 20%;
    left: 0%;
    animation-delay: 2s;
}

.card-seo i {
    color: var(--accent-color);
}

.card-ppc i {
    color: var(--secondary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

/* --- About Section --- */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.placeholder-img {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.2);
}

.stats-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-card);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.stats-box h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin: 0;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: var(--secondary-color);
}

/* --- Services Section --- */
.section-header {
    margin-bottom: 60px;
}

.badge {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.4));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1px;
    /* for border gradient simulation */
    transition: transform 0.3s ease;
    height: 100%;
}

.card-inner {
    background: var(--bg-dark);
    border-radius: 19px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-features {
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.service-features li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.learn-more {
    margin-top: auto;
    color: var(--secondary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.learn-more:hover {
    gap: 10px;
}

/* --- Calculator Section --- */
.calculator-section {
    background: linear-gradient(to bottom, var(--bg-dark), #0f172a);
}

.calculator-wrapper {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.calc-header {
    text-align: center;
    margin-bottom: 40px;
}

.calc-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    background: #334155;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent-color);
}

.value-display {
    display: block;
    text-align: right;
    color: var(--accent-color);
    font-family: var(--font-heading);
    margin-top: 5px;
}

.calc-results {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.result-box span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.result-box h3 {
    font-size: 2rem;
    margin: 0;
}

.result-box.highlight h3 {
    color: #10b981;
    /* Green for money */
}

/* --- Industry Tabs --- */
.industry-tabs {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: rgba(124, 58, 237, 0.1);
    color: #fff;
}

.tab-content {
    padding: 40px;
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.content-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-flex .icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
}

/* --- Testimonials (Static) --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(124, 58, 237, 0.2);
    font-family: serif;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stars {
    color: #facc15;
}

.date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-text {
    font-style: italic;
    margin-bottom: 25px;
    color: #e2e8f0;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
}

.reviewer h4 {
    margin: 0;
    font-size: 1rem;
}

.reviewer p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- CTA Section --- */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    margin-top: 50px;
}

.cta-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.3), transparent 70%);
    z-index: -1;
    animation: pulse 4s infinite ease-in-out;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-transparent {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* --- Footer --- */
.footer {
    background: #02040a;
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo img {
    height: 60px;
    filter: invert(1);
    margin-bottom: 20px;
}

.footer-about-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Contact Page Styles --- */
.page-header-section {
    padding: 180px 0 80px;
    background: radial-gradient(circle at top, rgba(124, 58, 237, 0.15), transparent 60%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--primary-color), #2e1065);
    padding: 40px;
}

.contact-details-list {
    margin-top: 40px;
}

.contact-details-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-details-list i {
    font-size: 1.5rem;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.contact-form-wrapper {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

/* --- Legal Content Styles --- */
.legal-content {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.legal-content h2 {
    margin-top: 30px;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.legal-content p {
    margin-bottom: 15px;
    color: #cbd5e1;
    font-size: 1.05rem;
}

/* --- Chat Widget --- */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 990;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    height: 400px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    display: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    color: #333;
}

.chat-window.active {
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: var(--secondary-color);
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.chat-body {
    flex: 1;
    padding: 15px;
    background: #f1f5f9;
}

.msg {
    padding: 10px 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    max-width: 80%;
    font-size: 0.9rem;
}

.msg.received {
    background: #fff;
    border-bottom-left-radius: 0;
}

.chat-input {
    padding: 10px;
    border-top: 1px solid #ddd;
    display: flex;
    background: #fff;
}

.chat-input input {
    flex: 1;
    border: none;
    outline: none;
    padding: 5px;
}

.chat-input button {
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
}

/* --- Animations --- */
@keyframes spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spin-rev {
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-in {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: none;
}

[data-animation="fade-in-up"] {
    transform: translateY(30px);
}

[data-animation="fade-in-left"] {
    transform: translateX(-30px);
}

[data-animation="fade-in-right"] {
    transform: translateX(30px);
}

[data-animation="zoom-in"] {
    transform: scale(0.9);
}

[data-delay="100"] {
    transition-delay: 0.1s;
}

[data-delay="200"] {
    transition-delay: 0.2s;
}

[data-delay="300"] {
    transition-delay: 0.3s;
}

[data-delay="400"] {
    transition-delay: 0.4s;
}

/* --- Popups --- */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #1e293b;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    border: 1px solid var(--accent-color);
    animation: popupScale 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popupScale {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 20px;
}

/* --- Media Queries --- */
@media screen and (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 50px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hologram-container {
        height: 300px;
        margin-top: 30px;
    }

    .grid-2-col,
    .contact-wrapper,
    .calc-body {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background: rgba(2, 6, 23, 0.95);
        backdrop-filter: blur(20px);
        padding: 4rem 1.5rem;
        transition: 0.4s;
        text-align: center;
    }

    .nav-menu.show-menu {
        top: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-toggle,
    .nav-close {
        display: block;
    }

    .nav-close {
        position: absolute;
        top: 1rem;
        right: 1.5rem;
    }

    .header-actions .btn {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .about-image-wrapper {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}