/* style.css */

:root {
    --bg-color: #070709;
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.08);
    --accent-purple: #a940ff;
    --accent-blue: #6e96fb;
    --text-main: rgba(240, 240, 240, 0.95);
    --text-muted: rgba(240, 240, 240, 0.6);
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Instrument Serif', serif;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
}

body {
    background-color: var(--bg-color);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #333;
}

/* ==========================================================================
   Header Navigation Styles
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background-color: rgba(7, 7, 9, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.logo {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
    letter-spacing: -0.01em;
}

.logo span {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 450;
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 1.5rem;
    position: relative;
    padding: 0.3rem 0;
    transition: var(--transition);
}

.nav-link:hover, 
.nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-btn {
    padding: 0.65rem 1.4rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.desktop-cta {
    background-color: #ffffff;
    color: #000000;
}

.desktop-cta:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.mobile-cta {
    display: none;
}

/* Mobile Hamburger Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) { top: 2px; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { top: 20px; }

.menu-toggle.active span:nth-child(1) {
    top: 11px;
    transform: rotate(135deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle.active span:nth-child(3) {
    top: 11px;
    transform: rotate(-135deg);
}


/* ==========================================================================
   Hero Banner Section
   ========================================================================== */
.banner {
    min-height: 100vh;
    padding: 130px 6% 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Ambient Glow Container and Circles */
.glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.glow-purple {
    width: 450px;
    height: 450px;
    background: var(--accent-purple);
    top: 10%;
    right: 5%;
}

.glow-blue {
    width: 500px;
    height: 500px;
    background: var(--accent-blue);
    bottom: 5%;
    left: -5%;
}

/* Banner Content Column */
.banner-content {
    flex: 1.1;
    z-index: 1;
    padding-right: 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tagline-pill {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 0.5rem 1.1rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-blue);
    margin-right: 8px;
    box-shadow: 0 0 10px var(--accent-blue);
    animation: pulse 1.8s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 4px var(--accent-blue); }
    100% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px var(--accent-blue); }
}

.banner-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 8vw, 4.8rem);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-blue) 30%, var(--accent-purple) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.banner-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
    max-width: 580px;
    font-weight: 300;
}

.banner-ctas {
    display: flex;
    gap: 1.2rem;
    width: 100%;
}

