/* Root Variables */
:root {
    /* Primary colors */
    --primary-color: #14b8a6;      /* Vibrant Indigo */
    --secondary-color: #a21caf;    /* Modern Purple */
    --accent-color: #f472b6;       /* Pink Accent */
    
    /* Neutral colors */
    --background-color: #18181b;   /* Dark background */
    --surface-color: #232336;      /* Card/Surface */
    --text-color: #f3f4f6;         /* Light text */
    --text-light: #a1a1aa;         /* Muted text */
    
    /* UI colors */
    --border-color: #27272a;
    --hover-color: #27272a;
    --success-color: #22d3ee;
    --icon-teal: #14b8a6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--background-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.7);
    z-index: 2000;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    width: 100%;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    width: 100%;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 1rem;
        background-color: var(--background-color);
        gap: 1.2rem;
        transform: translateX(100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1999;
        text-align: center;
        display: none;
        opacity: 0;
    }

    .nav-links li {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        display: flex;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease-in-out;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.5s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.6s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.7s; }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
}

.theme-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 76px 0 64px;
    background: linear-gradient(135deg, #232336 0%, #18181b 100%);
    color: var(--text-color);
    overflow: hidden;
    z-index: 1;
}

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

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 2.2rem;
    margin: 2rem 0 0.7rem;
    line-height: 1.15;
}

@media (max-width: 768px) {
    .hero h1 {
        margin: 2.5rem 0 1rem;
    }
}

.hero h2 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    line-height: 1.25;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.7rem;
    font-size: 0.98rem;
}

.features-list i {
    color: var(--success-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    width: 100%;
    height: auto;
    max-width: 600px;
    animation: float 6s ease-in-out infinite;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background: var(--background-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color) !important;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    justify-items: center;
}

.solution-card {
    width: 100%;
    max-width: 370px;
    min-width: 270px;
    min-height: 260px;
    background: var(--surface-color);
    border: 1.5px solid #232336;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(20, 20, 30, 0.12);
    padding: 2rem 1.5rem 1.7rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, border 0.2s;
}

.solution-card:hover {
    box-shadow: 0 4px 32px 0 rgba(20, 20, 30, 0.18);
    border: 1.5px solid var(--primary-color);
}

.solution-icon {
    background: rgba(20, 184, 166, 0.12);
    border-radius: 12px;
    padding: 0.7rem;
    margin-bottom: 1.2rem;
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
    box-shadow: none;
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #fff;
}

.solution-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 0;
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.7rem;
}

.solution-header .solution-icon {
    margin-bottom: 0;
}

.solution-header h3 {
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #232336;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--background-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    background: var(--background-color);
    color: var(--text-light);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.875rem;
    background: var(--background-color);
    padding: 0 0.25rem;
    color: var(--primary-color);
}

.btn-primary, .btn-primary:after, .btn-primary:before {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    background-size: 200% auto;
    background-image: linear-gradient(to right, var(--primary-color) 0%, #4EEDC2 51%, #14b8a6 100%);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #4eedc24d;
}



.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    background: var(--surface-color);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--background-color);
}

