@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');



* {

    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    box-sizing: border-box;

}



html::-webkit-scrollbar {

    display: none; /* Chrome, Safari, Opera */

}



img {

    width: 100%;

    display: flex;

}



a {

    text-decoration: none;

}



body {

    font-family: 'Poppins', sans-serif;

    background-color: #1b1818;

    

}

/* Matrix effect title */

.matrix-title {
    font-size: 5rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
}

.char {
    display: inline-block;
    color: #00abf0;
    text-shadow: 
        0 0 10px #00abf0,
        0 0 20px #00abf0,
        0 0 30px #00abf0;
    transition: all 0.3s ease;
    animation: glow 2s ease-in-out infinite alternate;
}

.char.final {
    color: #fff;
    text-shadow: 
        0 0 10px #00abf0,
        0 0 20px #00abf0,
        0 0 30px #00abf0;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px #00abf0,
            0 0 20px #00abf0,
            0 0 30px #00abf0;
    }
    to {
        text-shadow: 
            0 0 20px #00abf0,
            0 0 30px #00abf0,
            0 0 40px #00abf0;
    }
}

.matrix-container {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .matrix-title {
        font-size: 3rem;
    }
}
/* Navigation Styles */
.nav {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    position: relative;
    z-index: 100;
  }
  
  #logo {
    font-size: 2rem;
    color: #ededed;
  }
  
  .hamburger {
    display: none;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
  }
  
  /* NAV LINKS - desktop default */
  .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
  }
  
  .link a {
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .link a::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: #1d4ed8;
    transition: all 0.3s ease;
  }
  
  .link a:hover::after {
    width: 70%;
  }
  
  .nav img {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    object-fit: cover;
  }
  
  /* === MOBILE VERSION === */
  @media screen and (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background-color: #0F172A;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      padding: 6rem 2rem;
      gap: 2rem;
      transition: right 0.4s ease;
    }
  
    .nav-links.active {
      right: 0;
      display: flex;
    }
  
    .nav {
      flex-wrap: wrap;
    }
  
    .nav img {
      display: none;
    }
  }
  


/* Header Styles */

header {

    width: 100%;

    height: 100vh;

    background-color: #0000;

    color: #fff;

}



section {

    min-height: 100vh;

    padding: 10rem 9% 2rem;

}



header #particles {

    position: absolute;

    width: 100%;

    height: 100%;

    top: 0;

    left: 0;

}



header .info-text {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 0.8rem;

    height: 100vh;

    z-index: 1;

}



header .info-text h1 {

    font-size: 5rem;

    font-weight: 500;

    font-family: 'Poppins', sans-serif;

}



header .info-text .scroll {
    position: absolute;
    bottom: 20%;
    left: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    animation: bounce 2s infinite;
}


header .info-text .scroll:hover {
    opacity: 0.7;
    color: #00abf0;
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}





/* About Section */

#about {

    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);

    position: relative;

    overflow: hidden;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

}



/* Animated background effect */

#about::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: 

        radial-gradient(circle at 20% 30%, rgba(29, 78, 216, 0.15) 0%, transparent 70%),

        radial-gradient(circle at 80% 70%, rgba(0, 171, 240, 0.15) 0%, transparent 70%);

    animation: gradientMove 15s ease infinite alternate;

}



@keyframes gradientMove {

    0% { transform: rotate(0deg) scale(1); }

    100% { transform: rotate(10deg) scale(1.1); }

}



.about-content {

    max-width: 1400px;

    margin: 0 2rem;

    padding: 3rem;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 4rem;

    position: relative;

    z-index: 1;

}



.about-text {

    padding-right: 2rem;

}



