.main-page-icon{
    border-radius: 50px;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0d0d1a;
    color: white;
}

/* Hero Section with Fixed Background */
header {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 50%, #0d0d1a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Animated gradient blobs background */
.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: url('./assets/Header Background.png') no-repeat center center/cover;
    background-attachment: fixed;
}

.gradient-blob {
    position: absolute;
    filter: blur(60px);
    opacity: 0.75;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blob 8s infinite ease-in-out;
}

.blob-1 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #9D4EDD, #FF006E);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, #FF006E, #00F5FF);
    top: 50%;
    right: -50px;
    animation-delay: 2s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #00F5FF, #9D4EDD);
    bottom: -100px;
    left: 50%;
    animation-delay: 4s;
}

@keyframes blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    backdrop-filter: blur(2px);
}

.header-content {
    position: relative;
    z-index: 2;
    color: white;
    animation: slideInContent 1.2s ease-out;
}

@keyframes slideInContent {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-text-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.underline-animation {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #8000FF, #FF00CC);
    animation: expandWidth 1.5s ease-out 0.5s forwards;
}

@keyframes expandWidth {
    to {
        width: 100%;
    }
}

/* Glowing title */
header h1.glow {
    font-size: 100px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 10px #FF00CC, 0 0 20px #8000FF;
    animation: glowPulse 2s ease-in-out;
    margin: 0;
    font-weight: 900;
    letter-spacing: 3px;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 10px #FF00CC, 0 0 20px #8000FF;
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 20px #FF00CC, 0 0 40px #8000FF, 0 0 60px #00FF88;
        transform: scale(1.02);
    }
}

/* Floating tagline */
header p.tagline {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1.5s ease 0.2s both;
    font-weight: 300;
    letter-spacing: 1px;
}

header p.tagline .highlight {
    background: linear-gradient(135deg, #FF00CC, #00FF88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* CTA button */
.cta-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    animation: fadeInUp 1.5s ease 0.4s both;
}

header .cta {
    position: relative;
    margin-top: 0;
    padding: 14px 40px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 10;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #9D4EDD, #FF006E, #00F5FF, #9D4EDD);
    background-size: 300% 300%;
    z-index: -1;
    border-radius: 50px;
    animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cta-text {
    position: relative;
    z-index: 1;
    display: inline-block;
}

header .cta:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 204, 0.5), 0 0 20px rgba(128, 0, 255, 0.3);
    letter-spacing: 2px;
}

header .cta:active {
    transform: scale(0.98);
}


/* Scroll Down Arrow */
.scroll-down {
    margin-top: 40px;
    font-size: 1.5rem;
    animation: bounce 2.5s infinite ease-in-out;
    cursor: pointer;
    color: white;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    border-color: #FF00CC;
    color: #FF00CC;
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.5);
}

.scroll-down svg {
    width: 18px;
    height: 18px;
    stroke-width: 3;
}

/* Floating elements in header */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.float-box,
.float-circle {
    position: absolute;
    opacity: 0.1;
    animation: floatAround 8s ease-in-out infinite;
}

.float-box {
    width: 80px;
    height: 80px;
    border: 2px solid #FF00CC;
    border-radius: 10px;
}

.float-circle {
    width: 60px;
    height: 60px;
    border: 2px solid #8000FF;
    border-radius: 50%;
}

.floating-elements .float-box:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-elements .float-box:nth-child(3) {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

.floating-elements .float-circle {
    top: 50%;
    right: 5%;
    animation-delay: 1.5s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(20px, -30px) rotate(10deg);
    }
    66% {
        transform: translate(-20px, 30px) rotate(-10deg);
    }
}

section {
    padding: 80px 10%;
    background: #0d0d1a;
    /* dark background to cover header */
    color: white;
}

section:nth-child(even) {
    background: #1a1a2e;
    /* alternate shades for contrast */
}

.intro,
.moto,
.features,
.team {
    text-align: center;
}

.intro {
    padding: 100px 10%;
    text-align: left;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.intro-text {
    flex: 1 1 50%;
}

.intro-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 8px #FF00CC;
    animation: fadeInLeft 1.5s ease;

}

.intro-title span {
    color: #ffcc00;
}

.intro-tagline {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 500;
    animation: fadeInUp 2s ease;
}

.intro-detail {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeInUp 2.5s ease;
}

