@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {

    --primary-bg: #0a0e17;

    /* Deepest blue/black */

    --accent-blue: #00f0ff;

    /* Cyan */

    --accent-purple: #7000ff;

    /* Purple */

    --text-white: #ffffff;

    --text-gray: #a0a0b0;

    --glass-bg: rgba(255, 255, 255, 0.05);

    --glass-border: rgba(255, 255, 255, 0.1);

    --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

}

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    font-family: 'Outfit', sans-serif;

}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Typography */

h1,

h2,

h3,

h4,

h5,

h6 {

    color: var(--text-white);

    line-height: 1.2;

}

h1 {

    font-size: 3.5rem;

    background: linear-gradient(to right, #fff, var(--accent-blue));

    background-clip: text;

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    font-weight: 800;

}

p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {

    text-decoration: none;

    color: var(--text-white);

    transition: all 0.3s ease;

}

/* Layout */

.container {

    max-width: 1440px;

    /* Increased from 1200px for modern screens */

    margin: 0 auto;

    padding: 0 40px;

    /* Increased padding for better breathing room */

}

section {

    padding: 80px 0;

    position: relative;

    z-index: 1;

}

/* Header */

header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 0;

    height: 80px;

    /* Fixed shallow header */

    backdrop-filter: blur(10px);

    background: rgba(10, 14, 23, 0.7);

    border-bottom: 1px solid var(--glass-border);

}

nav {

    display: flex;

    justify-content: space-between;

    align-items: center;

    height: 100%;

    /* Fill fixed header */

}

/* Hamburger Menu */

.hamburger {

    display: none;

    cursor: pointer;

    flex-direction: column;

    gap: 5px;

    z-index: 1002;

}

.hamburger span {

    display: block;

    width: 25px;

    height: 3px;

    background-color: var(--text-white);

    transition: all 0.3s ease;

}

/* Hamburger Animation */

.hamburger.active span:nth-child(1) {

    transform: rotate(45deg) translate(5px, 5px);

}

.hamburger.active span:nth-child(2) {

    opacity: 0;

}

.hamburger.active span:nth-child(3) {

    transform: rotate(-45deg) translate(5px, -5px);

}

.logo {

    display: flex;

    align-items: center;

    height: 100%;

    z-index: 1001;

    position: relative;

    z-index: 1001;

}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    /* Removed transform scale to prevent overflow */
}

.nav-links {

    display: flex;

    gap: 30px;

}

.nav-links a {

    font-weight: 500;

    font-size: 0.95rem;

    opacity: 0.8;

}

.nav-links a:hover,

.nav-links a.active {

    opacity: 1;

    color: var(--accent-blue);

    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);

}

/* Hero Section */

.hero {

    min-height: 85vh;
    position: relative;
    overflow: hidden;
    padding: 140px 0 60px;
    display: flex;
    align-items: center;
}

.hero .container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    position: relative;

    z-index: 2;

}

.hero-content {

    position: relative;

    z-index: 2;

    flex: 1;

    max-width: 650px;

    padding-right: 20px;

    /* Gap between text and image */

}

.hero-subtitle {

    display: inline-block;

    padding: 8px 16px;

    background: var(--glass-bg);

    border: 1px solid var(--glass-border);

    border-radius: 50px;

    font-size: 0.9rem;

    color: var(--accent-blue);

    margin-bottom: 20px;

    backdrop-filter: blur(5px);

}

.hero p {

    margin: 20px 0 30px;

    font-size: 1.25rem;
}

.hero-bg-image {
    position: relative;
    width: 45%;
    height: auto;
    z-index: 1;
    opacity: 1;
    animation: float-standard 6s ease-in-out infinite;
    pointer-events: none;
    object-fit: contain;
    mix-blend-mode: screen;
    mask-image: radial-gradient(circle, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 70%);
}

/* Buttons */

.btn {

    display: inline-block;

    padding: 12px 30px;

    font-weight: 600;

    border-radius: 5px;

    cursor: pointer;

}

.btn-primary {

    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));

    color: white;

    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);

    border: none;

}

.btn-primary:hover {

    transform: translateY(-2px);

    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.5);

}

.btn-secondary {

    background: transparent;

    border: 1px solid var(--glass-border);

    margin-left: 15px;

}

.btn-secondary:hover {

    background: var(--glass-bg);

    border-color: var(--accent-blue);

}

/* Glass Cards */

.card-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

    margin-top: 50px;

}

.glass-card {

    background: var(--glass-bg);

    border: 1px solid var(--glass-border);

    padding: 40px;

    border-radius: 15px;

    backdrop-filter: blur(10px);

    transition: transform 0.3s ease, border-color 0.3s ease;

}

