/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --text-light: #ffffff;
    --text-gray: #b8b8b8;
    --text-dark: #1a1a2e;
    --bg-dark: #0f0f1a;
    --bg-navy: #1a1a3e;
    --border-color: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
}

.nav-left {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.contact-btn {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    color: var(--accent-color);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a3e 0%, #0f0f1a 100%);
    background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 62, 0.95) 0%, rgba(26, 26, 62, 0.7) 50%, rgba(15, 15, 26, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 60px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-badge {
    margin-bottom: 20px;
}

.badge-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.hero-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.title-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    font-style: italic;
}

.title-name {
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: -2px;
}

.title-surname {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 5px;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text-light);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.hero-description {
    max-width: 500px;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 60px;
}

.hero-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 30px;
}

.ceo-badge {
    text-align: center;
}

.springfield-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.springfield-logo .dot {
    color: var(--accent-color);
}

.ceo-badge p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 5px;
}

.ceo-badge strong {
    color: var(--text-light);
}

.featured-logos {
    text-align: center;
}

.featured-logos span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-gray);
    display: block;
    margin-bottom: 10px;
}

.logos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.logo-text {
    font-size: 0.75rem !important;
    color: var(--text-gray) !important;
    opacity: 0.7;
}

.youtube-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.youtube-badge i {
    font-size: 2rem;
    color: #ff0000;
}

.youtube-badge span {
    font-size: 0.85rem;
    max-width: 150px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-light);
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-frame {
    width: 350px;
    height: 450px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, transparent 100%);
}

.frame-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a3e 0%, #0f0f1a 100%);
}

.stats-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Featured Carousel */
.featured-carousel {
    padding: 80px 0;
    background: var(--bg-dark);
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-slide {
    display: none;
    text-align: center;
    padding: 40px;
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.carousel-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.carousel-counter {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.carousel-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-prev,
.carousel-next {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

/* Podcasts Section */
.podcasts {
    padding: 80px 0;
    background: var(--bg-navy);
}

.podcasts-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.podcast-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.podcast-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

.podcast-card.featured {
    grid-row: span 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.podcast-date {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.podcast-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 20px;
}

.podcast-card.featured .podcast-title {
    font-size: 1.8rem;
}

.podcast-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.podcast-link:hover {
    color: var(--accent-color);
}

.podcast-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 20px;
}

/* Springfield Section */
.springfield {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a3e 0%, #0f0f1a 100%);
}

.springfield-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.springfield-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.springfield-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.springfield-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
}

.info-subtext {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.springfield-stat {
    display: flex;
    flex-direction: column;
}

.stat-big {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-light);
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    color: var(--text-gray);
}

.springfield-cta {
    display: flex;
    justify-content: flex-end;
}

.springfield-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.springfield-btn:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

/* YouTube Section */
.youtube-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.youtube-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.youtube-tag {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    display: block;
}

.youtube-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.youtube-desc {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.youtube-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff0000;
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.youtube-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.youtube-stat {
    display: flex;
    flex-direction: column;
}

.views-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.views-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.youtube-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.2rem;
    color: var(--text-light);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a3e 0%, #0f0f1a 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text-light);
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.footer-top {
    text-align: center;
    margin-bottom: 40px;
}

.featured-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-gray);
    text-transform: uppercase;
}

.footer-brand {
    text-align: center;
    margin-bottom: 60px;
}

.brand-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-light);
    line-height: 1;
}

.brand-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
}

.brand-farooq {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
}

.brand-syed {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: 10px;
}

.brand-tagline {
    font-size: 0.9rem;
    color: var(--text-gray);
    letter-spacing: 2px;
}

.footer-connect {
    text-align: center;
    margin-bottom: 60px;
}

.footer-connect h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.footer-contact {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.contact-item .contact-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-gray);
    display: block;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-light);
}