.intro-cta {
    background: linear-gradient(90deg, #FF00CC, #8000FF);
    padding: 12px 28px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    animation: fadeInUp 3s ease;
}

.intro-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #8000FF;
}

.intro-image {
    flex: 1 1 40%;
    text-align: center;
    animation: fadeInRight 1.8s ease;
}

.intro-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(128, 0, 255, 0.6);
    transition: all 0.4s ease-in-out;
}

.intro-image img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #FF00CC;
    transition: all 0.4s ease-in-out;
}



/* Team Section */
.team {
    padding: 100px 10%;
    padding-top: 20px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a12 0%, #0f0f1a 30%, #131527 60%, #0d0d18 100%);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: "";
    position: absolute;
    inset: -20% -30% -40% -20%;
    background: radial-gradient(circle at 15% 25%, rgba(128,0,255,0.18), transparent 12%),
                radial-gradient(circle at 85% 75%, rgba(255,0,204,0.15), transparent 15%),
                radial-gradient(circle at 50% 50%, rgba(0,255,200,0.08), transparent 20%);
    pointer-events: none;
    z-index: 0;
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.95; }
    50% { opacity: 1.1; }
}

/* Animated vibrant overlay layer */
.team::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 10% 20%, rgba(128,0,255,0.12), transparent 10%),
                radial-gradient(circle at 90% 80%, rgba(255,0,204,0.1), transparent 12%),
                radial-gradient(circle at 50% 50%, rgba(0,150,255,0.06), transparent 25%);
    mix-blend-mode: screen;
    opacity: 1;
    animation: ambientShift 12s ease-in-out infinite;
}

@keyframes ambientShift {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.95 }
    33% { transform: translateY(-8px) translateX(4px) scale(1.03); opacity: 1.05 }
    66% { transform: translateY(4px) translateX(-4px) scale(0.98); opacity: 1 }
    100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.95 }
}

.section-title {
    font-size: 3.0rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 8px #FF00CC;
}

.section-subtitle {
    font-size: 1.4rem;
    margin-bottom: 60px;
    opacity: 0.8;
}

.team-cards {
    display: flex;
        justify-content: center;
    gap: 120px;
        /* Reduced from 200px */
        flex-wrap: wrap;
        text-decoration: none;
}

@media (max-width: 1100px) {
    .team-cards { gap: 80px; }
}

@media (max-width: 700px) {
    .team-cards { gap: 32px; }
}

.team-card {
    width: 300px;
    height: 420px;
    perspective: 1200px;
    position: relative;
    z-index: 1;
    transition: z-index 0.12s linear;
    perspective-origin: 50% 50%;
}

.team-card:hover,
.team-card.flipped {
    z-index: 20;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.2, 1);
    transform-style: preserve-3d;
    transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
}

.team-card:hover .card-inner {
    transform: rotateY(180deg);
}

.team-card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(128, 0, 255, 0.8), inset 0 0 30px rgba(128,0,255,0.05);
    padding: 18px;
}

.card-front {
    background: linear-gradient(180deg, rgba(26,26,46,0.95), rgba(20,20,36,0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.card-front h3 {
    font-family: 'Times New Roman', Times, serif;
    margin: 15px 15px 5px;
    font-size: 1.6rem;
    text-shadow: 0 0 6px rgba(255,0,204,0.08);
}

.role {
    font-size: 1.2rem;
    opacity: 0.8;
}

.card-front .team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid rgba(255,0,204,0.18);
    background: linear-gradient(135deg, rgba(128,0,255,0.06), rgba(255,0,204,0.04));
    box-shadow: 0 8px 24px rgba(0,0,0,0.45), 0 0 12px rgba(128,0,255,0.12) inset;
}

.card-back {
    background: linear-gradient(135deg, #8000FF, #FF00CC);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.card-back h3 {
    margin: 15px;
}

.card-back p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.skills span {
    display: inline-block;
    margin: 5px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-size: 0.8rem;
}

/* Social Links */
.social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 0 6px rgba(0, 255, 255, 0.4);
    text-decoration: none;
}

.social-links a:hover {
    transform: scale(1.15);
    box-shadow: 0 0 12px currentColor;
}

/* Brand Colors */
.social-links a:nth-child(1):hover {
    color: #1da1f2;
}

/* Twitter */
.social-links a:nth-child(2):hover {
    color: #0077b5;
}

/* LinkedIn */
.social-links a:nth-child(3):hover {
    color: #f5f5f5;
    background: #000;
}

/* GitHub */


/* Moto Section */
.moto {
    background-color: #1a1a2e;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.moto::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(98, 0, 234, 0.3), transparent 70%);
    animation: glow-move 8s infinite linear;
}

@keyframes glow-move {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.moto-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.moto h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #bb86fc;
    text-shadow: 0 0 10px rgba(187, 134, 252, 0.6);
}

.moto p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #ddd;
}

.moto .highlight {
    color: #bb86fc;
    font-weight: bold;
}

.moto .final-line {
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 15px rgba(187, 134, 252, 0.8);
}

.cta-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    background: linear-gradient(45deg, #bb86fc, #7f39fb);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(127, 57, 251, 0.6);
    transition: all 0.3s ease-in-out;
}

.cta-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 35px rgba(127, 57, 251, 0.9);
}