.btn {
    padding: 0.9rem 1.8rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 30px rgba(110, 150, 251, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(110, 150, 251, 0.4);
    opacity: 0.95;
}

.btn-secondary {
    background-color: var(--card-bg);
    color: #ffffff;
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Banner Media Column */
.banner-media {
    flex: 0.9;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-frame {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/3;
    background-color: #0e0e12;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 
                inset 0 1px 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.media-frame:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 45px 110px rgba(110, 150, 251, 0.1),
                inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.frame-header {
    height: 38px;
    background-color: #0b0b0e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
}

.frame-header .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.frame-header .red { background-color: #ff5f56; }
.frame-header .yellow { background-color: #ffbd2e; }
.frame-header .green { background-color: #27c93f; }

.banner-image {
    width: 100%;
    height: calc(100% - 38px);
    object-fit: cover;
    opacity: 0.85;
    transition: var(--transition);
}

.media-frame:hover .banner-image {
    opacity: 0.95;
    transform: scale(1.03);
}

.frame-overlay {
    position: absolute;
    inset: 38px 0 0;
    background: linear-gradient(180deg, rgba(7,7,9,0) 60%, rgba(7,7,9,0.4) 100%);
    pointer-events: none;
}


/* ==========================================================================
   Our Expertise Section
   ========================================================================== */
.expertise {
    padding: 100px 4% 120px;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.expertise-header {
    text-align: center;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subtitle-pill {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    color: var(--text-main);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 6vw, 3.6rem);
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    max-width: 600px;
}

/* Sliding Marquee Slider Container */
.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1.5rem 0;
    /* FADE COLOR EFFECT AT BOTH EDGES */
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee 35s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Individual Glassmorphic Cards */
.expertise-card {
    width: 320px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.2rem 2rem;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.02);
}

.expertise-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(110, 150, 251, 0.06),
                inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(110, 150, 251, 0.1);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.6rem;
    transition: var(--transition);
}

.expertise-card:hover .card-icon {
    background-color: rgba(169, 64, 255, 0.15);
    color: var(--accent-purple);
    transform: scale(1.05) rotate(5deg);
}

.expertise-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.expertise-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
}


/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
    padding: 100px 4% 120px;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    z-index: 1;
    position: relative;
}

.about-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-stats {
    flex: 0.8;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(110, 150, 251, 0.05);
}

.stat-number {
    font-family: var(--font-body);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
}


/* ==========================================================================
   Contact Form Section
   ========================================================================== */
.contact-section {
    padding: 100px 4% 120px;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-container {
    width: 100%;
    max-width: 680px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 
                inset 0 1px 1px rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-weight: 300;
    text-align: center;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    width: 100%;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 0.95rem 1.25rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 15px rgba(110, 150, 251, 0.15),
                inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

/* Custom styles for select element */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(240, 240, 240, 0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
    cursor: pointer;
}

.form-select option {
    background-color: #0b0b0e;
    color: #ffffff;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}


/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
    background-color: var(--bg-color);
    border-top: 1px solid var(--card-border);
    padding: 60px 4% 40px;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
}

.footer-email {
    display: block;
    margin-top: 0.5rem;
    color: var(--accent-blue);
    font-weight: 400;
    transition: var(--transition);
}

.footer-email:hover {
    color: var(--accent-purple);
}

.footer-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-link {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(240, 240, 240, 0.4);
    font-weight: 300;
}


/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
.contact-section {
    padding: 100px 4% 120px;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-container {
    width: 100%;
    max-width: 680px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 
                inset 0 1px 1px rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-weight: 300;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    width: 100%;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 0.95rem 1.25rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 15px rgba(110, 150, 251, 0.15),
                inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

/* Custom styles for select element */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(240, 240, 240, 0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
    cursor: pointer;
}

.form-select option {
    background-color: #0b0b0e;
    color: #ffffff;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}


/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
    padding: 100px 4% 120px;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    z-index: 1;
    position: relative;
}

.about-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-stats {
    flex: 0.8;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(110, 150, 251, 0.05);
}

.stat-number {
    font-family: var(--font-body);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
}


/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */



@media (max-width: 1024px) {
    .banner {
        flex-direction: column;
        justify-content: center;
        padding-top: 140px;
        padding-bottom: 80px;
        text-align: center;
    }

    .banner-content {
        padding-right: 0;
        margin-bottom: 4rem;
        align-items: center;
        max-width: 750px;
    }

    .banner-subtitle {
        max-width: 100%;
    }

    .banner-ctas {
        justify-content: center;
    }

    .banner-media {
        width: 100%;
    }

    .media-frame {
        max-width: 600px;
    }

    .expertise {
        padding: 80px 4% 100px;
    }

    

    .contact-section {
        padding: 80px 4% 100px;
    }
    .about-section {
        padding: 80px 4% 100px;
    }

    .about-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .about-content {
        align-items: center;
    }

    .about-content .section-title {
        text-align: center !important;
    }

    .about-stats {
        flex-direction: row;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        width: 100%;
    }

    .stat-card {
        width: 220px;
    }
}

@media (max-width: 809px) {
    /* Header Mobile Menu Toggle */
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: rgba(7, 7, 9, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--card-border);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        padding: 2rem;
    }

    .nav-menu.active {
        right: 0;
        box-shadow: -30px 0 60px rgba(0,0,0,0.8);
    }

    .nav-link {
        font-size: 1.1rem;
        margin: 0;
        width: 100%;
        text-align: center;
        padding: 0.8rem 0;
    }

    .desktop-cta {
        display: none;
    }

    .mobile-cta {
        display: inline-block;
        width: 80%;
        text-align: center;
        background-color: #ffffff;
        color: #000000;
        margin-top: 1.5rem;
    }

    /* Banner Adjustments */
    

    .glow-circle {
        opacity: 0.1;
    }

    .glow-purple {
        width: 300px;
        height: 300px;
    }

    .glow-blue {
        width: 320px;
        height: 320px;
    }

    .contact-container {
        padding: 2.5rem 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-info {
        align-items: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    

    .banner-subtitle {
        font-size: 0.95rem;
    }

    .banner-ctas {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
    }

    .footer-nav {
        gap: 1rem;
    }

    .about-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        width: 100%;
        max-width: 320px;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
    .about-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        width: 100%;
        max-width: 320px;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-container {
        padding: 2rem 1.25rem;
    }
}
