@import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: opacity 1s ease;
}

#canvas {
  opacity: 0; 
  z-index: 1;
}

#canvas2 {
  opacity: 1; 
  z-index: 2;
}


body {
    overflow-x: hidden;
}


main {
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  color: white;
  z-index: 99;
  position: absolute;
  width: 100%;
  margin: 0px auto;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

header {
grid-column: 2 / span 5;
}

section {
    grid-column: 1 / -1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(9, 174, 184, 0.1) 0%, 
        rgba(5, 6, 15, 0.8) 50%, 
        rgba(9, 174, 184, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(9, 174, 184, 0.2);
    opacity: 0;
    transition: all 0.5s ease;
}


.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 4rem;
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #09AEB8, #ffffff, #09AEB8);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoShimmer 3s ease-in-out infinite;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #09AEB8, #ffffff);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(9, 174, 184, 0.5));
}

@keyframes logoShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    background: rgba(9, 174, 184, 0.1);
    border-radius: 50px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(9, 174, 184, 0.2);
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(9, 174, 184, 0.3), 
        transparent);
    transition: left 0.5s ease;
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(9, 174, 184, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(9, 174, 184, 0.3);
}

/* Navigation Click Effects */
.nav-links a.clicked {
    animation: navClickEffect 0.6s ease-out;
}

@keyframes navClickEffect {
    0% {
        transform: translateY(-2px) scale(1);
        box-shadow: 0 5px 15px rgba(9, 174, 184, 0.3);
    }
    25% {
        transform: translateY(-2px) scale(1.1);
        box-shadow: 0 10px 30px rgba(9, 174, 184, 0.6);
    }
    50% {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 15px 40px rgba(9, 174, 184, 0.8);
    }
    100% {
        transform: translateY(-2px) scale(1);
        box-shadow: 0 5px 15px rgba(9, 174, 184, 0.3);
    }
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(9, 174, 184, 0.2);
    transform: scale(1.1);
}



/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 100;
}
/* Title styling */

.hero-title {
    font-family: 'Tilt Neon';
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #09AEB8, #ffffff, #09AEB8, #ffffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 6s linear infinite;
    text-shadow: 0 0 50px rgba(9, 174, 184, 0.5);
    letter-spacing: 12px;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    animation: titleSweep 3s ease-in-out infinite;
}

/* Subtitle styling */
.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    letter-spacing: 6px;
    text-shadow: 0 0 20px rgba(9, 174, 184, 0.4);
    transform: translateY(30px);
}

/* Tagline */
.hero-tagline {
    font-size: 1.2rem;
    font-weight: 400;
    background: linear-gradient(45deg, #09AEB8, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 3rem;
    letter-spacing: 3px;
    transform: translateY(30px);
}



@keyframes titleShimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

@keyframes titleSweep {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}


/* Section Styles */
.section {
    padding: 4rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background: transparent;
    border-radius: 30px;
    margin-bottom: 4rem;
    /*border: 1px solid rgba(9, 174, 184, 0.2);*/
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #09AEB8, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(50px);
}

/* Services Section */
.services-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
}

.services-intro {
    transform: translateY(50px);
}

.services-intro p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(9, 174, 184, 0.1);
    border: 1px solid rgba(9, 174, 184, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    transform: translateY(50px);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(9, 174, 184, 0.2);
    border-color: #09AEB8;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #09AEB8, #0a7a82);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.service-card h4 {
    font-size: 1.5rem;
    color: #09AEB8;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.what-sets-us-apart {
    margin-top: 4rem;
    transform: translateY(50px);
}

.what-sets-us-apart h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #09AEB8;
    font-weight: 600;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}


.advantage-card {
    background: rgba(9, 174, 184, 0.05);
    border: 1px solid rgba(9, 174, 184, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    transform: translateY(50px);
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(9, 174, 184, 0.2);
    border-color: #09AEB8;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #09AEB8, #0a7a82);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.advantage-card h4 {
    font-size: 1.3rem;
    color: #09AEB8;
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Portfolio */
.portfolio-intro {
    text-align: center;
    margin-bottom: 4rem;
    transform: translateY(50px);
}

.portfolio-intro p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 auto;
}

/* 3D Gallery Container */
.portfolio-3d-gallery {
    perspective: 1400px;
    perspective-origin: center center;
    padding:0;
    padding-top: 4rem;
    overflow: hidden;
}

.gallery-3d-container {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    padding-bottom: 0;
    transform-style: preserve-3d;
    animation: gallery3DFloat 20s ease-in-out infinite;
    width: 100%;    
    justify-content: space-between;
}

@keyframes gallery3DFloat {
    0%, 100% { transform: rotateY(0deg) rotateX(0deg); }
    25% { transform: rotateY(5deg) rotateX(2deg); }
    50% { transform: rotateY(0deg) rotateX(-2deg); }
    75% { transform: rotateY(-5deg) rotateX(2deg); }
}


.portfolio-3d-card {
    flex: 1;            
    min-width: 0;
    height: 550px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform: translateZ(-100px) rotateY(15deg);
    text-align: center;
}

.portfolio-3d-card:nth-child(even) {
    transform: translateZ(-50px) rotateY(-10deg);
}

.portfolio-3d-card:hover {
    transform: translateZ(50px) rotateY(0deg) scale(1.05);
    z-index: 10;
}

.portfolio-3d-card.active {
    transform: translateZ(100px) rotateY(0deg) scale(1.1);
    z-index: 20;
}

.card-3d-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(9, 174, 184, 0.3);
}

