:root {
            --primary: #008081;
            --primary-dark: #005f60;
            --primary-light: #1ba3a5;
            --accent: #5ce2e7;
            --dark: #1e1e1e;
            --light-gray: #f8f9fa;
            --border-gray: #e9ecef;
            --text-secondary: #666;
            --neon-green: #7FFF00;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: #f1f1f1;
            color: #fff;
            overflow-x: hidden;
        }

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

        .topbar {
            background: var(--primary-dark);
            color: rgba(255, 255, 255, 0.9);
            padding: 7px 40px;
            font-size: 12px;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
            display: flex;
            justify-content: space-between;
            align-items: center;
            letter-spacing: 0.3px;
        }

        .topbar-region {
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 0.5px;
        }

        .topbar-langs {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .topbar-langs a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-weight: 600;
            font-size: 11px;
            letter-spacing: 1px;
            transition: color 0.2s;
        }

        .topbar-langs a:hover {
            color: var(--accent);
        }

        .topbar-sep {
            color: rgba(255, 255, 255, 0.25);
            font-size: 10px;
        }

        header {
            background: #ffffff;
            padding: 20px 0;
            border-radius: 0 0 30px 30px;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .nav-left {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-left a {
            color: #008081;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            max-width: 120px;
            border-radius: 50%;
            position: relative;
        }

        .logo-size {
           max-width:150px;
        }

        @media (max-width: 768px) {
            .logo-size {
                max-width: 80px;
            }
        }

        .nav-right {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-right a {
            color: #008081;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background: var(--accent);
            transition: all 0.3s;
        }

        .burger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .burger-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: #ffffff;
            z-index: 1000;
            padding: 80px 30px 30px;
            transition: right 0.3s;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu a {
            display: block;
            color: #000000;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 15px 0;
            border-bottom: 1px solid #333;
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999;
        }

        .mobile-overlay.active {
            display: block;
        }

        .hero {
            background: #ffffff;
            border-radius: 40px;
            margin: 40px auto;
            max-width: 1200px;
            padding: 80px 60px;
            position: relative;
            overflow: hidden;
        }

        .star-icon {
            position: absolute;
            width: 80px;
            height: 80px;
        }

        .star-icon.top-left {
            top: 40px;
            left: 40px;
        }

        .star-icon.top-right {
            top: 40px;
            right: 40px;
        }

        .star-icon svg {
            width: 100%;
            height: 100%;
        }

        .star-rays {
            fill: none;
            stroke: var(--neon-green);
            stroke-width: 3;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 56px;
            font-weight: 700;
            color: #000;
            line-height: 1.1;
            margin-bottom: 30px;
            margin-top: 80px;
        }

        .hero-subtext {
            color: #666;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 400px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .btn-primary {
            background: var(--accent);
            color: #000;
            padding: 14px 32px;
            border-radius: 25px;
            border: none;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
        }

        .btn-secondary {
            background: transparent;
            color: #000;
            padding: 14px 32px;
            border-radius: 25px;
            border: 2px solid #000;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
        }

        .hero-image-wrapper {
            position: relative;
        }

        .hero-image-wrapper img {
            width: 100%;
            border-radius: 20px;
        }

        .experience-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #fff;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
        }

        .stars {
            color: var(--neon-green);
            font-size: 20px;
            letter-spacing: 2px;
        }

        .experience-badge h3 {
            font-size: 32px;
            font-weight: 700;
            color: #000;
            margin: 5px 0;
        }

        .experience-badge p {
            font-size: 14px;
            color: #666;
        }

        .stats {
            background: var(--primary-dark);
            border-radius: 30px;
            padding: 40px 60px;
            margin: 40px auto;
            max-width: 1200px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .stat-item h3 {
            font-size: 48px;
            font-weight: 700;
            color: #fff;
        }

        .stat-item p {
            font-size: 14px;
            color: #ffffff;
            margin-top: 5px;
        }

        .section-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 40px;
            color: #1e1e1e;
        }

        .ideas-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 40px;
        }

        .ideas-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }

        .ideas-text {
            max-width: responsive;
        }

        .ideas-text p {
            color: #000000;
            line-height: 1.8;
            font-size: 16px;
        }

        .idea-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
        }

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

        .idea-card-label {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: var(--primary);
            color: #000;
            padding: 15px 30px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 14px;
        }

        .services-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 40px;
        }

        .services-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .services-title {
            font-size: 48px;
            font-weight: 700;
            color: #1e1e1e;
        }

        .services-title span {
            color: var(--accent);
        }

        .services-subtitle {
            color: #343434;
            margin-top: 20px;
            line-height: 1.6;
            font-size: 15px;
        }

        .service-list {
            list-style: none;
            margin-top: 30px;
            color:#005f60;
        }

        .service-item {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            padding: 0;
            border: 2px solid #333;
            border-radius: 50px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: border-color 0.3s ease, border-radius 0.3s ease;
            overflow: hidden;
            background: #fff;
        }

        .service-item:hover {
            border-color: var(--accent);
        }

        .service-item.active {
            border-radius: 20px;
            border-color: var(--accent);
        }

        .service-summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 20px 30px;
        }

        .service-number {
            font-weight: 700;
            margin-right: 20px;
        }

        .service-name {
            flex: 1;
        }

        .service-arrow {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .service-item.active .service-arrow {
            transform: rotate(90deg);
        }

        .service-text {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
            padding: 0 30px;
            color: #343434;
            line-height: 1.7;
        }

        .service-text p {
            margin: 0;
            font-size: 14px;
        }

        .service-item.active .service-text {
            max-height: 200px;
            opacity: 1;
            padding: 15px 30px 20px;
        }

        .services-image-wrapper {
            position: relative;
        }

        .services-image-wrapper img {
            width: 100%;
            border-radius: 20px;
        }

        .cta-boxes {
            display: flex;
            flex-direction: column;
            gap: 15px;
            position: absolute;
            bottom: 30px;
            right: 30px;
        }

        .cta-box {
            background: var(--primary);
            color: #ffffff;
            padding: 20px 25px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 13px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tagline {
            font-size: 56px;
            font-weight: 700;
            text-align: center;
            margin: 100px 0;
            color: #000;
        }

        .tagline span {
            color: var(--accent);
        }

        .team-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 40px;
        }

        .team-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .team-title {
            font-size: 48px;
            font-weight: 700;
            color:#343434;
        }

        .team-title span {
            color: var(--accent);
        }

        .team-nav {
            display: flex;
            gap: 10px;
        }

        .team-nav button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #fff;
            background: transparent;
            color: #fff;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .team-card {
            background: #fff;
            border-radius: 20px;
            padding: 30px;
            color: #000;
        }

        .team-card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .team-avatar {
            width: 64px;
            height: 64px;
            border-radius: 20%;
            background: var(--neon-green);
            background-position: center;
            background: cover;
        }

        .team-card h4 {
            font-size: 16px;
            font-weight: 700;
        }

        .team-card p {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
            margin-top: 10px;
        }

        .testimonials {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .testimonial-card {
            background: #1a1a1a;
            border-radius: 20px;
            padding: 30px;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #333;
        }

        .testimonial-rating {
            color: var(--neon-green);
            font-size: 14px;
        }

        .testimonial-card p {
            font-size: 14px;
            line-height: 1.6;
            color: #ccc;
        }

        .skills-section {
            background: #f5f5f5;
            border-radius: 40px;
            margin: 80px auto;
            max-width: 1200px;
            padding: 60px;
        }

        .skills-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .skills-tags {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .skill-tag {
            background: #000;
            color: #fff;
            padding: 10px 25px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }

        .cta-section {
            background: #fff;
            border-radius: 40px;
            margin: 80px auto;
            max-width: 1200px;
            padding: 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .cta-content h2 {
            font-size: 48px;
            font-weight: 700;
            color: #000;
            margin-bottom: 20px;
        }

        .cta-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .cta-form input,
        .cta-form textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            margin-bottom: 15px;
            font-size: 14px;
            font-family: 'Montserrat', sans-serif;
        }

        .cta-image {
            position: relative;
        }

        .cta-image img {
            width: 100%;
            border-radius: 20px;
        }

        footer {
            background: #fff;
            border-radius: 40px;
            margin: 40px auto;
            max-width: 1200px;
            padding: 60px;
            color: #000;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .footer-column h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li a{
            margin-bottom: 12px;
            font-size: 16px;
            text-decoration-line: none;
            color: #000;
            line-height: 1.8;
        }

        .footer-column ul li :hover {
            color: var(--primary-light);
            margin-bottom: 12px;
            font-size: 16px;
            line-height: 1.8;
        }

        .footer-bottom {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            background: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
        }

        @media (max-width: 1024px) {
            .container {
                padding: 0 30px;
            }

            nav {
                padding: 0 30px;
            }

            .hero {
                padding: 60px 40px;
            }

            .hero-text h1 {
                font-size: 44px;
            }

            .section-title {
                font-size: 40px;
            }

            .services-title {
                font-size: 40px;
            }

            .team-title {
                font-size: 40px;
            }

            .tagline {
                font-size: 44px;
            }

            .stats {
                padding: 40px;
            }

            .stat-item h3 {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .topbar {
                padding: 6px 20px;
                font-size: 11px;
            }

            .container {
                padding: 0 20px;
            }

            nav {
                padding: 0 20px;
            }

            .nav-left,
            .nav-right {
                display: none;
            }

            .burger-menu {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .hero {
                padding: 40px 30px;
                margin: 20px;
                border-radius: 30px;
            }

            .star-icon {
                width: 50px;
                height: 50px;
            }

            .star-icon.top-left {
                top: 20px;
                left: 20px;
            }

            .star-icon.top-right {
                top: 20px;
                right: 20px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-text h1 {
                font-size: 32px;
            }

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

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
            }

            .experience-badge {
                top: 10px;
                right: 10px;
                padding: 15px;
            }

            .experience-badge h3 {
                font-size: 24px;
            }

            .stats {
                grid-template-columns: repeat(2, 1fr);
                padding: 30px 20px;
                gap: 30px;
                margin: 20px;
            }

            .stat-item h3 {
                font-size: 28px;
            }

            .ideas-section,
            .services-section,
            .team-section {
                padding: 0 20px;
                margin: 60px auto;
            }

            .section-title {
                font-size: 32px;
            }

            .ideas-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .ideas-text {
                max-width: 100%;
            }

            .services-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .services-title {
                font-size: 32px;
            }

            .service-list {
                margin-top: 20px;
            }

            .service-item {
                padding: 15px 20px;
            }

            .cta-boxes {
                position: static;
                margin-top: 20px;
            }

            .tagline {
                font-size: 32px;
                margin: 60px 20px;
            }

            .team-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .team-title {
                font-size: 32px;
            }

            .team-grid {
                display: flex;
                flex-direction: row;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                gap: 16px;
                padding-bottom: 8px;
            }

            .team-grid::-webkit-scrollbar {
                display: none;
            }

            .team-card {
                flex: 0 0 88%;
                scroll-snap-align: start;
            }

            .testimonials {
                grid-template-columns: 1fr;
                padding: 0 20px;
            }

            .skills-section {
                padding: 40px 20px;
                margin: 60px 20px;
            }

            .skills-tags {
                justify-content: center;
            }

            .cta-section {
                grid-template-columns: 1fr;
                padding: 40px 30px;
                margin: 60px 20px;
                gap: 40px;
            }

            .cta-content h2 {
                font-size: 32px;
            }

            footer {
                padding: 40px 30px;
                margin: 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 28px;
            }

            .section-title {
                font-size: 28px;
            }

            .services-title {
                font-size: 28px;
            }

            .team-title {
                font-size: 28px;
            }

            .tagline {
                font-size: 24px;
            }

            .cta-content h2 {
                font-size: 28px;
            }

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

            .service-item {
                font-size: 13px;
            }

            .idea-card-label {
                font-size: 12px;
                padding: 12px 20px;
            }
        }

/* Team Carousel Dots */
.team-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.team-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    padding: 0;
}

.team-dot.active {
    background: var(--accent);
    transform: scale(1.4);
}

/* ========================================
   CONTACT MODAL
   ======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #fff;
    border-radius: 16px;
    padding: 48px 40px 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
}

.modal-icon.success {
    background: #e6f7f7;
    color: var(--primary);
}

.modal-icon.error {
    background: #fdecea;
    color: #d93025;
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 12px;
}

.modal-message {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 32px;
}

.modal-close {
    min-width: 140px;
    cursor: pointer;
}

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}