/* Navbar Styles */


.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.1) rotate(5deg);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .logo-img {
        width: 45px;
        height: 45px;
    }

    .footer-logo-img {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }

    .footer-logo-img {
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(140, 164, 178, 0.3);
}

.navbar.scrolled {
    background: rgba(255, 253, 253, 0.98);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    color: rgb(255, 255, 255);
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

.logo i {
    font-size: 2rem;
    color: var(--light-blue);
    animation: rotate-360 4s linear infinite;
}

@keyframes rotate-360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    from { filter: brightness(1); }
    to { filter: brightness(1.2); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--light-blue);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}
/* -----------------------------------------------------------
   RESET & VARIABLES
----------------------------------------------------------- */
:root {
    --bg-black: #050505;
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --electric-blue: #00f0ff;
    --deep-blue: #0044ff;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --gradient-main: linear-gradient(135deg, var(--deep-blue), var(--electric-blue));
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Fallback sans */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.blue-highlight {
    color: var(--electric-blue);
}

/* -----------------------------------------------------------
   ANIMATIONS (UTILITY)
----------------------------------------------------------- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; transition-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Observer State */
.observe-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition);
}

.observe-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* -----------------------------------------------------------
   1. HERO SECTION
----------------------------------------------------------- */
.about-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--deep-blue) 0%, transparent 70%);
    opacity: 0.3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    animation: pulseGlow 5s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

.hero-content h4 {
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
}

.hero-content p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-gray);
    border-radius: 15px;
}

.scroll-indicator span {
    display: block;
    width: 4px;
    height: 8px;
    background: var(--electric-blue);
    border-radius: 2px;
    margin: 8px auto 0;
    animation: scrollDrop 2s infinite;
}

@keyframes scrollDrop {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* -----------------------------------------------------------
   2. WHO WE ARE
----------------------------------------------------------- */
.who-we-are {
    padding: 100px 0;
    background: var(--bg-dark);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-block p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.stats-row {
    display: flex;
    gap: 50px;
    margin-top: 30px;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--electric-blue);
}

.stat-item span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--text-white);
}

.visual-block {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-visual {
    width: 100%;
    height: 100%;
    position: relative;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: var(--deep-blue);
    top: 20%;
    left: 20%;
    animation: floatOrb 6s infinite ease-in-out;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: var(--electric-blue);
    bottom: 20%;
    right: 20%;
    animation: floatOrb 7s infinite ease-in-out reverse;
}

.glass-pane {
    position: absolute;
    top: 60%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 85%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

/* -----------------------------------------------------------
   3. MISSION & VISION
----------------------------------------------------------- */
.mission-vision {
    padding: 100px 0;
    background: var(--bg-black);
}

.mv-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: var(--deep-blue);
    box-shadow: 0 0 30px rgba(0, 68, 255, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    position: relative;
}

/* CSS Only Icons */
.icon-mission::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px;
    border: 2px solid var(--electric-blue);
    border-radius: 50%;
}
.icon-mission::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 20px; height: 20px;
    background: var(--electric-blue);
}

.icon-vision::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 30px;
    border: 2px solid var(--electric-blue);
    border-radius: 50%;
}
.icon-vision::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 15px; height: 15px;
    background: var(--electric-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--electric-blue);
}

.mv-card h3 { margin-bottom: 1rem; }
.mv-card p { color: var(--text-gray); }

/* -----------------------------------------------------------
   4. DIFFERENTIATORS
----------------------------------------------------------- */
.differentiators {
    padding: 100px 0;
    background: var(--bg-dark);
}

.center-text { text-align: center; }

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.diff-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, #000 100%);
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.diff-card:hover {
    background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
    transform: scale(1.02);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    display: block;
    margin-bottom: 10px;
}

.diff-card:hover .step-number {
    color: rgba(0, 240, 255, 0.1);
}

.diff-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.diff-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* -----------------------------------------------------------
   5. FOUNDER SECTION
----------------------------------------------------------- */
.founder-section {
    padding: 150px 0;
    background: var(--bg-black);
    position: relative;
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.2;
}

.founder-image-placeholder {
    width: 110%;
    height: 110%;
    background: #1a1a1a;
    border-radius: 200px 200px 20px 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #111, #222);
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, var(--bg-black));
    opacity: 0.6;
}

.founder-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--bg-black);
    border: 1px solid var(--electric-blue);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--electric-blue);
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.subtitle {
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.founder-content h2 { font-size: 3rem; margin-bottom: 5px; }
.role { color: var(--text-gray); font-style: italic; margin-bottom: 30px; font-size: 1.1rem; }

.founder-story p {
    margin-bottom: 1.5rem;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

.founder-quote {
    border-left: 4px solid var(--electric-blue);
    padding-left: 20px;
    margin-top: 40px;
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
    color: var(--text-white);
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.05), transparent);
    padding: 20px;
    border-radius: 0 10px 10px 0;
}