.about-text h1 {

    font-size: 4rem;

    font-weight: 700;

    margin-bottom: 2rem;

    background: linear-gradient(45deg, #00abf0, #1d4ed8);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

    position: relative;

    display: inline-block;

}



.about-text h1::after {

    content: '';

    position: absolute;

    left: 0;

    bottom: -10px;

    width: 100px;

    height: 4px;

    background: linear-gradient(90deg, #00abf0, transparent);

    transition: width 0.3s ease;

}



.about-text:hover h1::after {

    width: 200px;

}



.about-text p {

    font-size: 1.1rem;

    color: #94A3B8;

    line-height: 1.8;

    margin-bottom: 2.5rem;

}



.about-stats {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 2rem;

}



.stat-card {

    background: rgba(255, 255, 255, 0.03);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 20px;

    padding: 2rem;

    transition: all 0.3s ease;

}



.stat-card:hover {

    transform: translateY(-10px);

    background: rgba(255, 255, 255, 0.05);

    border-color: rgba(0, 171, 240, 0.3);

}



.stat-number {

    font-size: 2.5rem;

    font-weight: 700;

    color: #00abf0;

    margin-bottom: 0.5rem;

    display: block;

}



.stat-label {

    color: #CBD5E1;

    font-size: 1rem;

}



.about-cta {

    display: flex;

    gap: 1.5rem;

    margin-top: 3rem;

}



.cta-button {

    padding: 1rem 2rem;

    font-size: 1rem;

    border-radius: 30px;

    transition: all 0.3s ease;

    position: relative;

    overflow: hidden;

}



.cta-primary {

    background: linear-gradient(45deg, #00abf0, #1d4ed8);

    color: white;

    border: none;

}



.cta-secondary {

    background: transparent;

    color: #00abf0;

    border: 2px solid #00abf0;

}



.cta-button::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: linear-gradient(

        90deg,

        transparent,

        rgba(255, 255, 255, 0.2),

        transparent

    );

    transition: left 0.5s ease;

}



.cta-button:hover::before {

    left: 100%;

}



.cta-button:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

}



/* Aggiungi questo nuovo CSS per il logo */

.about-logo {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

}



.about-logo .circle-container {

    width: 400px;

    height: 400px;

    position: relative;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.03);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.05);

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    transition: all 0.3s ease;

}



.about-logo .circle-container::before {

    content: '';

    position: absolute;

    inset: -10px;

    background: conic-gradient(from 0deg at 50% 50%, transparent, #00abf0, transparent);

    animation: rotate 4s linear infinite;

}



.about-logo .circle-container::after {

    content: '';

    position: absolute;

    inset: 3px;

    background: #0F172A;

    border-radius: 50%;

    z-index: 1;

}



.about-logo .logo-content {

    position: relative;

    z-index: 2;

    font-size: 4rem;

    font-weight: 700;

    background: linear-gradient(45deg, #00abf0, #1d4ed8);

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}




@keyframes rotate {

    0% { transform: rotate(0deg); }

    100% { transform: rotate(360deg); }

}



/* Modifica responsive */

@media screen and (max-width: 1024px) {

    .about-logo .circle-container {

        width: 300px;

        height: 300px;

    }

    

    .about-logo .logo-content {

        font-size: 3rem;

    }

}



@media screen and (max-width: 768px) {

    .about-logo {

        margin-top: 2rem;

    }

    

    .about-logo .circle-container {

        width: 250px;

        height: 250px;

    }

    

    .about-logo .logo-content {

        font-size: 2.5rem;

    }

}





/* Responsive Design */

@media screen and (max-width: 1024px) {

    .about-content {

        grid-template-columns: 1fr;

        gap: 2rem;

    }



    .about-text {

        padding-right: 0;

    }



    .about-text h1 {

        font-size: 3rem;

    }

}



@media screen and (max-width: 768px) {

    .about-stats {

        grid-template-columns: 1fr;

    }



    .about-text h1 {

        font-size: 2.5rem;

    }



    .about-cta {

        flex-direction: column;

    }



    .cta-button {

        width: 100%;

        text-align: center;

    }

}


/* Projects Section */

/* Projects Section - Redesigned */
#projects {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 9% 3rem;
}

/* Animated background effect */
#projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 20%, rgba(29, 78, 216, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 30% 80%, rgba(0, 171, 240, 0.15) 0%, transparent 70%);
    animation: gradientMove 15s ease infinite alternate;
    z-index: 0;
}

