@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #4b0082;
    --primary-rgb: 75, 0, 130;
    --primary-dark: #1a0033;
    --primary-light: #7b2cbf;
    --vivid-purple: #9d4edd;
    --brand-gradient: linear-gradient(135deg, #4b0082 0%, #1a0033 100%);
    --secondary: #0f001a;
    --accent: #ff4081;
    --background: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --card-bg: #ffffff;
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

[data-theme="dark"] {
    --background: #0f001a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --card-bg: #1a0033;
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reusable Components */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--vivid-purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(75, 0, 130, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(123, 44, 191, 0.15);
    color: var(--vivid-purple);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 1.5rem 0;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] nav.scrolled {
    background: rgba(15, 0, 26, 0.9);
}

/* Nav on dark background pages (About, Services, Portfolio, Contact headers) */
nav.nav-on-dark {
    background: rgba(15, 0, 26, 0.6);
    backdrop-filter: blur(10px);
}

nav.nav-on-dark .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

nav.nav-on-dark .nav-links a:hover,
nav.nav-on-dark .nav-links a.active {
    color: white;
}

nav.nav-on-dark .nav-links a.btn-primary {
    color: white;
}

nav.nav-on-dark .logo span {
    color: white;
}

nav.nav-on-dark .mobile-toggle {
    color: white;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.nav-links a.btn-primary,
.nav-links a.btn-primary:hover {
    color: white;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('techBack.jpg');
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroBgPan 20s ease-in-out infinite alternate;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.82);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

@keyframes heroBgPan {
    0%   { background-position: 0% 50%; background-size: 120%; }
    50%  { background-position: 50% 60%; background-size: 130%; }
    100% { background-position: 100% 50%; background-size: 120%; }
}

.hero-card {
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%   { transform: perspective(1000px) rotateY(-15deg) translateY(0px); }
    50%  { transform: perspective(1000px) rotateY(-10deg) translateY(-12px); }
    100% { transform: perspective(1000px) rotateY(-15deg) translateY(0px); }
}

.hero-card:hover {
    animation: none;
    transform: perspective(1000px) rotateY(0deg);
}

/* Reusable Tech Background Section */
.tech-bg-section {
    position: relative;
    overflow: hidden;
}

.tech-bg-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('techBack2.png');
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroBgPan 20s ease-in-out infinite alternate;
    z-index: 0;
}

.tech-bg-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 1;
}

.tech-bg-section .container {
    position: relative;
    z-index: 2;
}

/* Header Tech Background */
.header-tech-bg {
    position: relative;
    overflow: hidden;
    background: var(--secondary);
    color: white;
}

.header-tech-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('techBack.jpg');
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroBgPan 20s ease-in-out infinite alternate;
    z-index: 0;
    opacity: 0.15;
}

.header-tech-bg .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .header-tech-bg h1 {
        font-size: 2rem !important;
    }
    .header-tech-bg p {
        font-size: 0.95rem !important;
        padding: 0 1rem;
    }
}

/* Premium Dark Gradient Section */
.premium-gradient {
    background: linear-gradient(135deg, #0f001a 0%, #1a0033 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.premium-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('techBack.jpg');
    background-size: cover;
    opacity: 0.05;
    mix-blend-mode: overlay;
    z-index: 0;
}

.premium-gradient .container {
    position: relative;
    z-index: 1;
}

.premium-gradient h2, 
.premium-gradient h3, 
.premium-gradient h4 {
    color: white;
}

.premium-gradient p {
    color: rgba(255, 255, 255, 0.75);
}

.premium-gradient .card-dark {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.premium-gradient .card-dark:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

/* 3D Features & Particles */
#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.tilt-card {
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.tilt-card > * {
    transform: translateZ(20px); /* Gives content a floating effect */
}


.hero-content {
    flex: 1;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary), var(--vivid-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    align-self: stretch;
}

.hero-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.2;
    z-index: 1;
}

.hero-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    z-index: 2;
    position: relative;
    transform: perspective(1000px) rotateY(-15deg);
    transition: var(--transition);
}

.hero-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Cards & Sections */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
}

.service-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
}

