/* Base Styles */
:root {
    --primary-color: #ff6b00;
    --secondary-color: #2c2c2c;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gradient: linear-gradient(45deg, var(--primary-color), #ff9d00);
    --transition: all 0.3s ease;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Navbar */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand .brand-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.contact-btn {
    background: var(--gradient);
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* Hero Section Redesign */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 30, 0.82);
    z-index: 2;
}

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

.hero-text-block {
    position: relative;
    z-index: 4;
}

.display-1 {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
}

.stroke-text {
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    text-stroke: 2px #fff;
    font-weight: 900;
    letter-spacing: -2px;
}

.hero-section .lead {
    color: #fff;
    opacity: 0.92;
    font-size: 1.15rem;
}

.hero-section .btn-primary {
    background: #ff6b00;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 24px 0 rgba(255,107,0,0.18);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.hero-section .btn-primary:hover {
    background: #ff8800;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px 0 rgba(255,107,0,0.28);
}

.hero-img-block {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 400px;
}

.hero-character {
    max-height: 500px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.7));
    animation: floatHero 4s ease-in-out infinite;
}

@keyframes floatHero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

@media (max-width: 991px) {
    .display-1 { font-size: 3rem; }
    .hero-character { max-height: 350px; }
}

@media (max-width: 767px) {
    .hero-section { padding: 80px 0 40px; }
    .display-1 { font-size: 2.2rem; }
    .hero-img-block { min-height: 220px; }
    .hero-character { max-height: 200px; }
    .hero-section .row { flex-direction: column-reverse; }
    .hero-text-block, .hero-img-block { text-align: center; justify-content: center; }
}

@media (max-width: 575px) {
    .display-1 { font-size: 1.5rem; }
    .hero-section .lead { font-size: 1rem; }
    .hero-character { max-height: 120px; }
}

/* About Section Modern Redesign */
.about-section {
    background: linear-gradient(120deg, #f7f8fa 60%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.about-img-card-modern {
    width: 100%;
    max-width: 340px;
    min-height: 320px;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-img-card-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    filter: saturate(1.1) contrast(1.05);
}

.about-img-modern-label {
    position: absolute;
    top: 0;
    left: 0;
    margin: 1rem 0 0 1rem;
    padding: 0.3rem 1.2rem;
    background: rgba(255,107,0,0.92);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 2rem;
    box-shadow: 0 2px 12px rgba(255,107,0,0.12);
    z-index: 2;
}

.about-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #232526;
}

.about-section p {
    color: #222;
    opacity: 0.92;
}

.btn-success {
    background: #25d366 !important;
    border: none;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(37,211,102,0.10);
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-success:hover {
    background: #1ebe5d !important;
    box-shadow: 0 4px 24px rgba(37,211,102,0.18);
}

.btn-info {
    background: #229ed9 !important;
    border: none;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(34,158,217,0.10);
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-info:hover {
    background: #1b7eb3 !important;
    box-shadow: 0 4px 24px rgba(34,158,217,0.18);
}

@media (max-width: 991px) {
    .about-img-card-modern { max-width: 260px; min-height: 200px; }
    .about-section h2 { font-size: 1.5rem; }
}

@media (max-width: 767px) {
    .about-img-card-modern { max-width: 100%; min-height: 160px; }
    .about-section h2 { font-size: 1.2rem; }
    .about-section .row { flex-direction: column-reverse; }
    .about-section .col-lg-5, .about-section .col-lg-7 { text-align: center; }
    .about-section .d-flex { justify-content: center !important; }
}

/* Why Choose Us Section */
.why-us-section {
    background: linear-gradient(120deg, #e0e7ff 60%, #f7f8fa 100%);
    position: relative;
    overflow: hidden;
}

.whyus-glass-card {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    cursor: pointer;
}

.whyus-glass-card:hover {
    background: rgba(255,255,255,0.32);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px rgba(255,107,0,0.10);
}

.whyus-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    background: linear-gradient(135deg, #ff6b00 0%, #229ed9 100%);
    color: #fff;
    border-radius: 1rem;
    font-size: 2.2rem;
    box-shadow: 0 2px 12px rgba(255,107,0,0.10);
}

.whyus-glass-card .fw-bold {
    color: #232526;
}

.whyus-glass-card .text-muted {
    color: #555 !important;
}

@media (max-width: 991px) {
    .whyus-glass-card { padding: 1.5rem 1rem; }
}

@media (max-width: 767px) {
    .whyus-glass-card { margin-bottom: 1.5rem; }
}

/* Services Section Modern Redesign */
.services-section {
    background: linear-gradient(120deg, #f7f8fa 60%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.service-glass-card {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    cursor: pointer;
}

.service-glass-card:hover {
    background: rgba(255,255,255,0.32);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px rgba(255,107,0,0.10);
}

.service-icon-modern {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    background: linear-gradient(135deg, #ff6b00 0%, #229ed9 100%);
    color: #fff;
    border-radius: 1rem;
    font-size: 2.2rem;
    box-shadow: 0 2px 12px rgba(255,107,0,0.10);
}

.service-glass-card .fw-bold {
    color: #232526;
}

.service-glass-card .text-muted {
    color: #555 !important;
}

.service-features li {
    font-size: 1rem;
    font-weight: 500;
    color: #232526;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .service-glass-card { padding: 1.5rem 1rem; }
}

@media (max-width: 767px) {
    .service-glass-card { margin-bottom: 1.5rem; }
}

/* Footer */
.footer {
    background: var(--dark-color);
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-brand {
    flex: 1;
}

.footer-brand .brand-text {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
}

.footer-column h4 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-column ul li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.social-links a {
    color: var(--light-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 3rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 2.2rem;
    }

    .hero-img-block {
        min-height: 220px;
    }

    .hero-character {
        max-height: 200px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .display-1 {
        font-size: 1.5rem;
    }

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

    .hero-section .lead {
        font-size: 1rem;
    }

    .hero-character {
        max-height: 120px;
    }

    .achievement-icon,
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .achievement-number {
        font-size: 1.5rem;
    }
} 