.built-by {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.built-by i {
    color: var(--accent-color);
}

.built-by a {
    color: var(--text-light);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid,
    .youtube-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .springfield-content {
        grid-template-columns: 1fr;
    }

    .springfield-cta {
        justify-content: flex-start;
    }

    .footer-contact {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .podcasts-grid {
        grid-template-columns: 1fr;
    }

    .podcast-card.featured {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 100px 20px 40px;
    }

    .title-number {
        font-size: 2rem;
    }

    .title-name {
        font-size: 3rem;
    }

    .title-surname {
        font-size: 2rem;
    }

    .hero-bottom {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-title,
    .springfield-title,
    .youtube-title,
    .cta-title {
        font-size: 1.8rem;
    }

    .brand-farooq {
        font-size: 2rem;
    }

    .brand-syed {
        font-size: 2.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

*{margin:0;padding:0;box-sizing:border-box;font-family: 'Poppins', sans-serif;}
body{background:#0b0f1a;color:#fff;overflow-x:hidden;}

.hero{
    position:relative;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

/* VIDEO BACKGROUND (HD + crisp) */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;       /* fill entire hero */
    object-position: center; /* center video */
    z-index: -2;
    filter: none;            /* no blur */
    transform: translateZ(0); /* forces GPU rendering for sharpness */
}

/* DARK OVERLAY */
.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(10,15,30,0.75), rgba(10,15,30,0.5));
    top: 0; left: 0;
    z-index: -1;
}

/* GLOW EFFECT */
.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(77,163,255,0.25), transparent 70%);
    top: 20%;
    left: 10%;
    filter: blur(120px); /* subtle glow */
    z-index: -1;
}

/* HERO CONTENT */
.hero-content {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 100px 20px;
    color: #fff;
}

/* BADGE */
.hero-badge {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.badge-label {
    font-weight: 600;
    opacity: 0.8;
}

.badge-text {
    font-size: 14px;
    opacity: 0.7;
}

/* HERO TITLE */
.hero-title {
    font-size: 80px;
    line-height: 1.1;
    font-weight: 800;
}

.title-number {
    color: #4da3ff;
    margin-right: 10px;
}

.title-name {
    display: block;
}

.title-surname {
    display: block;
    color: #aaa;
}

/* SUBTITLE */
.hero-subtitle {
    margin: 20px 0;
    letter-spacing: 2px;
    font-size: 14px;
    color: #aaa;
}

/* CTA BUTTON */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hero-cta:hover {
    background: #4da3ff;
    color: #fff;
}

/* DESCRIPTION */
.hero-description {
    margin-top: 20px;
    max-width: 600px;
    color: #ccc;
}

/* HERO BOTTOM */
.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

/* CEO / Skills / Badges */
.springfield-logo {
    font-size: 22px;
    font-weight: 700;
}

.dot { color: red; }

.featured-logos span {
    font-size: 12px;
    opacity: 0.6;
}

.logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.logo-text {
    font-size: 12px;
    opacity: 0.7;
}

.youtube-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    background: rgba(255,255,255,0.05);
    padding: 10px 15px;
    border-radius: 20px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero-title { font-size: 40px; }
    .hero-bottom { flex-direction: column; align-items:flex-start; }
}

.about {
    padding: 100px 40px;
    background: #0b0f1a;
    color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-text {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.about-tags span {
    background: rgba(255,255,255,0.05);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    transition: 0.3s;
}

.about-tags span:hover {
    background: #4da3ff;
    color: #fff;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px; /* adjust according to design */
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills frame */
    object-position: center top; /* IMPORTANT */
}

.frame-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.6);
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 12px;
}

/* Responsive */
@media(max-width:768px){
    .about-grid{
        grid-template-columns: 1fr;
    }
}

.stats {
    padding: 100px 40px;
    background: #0b0f1a;
    color: #fff;
    text-align: center;
}

.stats-title {
    font-size: 40px;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* Glow hover */
.stat-card::before {
    content: \"\";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(77,163,255,0.2), transparent 70%);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.4s;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(77,163,255,0.1);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #4da3ff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 13px;
    color: #aaa;
}

/* Responsive */
@media(max-width:992px){
    .stats-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px){
    .stats-grid{
        grid-template-columns: 1fr;
    }
}



/* Card Style */
.cta-card {
    position: relative;
    padding: 50px 30px;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: 0.4s;
    overflow: hidden;
}

/* Hover Glow Effect */
.cta-card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.5s;
}

.real-estate::before {
    background: radial-gradient(circle, rgba(255,180,0,0.25), transparent 70%);
}

.ai-ml::before {
    background: radial-gradient(circle, rgba(77,163,255,0.25), transparent 70%);
}

.cta-card:hover::before {
    opacity: 1;
}

.cta-card:hover {
    transform: translateY(-10px) scale(1.03);
}

/* Content */
.cta-content i {
    font-size: 40px;
    margin-bottom: 15px;
}

.cta-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 14px;
    color: #aaa;
}

/* Responsive */
@media(max-width:768px){
    .dual-buttons{
        grid-template-columns: 1fr;
    }
}

/* Navbar Layout */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

/* Right side layout */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Socials inside right */
.nav-socials {
    display: flex;
    gap: 15px;
}

/* Icons */
.social-icon {
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.social-icon:hover {
    color: #4da3ff;
    transform: translateY(-2px);
}

/* Contact Button */
.contact-btn {
    padding: 10px 20px;
    border-radius: 25px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #4da3ff;
    color: #fff;
}

.dual-cta {
    position: relative;
    min-height: 600px;           /* Ensure section is tall enough for video */
    display: flex;
    flex-direction: column;
    justify-content: center;      /* Center text vertically */
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Make video cover section fully */
.dual-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Overlay so text is readable */
.dual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);  /* darker for readability */
    z-index: -1;
}

/* Keep content above video */
.dual-cta .container {
    position: relative;
    z-index: 1;
}

/* Buttons grid */
.dual-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    width: 100%;
    max-width: 900px;
}

