/**
 * Main Stylesheet
 * NexGen Solutions - Modern Business Website
 * 
 * Brand Colors:
 * Primary: #0A192F (Navy)
 * Secondary: #64FFDA (Teal)
 * Accent: #FF6B6B (Coral)
 * Background Light: #F8FAFC
 * Background Dark: #0F172A
 * Text Light: #334155
 * Text Dark: #E2E8F0
 * 
 * @version 1.0.0
 */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Brand Colors */
    --color-primary: #0A192F;
    --color-primary-light: #112240;
    --color-primary-lighter: #233554;
    --color-secondary: #64FFDA;
    --color-accent: #FF6B6B;
    --color-accent-hover: #FF5252;
    
    /* Light Theme (Default) */
    --bg-body: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-section: #F1F5F9;
    --bg-navbar: rgba(10, 25, 47, 0.95);
    --bg-footer: #0A192F;
    --bg-footer-top: #112240;
    
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --text-white: #FFFFFF;
    
    --border-color: #E2E8F0;
    --border-light: #F1F5F9;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(100, 255, 218, 0.3);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --section-padding-sm: 60px;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==================== DARK THEME ==================== */
[data-bs-theme="dark"] {
    --bg-body: #0F172A;
    --bg-card: #1E293B;
    --bg-section: #1E293B;
    --bg-navbar: rgba(15, 23, 42, 0.98);
    --bg-footer: #020617;
    --bg-footer-top: #0F172A;
    
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-muted: #94A3B8;
    --text-light: #64748B;
    
    --border-color: #334155;
    --border-light: #1E293B;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.5);
}

/* ==================== BASE STYLES ==================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-body);
    transition: background-color var(--transition-base), color var(--transition-base);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

[data-bs-theme="dark"] a:hover {
    color: var(--color-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Skip Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-secondary);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    z-index: 10000;
    font-weight: 600;
    transition: top var(--transition-base);
}

.skip-link:focus {
    top: 1rem;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background: var(--bg-navbar);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-spacer {
    height: 76px;
}

.navbar-brand {
    padding: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    /*width: 440px;*/
}

.logo-icon {
    font-size: 2rem;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.02em;
}


/*logo*/
.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-image {
    width: 240px;
    height: auto;
    max-width: 100%;
    display: block;
}

/* Tablet */
@media (max-width: 991px) {
    .logo-image {
        width: 180px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .logo-image {
        width: 165px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo-image {
        width: 160px;
    }
}




.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-light) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-secondary) !important;
    background: rgba(100, 255, 218, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Theme Toggle Button */
.btn-theme-toggle {
    background: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all var(--transition-base);
}

.btn-theme-toggle:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.btn-theme-toggle .dark-icon {
    display: none;
}

[data-bs-theme="dark"] .btn-theme-toggle .light-icon {
    display: none;
}

[data-bs-theme="dark"] .btn-theme-toggle .dark-icon {
    display: block;
}

/* Nav CTA Button */
.btn-nav-cta {
    background: var(--color-secondary);
    color: var(--color-primary);
    border: none;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.btn-nav-cta:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
    box-shadow: var(--shadow-glow);
}

/* ==================== BUTTONS ==================== */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-primary);
    border: 2px solid var(--color-secondary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline-primary {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.btn-outline-primary:hover {
    background: var(--color-secondary);
    color: var(--color-primary) !important;
    
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--color-primary);
    color: var(--text-white);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--color-primary);
}