#projects .heading {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

#projects .heading h1 {
    font-size: 3.2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #00abf0, #1d4ed8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#projects .heading h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00abf0, transparent);
    animation: glowingLine 2s infinite alternate;
}

/* Featured Projects */
.featured-projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.project-card {
    width: 320px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease-out;
    position: relative;
    transform: perspective(1000px) rotateX(0deg);
}

.project-card:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 171, 240, 0.2);
    border-color: rgba(0, 171, 240, 0.4);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.tech-stack {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-stack span {
    background: rgba(0, 171, 240, 0.3);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
}

.project-info {
    padding: 1.5rem;
    text-align: left;
}

.project-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.project-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00abf0, transparent);
    transition: width 0.3s ease;
}

.project-card:hover .project-info h3::after {
    width: 80px;
}

.project-info p {
    color: #94A3B8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.view-project, .demo-btn {
    padding: 0.7rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-project {
    background: transparent;
    color: #00abf0;
    border: 1px solid #00abf0;
}

.demo-btn {
    background: linear-gradient(45deg, #00abf0, #1d4ed8);
    color: white;
    border: none;
}

.view-project:hover, .demo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 171, 240, 0.3);
}

.view-project:hover {
    background: rgba(0, 171, 240, 0.1);
}

/* More Projects Section */
.more-projects {
    position: relative;
    z-index: 1;
    margin-top: 4rem;
}

.more-projects h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #fff;
    text-align: center;
    background: linear-gradient(45deg, #00abf0, #1d4ed8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.projects-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-container {
    width: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 300px;
}

.slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.slide:hover img {
    transform: scale(1.05);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.slide:hover .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.slide-content p {
    margin-bottom: 1rem;
    color: #ccc;
}

.slide-link {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 171, 240, 0.3);
    color: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slide-link:hover {
    background: rgba(0, 171, 240, 0.5);
    transform: translateY(-3px);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border: none;
    transition: all 0.3s ease;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-nav:hover {
    background: linear-gradient(45deg, #00abf0, #1d4ed8);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive design for projects section */
@media screen and (max-width: 1024px) {
    .featured-projects {
        gap: 1.5rem;
    }
    
    .project-card {
        width: 280px;
    }
    
    .projects-slider {
        max-width: 90%;
    }
}

@media screen and (max-width: 768px) {
    #projects .heading h1 {
        font-size: 2.5rem;
    }
    
    .featured-projects {
        flex-direction: column;
        align-items: center;
    }
    
    .project-card {
        width: 100%;
        max-width: 400px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .prev {
        left: 10px;
    }
    
    .next {
        right: 10px;
    }
}

@media screen and (max-width: 480px) {
    #projects {
        padding: 5rem 5% 2rem;
    }
    
    .project-image {
        height: 180px;
    }
    
    .more-projects h2 {
        font-size: 1.8rem;
    }
    
    .slider {
        height: 250px;
    }
}


/* Services Section */

#services {

    background-color: #141622;

    position: relative;

    overflow: hidden;

    padding: 6rem 9% 3rem;

}



/* Effetto di sfondo dinamico */

#services::before {

    content: '';

    position: absolute;

    width: 180%;

    height: 180%;

    background: radial-gradient(circle at center, rgba(29, 78, 216, 0.15) 0%, transparent 50%);

    opacity: 0.08;

    top: -40%;

    left: -40%;

    animation: pulseBackground 8s infinite alternate;

}



@keyframes pulseBackground {

    0% { transform: scale(1); opacity: 0.1; }

    100% { transform: scale(1.1); opacity: 0.2; }

}



#services .heading {

    text-align: center;

    margin-bottom: 4rem;

    position: relative;

}



#services .heading h1 {

    font-size: 3.2rem;

    font-weight: 700;

    color: #fff;

    position: relative;

    display: inline-block;

    padding-bottom: 1rem;

    text-transform: uppercase;

    letter-spacing: 2px;

    background: linear-gradient(45deg, #1d4ed8, #60a5fa);

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}