.glass-card:hover {

    transform: translateY(-10px);

    border-color: var(--accent-blue);

    box-shadow: var(--glass-shadow);

}

.glass-card h3 {

    margin-bottom: 15px;

    font-size: 1.5rem;

}

.glass-card .icon {

    margin-bottom: 25px;

    height: 70px;

    display: flex;

    align-items: center;

}

.glass-card .icon img {

    height: 100%;

    width: auto;

    object-fit: contain;

    mix-blend-mode: screen;

    /* Perfect transparency for neon on dark */

    transition: transform 0.3s ease;

}

.glass-card:hover .icon img {

    transform: scale(1.1) rotate(5deg);

}

/* Footer */

footer {

    border-top: 1px solid var(--glass-border);

    padding: 50px 0;

    text-align: center;

    color: var(--text-gray);

    margin-top: 50px;

    background: rgba(10, 14, 23, 0.5);

}

/* Responsive */

@media (max-width: 1024px) {

    .logo {

        width: auto;

    }

    .logo img {
        height: 50px;
        margin-top: 0;
    }

    .hero {
        text-align: center;
        display: block;
        min-height: auto;
        padding: 100px 0 20px;
        height: auto;
    }

    .hero .container {
        flex-direction: column-reverse;
        justify-content: center;
        padding-bottom: 0;
    }

    .hero-content {
        margin-top: 10px;
        padding-right: 0;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
    }



    .hero-bg-image {
        mix-blend-mode: screen;
        mask-image: radial-gradient(circle, black 40%, transparent 70%);
        -webkit-mask-image: radial-gradient(circle, black 40%, transparent 70%);
        width: 80%;
        max-width: 400px;
        margin-bottom: 20px;
        position: relative;
        right: auto;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hamburger {
        display: flex;
    }


    h1 {

        font-size: 2.5rem;

    }

    .hamburger {

        display: flex;

    }

    .nav-links {

        position: absolute;

        top: 80px;

        right: 0;

        height: calc(100vh - 80px);

        width: 100%;

        background: rgba(10, 14, 23, 0.98);

        backdrop-filter: blur(20px);

        flex-direction: column;

        align-items: center;

        justify-content: center;

        transform: translateX(100%);

        transition: transform 0.4s ease-in-out;

        gap: 40px;

        margin-top: 0;

        border-top: 1px solid var(--glass-border);

    }

    .nav-links.active {

        transform: translateX(0);

    }

    .nav-links a {

        font-size: 1.5rem;

    }

}

/* Animations */

@keyframes float-centered {

    0% {

        transform: translateY(-50%) translateY(0px);

    }

    50% {

        transform: translateY(-50%) translateY(-20px);

    }

    100% {

        transform: translateY(-50%) translateY(0px);

    }

}

@keyframes float-standard {

    0% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-20px);

    }

    100% {

        transform: translateY(0px);

    }

}

/* Utility for gradients background elements */

.gradient-blob {

    position: absolute;

    width: 500px;

    height: 500px;

    background: radial-gradient(circle, rgba(112, 0, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);

    border-radius: 50%;

    z-index: -1;

    pointer-events: none;

}

/* Split Section (About) */

.split-section {

    display: flex;

    align-items: center;

    gap: 50px;

    margin: 40px 0;

}

.split-content {

    flex: 1;

}

.split-image {

    flex: 1;

    display: flex;

    justify-content: center;

}

.split-image img {

    max-width: 100%;

    border-radius: 20px;

    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);

    animation: float-standard 8s ease-in-out infinite reverse;

}

/* Stats Section */

.stats-section {

    background: rgba(255, 255, 255, 0.02);

    margin: 60px 0;

}

.stats-grid {

    display: flex;

    justify-content: space-around;

    flex-wrap: wrap;

    gap: 30px;

    text-align: center;

}

.stat-item h3 {

    font-size: 1.5rem;

    color: var(--accent-blue);

    margin-bottom: 15px;

}

.stat-item p {

    font-size: 1rem;

    color: var(--text-gray);

    line-height: 1.6;

    max-width: 250px;

    margin: 0 auto;

}

/* Testimonials */

.testimonial-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

    margin-top: 50px;

}

.testimonial-card {

    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);

    border: 1px solid var(--glass-border);

    padding: 30px;

    border-radius: 15px;

    position: relative;

}

.testimonial-text {

    font-style: italic;

    margin-bottom: 20px;

    opacity: 0.9;

}

.client-info {

    display: flex;

    align-items: center;

    gap: 15px;

}