/*---------------------------------------------------------------------------------------*/

/* Portfolio Section */
.portfolio-showcase {
    padding: 100px 10%;
    background: #1a1a2e;
    position: relative;
    overflow: hidden;
}

.portfolio-showcase::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(157, 78, 221, 0.15), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 110, 0.15), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.portfolio-content {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FF00CC, #00FF88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 0, 204, 0.3);
}

/* Decorative colored line under section titles */
.title-line {
    height: 4px;
    width: 90px;
    margin: 12px auto 36px;
    border-radius: 4px;
    background: linear-gradient(90deg, #8000FF 0%, #FF00CC 50%, #00FF88 100%);
    box-shadow: 0 6px 20px rgba(128, 0, 255, 0.14), 0 1px 6px rgba(255, 0, 204, 0.06);
    transform-origin: left center;
    transform: scaleX(0);
    animation: expandLine 700ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.title-line--small {
    width: 60px;
    height: 3px;
}

@keyframes expandLine {
    from { transform: scaleX(0); opacity: 0; }
    to { transform: scaleX(1); opacity: 1; }
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 60px;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid rgba(128, 0, 255, 0.3);
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #8000FF, #FF00CC);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 300px;
    height: 300px;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #FF00CC;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 204, 0.3);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.portfolio-card {
    position: relative;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
}

.portfolio-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.portfolio-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(128, 0, 255, 0.2), rgba(255, 0, 204, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.portfolio-card:hover::before {
    opacity: 1;
}

.portfolio-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(128, 0, 255, 0.4);
    border-color: #FF00CC;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #0d0d1a);
}

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

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

.card-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #8000FF, #FF00CC);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(128, 0, 255, 0.4);
}

.card-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 20px;
    min-height: 60px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    padding: 5px 12px;
    background: rgba(128, 0, 255, 0.2);
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(128, 0, 255, 0.4);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(128, 0, 255, 0.4);
    transform: translateY(-2px);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.view-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(90deg, #8000FF, #FF00CC);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.view-project-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 0, 204, 0.5);
    border-color: #00FF88;
}

.project-stats {
    display: flex;
    gap: 15px;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.stat-item i {
    color: #ffcc00;
}

/* CTA Section */
.portfolio-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: rgba(128, 0, 255, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(128, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.portfolio-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            rgba(128, 0, 255, 0.1),
            transparent 30%);
    animation: rotate 6s linear infinite;
}

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

.portfolio-cta-content {
    position: relative;
    z-index: 1;
}

.portfolio-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FF00CC, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, #FF00CC, #ffcc00);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 204, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 204, 0.5);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .portfolio-showcase {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .filter-tabs {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .portfolio-cta h3 {
        font-size: 1.5rem;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}


/* Process Section */
.process {
    padding: 100px 10%;
    background: #1a1a2e;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(128, 0, 255, 0.1), transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 0, 204, 0.1), transparent 50%);
    pointer-events: none;
}

.process-container {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    align-items: flex-start;
}

.process-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    border-left: 4px solid #8000FF;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(128, 0, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.process-step:hover::before {
    left: 100%;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(128, 0, 255, 0.2);
    border-left-color: #FF00CC;
}

.step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #8000FF;
    min-width: 60px;
    text-shadow: 0 0 10px rgba(128, 0, 255, 0.5);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    color: #FF00CC;
    transform: scale(1.1);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8000FF, #FF00CC);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 204, 0.6);
}

/* Process Visualization */
.process-visual {
    flex: 0 0 400px;
    text-align: center;
}

.visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.visual-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.visual-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8000FF, #FF00CC);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(128, 0, 255, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.visual-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 204, 0.6);
}

