/* Global Variables */
:root {
    --bg-dark: #0a192f;
    --bg-darker: #020c1b;
    --text-primary: #ccd6f6;
    --text-secondary: #8892b0;
    --accent-color: #64ffda;
    --accent-hover: #4ec7aa;
    --glass-bg: rgba(10, 25, 47, 0.85);
}

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

/* Typography & Utils */
h1, h2, h3, h4, h5, h6 {
    color: #e6f1ff;
    font-weight: 700;
}

.text-primary-custom {
    color: var(--accent-color);
}

.text-secondary-custom {
    color: var(--text-secondary);
}

.bg-darker {
    background-color: var(--bg-darker);
}

.section-padding {
    padding: 100px 0;
}

.letter-spacing {
    letter-spacing: 2px;
}

.line-divider {
    height: 3px;
    width: 60px;
    background-color: var(--accent-color);
    margin-top: 1rem;
    border-radius: 2px;
}

/* Navbar */
.navbar-glass {
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--accent-color) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-primary) !important;
    margin-left: 1.5rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: url('hero_background_1769596484062.png') no-repeat center center/cover;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10,25,47,0.95) 0%, rgba(10,25,47,0.8) 100%);
    z-index: -1;
}

.hero-text {
    z-index: 2;
}

.text-gradient {
    background: linear-gradient(45deg, var(--accent-color), #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary-custom {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 1px solid #e6f1ff;
    color: #e6f1ff;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
}

.btn-outline-light:hover {
    background-color: rgba(230, 241, 255, 0.1);
    border-color: #e6f1ff;
    transform: translateY(-3px);
}

/* Hero Image & Blob */
.hero-image-container {
    z-index: 2;
}

.profile-img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 2px solid rgba(100, 255, 218, 0.3);
    max-width: 80%;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.profile-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.blob-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.15) 0%, rgba(10, 25, 47, 0) 70%);
    z-index: -1;
    border-radius: 50%;
}

/* Services */
.service-card {
    background-color: #112240;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: default;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--accent-color);
}

/* Construction & Contact */
.construction-placeholder {
    backdrop-filter: blur(5px);
}

.social-links {
    margin-top: 2rem;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #112240;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .hero-section {
        padding-top: 120px;
        text-align: center;
    }

    .hero-image-container {
        margin-top: 3rem;
    }

    .d-flex.gap-3 {
        justify-content: center;
    }
    
    .display-3 {
        font-size: 3rem;
    }
}