.client-avatar {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: var(--accent-purple);

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: bold;

    color: white;

}

.client-name {

    font-weight: 600;

    color: var(--text-white);

}

.client-role {

    font-size: 0.85rem;

    color: var(--text-gray);

}

/* CTA Section */

.cta-section {

    text-align: center;

    padding: 100px 0;

    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.1) 0%, transparent 70%);

}

@media (max-width: 1024px) {

    .split-section {

        flex-direction: column;

        text-align: center;

    }

    .stats-grid {

        flex-direction: column;

    }

}

/* Accordion Styles */

.accordion-container {

    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.accordion-item {

    background: var(--glass-bg);

    border: 1px solid var(--glass-border);

    border-radius: 10px;

    overflow: hidden;

    transition: all 0.3s ease;

}

.accordion-item:hover {

    border-color: rgba(255, 255, 255, 0.2);

}

.accordion-header {

    padding: 20px 25px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    transition: background 0.3s ease;

}

.accordion-header h3 {

    font-size: 1.25rem;

    font-weight: 600;

    margin: 0;

    color: var(--text-white);

}

.accordion-header .icon {

    width: 20px;

    height: 20px;

    position: relative;

    transition: transform 0.3s ease;

}

.accordion-header .icon::after {

    content: '';

    position: absolute;

    top: 40%;

    left: 50%;

    width: 10px;

    height: 10px;

    border-right: 2px solid var(--accent-blue);

    border-bottom: 2px solid var(--accent-blue);

    transform: translate(-50%, -50%) rotate(45deg);

    /* Chevron Down */

}

.accordion-item.active .accordion-header .icon {

    transform: rotate(180deg);

    /* Flip Up */

}

.accordion-item.active .accordion-header {

    background: rgba(255, 255, 255, 0.03);

}

.accordion-body {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease-out;

    background: rgba(0, 0, 0, 0.2);

}

.accordion-body ul {

    list-style: none;

    padding: 20px 25px 30px;

    margin: 0;

}

.accordion-body li {

    color: var(--text-gray);

    margin-bottom: 12px;

    padding-left: 20px;

    position: relative;

    font-size: 1rem;

    line-height: 1.5;

}

.accordion-body li::before {

    content: "•";

    color: var(--accent-blue);

    position: absolute;

    left: 0;

    font-weight: bold;

}

.accordion-body li:last-child {

    margin-bottom: 0;

}

/* Mobile Adjustments for Accordion */

@media (max-width: 768px) {

    .accordion-header {

        padding: 15px 20px;

    }

    .accordion-header h3 {

        font-size: 1.1rem;

    }

}

/* Large Screen Optimizations */

@media (min-width: 1600px) {

    html {

        font-size: 18px;

        /* Slight scale up for 4k/large monitors */

    }

    .container {

        max-width: 1600px;

    }

    .hero-content {

        max-width: 800px;

    }

    .hero h1 {

        font-size: 4.5rem;

    }

    .accordion-container {

        max-width: 1400px;

    }
}

.testimonial-card {

    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);

    border: 1px solid var(--glass-border);

    padding: 30px;

    border-radius: 15px;

    position: relative;

}

.testimonial-text {

    font-style: italic;

    margin-bottom: 20px;

    opacity: 0.9;

}

.client-info {

    display: flex;

    align-items: center;

    gap: 15px;

}

.client-avatar {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: var(--accent-purple);

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: bold;

    color: white;

}

.client-name {

    font-weight: 600;

    color: var(--text-white);

}

.client-role {

    font-size: 0.85rem;

    color: var(--text-gray);

}

/* CTA Section */

.cta-section {

    text-align: center;

    padding: 100px 0;

    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.1) 0%, transparent 70%);

}

@media (max-width: 1024px) {

    .split-section {

        flex-direction: column;

        text-align: center;

    }

    .stats-grid {

        flex-direction: column;

    }

}

/* Accordion Styles */

