/* Basic Reset & Global Styles */
/* Remove default underline from all links */
a {
    text-decoration: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #0A0A0A;
    --card-bg: #1A1A1A;
    --accent-blue: #00BFFF;
    --text-light: #F8F8F8;
    --text-gray: #B0B0B0;
    --border-color: #333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--dark-bg);
    overflow: hidden;
}

/* Page-specific background colors and animations */
.homepage-body .background-animation {
    background: linear-gradient(to bottom, #050505, #101010);
}

.about-page-body .background-animation {
    background: linear-gradient(135deg, #0A0A0A, #1A1A2A);
}

.services-page-body .background-animation {
    background: linear-gradient(45deg, #0A0A0A, #001f3f);
}

.portfolio-page-body .background-animation {
    background: linear-gradient(to top, #0A0A0A, #151515);
}

.contact-page-body .background-animation {
    background: linear-gradient(to right, #0A0A0A, #000a1a);
}

.background-animation::before,
.background-animation::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(100px);
}

.background-animation::before {
    width: 400px;
    height: 400px;
    background-color: var(--accent-blue);
    top: -100px;
    left: -100px;
    animation: move-and-glow-one 15s infinite ease-in-out;
}

.background-animation::after {
    width: 500px;
    height: 500px;
    background-color: #FF5733;
    bottom: -150px;
    right: -150px;
    animation: move-and-glow-two 20s infinite ease-in-out reverse;
}

@keyframes move-and-glow-one {
    0% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20vw, 50vh) scale(1.2); }
    50% { transform: translate(40vw, 0) scale(1.1); }
    75% { transform: translate(20vw, -50vh) scale(1.3); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes move-and-glow-two {
    0% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-20vw, -50vh) scale(1.2); }
    50% { transform: translate(-40vw, 0) scale(1.1); }
    75% { transform: translate(-20vw, 50vh) scale(1.3); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    color: var(--text-light);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
p { color: var(--text-gray); }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-blue);
    margin: 10px auto 0;
}

.cta-button {
    display: inline-block;
    background: var(--accent-blue);
    color: var(--dark-bg);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    background: #0099cc;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Header & Nav */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    left: 0;
    bottom: -8px;
    transition: width 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-blue);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: var(--text-light);
    margin: 4px 0;
    transition: 0.4s;
}

.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
.menu-toggle.active .bar:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

/* Hero Sections */
.hero {
    /* Use min-height instead of height */
    min-height: 100vh; 
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
    
    /* --- NEW PADDING --- */
    /* This pushes the content down just below the header */
    padding-top: 4.5rem; /* 4.5rem = ~72px, safely clearing your header */
    
    /* This ensures padding is included IN the 100vh, not added to it */
    box-sizing: border-box; 
}

.hero-content h1 { font-size: clamp(3rem, 7vw, 5rem); }
.hero-content p { max-width: 700px; margin: 1rem auto 3rem; }

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

/* Services Section (Homepage) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-blue);
}

.service-card i {
    color: var(--accent-blue);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
}

.cta-button.secondary:hover {
    background: var(--accent-blue);
    color: var(--dark-bg);
}

/* About Teaser Section */
.about-teaser {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(5px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    text-align: center;
}

.stat-item span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-blue);
    display: block;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

/* Featured Projects Section */
.featured-projects {
    padding: 6rem 0;
    background: rgba(26, 26, 26, 0.6);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    margin-bottom: 0.5rem;
}

.project-content .view-project {
    display: inline-block;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.project-content .view-project:hover {
    color: #0099cc;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--accent-blue);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 10px;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author h4 {
    color: var(--accent-blue);
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* CTA Section */
.cta {
    background-color: var(--accent-blue);
    text-align: center;
    padding: 4rem 0;
}

.cta h2 { color: var(--dark-bg); }
.cta p { color: rgba(10, 10, 10, 0.8); margin-bottom: 2rem; }

.cta .cta-button {
    background: var(--dark-bg);
    color: var(--accent-blue);
}

.cta .cta-button:hover {
    background: #252525;
}

/* About Content Page */
.about-content-section {
    padding-top: 2rem;
}

.founder-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.founder-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.founder-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.mission-vision-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.values-section {
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--card-bg);
    padding: 2.5rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    color: var(--accent-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Services Detail Page */
.services-detail {
    padding-top: 2rem;
}

.service-block {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 5rem;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(5px);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
}

.service-block.reverse-layout {
    flex-direction: row-reverse;
}

.service-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(0, 191, 255, 0.1);
}

.service-icon i {
    color: var(--accent-blue);
    font-size: 2.5rem;
}

.service-content h3 {
    margin-bottom: 1rem;
}

.service-content .cta-button {
    margin-top: 1.5rem;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

/* Portfolio Page */
.portfolio-section {
    padding-top: 2rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 6rem;
}

.portfolio-item {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    padding: 2rem;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.project-details h3 {
    margin-bottom: 0.5rem;
}

.project-details .view-project {
    display: inline-block;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.project-details .view-project:hover {
    color: #0099cc;
}

/* Contact Page */
.contact-section {
    padding-top: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.contact-info h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.contact-info ul {
    list-style: none;
    margin-top: 2rem;
}

.contact-info ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-info ul li i {
    margin-right: 1rem;
    color: var(--accent-blue);
}

.contact-form {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(5px);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-light);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.contact-form button {
    width: 100%;
    border: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes text-reveal {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-text-reveal {
    animation: text-reveal 1s ease-out;
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease-in-out;
    }
    
    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .about-grid, .founder-section, .mission-vision-section, .values-grid, 
    .service-block, .service-block.reverse-layout, .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-teaser .about-image {
        margin-bottom: 2rem;
    }

    .service-block {
        text-align: center;
        flex-direction: column;
    }
    
    .service-block.reverse-layout {
        flex-direction: column;
    }

    .founder-section {
        text-align: center;
    }

    .founder-image {
        margin-bottom: 2rem;
    }

    .founder-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ===== MODERN FOOTER STYLES ===== */
footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--text-light);
    border-top: 1px solid rgba(0, 191, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Main Section */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    color: var(--accent-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--accent-blue);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-column ul li a:hover {
    color: var(--accent-blue);
    padding-left: 10px;
}

.footer-column ul li a::before {
    content: '▸';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover::before {
    opacity: 1;
    left: -10px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--accent-blue);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-item span {
    color: var(--text-gray);
    line-height: 1.4;
}

/* Newsletter Section */
.newsletter-section {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h4 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--text-light);
    font-family: inherit;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    padding: 0.8rem 2rem;
    background: var(--accent-blue);
    color: var(--dark-bg);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #0099cc;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-blue);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-main {
        padding: 3rem 0 2rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-social {
        justify-content: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}





/* ===== NEW PAGE-SPECIFIC BACKGROUNDS ===== */
.blog-page-body .background-animation { background: linear-gradient(225deg, #0A0A0A, #2a0a2a); }
.case-study-page-body .background-animation { background: linear-gradient(180deg, #0A0A0A, #1a2a3a); }
.careers-page-body .background-animation { background: linear-gradient(to right, #0A0A0A, #002a1a); }
.faq-page-body .background-animation { background: linear-gradient(to bottom, #0A0A0A, #3a1a0a); }
.legal-page-body .background-animation { background: linear-gradient(to top, #0A0A0A, #202020); }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.preloader.fade-out { opacity: 0; }
.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(0, 191, 255, 0.3);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: #0099cc;
    transform: translateY(-5px);
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--card-bg);
    padding: 1.5rem 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 2000;
    transition: bottom 0.5s ease-in-out;
}
.cookie-consent-banner.show { bottom: 0; }
.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-content p { margin: 0; max-width: 70%;}
.cookie-content p a { color: var(--accent-blue); text-decoration: underline;}
.cookie-content button {
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ===== PORTFOLIO FILTER ===== */
.portfolio-filters {
    text-align: center;
    margin-bottom: 3rem;
}
.portfolio-filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 0.7rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
    background: var(--accent-blue);
    color: var(--dark-bg);
    border-color: var(--accent-blue);
}
.portfolio-grid .portfolio-item {
    /* Use for JS filtering */
    display: block;
}

/* ===== BLOG PAGE STYLES ===== */
.blog-section { padding: 4rem 0; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}
.blog-card:hover { transform: translateY(-10px); }
.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-content { padding: 1.5rem; }
.blog-card-category {
    display: inline-block;
    background: var(--accent-blue);
    color: var(--dark-bg);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.blog-card-content h3 a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}
.blog-card-content h3 a:hover { color: var(--accent-blue); }
.blog-card-footer {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* ===== SINGLE BLOG POST STYLES ===== */
.post-main { padding: 4rem 0; }
.post-article { max-width: 800px; }
.post-header { text-align: center; margin-bottom: 3rem; }
.post-meta { color: var(--text-gray); margin-bottom: 1rem; }
.post-excerpt { font-size: 1.2rem; color: var(--text-light); }
.post-featured-image { margin-bottom: 3rem; border-radius: 10px; overflow: hidden; }
.post-featured-image img { width: 100%; }
.post-content h2, .post-content h3 { margin: 2.5rem 0 1rem; }
.post-content ul { margin: 1rem 0 1rem 1.5rem; }
.post-content blockquote {
    border-left: 4px solid var(--accent-blue);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* ===== CASE STUDY PAGE STYLES ===== */
.case-study-section { padding: 4rem 0; }
.case-study-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}
.case-study-main-image { width: 100%; border-radius: 10px; margin-bottom: 2rem; }
.case-study-sidebar .sidebar-block {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}
.sidebar-block h3 { color: var(--accent-blue); margin-bottom: 1rem; }
.sidebar-block ul { list-style: none; }
.sidebar-block ul li { margin-bottom: 0.5rem; }
.result-item { margin-bottom: 1.5rem; }
.result-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue);
}
.testimonial-block { border-left: 4px solid var(--accent-blue); }
.testimonial-block cite { display: block; margin-top: 1rem; color: var(--text-gray); }

/* ===== CAREERS PAGE STYLES ===== */
.why-work-section { padding: 4rem 0; background: rgba(26, 26, 26, 0.6);}
.section-subtitle { max-width: 700px; text-align: center; margin: 0 auto 3rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.benefit-card { background: var(--card-bg); padding: 2rem; text-align: center; border-radius: 10px; border: 1px solid var(--border-color); }
.benefit-card i { font-size: 3rem; color: var(--accent-blue); margin-bottom: 1.5rem; }
.open-positions-section { padding: 6rem 0; }
.positions-list { max-width: 800px; margin: 0 auto; }
.position-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.position-item:hover { border-color: var(--accent-blue); transform: translateY(-5px); }
.position-item .cta-button { padding: 0.7rem 1.8rem; font-size: 0.9rem; }
.position-details span { color: var(--text-gray); }
.spontaneous-application { text-align: center; margin-top: 3rem; }
.spontaneous-application a { color: var(--accent-blue); }

/* ===== FAQ PAGE STYLES ===== */
.faq-section { padding: 4rem 0; }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--card-bg);
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}
.faq-question.active { color: var(--accent-blue); }
.faq-question i { transition: transform 0.3s ease; }
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}
.faq-answer p { padding-bottom: 1.5rem; }
.faq-cta { text-align: center; margin-top: 4rem; padding: 3rem; background: var(--card-bg); border-radius: 10px; }
.faq-cta h3 { margin-bottom: 1rem; }

/* ===== LEGAL PAGE STYLES ===== */
.legal-section { padding: 4rem 0; }
.legal-content { max-width: 800px; }
.legal-content h2 { margin: 2rem 0 1rem; }
.legal-content h3 { margin: 1.5rem 0 0.5rem; }
.legal-divider { border: 0; height: 1px; background: var(--border-color); margin: 4rem 0; }

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 992px) {
    .case-study-grid { grid-template-columns: 1fr; }
    .case-study-sidebar { margin-top: 3rem; }
}
@media (max-width: 768px) {
    .process-timeline::after { left: 12px; }
    .process-step { width: 100%; padding-left: 50px; padding-right: 15px; }
    .process-step.right { left: 0%; }
    .process-step.left::after, .process-step.right::after { left: -1.5px; }
    .process-step.left { text-align: left; }
    .cookie-content { justify-content: center; text-align: center; }
    .cookie-content p { max-width: 100%; margin-bottom: 1rem; }
}

/* ===== NEW REDESIGNED PAGE HERO (BANNER) ===== */
.page-hero {
    position: relative;
    height: 45vh;
    min-height: 300px;
    padding: 80px 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align text to the left */
    justify-content: center;
    text-align: left;
    background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 50%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.page-hero h2 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--accent-blue);
    margin-top: 10px;
    letter-spacing: 0;
    text-transform: none;
}

.page-hero h1::before {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-blue);
    margin-bottom: 1rem;
}

/* ===== NEW REDESIGNED PROCESS SECTION (SERVICES PAGE) ===== */
.process-section-reimagined {
    padding: 6rem 0;
    background: rgba(26, 26, 26, 0.6);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    align-items: center;
}
.process-timeline-vertical .timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 2.5rem;
    border-left: 3px solid var(--border-color);
}
.process-timeline-vertical .timeline-item:last-child {
    margin-bottom: 0;
    border-left: 3px solid transparent;
}
.timeline-item::before {
    content: attr(data-step);
    position: absolute;
    left: -24px;
    top: -5px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dark-bg);
    border: 3px solid var(--accent-blue);
    color: var(--accent-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}
.timeline-item h3 { margin-bottom: 0.5rem; }
.process-commitment-content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
}
.process-commitment-content img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}
.process-commitment-content h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

/* Specific styles for case study pages */
/* These are styles for the unique case study pages like -software, -marketing, etc. */
/* You can add more specific styles here if needed */

.cs-gifting-hero-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.cs-gifting-details h3,
.cs-software-details h3,
.cs-marketing-details h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.cs-software-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.tech-stack span {
    background: rgba(0, 191, 255, 0.1);
    color: var(--accent-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}
.cs-software-results .result-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1.5rem;
}
.cs-software-results .result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue);
}
.cs-software-results .testimonial-block {
    margin-top: 2rem;
    border-left: 3px solid var(--accent-blue);
    padding-left: 1rem;
}

.cs-marketing-results-bar {
    padding: 3rem 0;
    background: var(--card-bg);
    margin-bottom: 4rem;
}
.cs-marketing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}
.cs-marketing-grid .stat-card span {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-blue);
}
.testimonial-block-wide {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-blue);
    margin-top: 3rem;
}
.testimonial-block-wide cite {
    display: block;
    margin-top: 1rem;
    color: var(--text-gray);
}

@media (max-width: 992px) {
    .cs-software-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== NEW PORTFOLIO TAB STYLES ===== */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    /* Reusing existing filter button style */
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 0.8rem 1.8rem;
    margin: 0 0.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.tab-btn i {
    margin-right: 0.5rem;
}

.tab-btn:hover {
    background: var(--card-bg);
    border-color: var(--accent-blue);
}

.tab-btn.active {
    background: var(--accent-blue);
    color: var(--dark-bg);
    border-color: var(--accent-blue);
}

.portfolio-tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.portfolio-tab-panel.active {
    display: block;
}

/* Fix for grid on tab panels */
.portfolio-tab-panel .portfolio-grid {
    margin-bottom: 0; /* Remove double margin */
}


/* ===== NEW TECH SHOWCASE STYLES ===== */
.tech-showcase-section {
    padding: 6rem 0;
    background: rgba(26, 26, 26, 0.6); /* Same as your process section */
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-card {
    /* Re-using the style from careers.html for consistency */
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.tech-card i {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

.tech-card h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.tech-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ===== TRUSTED BY / CLIENT LOGOS SECTION (REVISED V6) ===== */
.trusted-by-section {
    padding: 6rem 0;
    background: rgba(26, 26, 26, 0.6);
}

.logos-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem; /* Increased gap for more space */
    margin-top: 3rem;
}

.client-logo {
    text-align: center;
}

.client-logo img {
    /* --- 1. INCREASED LOGO SIZE --- */
    height: 65px; /* Increased from 55px */
    
    width: auto; 
    
    /* --- 2. FORCED ORIGINAL COLORS --- */
    filter: none;     /* Explicitly removes all filters */
    opacity: 1;       /* Makes them fully visible (no fade) */
    
    transition: all 0.3s ease;
}

.client-logo img:hover {
    /* Added a subtle scale effect instead of opacity change */
    transform: scale(1.05);
}





/* ===== FORM STATUS MESSAGE STYLES ===== */
#form-status-message {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    font-size: 0.9rem;
    
    /* Hide it by default */
    display: none; 
    transition: all 0.3s ease;
}

#form-status-message.success {
    display: block;
    background-color: rgba(0, 191, 255, 0.1); /* Blue success */
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
}

#form-status-message.error {
    display: block;
    background-color: rgba(255, 0, 0, 0.1); /* Red error */
    border: 1px solid #ff4d4d;
    color: #ff4d4d;
}



/* ===== CLEAN & SPACED SINGLE BLOG POST STYLING V7 ===== */

/* --- 1. Basic Article Container --- */
.post-article {
    max-width: 850px; /* Comfortable reading width */
    margin: 4rem auto 6rem auto; /* Vertical spacing BELOW the body padding */
    padding: 0 1rem; /* Add side padding for smaller screens */
}

/* --- 2. Post Header (Title/Meta) --- */
.post-header {
    text-align: center;
    margin-bottom: 3rem; /* <<< SPACE below header block */
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}
.post-meta {
    font-size: 0.9rem; color: var(--text-gray); margin-bottom: 1rem;
    text-transform: uppercase; letter-spacing: 0.8px; font-weight: 500;
}
.post-meta span { margin: 0 0.5em; }
.post-header h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem); color: var(--text-light);
    line-height: 1.3; margin: 0; padding: 0 0.5rem;
    font-weight: 700;
}

/* --- 3. Featured Image --- */
.post-featured-image {
    margin-bottom: 4rem; /* <<< LARGE SPACE after image */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.post-featured-image img { width: 100%; display: block; }

/* --- 4. Main Content Area --- */
.post-content {
    font-size: 1.1rem; /* Reset to slightly smaller for balance */
    line-height: 1.8;
    color: var(--text-gray);
}

/* --- 5. Generous Spacing for Content Elements --- */
.post-content p,
.post-content ul,
.post-content ol,
.post-content blockquote,
.post-content pre,
.post-content hr {
    margin-top: 0; /* Reset top margin */
    margin-bottom: 2.5rem; /* <<< GENEROUS bottom margin for all blocks */
}
.post-content h2,
.post-content h3,
.post-content h4 {
    color: var(--text-light);
    margin-top: 4rem; /* <<< EXTRA LARGE space above headings */
    margin-bottom: 1.5rem; /* Space below headings */
    line-height: 1.4;
    font-weight: 700;
    clear: both;
}
.post-content img {
    max-width: 100%; height: auto; display: block;
    margin-top: 3rem;  /* <<< Space above images */
    margin-bottom: 3rem; /* <<< Space below images */
    margin-left: auto; margin-right: auto; /* Center */
    border-radius: 8px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}
/* Ensure last element has no extra bottom margin */
.post-content > *:last-child {
    margin-bottom: 0;
}

/* --- 6. Clean Styling for Content Elements --- */
.post-content h2 {
    font-size: 2rem; padding-bottom: 0.7rem;
    border-bottom: 2px solid var(--accent-blue); display: inline-block;
}
.post-content h3 { font-size: 1.7rem; color: var(--accent-blue); }
.post-content h4 { font-size: 1.4rem; font-style: italic; }

.post-content ul, .post-content ol { padding-left: 2.5rem; }
.post-content li { margin-bottom: 0.8rem; padding-left: 0.5rem; }
.post-content li::marker { color: var(--accent-blue); font-weight: bold; }

.post-content blockquote {
    border-left: 4px solid var(--accent-blue);
    padding: 1.5rem 2rem;
    font-style: italic; font-size: 1.2rem; color: var(--text-light);
    background-color: rgba(26, 26, 26, 0.4); border-radius: 0 5px 5px 0;
}
.post-content blockquote p { margin-bottom: 0; }
.post-content blockquote cite { display: block; margin-top: 0.8rem; font-size: 0.9rem; color: var(--text-gray); font-style: normal; }
.post-content blockquote cite::before { content: "— "; }

.post-content a { color: var(--accent-blue); text-decoration: none; border-bottom: 1px dotted var(--accent-blue); transition: all 0.2s ease; padding-bottom: 1px; }
.post-content a:hover { color: #33d7ff; border-bottom-style: solid; }

.post-content hr { border: 0; height: 1px; background-image: linear-gradient(to right, rgba(0, 191, 255, 0), rgba(0, 191, 255, 0.75), rgba(0, 191, 255, 0)); }

.post-content pre { background-color: var(--card-bg); border: 1px solid var(--border-color); border-radius: 5px; padding: 1.5rem; overflow-x: auto; font-family: monospace; font-size: 0.95em; line-height: 1.6; }
.post-content code { background-color: rgba(0, 191, 255, 0.1); padding: 0.2em 0.4em; border-radius: 3px; font-family: monospace; font-size: 0.9em; color: var(--text-light); }
.post-content pre code { background-color: transparent; padding: 0; border-radius: 0; font-size: inherit; }

/* Floated images (Keep if needed, remove if not) */
.post-content img.img-float-left { float: left; max-width: 48%; margin: 0.5rem 2rem 1rem 0; }
.post-content img.img-float-right { float: right; max-width: 48%; margin: 0.5rem 0 1rem 2rem; }
.post-content::after { content: ""; display: table; clear: both; } /* Clearfix */


/* ===== BLOG POST PAGE - HEADER OVERRIDE ===== */

/* --- 1. Remove Body Padding Only On Single Post Page --- */
body.single-post-body {
    padding-top: 0; /* Remove the global padding added for fixed header */
}

/* --- 2. Make Header Static Only On Single Post Page --- */
body.single-post-body header {
    position: static; /* Change from 'fixed' to 'static' */
    
    /* Optional: Adjust background/shadow if needed when static */
    /* background: var(--dark-bg); /* Ensure solid background if desired */
    /* backdrop-filter: none; */
    /* box-shadow: none; */ 
}

/* --- 3. Ensure Enough Space Above Article Title --- */
/* Since body padding is removed, add space above the article container */
body.single-post-body main.post-main {
     padding-top: 4rem; /* Add space between static header and article title */
     /* Keep the bottom padding */
     padding-bottom: 6rem; 
}

/* Reset the margin-top added in the previous attempt */
/* Ensure this rule exists ONLY for the non-static header scenario */
/* You might need to adjust or remove the margin-top on .post-article if the above padding is sufficient */
body.single-post-body .post-article {
     margin-top: 0; /* <<< RESET/REMOVE MARGIN-TOP added previously */
     /* Keep other margins */
     margin-bottom: 6rem;
     margin-left: auto;
     margin-right: auto;
}



/* ===== CONTACT PAGE - SPECIFIC LINK STYLING ===== */

.contact-info ul li a {
    color: var(--text-light);      /* Make link text match surrounding text */
    text-decoration: none;       /* Remove underline */
    border-bottom: 1px dotted transparent; /* Add space for hover effect */
    transition: all 0.2s ease;
}

.contact-info ul li a:hover {
    color: var(--accent-blue);      /* Change color to accent on hover */
    border-bottom: 1px dotted var(--accent-blue); /* Show dotted underline on hover */
}