.visual-arrow {
    font-size: 1.5rem;
    color: #8000FF;
    animation: bounceHorizontal 2s infinite;
}

.visual-labels {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #bb86fc;
    text-transform: uppercase;
}

.visual-labels span {
    flex: 1;
    text-align: center;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(128, 0, 255, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(128, 0, 255, 0.5);
    }
}

@keyframes bounceHorizontal {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .process-container {
        flex-direction: column;
        gap: 40px;
    }

    .process-visual {
        flex: none;
        width: 100%;
    }

    .visual-container {
        justify-content: space-between;
    }

    .visual-step {
        flex-direction: column;
    }

    .visual-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .step-number {
        min-width: auto;
    }

    .visual-container {
        gap: 5px;
    }

    .visual-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .visual-arrow {
        font-size: 1.2rem;
    }

    .visual-labels {
        font-size: 0.7rem;
    }
}




/*---------------------------------------------------------------------------------------*/

/* Plans Section */
.plans {
    padding: 100px 10%;
    background: #0d0d1a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plans::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(128, 0, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.plans-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* Reduced gap */
    margin-top: 60px;
    flex-wrap: wrap;
}

.plan-card {
    position: relative;
    width: 320px;
    max-width: 100%;
    background: #1a1a2e;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    z-index: 1;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(128, 0, 255, 0.3);
    
}

.plan-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(128, 0, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease-out;
    z-index: -1;
}

.plan-card:hover::before {
    left: 100%;
    transition: left 0.7s ease-in;
}



.plan-card:hover::before {
    animation: shine 2s forwards;
}

.plan-card:not(:hover)::before {
    animation: shineReverse 2s forwards;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes shineReverse {
    0% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}
.plan-header {
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    margin: 15px 0;
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.plan-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

.plan-features {
    padding: 30px 20px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: #00ff99;
    margin-right: 10px;
    font-size: 1.1rem;
}

.plan-footer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
}

.plan-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #8000FF, #FF00CC);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 80%;
}

.plan-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(128, 0, 255, 0.7);
}

.premium-btn {
    background: linear-gradient(90deg, #ffcc00, #ff9900);
}

.premium-btn:hover {
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.7);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #8000FF;
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.premium-badge {
    background: #ffcc00;
    color: #000;
}

.plan-comparison {
    margin-top: 40px;
    padding: 20px;
    background: rgba(128, 0, 255, 0.1);
    border-radius: 10px;
    display: inline-block;
}

.plan-comparison a {
    color: #ffcc00;
    text-decoration: none;
}

.plan-comparison a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .plans-container {
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
    }
    
    .plan-card {
        width: 300px; /* Further reduce width for tablets */
    }
}


/* Contact Section */
.contact {
    padding: 100px 10%;
    background: #0d0d1a;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(128, 0, 255, 0.1), transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(255, 0, 204, 0.1), transparent 50%);
    pointer-events: none;
}

.contact-container {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #ffcc00;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(128, 0, 255, 0.2);
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8000FF, #FF00CC);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.info-text h4 {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 1.1rem;
}