.accordion-container {

    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.accordion-item {

    background: var(--glass-bg);

    border: 1px solid var(--glass-border);

    border-radius: 10px;

    overflow: hidden;

    transition: all 0.3s ease;

}

.accordion-item:hover {

    border-color: rgba(255, 255, 255, 0.2);

}

.accordion-header {

    padding: 20px 25px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    transition: background 0.3s ease;

}

.accordion-header h3 {

    font-size: 1.25rem;

    font-weight: 600;

    margin: 0;

    color: var(--text-white);

}

.accordion-header .icon {

    width: 20px;

    height: 20px;

    position: relative;

    transition: transform 0.3s ease;

}

.accordion-header .icon::after {

    content: '';

    position: absolute;

    top: 40%;

    left: 50%;

    width: 10px;

    height: 10px;

    border-right: 2px solid var(--accent-blue);

    border-bottom: 2px solid var(--accent-blue);

    transform: translate(-50%, -50%) rotate(45deg);

    /* Chevron Down */

}

.accordion-item.active .accordion-header .icon {

    transform: rotate(180deg);

    /* Flip Up */

}

.accordion-item.active .accordion-header {

    background: rgba(255, 255, 255, 0.03);

}

.accordion-body {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease-out;

    background: rgba(0, 0, 0, 0.2);

}

.accordion-body ul {

    list-style: none;

    padding: 20px 25px 30px;

    margin: 0;

}

.accordion-body li {

    color: var(--text-gray);

    margin-bottom: 12px;

    padding-left: 20px;

    position: relative;

    font-size: 1rem;

    line-height: 1.5;

}

.accordion-body li::before {

    content: "•";

    color: var(--accent-blue);

    position: absolute;

    left: 0;

    font-weight: bold;

}

.accordion-body li:last-child {

    margin-bottom: 0;

}

/* Mobile Adjustments for Accordion */

@media (max-width: 768px) {

    .accordion-header {

        padding: 15px 20px;

    }

    .accordion-header h3 {

        font-size: 1.1rem;

    }

}

/* Large Screen Optimizations */

@media (min-width: 1600px) {

    html {

        font-size: 18px;

        /* Slight scale up for 4k/large monitors */

    }

    .container {

        max-width: 1600px;

    }

    .hero-content {

        max-width: 800px;

    }

    .hero h1 {

        font-size: 4.5rem;

    }

    .accordion-container {

        max-width: 1400px;

    }

    .hero-bg-image {

        right: -20%;

        /* Pull it back slightly on very wide screens so it doesn't disappear */

        width: 55%;

    }

}

/* Premium Expertise Section */

.expertise-section {

    padding: 80px 0;
    position: relative;
}

@media (max-width: 1024px) {
    .expertise-section {
        padding-top: 20px;
    }
}

.expertise-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;

}

.expertise-card {

    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

    border-radius: 20px;

    padding: 40px;

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    position: relative;

    overflow: hidden;

    height: 100%;

    display: flex;

    flex-direction: column;

}

.expertise-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(0, 240, 255, 0.06), transparent 40%);

    opacity: 0;

    transition: opacity 0.4s ease;

    pointer-events: none;

    z-index: 1;

}

.expertise-card:hover {

    transform: translateY(-10px);

    border-color: rgba(0, 240, 255, 0.3);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);

}

.expertise-card:hover::before {

    opacity: 1;

}

.expertise-icon {

    width: 60px;

    height: 60px;

    background: rgba(255, 255, 255, 0.03);

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    border: 1px solid rgba(255, 255, 255, 0.05);

    transition: all 0.4s ease;

    position: relative;

    z-index: 2;

}

.expertise-card:hover .expertise-icon {

    background: rgba(0, 240, 255, 0.1);

    border-color: rgba(0, 240, 255, 0.2);

    transform: scale(1.1) rotate(3deg);

}

.expertise-icon svg {

    width: 32px;

    height: 32px;

    color: var(--accent-blue);

    transition: all 0.4s ease;

    stroke-width: 1.5;

}

.expertise-card:hover .expertise-icon svg {

    color: #fff;

    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.6));

}

.expertise-card h3 {

    font-size: 1.5rem;

    margin-bottom: 15px;

    color: var(--text-white);

    font-weight: 600;

    position: relative;

    z-index: 2;

}

.expertise-card p {

    color: var(--text-gray);

    font-size: 1.05rem;

    line-height: 1.6;

    margin: 0;

    position: relative;

    z-index: 2;

}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }

    .expertise-grid {

        grid-template-columns: 1fr;
    }

    .expertise-card {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-bg);
    color: var(--text-white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), inset 0 0 10px rgba(0, 240, 255, 0.1);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-blue);
    backdrop-filter: blur(5px);
}

.whatsapp-float:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6), inset 0 0 15px rgba(0, 240, 255, 0.2);
    border-color: #ffffff;
}

.whatsapp-icon {
    width: 35px !important;
    height: 35px !important;
    max-width: 35px;
    max-height: 35px;
    fill: white;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
    fill: var(--accent-blue);
    filter: drop-shadow(0 0 5px var(--accent-blue));
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-icon {
        width: 28px !important;
        height: 28px !important;
        max-width: 28px;
        max-height: 28px;
    }
}