:root {
    --cyan-start: #00bcd4;
    --cyan-end: #2581eb;
    --purple-accent: #6200ea;
    --white: #ffffff;
    --light-bg: #f0f4f8;
    --dark-text: #1f2937;
    --muted-text: #6b7280;
    --border-color: #e0e0e0;
    --card-bg: #f0f4f8;
    --transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 50px;
    background: linear-gradient(135deg, var(--cyan-start), var(--cyan-end));
    /* Full theme background */
    color: var(--white);
}

/* Canvas Background */
#canvas-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Decorative Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: blobFloat 10s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--cyan-start), transparent 70%);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--purple-accent), transparent 70%);
    animation-delay: -5s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(25px, -35px) scale(1.08);
    }
    50% {
        transform: translate(15px, -20px) scale(1.12);
    }
    75% {
        transform: translate(35px, -40px) scale(1.05);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    /* Vignette */
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

/* Left Side: Text */
.hero-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.badge-container {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.badge {
    background: linear-gradient(270deg, #00bcd4, #6200ea, #00bcd4);
    background-size: 200% 200%;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.2);
    animation: gradientShift 3s ease infinite;
    display: inline-block;
    backdrop-filter: blur(5px);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 15px rgba(0, 188, 212, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.2);
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 25px rgba(0, 188, 212, 0.8), inset 0 0 15px rgba(255, 255, 255, 0.3);
    }
    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 15px rgba(0, 188, 212, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.2);
    }
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(to right, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.h-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.h-stat-d {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Right Side: Visual Glass Stack */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    height: 400px;
    /* Constrain height */
}







/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .iso-web-container {
        width: 350px;
        height: 350px;
    }

    .iso-web-plane {
        width: 280px;
        height: 330px;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .hero-visual {
        height: 300px;
        margin-bottom: 2rem;
        width: 100%;
    }

    .iso-web-container {
        width: 100%;
        height: 300px;
        transform: translateX(0);
    }

    .iso-web-plane {
        transform: rotateX(55deg) rotateZ(45deg) scale(0.65);
    }

    .blob {
        opacity: 0.3;
    }

    .blob-1 {
        width: 350px;
        height: 350px;
    }

    .blob-2 {
        width: 400px;
        height: 400px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
   

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .why-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2rem;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .project-card {
        border-radius: 20px;
    }

    .project-image {
        aspect-ratio: 16/10;
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        border: none;
        padding: 0;
        margin-top: 2rem;
    }

    .h-stat-num {
        font-size: 1.5rem;
    }

    .h-stat-d {
        font-size: 0.85rem;
    }

    .hero-visual {
        height: 250px;
        margin-bottom: 1.5rem;
    }

    .iso-web-container {
        width: 100%;
        height: 250px;
    }

    .iso-web-plane {
        transform: rotateX(55deg) rotateZ(45deg) scale(0.55);
    }

    .badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }

    .about-content {
        display: hidden;
        gap: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .about-stats {
        
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-card {
        padding: 1.5rem;
    }

    .why-icon {
        font-size: 2.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-card {
        padding: 0;
    }

    .card-content {
        padding: 2rem 1.5rem;
    }

    .img-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }

    .avatar {
        font-size: 2rem;
        border: 3px solid white;
    }

    .team-card h3 {
        font-size: 1.2rem;
    }

    .role {
        font-size: 0.9rem;
    }

    .skills-container {
        gap: 6px;
    }

    .skill-pill {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-card {
        border-radius: 16px;
    }

    .project-image {
        aspect-ratio: 16/10;
    }

    .project-overlay {
        padding: 1rem;
    }

    .project-overlay h3 {
        font-size: 1.2rem;
    }

    .project-overlay p {
        font-size: 0.9rem;
    }

    .project-card::after {
        display: none;
    }

    .testimonials-marquee {
        padding: 0.5rem 0;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 1.5rem;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .author-info h4 {
        font-size: 0.95rem;
    }

    .author-info span {
        font-size: 0.8rem;
    }

    .order {
        padding: 4rem 0;
    }

    .order .section-title {
        font-size: 1.8rem;
    }

    .order-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .order-note {
        font-size: 0.85rem;
    }

    .project-overlay {
        transform: translateY(0);
       
        background: none
    }

    .project-card:hover {
        transform: none;
    }
}

@media (max-width: 640px) {
    .testimonials-marquee {
        overflow: hidden;
        width: 100%;
        position: relative;
        padding: 0.8rem 0;
        mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    }

    .testimonial-track {
        display: flex;
        gap: 1rem;
        width: max-content;
        animation: scroll-marquee 50s linear infinite;
    }

    .testimonial-card {
        min-width: 150px;
        max-width: 150px;
        padding: 1.2rem;
        flex-shrink: 0;
    }

    .testimonial-content p {
        font-size: 0.9rem;
    }

    .author-info h4 {
        font-size: 0.9rem;
    }

    .author-info span {
        font-size: 0.75rem;
    }

    .project-image {
        aspect-ratio: 16/9;
        min-height: 180px;
    }

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 60px;
        padding-bottom: 20px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        gap: 6px;
    }

    .hero-stats {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .h-stat-num {
        font-size: 1.3rem;
    }

    .h-stat-d {
        font-size: 0.75rem;
    }

    .hero-visual {
        height: 180px;
        margin-bottom: 1rem;
    }

    .iso-web-container {
        height: 180px;
    }

    .iso-web-plane {
        transform: rotateX(55deg) rotateZ(45deg) scale(0.4);
    }

    .blob-1 {
        width: 250px;
        height: 250px;
        top: -20%;
        left: -20%;
    }

    .blob-2 {
        width: 300px;
        height: 300px;
        bottom: -20%;
        right: -20%;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .about-stats {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .services-grid {
        gap: 0.8rem;
    }

    .service-card {
        padding: 1rem;
        border-radius: 16px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }

    .why-us-grid {
        gap: 0.8rem;
    }

    .why-card {
        padding: 1rem;
    }

    .why-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .why-card h3 {
        font-size: 1rem;
    }

    .why-card p {
        font-size: 0.8rem;
    }

    .team-grid {
        gap: 0.8rem;
    }

    .card-content {
        padding: 1.2rem 1rem;
    }

    .img-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 0.8rem;
    }

    .avatar {
        font-size: 1.2rem;
        border: 2px solid white;
    }

    .team-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .role {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .skills-container {
        gap: 4px;
        margin-bottom: 1rem;
    }

    .skill-pill {
        padding: 3px 8px;
        font-size: 0.7rem;
    }

    .member-bio {
        font-size: 0.75rem;
    }

    .projects-grid {
        gap: 0.8rem;
        padding: 0.2rem;
    }

    .project-card {
        border-radius: 12px;
    }

    .project-image {
        aspect-ratio: 16/9;
        min-height: 150px;
    }

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .project-overlay {
        padding: 0.8rem;
    }

    .project-overlay h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .project-overlay p {
        font-size: 0.8rem;
    }

    .testimonials-marquee {
        overflow: hidden;
        width: 100%;
        position: relative;
        padding: 0.5rem 0;
        mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    }

    .testimonial-track {
        display: flex;
        gap: 0.8rem;
        width: max-content;
        animation: scroll-marquee 50s linear infinite;
    }

    .testimonial-card {
        min-width: 200px;
        max-width: 200px;
        padding: 1rem;
        flex-shrink: 0;
    }

    .testimonial-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .author-info h4 {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }

    .author-info span {
        font-size: 0.7rem;
    }

    .project-image {
        aspect-ratio: 16/9;
        min-height: 150px;
    }

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .order {
        padding: 2.5rem 1rem;
    }

    .order .section-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .order-text {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .order-note {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
}




/* Why Choose Us */
/* Why Choose Us */
.why-us {
    padding: 6rem 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    border: 1px solid var(--border-color);
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--cyan-start);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.2);
}

.why-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--cyan-start), var(--cyan-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

/* Team Skills */
.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
}

.skill-tag {
    background: #eff6ff;
    color: #1e40af;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

/* Testimonials */
/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: none;
    /* Hide old grid if present */
}

/* Marquee Styles */
.testimonials-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll-marquee 50s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 320px;
    max-width: 320px;
    transition: var(--transition);
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.author-info h4 {
    color: var(--cyan-start);
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--muted-text);
    font-size: 0.9rem;
}

/* Footer Adjustments if needed */
.footer-newsletter1 input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-bottom: 10px;
}

.newsletter-btn1 {
    width: 100px;
    padding: 10px;
    background: white;
    color: #333;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}


.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--white);
}



.section-subtitle {
    text-align: center;
    color: var(--muted-text);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--cyan-start);
    box-shadow: 0 25px 50px rgba(0, 188, 212, 0.25);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--cyan-start), var(--cyan-end));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--muted-text);
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--muted-text);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan-start), var(--cyan-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--muted-text);
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--cyan-start), var(--cyan-end));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0.8;
}


