/* 
   Acadeno Technologies - Premium Design System 
   Focus: Modern, Tech-driven, Trustworthy, Light & Clean
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Colors - Light Theme */
    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    /* Slate-50 */
    --bg-section-alt: #f1f5f9;
    /* Slate-100 */

    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --accent-glow: #6366f1;
    /* Indigo-500 */
    --text-main: #1e293b;
    /* Slate-800 */
    --text-muted: #64748b;
    /* Slate-500 */
    --text-highlight: #0284c7;
    /* Sky-600 */

    --border-color: rgba(0, 0, 0, 0.08);

    /* Shadows for light mode depth */
    --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 -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Spacing */
    --section-padding: 5rem 2rem;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.3s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
    /* Offset for even larger header */
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.2;
}

strong,
b {
    color: var(--text-main);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

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

.btn-outline:hover {
    background: var(--accent-glow);
    color: white;
    border-color: var(--accent-glow);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.9rem 0;
    /* Extra padding */
    transition: 0.3s ease;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Image Styling */
.logo-link {
    display: flex;
    align-items: center;
    margin-left: -0.75rem;
}

.logo-img {
    height: 80px;
    /* Max prominence */
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Removes white background */
    image-rendering: -webkit-optimize-contrast;
    transform: scale(1.5);
    transform-origin: left center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-glow);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
    /* Light overlay on background image */
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6)), url('assets/hero-tech-circuit.png') no-repeat center center/cover;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
    /* Slightly more transparent on white */
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

/* --- Typing Text Style --- */
.typing-text {
    display: inline;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Blinking Cursor */
.cursor {
    display: inline-block;
    width: 4px;
    height: 0.85em;
    background: var(--accent-glow);
    margin-left: 3px;
    vertical-align: middle;
    border-radius: 2px;
    animation: blink 0.85s step-start infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #0f172a;
    /* No shadow or very subtle */
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
    font-weight: 500;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--accent-glow);
    background: rgba(99, 102, 241, 0.05);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    font-weight: 600;
    transition: var(--transition-fast);
}

.feature-tag:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

/* Quick Overview */
.quick-overview {
    padding: var(--section-padding);
    background: #ffffff;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.quick-overview h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.quick-overview p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.highlight-box {
    margin-top: 2rem;
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid var(--accent-glow);
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.highlight-box strong {
    color: var(--accent-glow);
    font-size: 1.2rem;
}

/* About Us */
.about {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    position: relative;
}

.about-container-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-glow);
    box-shadow: var(--shadow-lg);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-highlight);
}

/* Programs */
.programs {
    padding: var(--section-padding);
    background: var(--bg-section-alt);
    /* Light gray */
    perspective: 1000px;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-md);
}

.program-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-glow);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
}

.program-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.program-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-glow);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-card ul {
    margin-top: 1.5rem;
}

.program-card li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.program-card li::before {
    content: '▹';
    color: var(--accent-glow);
    font-weight: bold;
}

/* Domain Tags / Cards */
.domains-list {
    display: grid;
    gap: 2rem;
    padding: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .domains-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .domains-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.domain-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.domain-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-glow);
    box-shadow: var(--shadow-lg);
}

.domain-img-wrapper {
    height: 160px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
}

.domain-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

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

.domain-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.domain-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-main);
}

/* Services / Courses */
.services {
    padding: var(--section-padding);
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
    display: inline-block;
}

.service-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
    box-shadow: var(--shadow-sm);
}

.service-list li:hover {
    border-color: var(--accent-glow);
    background: #f8fafc;
    padding-left: 1.5rem;
    box-shadow: var(--shadow-md);
}

/* Why Choose Us */
.why-us {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.why-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.check-icon {
    font-size: 2rem;
    color: #10b981;
    /* Emerald-500 */
    margin-bottom: 1rem;
    display: block;
}

/* Methodology */
.methodology {
    padding: var(--section-padding);
    background: #ffffff;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 22px;
    /* Fixed point for line */
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.step-card {
    margin-left: 60px;
    /* Space for circles */
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: var(--shadow-md);
}

.step-card::before {
    content: none;
}

.step-number {
    position: absolute;
    left: -60px;
    /* Matches card margin to align with line */
    top: 1.5rem;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 3px solid var(--accent-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--accent-glow);
    z-index: 2;
    box-shadow: var(--shadow-sm);
    line-height: 1;
    text-align: center;
}

/* Contact */
.contact {
    padding: var(--section-padding);
    background: #f8fafc;
}

.contact-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: start;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-highlight);
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: #1e293b;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-glow);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.error-field {
    border-color: #ef4444 !important;
    background-color: #fef2f2 !important;
}