[data-bs-theme="dark"] .btn-secondary:hover {
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--text-white);
    border: 2px solid var(--color-accent);
}

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    overflow: hidden;
    padding: var(--section-padding) 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(100, 255, 218, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(100, 255, 218, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-subtitle::before {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--color-secondary);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--color-secondary);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(100, 255, 218, 0.2);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-shape {
    position: absolute;
    border-radius: var(--radius-xl);
    background: var(--color-secondary);
    opacity: 0.1;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    transform: rotate(15deg);
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    right: 100px;
    transform: rotate(-10deg);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-sm {
    padding: var(--section-padding-sm) 0;
}

.section-bg {
    background: var(--bg-section);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(100, 255, 218, 0.1);
    border-radius: var(--radius-full);
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* ==================== CARDS ==================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    height:auto;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.card-icon i {
    font-size: 2rem;
    color: var(--color-secondary);
}

.card:hover .card-icon {
    background: var(--color-secondary);
}

.card:hover .card-icon i {
    color: var(--color-primary);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.card-link {
    font-weight: 600;
    color: var(--color-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link:hover {
    gap: 1rem;
}

/* Service Card */
.service-card {
    padding: 2.5rem;
    text-align: left !important;
}


/* Feature Card */
.feature-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    align-items: flex-start;
}

.feature-card .card-icon {
    flex-shrink: 0;
    margin-bottom: 0;
}

.feature-card .card-content {
    flex: 1;
}

/* Portfolio Card */
.portfolio-card {
    position: relative;
    overflow: hidden;
}

.portfolio-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.95) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-size: 0.875rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.portfolio-title {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

/* Blog Card */
.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-secondary);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
}

.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.blog-card-meta i {
    margin-right: 0.25rem;
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-primary);
}

.blog-card-title a:hover {
    color: var(--color-secondary);
}

.blog-card-excerpt {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Team Card */
.team-card {
    text-align: center;
    padding: 2rem;
}

.team-card-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 4px solid var(--color-secondary);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-card-role {
    color: var(--color-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-card-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-card-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-section);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-base);
}

.team-card-social a:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
}

/* Testimonial Card */
.testimonial-card {
    padding: 2.5rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 6rem;
    color: var(--color-secondary);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-author-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.testimonial-rating {
    color: #FBBF24;
    margin-bottom: 1rem;
}

/* ==================== ABOUT SECTION ==================== */
.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-image-badge {
    position: absolute;
    bottom: -30px;
    right: -12px;
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.about-image-badge-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-image-badge-text {
    font-size: 0.875rem;
    font-weight: 600;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-list li i {
    width: 30px;
    height: 30px;
    background: rgba(100, 255, 218, 0.1);
    color: var(--color-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

/* ==================== VALUES SECTION ==================== */
.value-card {
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.value-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--color-secondary);
}

.value-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-description {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(100, 255, 218, 0.1) 0%, transparent 40%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    color: var(--text-white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-description {
    color: var(--text-light);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-footer);
    color: var(--text-white);
}

.footer-top {
    background: var(--bg-footer-top);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.newsletter-title {
    color: var(--text-white);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.newsletter-text {
    color: var(--text-light);
    margin-bottom: 0;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.2);
    color: var(--text-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.newsletter-form .form-control::placeholder {
    color: var(--text-light);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-secondary);
    box-shadow: none;
    color: var(--text-white);
}

.newsletter-form .btn {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1rem 2rem;
}

.footer-main {
    padding: 5rem 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    font-size: 2rem;
    color: var(--color-secondary);
}

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

.footer-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 0.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-contact li i {
    color: var(--color-secondary);
    font-size: 1.125rem;
    margin-top: 0.25rem;
}

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

.footer-contact a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
}

.copyright {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.875rem;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-legal a {
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--color-secondary);
}

/* ==================== BACK TO TOP ==================== */
.btn-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
    transform: translateY(-5px);
}

/* ==================== FORMS ==================== */
.form-control,
.form-select {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-control:focus,
.form-select:focus {
    background: var(--bg-card);
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(100, 255, 218, 0.1);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-floating > .form-control,
.form-floating > .form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem 1.25rem;
}

.form-floating > label {
    padding: 1rem 1.25rem;
    color: var(--text-muted);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--color-secondary);
}

/* ==================== CONTACT PAGE ==================== */
.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.contact-info-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-info-text {
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-info-text a {
    color: var(--text-muted);
}

.contact-info-text a:hover {
    color: var(--color-secondary);
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==================== BLOG ==================== */
.blog-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
}

.blog-header-title {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.blog-header-description {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.blog-single-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 6rem 0 4rem;
}

.blog-single-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.blog-single-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-single-content {
    padding: 4rem 0;
}

.blog-single-content h2,
.blog-single-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-single-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.blog-single-content ul,
.blog-single-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-single-content li {
    margin-bottom: 0.5rem;
}

.blog-single-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 2rem 0;
}

.blog-single-image img {
    width: 100%;
    height: auto;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-widget-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    margin-bottom: 0.75rem;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.sidebar-categories a:hover {
    background: rgba(100, 255, 218, 0.1);
    color: var(--color-secondary);
}

.sidebar-categories .count {
    background: var(--bg-section);
    color: var(--text-muted);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

/* ==================== PAGINATION ==================== */
.pagination {
    gap: 0.5rem;
}

.page-link {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.page-link:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.page-item.active .page-link {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-primary);
}

.page-item.disabled .page-link {
    background: var(--bg-section);
    color: var(--text-muted);
}

/* ==================== ALERTS ==================== */
.alert {
    border: none;
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    color: #2563EB;
}

/* ==================== UTILITY CLASSES ==================== */
.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #38BDF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1199.98px) {
    :root {
        --section-padding: 80px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --section-padding: 60px;
    }
    
    .navbar-collapse {
        background: var(--bg-navbar);
        padding: 1.5rem;
        border-radius: var(--radius-lg);
        margin-top: 1rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .about-image-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        display: inline-block;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control {
        border-radius: var(--radius-md);
        margin-bottom: 0.5rem;
    }
    
    .newsletter-form .btn {
        border-radius: var(--radius-md);
    }
}

@media (max-width: 575.98px) {
    .btn {
        padding: 0.75rem 1.5rem;
    }
    
    .service-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .navbar,
    .footer,
    .btn-back-to-top,
    .hero-shape {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    a {
        text-decoration: underline;
    }
}

/* Navbar mega menu  */
.navbar {
    background: #050b1f;
    padding: 18px 0;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #2ef2c4;
}

/* Mega Menu */
.mega-menu:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100vw;
    background: linear-gradient(180deg, #050b1f, #020617);
    padding: 40px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.mega-content {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Columns */
.mega-column h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
}

.mega-column a {
    display: block;
    margin-bottom: 10px;
    color: #94a3b8;
    font-size: 15px;
}

.mega-column a:hover {
    color: #2ef2c4;
}

/* Highlight Box */
.mega-highlight {
    background: rgba(46, 242, 196, 0.08);
    padding: 25px;
    border-radius: 12px;
}

.mega-highlight p {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 15px;
}

.mega-btn {
    background: #2ef2c4;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.mega-btn:hover {
    background: #23d6ab;
}



/* ===== FIX: CTA Outline Button Hover Text Invisible ===== */
.cta-section .btn-outline-primary:hover,
.cta-section .btn-outline-primary:focus {
    background-color: var(--color-secondary) !important;
    color: var(--color-primary) !important;
    border-color: var(--color-secondary) !important;
}

/* Fix icon color too */
.cta-section .btn-outline-primary:hover i {
    color: var(--color-primary) !important;
}