/* Team Section Revamp */
.team {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 20px;
}

/* Animated Card */
.team-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
}

.team-card:hover {
    transform: translateY(-18px);
    box-shadow: 0 25px 50px rgba(0, 188, 212, 0.2);
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--cyan-start), var(--purple-accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.team-card:hover::before {
    opacity: 1;
}

/* Content Layout */
.card-content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Avatar Animation */
.img-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan-start), var(--cyan-end));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.2);
}

.avatar-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed var(--cyan-start);
    animation: spinSlow 12s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .avatar-ring {
    opacity: 0.6;
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}

/* Typography */
.team-card h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 5px;
    font-weight: 700;
}

.role {
    color: var(--cyan-end);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Skills */
.skills-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 25px;
}

.skill-pill {
    background: rgba(0, 188, 212, 0.1);
    color: var(--cyan-end);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card:hover .skill-pill {
    background: var(--cyan-end);
    color: white;
    transform: translateY(-3px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.team-card:hover .social-links {
    opacity: 1;
}

.social-links a {
    color: var(--muted-text);
    font-size: 1.2rem;
    transition: color 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-links a:hover {
    color: var(--purple-accent);
    transform: scale(1.25);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Projects Section */
.projects {
    padding: 8rem 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

/* Background blob for visual interest */
.projects::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.projects::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(98, 0, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 10px;
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.project-card {
    border-radius: 24px;
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    isolation: isolate;
}

.project-card:hover {
    box-shadow: 0 30px 60px rgba(0, 188, 212, 0.3), 0 0 0 2px rgba(0, 188, 212, 0.3);
    z-index: 2;
}

.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    border-radius: 24px;
    transform: translateZ(0);
    min-height: 200px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
    display: block;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
    max-height: 100%;
}

.project-card:hover .project-image img {
    transform: scale(1.12);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4) 50%, transparent);
    height: 100%;
    opacity: 0;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Always show overlay on touch devices or smaller screens if desired, 
   but for "animative" requested, we keep hover interactions for desktop 
   and maybe media query for mobile to show partial overlay */
@media (max-width: 385px) {
.project-card {
    border-radius: 24px;
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    isolation: isolate;
    width:10px
}
}
@media (max-width: 768px) {
.newsletter-btn1 {
    width: 100%;
    padding: 10px;
    background: white;
    color: #333;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}


    .project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    border-radius: 24px;
    transform: translateZ(0);
    min-height: 200px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
    display: block;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
    max-height: 100%;
}

    .testimonials-marquee {
        overflow: hidden;
        width: 100%;
        position: relative;
        padding: 1rem 0;
        mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    }

    .testimonial-track {
        display: flex;
        gap: 1.5rem;
        width: max-content;
        animation: scroll-marquee 50s linear infinite;
    }

    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
        padding: 1.5rem;
        flex-shrink: 0;
    }

    .testimonial-content p {
        font-size: 0.95rem;
    }

    .author-info h4 {
        font-size: 0.95rem;
    }

    .author-info span {
        font-size: 0.8rem;
    }
}

.project-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    transform: translateZ(20px);
    /* 3D Depth */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.project-overlay p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    transform: translateZ(20px);
    /* 3D Depth */
    line-height: 1.5;
}

/* Floating badge example (optional enhancement) */
.project-card::after {
    content: 'View Project';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--white);
    color: var(--dark-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px) translateZ(30px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.project-card:hover::after {
    opacity: 1;
    transform: translateY(0) translateZ(30px);
}

/* 3D Isometric Web Visual */
.iso-web-container {
    perspective: 1200px;
    width: 420px;
    /* Increased size */
    height: 420px;
    /* Increased size */
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(40px);
    /* Move right */
}

.iso-web-plane {
    position: relative;
    width: 340px;
    /* Scaled up */
    height: 400px;
    /* Scaled up */
    transform-style: preserve-3d;
    transform: rotateX(55deg) rotateZ(45deg);
    animation: isoFloat 6s ease-in-out infinite;
}

@keyframes isoFloat {
    0%,
    100% {
        transform: rotateX(55deg) rotateZ(45deg) translateZ(0);
    }
    25% {
        transform: rotateX(55deg) rotateZ(45deg) translateZ(20px);
    }
    50% {
        transform: rotateX(55deg) rotateZ(45deg) translateZ(35px);
    }
    75% {
        transform: rotateX(55deg) rotateZ(45deg) translateZ(15px);
    }
}

/* Layers */
.iso-layer {
    position: absolute;
    width: 100%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1), -1px -1px 0 rgba(255, 255, 255, 0.5);
    transition: transform 0.4s ease;
}

/* Hover separation effect */
.iso-web-container:hover .layer-header {
    transform: translateZ(80px);
}

.iso-web-container:hover .layer-image {
    transform: translateZ(50px);
}

.iso-web-container:hover .layer-content {
    transform: translateZ(20px);
}

/* Header Layer */
.layer-header {
    height: 40px;
    top: 0;
    z-index: 3;
    transform: translateZ(60px);
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 8px;
    background: white;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.bar {
    height: 6px;
    width: 120px;
    background: #f0f2f5;
    border-radius: 4px;
    margin-left: auto;
}

/* Image/Hero Layer */
.layer-image {
    height: 120px;
    top: 55px;
    z-index: 2;
    transform: translateZ(35px);
    background: linear-gradient(135deg, var(--cyan-start), var(--cyan-end));
    display: flex;
    align-items: center;
    justify-content: center;
}

.layer-image i {
    font-size: 3rem;
    color: white;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

/* Content Layer */
.layer-content {
    height: 100px;
    bottom: 0;
    z-index: 1;
    transform: translateZ(10px);
    background: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.text-line {
    height: 8px;
    background: #f0f2f5;
    border-radius: 4px;
}

.w-80 {
    width: 80%;
}

.w-60 {
    width: 60%;
}

.w-40 {
    width: 40%;
}

.iso-btn {
    width: 80px;
    height: 25px;
    background: var(--purple-accent);
    border-radius: 4px;
    margin-top: 5px;
}

/* Floating Syntax Ions */
.float-icon {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    pointer-events: none;
    animation: floatIcon 4s ease-in-out infinite;
}

.icon-html {
    top: -40px;
    right: -20px;
    transform: translateZ(80px) rotateX(-55deg) rotateZ(-45deg);
    color: #e44d26;
}

.icon-css {
    bottom: 20%;
    left: -30px;
    transform: translateZ(60px) rotateX(-55deg) rotateZ(-45deg);
    animation-delay: 1s;
    color: #264de4;
}

.icon-js {
    top: 50%;
    right: -40px;
    transform: translateZ(70px) rotateX(-55deg) rotateZ(-45deg);
    animation-delay: 2s;
    color: #f0db4f;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Responsive Scaling for Mobile */
@media (max-width: 992px) {
    .iso-web-container {
        width: 100%;
        height: 350px;
        transform: translateX(0);
        /* Reset shift on mobile */
        margin-top: 2rem;
    }

    .iso-web-plane {
        transform: rotateX(55deg) rotateZ(45deg) scale(0.7);
        /* Scale down */
    }
}

@keyframes floatIcon {
    0%,
    100% {
        transform: translateZ(70px) rotateX(-55deg) rotateZ(-45deg) translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateZ(70px) rotateX(-55deg) rotateZ(-45deg) translateY(-20px);
        opacity: 1;
    }
}

/* Hero Buttons Refinement */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Premium Primary Button (View Our Work) */
.btn-primary.glow-effect {
    background: linear-gradient(135deg, #00C6FF, #0072FF);
    /* Brighter Blue Gradient */
    color: white;
    box-shadow: 0 10px 25px rgba(0, 114, 255, 0.3);
    border: none;
    z-index: 1;
}

.btn-primary.glow-effect:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 114, 255, 0.5);
}

.btn-primary.glow-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.btn-primary.glow-effect:hover::before {
    left: 125%;
    transition: 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-secondary.glass-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary.glass-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Order Section (Blue Design) */
.order {
    background: linear-gradient(135deg, #0AB1E8, #2680EB);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.order .section-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.order-text {
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 500;
}

.btn-discord {
    background: #5865F2;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-discord:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    background: #4752c4;
}

.order-note {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Unique Section Subtitle Style */
.section-subtitle {
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, var(--cyan-start), var(--cyan-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: table;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 15px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan-start), var(--cyan-end));
    border-radius: 2px;
    opacity: 0.7;
}