#services .heading h1::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 50%;

    transform: translateX(-50%);

    width: 60%;

    height: 3px;

    background: linear-gradient(90deg, transparent, #1d4ed8, transparent);

    animation: glowingLine 2s infinite alternate;

}



@keyframes glowingLine {

    0% { width: 60%; }

    100% { width: 100%; }

}



/* Layout delle card */

#services .feature-cards {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 2rem;

    padding: 2rem;

}



/* Effetto 3D e Glow sulle Card */

#services .card {

    width: 320px;

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 18px;

    padding: 2.5rem;

    text-align: center;

    transition: all 0.4s ease-out;

    position: relative;

    overflow: hidden;

    transform: perspective(1000px) rotateX(0deg);

}



/* Glow effect on hover */

#services .card::before {

    content: '';

    position: absolute;

    inset: 0;

    background: linear-gradient(45deg, rgba(29, 78, 216, 0.2), transparent);

    opacity: 0;

    transition: opacity 0.3s ease-in-out;

}



#services .card:hover::before {

    opacity: 1;

}



#services .card i {

    font-size: 4rem;

    background: linear-gradient(45deg, #1d4ed8, #60a5fa);

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    margin-bottom: 1.5rem;

    transition: transform 0.4s ease-in-out;

}



/* Effetto di movimento 3D per le icone */

#services .card:hover i {

    transform: translateY(-8px) scale(1.2);

}



/* Titolo animato */

#services .card h1 {

    font-size: 1.8rem;

    color: #fff;

    margin-bottom: 1rem;

    position: relative;

    padding-bottom: 1rem;

    transition: color 0.3s ease-in-out;

}



#services .card h1::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 50%;

    transform: translateX(-50%);

    width: 50px;

    height: 2px;

    background: linear-gradient(90deg, transparent, #1d4ed8, transparent);

    transition: width 0.3s ease-in-out;

}



#services .card:hover h1::after {

    width: 100px;

}



#services .card p {

    color: #ccc;

    font-size: 1.1rem;

    line-height: 1.6;

    transition: color 0.3s ease;

}



#services .card:hover p {

    color: #fff;

}



/* Glow neon border effect */

#services .card:hover {

    transform: translateY(-10px) rotateX(5deg);

    box-shadow: 0 0 20px rgba(29, 78, 216, 0.5);

    border-color: rgba(29, 78, 216, 0.4);

}



/* Responsive Design */

@media screen and (max-width: 1024px) {

    #services .feature-cards {

        flex-wrap: wrap;

        justify-content: center;

    }



    #services .card {

        width: 90%;

    }

}



@media screen and (max-width: 768px) {

    #services .feature-cards {

        flex-direction: column;

        align-items: center;

    }



    #services .card {

        width: 100%;

    }

}



/* Mail Section */
.email-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 1rem;
    display: none;
    animation: fadeIn 0.3s ease-out;
    transition: all 0.3s ease;
}

.email-box p {
    display: flex;
    align-items: center;
    gap: 8px;
}

#copy-icon {
    cursor: pointer;
    color: #00abf0;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

#copy-icon:hover {
    color: #1d4ed8;
}

#copy-confirm {
    display: none;
    font-size: 0.8rem;
    color: #00ff00;
    margin-top: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Footer Styles */

/* Footer Modern Style */