/* CTA Cards */
.cta-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    transition: 0.4s;
}

.cta-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(77,163,255,0.15);
}

.cta-content i {
    font-size: 40px;
    margin-bottom: 15px;
}

.cta-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 14px;
    color: #ccc;
}

/* Responsive */
@media(max-width:768px){
    .dual-buttons{
        grid-template-columns: 1fr;
    }
}

/* CTA Video Background */
.cta-section {
    position: relative;
    padding: 120px 40px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.cta-video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10, 15, 30, 0.7);
    z-index: -1;
}

.cta-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ccc;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 25px;
    background: #4da3ff;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #67b7ff;
}

.ai-btn {
    background: #ffb347;
}

.ai-btn:hover {
    background: #ffc966;
}

/* Footer */
.footer {
    background: #0b0f1a;
    color: #fff;
    padding: 80px 40px 40px;
}

.footer-brand {
    text-align: center;
    margin-bottom: 40px;
}

.brand-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.brand-first { color: #4da3ff; }
.brand-last { color: #ffb347; }

.brand-tagline { color: #ccc; font-size: 16px; }

.footer-connect h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-link {
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
}

.social-link:hover { color: #4da3ff; }

.footer-contact {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 20px;
    text-align: center;
}

.contact-label {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.footer-links a {
    margin: 0 10px;
    color: #aaa;
    font-size: 14px;
    text-decoration: none;
}

.footer-links a:hover { color: #4da3ff; }

.built-by i { color: #ff4d6d; }

/* Initial state: offscreen right */
.cta-card {
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* When in view: slide in */
.cta-card.in-view {
    transform: translateX(0);
    opacity: 1;
}

/* CTA card hover glow */
.cta-card.real-estate:hover {
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    color: #000;
}

.cta-card.real-estate:hover .cta-content i,
.cta-card.real-estate:hover h3,
.cta-card.real-estate:hover p {
    color: #000;
}

.cta-card.ai-ml:hover {
    background: linear-gradient(135deg, #4da3ff, #1e90ff);
    color: #fff;
}

.cta-card.ai-ml:hover .cta-content i,
.cta-card.ai-ml:hover h3,
.cta-card.ai-ml:hover p {
    color: #fff;
}

/* Add subtle glow */
.cta-card:hover {
    box-shadow: 0 20px 40px rgba(77,163,255,0.4);
    transform: translateY(-10px) scale(1.05);
}

.cta-card {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease-out;
}

.cta-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.portfolio {
    padding: 100px 40px;
    background: #0b0f1a;
    color: #fff;
    text-align: center;
}

.portfolio-title {
    font-size: 40px;
    margin-bottom: 40px;
}

.slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.slides {
    display: flex;
    transition: transform 0.6s ease;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

/* Overlay Text */
.slide-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
}

/* Controls */
.slider-controls span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.prev { left: 15px; }
.next { right: 15px; }

.slider-controls span:hover {
    background: #4da3ff;
}

/* Responsive */
@media(max-width:768px){
    .slide img{
        height: 300px;
    }
}


.footer {
    background: #0a0a0a;
    color: #fff;
    padding: 80px 0 30px;
}

/* GRID */
.footer .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* BRAND */
.brand-name {
    font-size: 32px;
    font-weight: 700;
}

.brand-first {
    color: #fff;
}

.brand-last {
    color: #00c896;
}

.brand-tagline {
    margin-top: 10px;
    color: #aaa;
}

/* CONNECT */
.footer-connect h3 {
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.social-link:hover {
    background: #00c896;
    color: #000;
    transform: translateY(-5px);
}

/* CONTACT */
.contact-item {
    margin-bottom: 15px;
}

.contact-label {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
}

.footer-contact a {
    color: #ddd;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #00c896;
}

/* BOTTOM */
.footer-bottom {
    grid-column: span 3;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-links {
    margin: 10px 0;
}

.footer-links a {
    margin: 0 10px;
    color: #888;
    text-decoration: none;
}

.footer-links a:hover {
    color: #00c896;
}

.built-by {
    color: #666;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        grid-column: span 1;
    }
}

