:root {
    --electric-orange: #ff5e00;
    --orange: #ff7700;
    --light-orange: #ff9500;
    --dark-gray: #0a0a0a;
    --gray: #1a1a1a;
    --light-gray: #2d2d2d;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--electric-orange), var(--orange));
    --neon-glow: 0 0 15px var(--electric-orange), 0 0 30px rgba(255, 94, 0, 0.3);
    --card-bg: rgba(30, 30, 30, 0.7);
    --border-color: rgba(255, 119, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

body {
    background: var(--dark-gray);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* Typing Animation */
.typing-container {
    display: inline-block;
    position: relative;
}

.typing-text {
    display: inline-block;
    overflow: hidden;
    border-right: 5px solid var(--electric-orange);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--electric-orange) }
}

/* Scroll Down Indicator */
.scroll-down-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 100;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-down-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--electric-orange);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 3px solid var(--electric-orange);
    border-bottom: 3px solid var(--electric-orange);
    transform: rotate(45deg);
    animation: arrowPulse 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes arrowPulse {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Back to Top Button with Neon Effects */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: var(--neon-glow);
    border: 2px solid transparent;
    animation: neon-pulse 2s infinite;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    border-radius: 50%;
    z-index: -1;
    filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top:hover::before {
    opacity: 0.5;
}

@keyframes neon-pulse {
    0%, 100% {
        box-shadow: 0 0 10px var(--electric-orange), 0 0 20px rgba(255, 94, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px var(--electric-orange), 0 0 40px rgba(255, 94, 0, 0.5);
    }
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 25px var(--electric-orange), 0 0 50px rgba(255, 94, 0, 0.5);
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.header-scrolled {
    padding: 1rem 5%;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

.logo-text {
    background: var(--white);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--electric-orange);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 94, 0, 0.1);
    color: var(--electric-orange);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 94, 0, 0.1);
    color: var(--electric-orange);
    transform: rotate(90deg);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    background: rgba(255, 94, 0, 0.1);
    border-left-color: var(--electric-orange);
    padding-left: 1.5rem;
    color: var(--electric-orange);
}

.mobile-cta {
    margin-top: 2rem;
    width: 100%;
}

/* Enhanced Buttons with Neon Effects */
.btn {
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--neon-glow);
    border: 2px solid transparent;
    animation: btn-neon 2s infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 94, 0, 0.4);
    animation: none;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    border-radius: 52px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover::after {
    opacity: 0.2;
}

.btn-secondary:hover {
    border-color: var(--electric-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 94, 0, 0.2);
}

@keyframes btn-neon {
    0%, 100% {
        box-shadow: 0 0 10px var(--electric-orange), 0 0 20px rgba(255, 94, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 15px var(--electric-orange), 0 0 30px rgba(255, 94, 0, 0.5);
    }
}

/* Hero Section with Typing Animation */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 94, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 119, 0, 0.1) 0%, transparent 40%);
    z-index: -1;
}

/* Smart UI Banner Elements */
.banner-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    opacity: 0.3;
}

.element-1 {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 20px;
    animation: float1 20s infinite linear;
    transform: rotate(45deg);
}

.element-2 {
    top: 60%;
    right: 15%;
    width: 80px;
    height: 80px;
    border: 3px solid var(--electric-orange);
    border-radius: 50%;
    animation: float2 25s infinite linear;
}

.element-3 {
    bottom: 30%;
    left: 20%;
    width: 40px;
    height: 40px;
    background: var(--light-orange);
    border-radius: 10px;
    animation: float3 15s infinite linear;
    transform: rotate(15deg);
}

.element-4 {
    top: 40%;
    right: 25%;
    width: 50px;
    height: 50px;
    border: 2px dashed var(--orange);
    border-radius: 15px;
    animation: float4 30s infinite linear;
}

@keyframes float1 {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

@keyframes float2 {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(30px) scale(1.1); }
    100% { transform: translateY(0) scale(1); }
}

@keyframes float3 {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(50px) rotate(180deg); }
}

@keyframes float4 {
    0% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--electric-orange), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 6rem 5%;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.8;
    font-size: 1.1rem;
}

/* Services Grid - All 14 Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 94, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--neon-glow);
    border-color: transparent;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Team Section Styles */
#team {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

#team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 119, 97, 0.1) 0%, transparent 50%);
    z-index: 0;
}

/* Typography Classes */
.display-medium {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.body-large {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.body-medium {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.text-float {
    display: inline-block;
    animation: floatText 3s ease-in-out infinite;
}

@keyframes floatText {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Founder Section */
.founder-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 3rem 0 5rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.founder-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.founder-img {
    width: 90%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 20px;
}

.founder-image:hover .founder-img {
    transform: scale(1.05);
}

.founder-content {
    flex: 1;
    min-width: 300px;
}

.founder-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--white), var(--light-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-title {
    font-size: 1.2rem;
    color: var(--electric-orange);
    margin-bottom: 2rem;
    font-weight: 600;
}

.founder-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--electric-orange);
    border-left: 3px solid var(--electric-orange);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Organogram Section */
.organogram-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.organogram {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.org-level {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 2rem;
}

.org-node {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 250px;
}

.org-node:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--electric-orange);
}

.org-node.founder {
    background: linear-gradient(135deg, rgba(255, 119, 97, 0.1), rgba(120, 119, 198, 0.1));
    border: 2px solid var(--electric-orange);
}

.org-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.org-role {
    font-size: 0.9rem;
    color: var(--electric-orange);
    font-weight: 500;
}

.org-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--electric-orange), var(--vibrant-purple));
    margin: 0 auto 2rem;
    position: relative;
}

.org-connector::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--electric-orange);
}

.org-connector::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--vibrant-purple);
}