/* Footer */
.footer {
    background: #111113;
    color: var(--text-light);
    padding: 2rem 0;
    text-align: center;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .features-list li {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 2001;
        position: relative;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .nav-links.active {
        background: var(--background-color);
        box-shadow: var(--shadow);
    }
    
    .nav-links a {
        color: var(--text-color);
    }
    
    .nav-links a:hover {
        background: var(--hover-color);
    }

    .hero {
        padding: 64px 0 32px;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

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

@media (max-width: 900px) {
    .solution-card {
        max-width: 100%;
        min-width: 0;
        padding: 1.5rem 1rem 1.2rem 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Icon color override */
.features-list i,
.solution-card i,
.info-item i,
.social-link,
.social-link i {
    color: var(--icon-teal) !important;
    border-color: var(--icon-teal) !important;
}

/* Highlight teal text utility */
.highlight-teal {
    color: var(--icon-teal) !important;
}

/* Remove gradient-fill styles */
.gradient-fill,
.gradient-fill.active {
    background: none !important;
    color: var(--primary-color) !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.scroll-gradient-text {
    color: #fff;
    background: linear-gradient(90deg, #14b8a6, #a21caf, #f472b6);
    background-size: 200% 100%;
    background-repeat: no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-size 0.3s, background-position 0.3s;
    background-position: left center;
}

.scroll-gradient-text.solid {
    -webkit-text-fill-color: #fff;
    color: #fff;
    background: none;
}

.scroll-gradient-text.gradient {
    /* The width of the gradient fill is controlled by a CSS variable */
    background-size: var(--gradient-fill, 0%) 100%;
    background-position: left center;
}

.get-in-touch-card {
    background: var(--surface-color);
    border-radius: 22px;
    box-shadow: 0 4px 32px 0 rgba(20, 20, 30, 0.18);
    padding: 2.5rem 2rem 2.5rem 2rem;
    max-width: 480px;
    margin: 0 auto;
    border: 1.5px solid #232336;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.click-here-btn {
    margin-top: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 2.2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(20, 20, 30, 0.08);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .get-in-touch-card {
        padding: 1.2rem 0.5rem;
        max-width: 98vw;
    }
}

.footer-modern {
    background: var(--surface-color);
    border-radius: 32px 32px 0 0;
    margin-top: 4rem;
    box-shadow: 0 -2px 24px 0 rgba(20, 20, 30, 0.10);
    overflow: hidden;
    position: relative;
}
.footer-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 3rem 2rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.footer-col {
    flex: 1 1 260px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.footer-logo img {
    height: 36px;
    width: auto;
}
.footer-desc {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    max-width: 320px;
}
.footer-contact {
    margin: 0.7rem 0 0.7rem 0;
    font-size: 1rem;
    color: var(--text-light);
    width: 100%;
}
.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    margin-right: 0.7rem;
    transition: color 0.2s;
    display: inline-block;
}
.footer-contact a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.footer-contact i {
    margin-right: 0.4em;
    color: var(--primary-color);
}
.footer-top-btn {
    margin-top: 1.2rem;
    background: none;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, color 0.2s;
}
.footer-top-btn:hover {
    background: var(--primary-color);
    color: #fff;
}
.footer-sitemap h4,
.footer-legal h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}
.footer-sitemap ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.footer-sitemap ul li,
.footer-legal ul li {
    margin-bottom: 0.5rem;
}
.footer-sitemap ul li a,
.footer-legal ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.footer-sitemap ul li a:hover,
.footer-legal ul li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.footer-sitemap ul li:first-child a {
    text-decoration: underline;
    color: #fff;
}
.footer-copyright {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 0.7rem 0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
@media (max-width: 1100px) {
    .footer-container {
        flex-direction: column;
        gap: 2.5rem;
        align-items: stretch;
    }
    .footer-col {
        min-width: 0;
        width: 100%;
        align-items: flex-start;
    }
}
@media (max-width: 600px) {
    .footer-container {
        padding: 2rem 1rem 1.5rem 1rem;
    }
    .footer-logo img {
        height: 28px;
    }
    .footer-col {
        padding-bottom: 1.2rem;
    }
}

.solutions-hero {
    background: none;
    padding: 2.5rem 0 1.5rem 0;
    text-align: center;
}
.solutions-tabs-section {
    margin-bottom: 2.5rem;
}
.solutions-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.tab-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.7rem 2.2rem;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    outline: none;
    border-bottom: 2.5px solid transparent;
}
.tab-btn.active {
    background: var(--surface-color);
    color: #fff;
    border-bottom: 2.5px solid var(--primary-color);
}
.tab-content {
    display: none;
    animation: fadeInTab 0.5s;
}
.tab-content.active {
    display: block;
}
@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}
.offering-card {
    background: var(--surface-color);
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 rgba(20, 20, 30, 0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 180px;
    border: 1.5px solid #232336;
    transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
    position: relative;
}
.offering-card:hover {
    box-shadow: 0 4px 32px 0 rgba(20, 20, 30, 0.18);
    border: 1.5px solid var(--primary-color);
    transform: translateY(-4px) scale(1.02);
}
.offering-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.offering-time {
    font-size: 0.98rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.7rem;
    display: block;
}
.offering-card p {
    color: var(--text-light);
    font-size: 1.02rem;
    font-weight: 400;
    margin-bottom: 0;
}
@media (max-width: 700px) {
    .solutions-tabs {
        flex-direction: column;
        gap: 0.7rem;
        align-items: center;
    }
    .offerings-grid {
        grid-template-columns: 1fr;
    }
}

.offering-icon {
    font-size: 2.1rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    display: block;
    background: rgba(20,184,166,0.10);
    border-radius: 10px;
    padding: 0.5rem 0.7rem;
    box-shadow: 0 1px 4px rgba(20, 20, 30, 0.08);
}