.info-text p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 0 5px 0;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select {
    padding: 15px 0;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select option {
    background: #1a1a2e;
    color: white;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: #8000FF;
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group select:focus+label,
.form-group input:valid+label,
.form-group textarea:valid+label,
.form-group select:valid+label {
    top: -10px;
    font-size: 0.8rem;
    color: #8000FF;
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #8000FF, #FF00CC);
    transition: width 0.3s ease;
}

.form-group input:focus~.input-highlight,
.form-group textarea:focus~.input-highlight,
.form-group select:focus~.input-highlight {
    width: 100%;
}

.form-submit {
    position: relative;
    width: 100%;
    padding: 15px;
    border: none;
    background: linear-gradient(90deg, #8000FF, #FF00CC);
    color: white;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(128, 0, 255, 0.4);
}

.form-submit:active {
    transform: translateY(0);
}

.submit-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #8000FF, #FF00CC);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loader-dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: white;
    border-radius: 50%;
    animation: submitLoader 1.4s infinite ease-in-out both;
}

.loader-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.loader-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes submitLoader {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.form-submit.sending span {
    opacity: 0;
}

.form-submit.sending .submit-loader {
    opacity: 1;
}

.form-status {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.form-status.success {
    opacity: 1;
    transform: translateY(0);
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.form-status.error {
    opacity: 1;
    transform: translateY(0);
    background: rgba(255, 0, 76, 0.2);
    color: #ff004c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        min-width: 100%;
    }
}

/*---------------------------------------------------------------------------------------*/

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-box {
    background: #1a1a2e;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px #8000FF;
}

.site-footer {
    position: relative;
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 50%, #0d0d1a 100%);
    color: white;
    text-align: center;
    padding: 80px 20px 40px;
    overflow: hidden;
}

.site-footer .animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: url("./assets/Header Background.png") no-repeat center center/cover;
    background-attachment: fixed;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    backdrop-filter: blur(2px);
}

.footer-content {
    position: relative;
    z-index: 1;
    animation: slideInContent 1.2s ease-out;
}

.footer-logo {
    border-radius: 20px;
    width: 120px;
    margin-bottom: 15px;
    animation: floatLogo 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.footer-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FF00CC, #00FF88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1.5s ease 0.2s both;
}

.footer-tagline {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-style: italic;
    opacity: 0.9;
    animation: fadeInUp 1.5s ease 0.3s both;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.footer-title {

    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0;
    color: #ffcc00;
    /* accent */
}

.footer-tagline {

    font-size: 1.1rem;
    margin-bottom: 25px;
    font-style: italic;
    opacity: 0.9;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    animation: fadeInUp 1.5s ease 0.4s both;
}

.footer-socials .social-link {
    text-decoration: none;
    font-size: 1.8rem;
    color: #ffcc00;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 204, 0, 0.3);
    background: rgba(255, 204, 0, 0.05);
}

.footer-socials .social-link:hover {
    color: #ffffff;
    border-color: #FF00CC;
    background: rgba(255, 0, 204, 0.15);
    transform: translateY(-5px) scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(255, 0, 204, 0.4);
}

.footer-socials .social-link:active {
    transform: translateY(-5px) scale(1.15) rotate(10deg);
}

.social-tooltip {
    position: absolute;
    bottom: -30px;
    background: linear-gradient(135deg, #8000FF, #FF00CC);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-socials .social-link:hover .social-tooltip {
    opacity: 1;
}

.footer-bottom {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.5s ease 0.5s both;
}

.footer-floats {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.footer-floats .float-box,
.footer-floats .float-circle {
    opacity: 0.08;
}

.footer-floats .float-box:nth-child(1) {
    top: 10%;
    left: 5%;
}

.footer-floats .float-box:nth-child(3) {
    bottom: 10%;
    right: 5%;
}

.footer-floats .float-circle {
    top: 50%;
    left: 3%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Generic hidden state */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.5s ease;
}

/* Visible state triggered by JS */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* If you want directional animations */
.fade-left {
    transform: translateX(-70px);
}

.fade-right {
    transform: translateX(70px);
}

.fade-up {
    transform: translateY(70px);
}

.fade-down {
    transform: translateY(-70px);
}

.fade-left.visible,
.fade-right.visible,
.fade-up.visible,
.fade-down.visible {
    transform: translate(0);
    opacity: 1;
}

/* ===== RIPPLE EFFECT FOR CTA BUTTONS ===== */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: rippleAnimation 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== RESPONSIVE HEADER ADJUSTMENTS ===== */
@media (max-width: 768px) {
    header {
        height: 70vh;
    }
    
    header h1.glow {
        font-size: 60px;
        letter-spacing: 2px;
    }
    
    header p.tagline {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    .cta-container {
        margin-bottom: 30px;
    }
    
    header .cta {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .gradient-blob {
        filter: blur(60px);
    }
    
    .blob-1 {
        width: 250px;
        height: 250px;
    }
    
    .blob-2 {
        width: 200px;
        height: 200px;
    }
    
    .blob-3 {
        width: 150px;
        height: 150px;
    }
    
    .float-box,
    .float-circle {
        opacity: 0.05 !important;
    }
}

@media (max-width: 480px) {
    header {
        height: 100vh;
    }
    
    header h1.glow {
        font-size: 45px;
        letter-spacing: 1px;
    }
    
    header p.tagline {
        font-size: 0.9rem;
    }
    
    header .cta {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .footer-title {
        font-size: 1.8rem;
    }
    
    .footer-socials {
        gap: 15px;
    }
    
    .footer-socials .social-link {
        font-size: 1.5rem;
        width: 45px;
        height: 45px;
    }
}