.card-3d-front {
    background: linear-gradient(135deg, 
        rgba(9, 174, 184, 0.1) 0%, 
        rgba(5, 6, 15, 0.9) 50%, 
        rgba(9, 174, 184, 0.05) 100%);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
}

.card-3d-back {
    background: linear-gradient(135deg, 
        rgba(9, 174, 184, 0.15) 0%, 
        rgba(5, 6, 15, 0.95) 50%, 
        rgba(9, 174, 184, 0.1) 100%);
    backdrop-filter: blur(20px);
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.portfolio-3d-image {
    width: 100%;
    height: 50%;
    background: linear-gradient(45deg, rgba(9, 174, 184, 0.2), rgba(9, 174, 184, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-3d-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    animation: shimmer3D 3s ease-in-out infinite;
}

@keyframes shimmer3D {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.portfolio-3d-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #09AEB8;
    z-index: 2;
}

.portfolio-3d-placeholder i {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(9, 174, 184, 0.5));
}

.portfolio-3d-placeholder span {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(9, 174, 184, 0.5);
}

.portfolio-3d-content {
    padding: 2rem;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-3d-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #09AEB8;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(9, 174, 184, 0.3);
}

.portfolio-3d-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.tech-stack-3d {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tech-tag-3d {
    background: rgba(9, 174, 184, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(9, 174, 184, 0.3);
    transition: all 0.3s ease;
}

.tech-tag-3d:hover {
    background: rgba(9, 174, 184, 0.3);
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(9, 174, 184, 0.4);
}

.card-3d-back h3 {
    font-size: 2rem;
    color: #09AEB8;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(9, 174, 184, 0.5);
}

.card-3d-back p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.card-3d-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(9, 174, 184, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(9, 174, 184, 0.2);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #09AEB8;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glow-button-3d {
    background: linear-gradient(45deg, #09AEB8, #0a7a82);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.glow-button-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.5s ease;
}

.glow-button-3d:hover::before {
    left: 100%;
}

.glow-button-3d:hover {
    transform: translateZ(10px);
    box-shadow: 0 10px 30px rgba(9, 174, 184, 0.5);
}


.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.portfolio-item {
    background: rgba(9, 174, 184, 0.05);
    border: 1px solid rgba(9, 174, 184, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    transform: translateY(50px);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(9, 174, 184, 0.2);
    border-color: #09AEB8;
}

.portfolio-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, rgba(9, 174, 184, 0.2), rgba(9, 174, 184, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #09AEB8;
}

.portfolio-placeholder i {
    font-size: 3rem;
}

.portfolio-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #09AEB8;
    font-weight: 600;
}

.portfolio-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-stack {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.tech-tag {
    background: rgba(9, 174, 184, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(9, 174, 184, 0.3);
}

.glow-button {
    background: linear-gradient(45deg, #09AEB8, #0a7a82);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.glow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(9, 174, 184, 0.5);
}

.glow-button:active {
    animation: bounce 0.3s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(-3px); }
    50% { transform: translateY(-8px); }
}

/* Mini Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-tile {
    height: 200px;
    background: linear-gradient(45deg, rgba(9, 174, 184, 0.2), rgba(9, 174, 184, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #09AEB8;
    cursor: pointer;
    transition: all 0.5s ease;
    transform: translateY(50px);
    border: 1px solid rgba(9, 174, 184, 0.3);
    position: relative;
    overflow: hidden;
}

.gallery-tile:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(9, 174, 184, 0.3);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 174, 184, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    font-weight: 600;
}

.gallery-tile:hover .gallery-overlay {
    opacity: 1;
}

/* --- Responsive for tablets and mobile --- */
@media screen and (max-width: 1024px) {
    .gallery-3d-container {
        flex-wrap: wrap; /* allow cards to wrap */
        gap: 1.5rem;
        padding: 1rem;
        padding-bottom: 0;
        animation: gallery3DFloatMobile 20s ease-in-out infinite;
        justify-content: center;
    }

    .portfolio-3d-card {
        height: 450px;
        transform: translateZ(0) rotateY(0); /* flatten 3D effect */
        min-width: 300px;
    }

    .portfolio-3d-card:hover {
        transform: translateZ(20px) rotateY(0deg) scale(1.02);
    }
}

@media screen and (max-width: 768px) {
    .portfolio-3d-gallery {
        perspective: 800px;
        padding-top: 2rem;
        padding-bottom:0;
    }

    .gallery-3d-container {
        flex-direction: column; /* stack cards vertically */
        gap: 1rem;
        animation: none;
        padding-bottom: 0;
    }

    .portfolio-3d-card {
        width: 90%;
        height: auto;
        min-height: 400px;
        transform: translateZ(0) rotateY(0); /* remove 3D rotation */
        margin: 0 auto 2rem auto;
    }

    .portfolio-3d-card:hover {
        transform: translateZ(0) rotateY(0) scale(1.02); /* subtle hover */
    }

    .portfolio-3d-content h3 {
        font-size: 1.5rem;
    }

    .portfolio-3d-content p,
    .card-3d-back p {
        font-size: 1rem;
    }

    .card-3d-back h3 {
        font-size: 1.5rem;
    }

    .tech-tag-3d {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    .portfolio-3d-image {
        height: 200px;
    }
}

/* Mobile phones (<480px) */
@media screen and (max-width: 480px) {
    .portfolio-3d-card {
        width: 100%;
        min-height: 400px;
        margin: 0 auto 1.5rem auto;
        padding-bottom: 0;
    }

    .portfolio-3d-content h3 {
        font-size: 1.3rem;
    }

    .portfolio-3d-content p,
    .card-3d-back p {
        font-size: 0.9rem;
    }

    .card-3d-back h3 {
        font-size: 1.3rem;
    }

    .tech-tag-3d {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }

    .portfolio-3d-image {
        height: 180px;
    }
}

/* Mobile-friendly keyframes for subtle rotation */
@keyframes gallery3DFloatMobile {
    0%, 100% { transform: rotateY(0deg) rotateX(0deg); }
    25% { transform: rotateY(2deg) rotateX(1deg); }
    50% { transform: rotateY(0deg) rotateX(-1deg); }
    75% { transform: rotateY(-2deg) rotateX(1deg); }
}


/* Contact */
.contact-content {
    display: grid;
    min-width: 1300px;
    padding: 2rem;
    padding-top: 0;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin: 0 auto;
    align-items: start;
}

.social-icons {
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 2rem;
    transform: translateX(-50px);
}

.social-icon {
    width: 60px;
    height: 60px;
    background: rgba(9, 174, 184, 0.1);
    border: 2px solid rgba(9, 174, 184, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #09AEB8;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(9, 174, 184, 0.2);
    border-color: #09AEB8;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(9, 174, 184, 0.5);
}

.contact-form {
    background: rgba(9, 174, 184, 0.05);
    border: 1px solid rgba(9, 174, 184, 0.2);
    border-radius: 20px;
    width: 100%;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transform: translateY(50px);
}

.form-group {
    margin-bottom: 1.5rem;
    transform: translateY(30px);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #09AEB8;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(9, 174, 184, 0.1);
    border: 1px solid rgba(9, 174, 184, 0.3);
    border-radius: 10px;
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #09AEB8;
    box-shadow: 0 0 20px rgba(9, 174, 184, 0.3);
}

/* Footer */
.footer {
    background: rgba(9, 174, 184, 0.05);
    border-top: 1px solid rgba(9, 174, 184, 0.2);
    padding: 3rem 2rem 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #09AEB8;
    text-shadow: 0 0 10px rgba(9, 174, 184, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .logo{
        width: 50px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 1.8px;
    }

    .hero-tagline {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .services-content,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .testimonials-slider {
        padding: 1rem 0;
    }

    .testimonial-card {
        min-width: 280px;
    }

    .services-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        min-width: auto;
    }
}


/* Mobile: 768px and below */
@media screen and (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-width: 100%;
        margin: 0;
        padding: 0;
        justify-items: center; 
        align-items: center; 
    }

    .social-icons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;  
        gap: 1rem;
        margin: 0;
        margin-top: 2rem;
        transform: translateX(0);
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contact-form {

        width: 100%;
        margin:0 auto;
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .glow-button {
        width: 100%;
        padding: 0.8rem;
        font-size: 1rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(9, 174, 184, 0.1);
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 2rem;
    border-radius: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index:999;
  }

  .hero-content{
    z-index:1;
  }

  .nav-links li {
    width: 100%;
    margin: 0.5rem 0;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    background: rgba(9, 174, 184, 0.2);
    color: #fff;
    box-shadow: inset 0 0 10px rgba(9, 174, 184, 0.5);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-toggle {
    display: block;
  }
}


/* Extra small: 480px and below */
@media screen and (max-width: 480px) {
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .glow-button {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}