.service-icon {
    width: 100%;
    height: 500px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    overflow: hidden;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

.portfolio-item {
    text-align: center;
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

/* Stats */
.stats-section {
    background-color: var(--secondary);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: var(--brand-gradient);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-desc {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter-section {
    background: #f1f5f9;
    padding: 60px 0;
    text-align: center;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 2rem auto 0;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
}

/* Animations */
.hidden { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); 
}

.reveal { 
    opacity: 1; 
    transform: translateY(0); 
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Design Philosophy */
.philosophy-section {
    background: var(--brand-gradient);
    color: white;
}

.philosophy-grid {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.philosophy-image {
    flex: 1;
    min-width: 300px;
}

.philosophy-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.philosophy-content {
    flex: 1;
    min-width: 300px;
}

.philosophy-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-stats .stat-item {
    text-align: left;
}

.philosophy-stats h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.2rem;
}

.philosophy-stats p {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.quote {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    margin-bottom: 0.1rem;
    font-size: 1.1rem;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive Design Enhancements */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .philosophy-grid, .service-detail {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        padding: 140px 0 80px;
        text-align: center;
    }
    .hero-content {
        order: 1;
        margin-bottom: 3rem;
    }
    .hero-image {
        order: 2;
    }
    .hero h1 {
        font-size: 3rem;
        margin-left: auto;
        margin-right: auto;
    }
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btns {
        justify-content: center;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo img {
        height: 30px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98); /* Clean white background */
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -15px 0 40px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links a {
        color: var(--secondary) !important; /* Dark Purple links */
        font-size: 1.2rem;
        font-weight: 600;
    }

    .nav-links a:hover, 
    .nav-links a.active {
        color: var(--primary) !important; /* Vivid Purple on hover/active */
    }

    .nav-links a.btn-primary {
        background: var(--primary);
        color: white !important;
        padding: 0.5rem 1.4rem;
        width: auto;
        font-size: 0.9rem;
        border-radius: 50px;
    }
    
    .nav-links.active-mobile {
        right: 0;
    }
    
    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .mobile-toggle i.fa-times {
        color: var(--secondary) !important;
    }

    .philosophy-grid, .service-detail, .service-detail:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
    
    .philosophy-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .service-detail-img {
        width: 100%;
    }
    
    .service-icon {
        height: 300px; /* Smaller height for mobile devices */
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .philosophy-stats h3 {
        font-size: 1.8rem;
    }
    .testimonials-grid, .services-grid, .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-item img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-btns .btn {
        width: 100%;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .section-title h2 {
        font-size: 1.6rem;
    }
    .philosophy-image img {
        height: 250px;
        object-fit: cover;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) translateY(-5px);
    color: #FFF;
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.5);
}

.whatsapp-float .tooltip {
    position: absolute;
    left: 75px;
    background: white;
    color: var(--secondary);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.whatsapp-float .tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(10px);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    .whatsapp-float .tooltip {
        display: none;
    }
}

/* Legal Pages Styling */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 6rem;
}
.legal-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 4rem;
    border: 1px solid #f1f5f9;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}
[data-theme="dark"] .legal-card {
    border-color: rgba(255, 255, 255, 0.05);
}
.legal-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}
[data-theme="dark"] .legal-meta {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}
.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid rgba(75, 0, 130, 0.1);
    padding-bottom: 0.5rem;
}
[data-theme="dark"] .legal-content h2 {
    color: var(--primary-light);
    border-bottom-color: rgba(123, 44, 191, 0.1);
}
.legal-content h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text-main);
    opacity: 0.9;
}
.legal-content ul, .legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}
.legal-content ul li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: var(--text-main);
    opacity: 0.9;
}
.legal-content ol li {
    list-style-type: decimal;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: var(--text-main);
    opacity: 0.9;
}
.legal-content strong {
    color: var(--text-main);
    font-weight: 600;
}

/* Footer Legal Links styling */
.footer-legal-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-legal-links a {
    color: #94a3b8;
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-legal-links a:hover {
    color: var(--primary-light);
}
.footer-legal-links span {
    color: #475569;
    font-size: 0.85rem;
}
@media (max-width: 768px) {
    .legal-card {
        padding: 2.5rem 1.5rem;
        margin-top: -30px;
    }
}