footer {

    position: relative;

    background: linear-gradient(135deg, #18181B 0%, #1f2937 100%);

    padding: 5rem 0 2rem;

    overflow: hidden;

}



footer::before {

    content: '';

    position: absolute;

    width: 200%;

    height: 200%;

    background: radial-gradient(circle at center, #1d4ed8 0%, transparent 50%);

    opacity: 0.05;

    top: -50%;

    left: -50%;

    animation: rotateBackground 20s linear infinite;

}



.footer-content {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 2rem;

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

}



.footer-logo {

    font-size: 2.5rem;

    color: #fff;

    margin-bottom: 2rem;

    background: linear-gradient(45deg, #1d4ed8, #60a5fa);

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    position: relative;

}



.footer-logo::after {

    content: '';

    position: absolute;

    width: 50px;

    height: 2px;

    background: linear-gradient(90deg, transparent, #1d4ed8, transparent);

    bottom: -10px;

    left: 50%;

    transform: translateX(-50%);

}



.footer-links {

    display: flex;

    gap: 3rem;

    margin: 2rem 0;

    flex-wrap: wrap;

    justify-content: center;

}



.footer-links a {

    color: #ccc;

    font-size: 1rem;

    transition: all 0.3s ease;

    position: relative;

    padding: 0.5rem 1rem;

    border-radius: 8px;

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(10px);

}



.footer-links a:hover {

    color: #fff;

    background: rgba(29, 78, 216, 0.2);

    transform: translateY(-3px);

}



.footer-social {

    display: flex;

    gap: 1.5rem;

    margin: 2rem 0;

}



.footer-social a {

    color: #fff;

    background: rgba(29, 78, 216, 0.2);

    width: 40px;

    height: 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all 0.3s ease;

    position: relative;

    overflow: hidden;

}



.footer-social a::before {

    content: '';

    position: absolute;

    width: 100%;

    height: 100%;

    background: linear-gradient(45deg, #1d4ed8, #60a5fa);

    opacity: 0;

    transition: opacity 0.3s ease;

}



.footer-social a:hover::before {

    opacity: 1;

}



.footer-social a i {

    font-size: 1.2rem;

    position: relative;

    z-index: 1;

}



.footer-social a:hover {

    transform: translateY(-5px);

    box-shadow: 0 5px 15px rgba(29, 78, 216, 0.3);

}



.footer-bottom {

    margin-top: 3rem;

    padding-top: 2rem;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    width: 100%;

    text-align: center;

}



.footer-bottom p {

    color: #ccc;

    font-size: 0.9rem;

}



@media screen and (max-width: 768px) {

    .footer-links {

        gap: 1.5rem;

    }

    

    .footer-links a {

        padding: 0.5rem;

        font-size: 0.9rem;

    }

    

    .footer-logo {

        font-size: 2rem;

    }

}



@keyframes rotateBackground {

    0% { transform: rotate(0deg); }

    100% { transform: rotate(360deg); }

}



/* Scroll Top Button */

.scroll-top {

    display: none;

    position: fixed;

    bottom: 20px;

    right: 20px;

    background: linear-gradient(45deg, #1d4ed8, #60a5fa);

    color: #fff;

    border: none;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);

    padding: 16px 18px;

    border-radius: 50%;

    cursor: pointer;

    font-size: 20px;

    transition: all 0.3s ease;

}



.scroll-top:hover {

    transform: translateY(-5px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);

}



/* Animations */

@keyframes cardEntrance {

    from {

        opacity: 0;

        transform: translateY(100px);

        filter: blur(10px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

        filter: blur(0);

    }

}



/* Responsive Design */

@media screen and (max-width: 1024px) {

    section {

        padding: 8rem 5% 2rem;

    }



    .about-content h1 {

        font-size: 4rem;

    }



    footer {

        grid-template-columns: repeat(2, 1fr);

    }

}



@media screen and (max-width: 768px) {

    nav {

        padding: 1.5rem;

    }



    .nav-links {

        display: none;

    }



    .about-content h1 {

        font-size: 3rem;

    }



    footer {

        grid-template-columns: 1fr;

        text-align: center;

    }



    footer .column h4::after {

        left: 50%;

        transform: translateX(-50%);

    }



    footer .column .socials {

        justify-content: center;

    }

}



@media screen and (max-width: 480px) {

    #logo {

        font-size: 1.5rem;

    }



    header .info-text h1 {

        font-size: 3rem;

    }



    .about-content {

        padding: 1.5rem;

    }



    #features .card {

        min-width: 100%;

    }

}