.error-field:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}

.success-field {
    border-color: #10b981 !important;
    background-color: #f0fdf4 !important;
}

.success-field:focus {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2) !important;
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
    background: #ffffff;
}

/* Responsive */
@media (max-width: 902px) {
    :root {
        --section-padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-xl);
        text-align: center;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

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

    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
        align-items: center !important;
        margin: 1.5rem auto !important;
    }

    .feature-tag {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 90% !important;
        max-width: 320px !important;
        padding: 0.7rem 1.75rem !important;
        /* Restored padding for border space */
        background: transparent !important;
        backdrop-filter: blur(8px) !important;
        /* Added subtle blur for readability */
        border: 1px solid rgba(99, 102, 241, 0.3) !important;
        /* Restored border */
        border-radius: 50px !important;
        /* Restored pill shape */
        box-shadow: none !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        text-align: left !important;
        white-space: nowrap !important;
        color: var(--accent-glow) !important;
    }

    .about-container-flex,
    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image,
    .why-image {
        order: -1;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Program Cards: adjust min-width for grid to prevent overflow on small phones */
    .program-cards,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        padding-left: 0;
        position: relative;
    }

    .steps-container::before {
        left: 18px;
        /* Target center for line on mobile */
    }

    .step-card {
        margin-left: 45px;
        padding: 1.25rem;
    }

    .step-number {
        left: -45px;
        top: 1.25rem;
        width: 36px;
        height: 36px;
        display: flex;
    }

    .contact-layout {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
        text-align: center;
    }

    .hero p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        width: 100%;
        /* Full width buttons on mobile */
        margin-bottom: 0.5rem;
        margin-left: 0 !important;
    }

    .hero-features {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
        align-items: center !important;
        margin: 1.5rem 0 !important;
    }

    .feature-tag {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 90% !important;
        max-width: 290px !important;
        padding: 0.6rem 1.5rem !important;
        background: transparent !important;
        backdrop-filter: blur(8px) !important;
        border: 1px solid rgba(99, 102, 241, 0.3) !important;
        border-radius: 50px !important;
        box-shadow: none !important;
        font-size: 0.85rem !important;
        text-align: left !important;
        white-space: nowrap !important;
    }
}

/* Scroll Reveal Animations */
.reveal {
    position: relative;
    opacity: 0;
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
}

.fade-bottom {
    transform: translateY(50px);
}

.fade-bottom.active {
    transform: translateY(0);
}

.fade-left {
    transform: translateX(-50px);
}

.fade-left.active {
    transform: translateX(0);
}

.fade-right {
    transform: translateX(50px);
}

.fade-right.active {
    transform: translateX(0);
}

/* Staggered delays */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 1001;
    cursor: pointer;
    transition: 0.3s;
    animation: pulse-green 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Industry Readiness Training */
.industry-readiness {
    margin-top: 4rem;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.industry-readiness h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--text-highlight);
}

.industry-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.5);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.industry-item:hover {
    background: #ffffff;
    border-color: var(--accent-glow);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.industry-item .icon {
    background: rgba(99, 102, 241, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
    min-width: 40px;
    text-align: center;
}

/* Mobile Alignment Fix for Industry Section */
@media (max-width: 768px) {
    .industry-readiness {
        padding: 1.5rem 1rem;
        /* Reduce padding to fix alignment gap */
        margin-top: 3rem;
    }

    .industry-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        display: flex;
    }

    .industry-item {
        width: 100%;
        justify-content: flex-start;
        background: #f8fafc;
        border: 1px solid var(--border-color);
    }
}

/* SVG Icon Styling */
.icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-glow);
}

/* Focused Text Styling */
.focus-text {
    font-weight: 800;
    text-decoration: none;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact Map */
.contact-map {
    margin-top: 4rem;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-svg {
    vertical-align: middle;
    margin-right: 8px;
    color: var(--accent-glow);
}