.org-departments {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.org-department {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    min-width: 200px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.org-department:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 119, 97, 0.3);
}

.department-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.department-lead {
    font-size: 0.9rem;
    color: var(--light-orange);
}

/* Responsive Design */
@media (max-width: 768px) {
    .display-medium {
        font-size: 2rem;
    }
    
    .founder-section {
        flex-direction: column;
        gap: 2rem;
    }
    
    .founder-image, .founder-content {
        min-width: 100%;
    }
    
    .founder-img {
        height: 400px;
    }
    
    .founder-name {
        font-size: 2rem;
    }
    
    .org-departments {
        flex-direction: column;
        align-items: center;
    }
    
    .org-department {
        min-width: 80%;
    }
}

@media (max-width: 480px) {
    .display-medium {
        font-size: 1.8rem;
    }
    
    .founder-img {
        height: 300px;
    }
    
    .founder-name {
        font-size: 1.8rem;
    }
    
    .org-node {
        min-width: 200px;
        padding: 1rem 1.5rem;
    }
}

/* Animation for organogram */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.org-level {
    animation: fadeInUp 0.6s ease forwards;
}

.org-level:nth-child(1) { animation-delay: 0.1s; }
.org-level:nth-child(3) { animation-delay: 0.3s; }
.org-level:nth-child(5) { animation-delay: 0.5s; }
.org-department { animation: fadeInUp 0.6s ease forwards; }
.org-department:nth-child(1) { animation-delay: 0.7s; }
.org-department:nth-child(2) { animation-delay: 0.8s; }
.org-department:nth-child(3) { animation-delay: 0.9s; }

/* Enhanced Contact Form with Theme UI Select */
.contact-section {
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--electric-orange);
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 94, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    background: rgba(255, 94, 0, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.contact-form {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Enhanced Select Dropdown with Theme UI */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ff5e00' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 16px;
    padding-right: 3.5rem;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

select.form-control:focus {
    outline: none;
    border-color: var(--electric-orange);
    box-shadow: 0 0 0 3px rgba(255, 94, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.08);
}

/* Custom select dropdown options */
select.form-control option {
    background: var(--dark-gray);
    color: var(--white);
    padding: 1rem;
}

/* Hover effect for select */
select.form-control:hover {
    border-color: var(--electric-orange);
    box-shadow: 0 0 10px rgba(255, 94, 0, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-submit {
    position: relative;
    overflow: hidden;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.submit-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover .submit-overlay {
    left: 100%;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 94, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

/* Careers Section */
.careers-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.9));
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.career-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
    border-color: transparent;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.career-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.career-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.career-tag {
    background: rgba(255, 94, 0, 0.1);
    color: var(--electric-orange);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Apply Now Button with Pop-up Form */
.apply-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.apply-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.apply-btn:hover::before {
    left: 100%;
}

/* Footer */
footer {
    padding: 4rem 5% 2rem;
    background: #050505;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--electric-orange);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: var(--electric-orange);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: var(--electric-orange);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 94, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: var(--neon-glow);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--electric-orange);
    transform: rotate(90deg);
    background: rgba(255, 94, 0, 0.1);
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--electric-orange);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-category {
    margin-bottom: 2rem;
}

.feature-category h4 {
    color: var(--light-orange);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.feature-item {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--electric-orange);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item:hover {
    background: rgba(255, 94, 0, 0.1);
    transform: translateX(5px);
}

.feature-item::before {
    content: '✓';
    color: var(--electric-orange);
    font-weight: bold;
}

/* Apply Form Modal */
.apply-form {
    max-width: 600px;
    margin: 0 auto;
}

.file-upload {
    position: relative;
    margin-bottom: 1.5rem;
}

.file-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-input:hover {
    border-color: var(--electric-orange);
    background: rgba(255, 94, 0, 0.05);
}

.file-input::file-selector-button {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 1rem;
}

/* Loading Animation for Form */
.form-loading {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.9);
    border-radius: 20px;
    z-index: 10;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.form-loading.active {
    display: flex;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--electric-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.form-success.active {
    display: block;
}

.success-icon {
    font-size: 4rem;
    color: var(--electric-orange);
    margin-bottom: 1rem;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info, .contact-form {
        padding: 2rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .team-grid, .careers-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .modal-content {
        padding: 2rem;
    }
    
    .section {
        padding: 4rem 5%;
    }
    
    .mobile-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card, .team-card, .career-card {
        padding: 1.5rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .mobile-menu-links {
        gap: 1rem;
    }
    
    .mobile-nav-link {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
    
}
/* Tablet View (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    
    /* Hero Section Fix for Tablet */
    .hero {
        padding: 80px 30px;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 3.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }
    
    .hero-subtitle {
        font-size: 1.5rem !important;
        margin-bottom: 25px !important;
    }
    
    .hero-description {
        font-size: 1.1rem !important;
        max-width: 90% !important;
        margin: 0 auto 30px !important;
        line-height: 1.6 !important;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    /* Floating elements adjustment for tablet */
    .banner-elements .floating-element {
        display: none; /* ট্যাবলেটে সরিয়ে ফেলতে পারেন */
    }
    
    /* Optional: Show only 1-2 elements */
    .banner-elements .element-1,
    .banner-elements .element-2 {
        display: block;
        transform: scale(0.7);
    }
}
/* Galaxy Tab, iPad Mini etc. (600px - 767px) */
@media (min-width: 600px) and (max-width: 767px) and (orientation: portrait) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
}

/* Standard iPad Portrait (768px) */
@media (width: 768px) and (orientation: portrait) {
    .hero-title {
        font-size: 2.8rem !important;
    }
}

/* iPad Pro Portrait (834px) */
@media (width: 834px) and (orientation: portrait) {
    .hero-title {
        font-size: 3rem !important;
    }
}