/* -----------------------------------------------------------
   6. CTA
----------------------------------------------------------- */
.about-cta {
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-black);
}

.cta-bg-animate {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(0, 68, 255, 0.15) 0%, transparent 60%);
    animation: ctaPulse 4s infinite alternate;
}

@keyframes ctaPulse {
    0% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.1); }
}

.cta-content { position: relative; z-index: 2; }

.cta-content h2 { font-size: 3rem; margin-bottom: 1rem; }
.cta-content p { color: var(--text-gray); font-size: 1.2rem; margin-bottom: 3rem; }

.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    border: 1px solid var(--electric-blue);
    color: var(--text-white);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-glow {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover {
    background: var(--electric-blue);
    color: #000;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
}

.btn-primary:hover .btn-glow {
    left: 100%;
}

/* -----------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------- */
@media (max-width: 900px) {
    .grid-2, .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .founder-image-wrapper {
        width: 80%;
        margin: 0 auto;
    }
    
    .founder-image-placeholder {
        border-radius: 20px;
    }
}

@media (max-width: 600px) {
    .grid-4 { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .founder-quote { font-size: 1.1rem; }
}
/* Footer Section */
.footer {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(94, 198, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(29, 78, 216, 0.1) 0%, transparent 50%);
    animation: footer-float 15s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes footer-float {
    from { transform: translate(-2%, -2%) rotate(1deg); }
    to { transform: translate(2%, 2%) rotate(-1deg); }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 20px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light-blue);
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    animation: footer-underline 2s ease-in-out infinite alternate;
}

@keyframes footer-underline {
    from { width: 30px; opacity: 0.7; }
    to { width: 50px; opacity: 1; }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: logo-glow 3s ease-in-out infinite alternate;
}

@keyframes logo-glow {
    from { text-shadow: 0 0 10px rgba(94, 198, 255, 0.3); }
    to { text-shadow: 0 0 20px rgba(94, 198, 255, 0.6); }
}

.footer-logo i {
    font-size: 2rem;
    color: var(--light-blue);
    animation: footer-icon-spin 6s linear infinite;
}

@keyframes footer-icon-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-accent);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    color: var(--primary-dark);
    border-color: var(--white);
    box-shadow: 0 10px 25px rgba(94, 198, 255, 0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--light-blue);
    font-size: 0.8rem;
    transition: all 0.3s ease;
    transform: translateX(-5px);
    opacity: 0;
}

.footer-links a:hover::before {
    transform: translateX(0);
    opacity: 1;
}

.footer-links a:hover {
    color: var(--light-blue);
    opacity: 1;
    transform: translateX(10px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.contact-item i {
    width: 20px;
    color: var(--light-blue);
    font-size: 1.1rem;
    animation: contact-pulse 2s ease-in-out infinite alternate;
}

@keyframes contact-pulse {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.contact-item:hover {
    transform: translateX(5px);
    color: var(--light-blue);
}

.footer-bottom {
    position: relative;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--light-blue) 20%, var(--accent-blue) 50%, var(--light-blue) 80%, transparent 100%);
    margin-bottom: 2rem;
    animation: divider-glow 3s ease-in-out infinite alternate;
}

@keyframes divider-glow {
    from { opacity: 0.5; box-shadow: 0 0 10px rgba(94, 198, 255, 0.3); }
    to { opacity: 1; box-shadow: 0 0 20px rgba(94, 198, 255, 0.6); }
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    opacity: 0.8;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

.footer-bottom-links a:hover {
    color: var(--light-blue);
    opacity: 1;
}

/* Animations */
@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin: 0 auto 2rem;
    }

    .image-container {
        height: 400px;
    }

    .laptop {
        width: 250px;
        height: 160px;
    }

    .screen {
        width: 220px;
        height: 130px;
    }

    .element {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .service-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .slider-controls {
        gap: 1rem;
        margin-top: 2rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-section {
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-bottom-links {
        gap: 1.5rem;
    }
}

/* Medium screens */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 15px 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .learn-more-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .services {
        padding: 80px 15px;
    }

    .services-slider {
        padding: 20px;
    }

    .service-slide {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }
}

/* Glassmorphism effects */
.services-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    border-radius: 20px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* Selection styling */
::selection {
    
    background: var(--light-blue);
    color: var(--primary-dark);
}