:root {
    --primary-color: #FF5F1F;    /* Bright Orange */
    --secondary-color: #8A2BE2;  /* Purple */
    --accent-color: #00CED1;     /* Turquoise */
    --text-color: #FFFFFF;       /* White */
    --bg-color: #1A1A1A;         /* Very Dark Gray (almost black) */
    --gradient-1: linear-gradient(45deg, #FF5F1F, #FF1493); /* Orange to Pink */
    --gradient-2: linear-gradient(45deg, #8A2BE2, #DA70D6); /* Purple to Orchid */
    --gradient-3: linear-gradient(45deg, #00CED1, #20B2AA); /* Turquoise to Light Sea Green */
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background-color: rgba(240, 248, 255, 0.9);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 20px;
    background-color: rgba(240, 248, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.nav {
    float: right;
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0.3;
    animation: gradientShift 10s infinite alternate;
}

@keyframes gradientShift {
    0% { opacity: 0.3; }
    50% { opacity: 0.5; }
    100% { opacity: 0.3; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--text-color);
    animation: fadeInUp 1s ease 0.5s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gradient-3);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 1s both;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.3);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.section {
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-2);
    opacity: 0.05;
    z-index: -1;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--secondary-color);
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-3);
}

.services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
}

.service-item {
    width: 300px;
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background-color: rgba(255,255,255,0.8);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0.1;
    transition: all 0.3s ease;
}

.service-item:hover::before {
    top: 0;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-item i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-item:hover i {
    color: var(--secondary-color);
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-item:hover h3 {
    color: var(--primary-color);
}

.portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 0.9;
}

.portfolio-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.portfolio-overlay p {
    font-size: 16px;
    text-align: center;
    padding: 0 20px;
    color: #FFFFFF;
}

.testimonials {
    margin-top: 50px;
}

.testimonial-item {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background-color: rgba(255,255,255,0.8);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.testimonial-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--accent-color);
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-item .client-name {
    font-weight: bold;
    color: var(--accent-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    background-color: rgba(255,255,255,0.8);
    color: var(--text-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background-color: rgba(255,255,255,1);
    outline: none;
    box-shadow: 0 0 10px rgba(64, 224, 208, 0.5);
}

.contact-form textarea {
    height: 150px;
}

.contact-form button {
    background: var(--gradient-3);
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.3);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.contact-form button:hover::before {
    left: 100%;
}

.footer {
    background-color: rgba(255,255,255,0.9);
    padding: 50px;
    text-align: center;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    color: #4CAF50;
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 5px;
}

.error-message {
    color: #FF5252;
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
    background-color: rgba(255, 82, 82, 0.1);
    border-radius: 5px;
}


body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0.3;
    animation: gradientShift 10s infinite alternate;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gradient-3);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 1s both;
    position: relative;
    overflow: hidden;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--secondary-color);
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-3);
}

.service-item {
    background-color: rgba(138, 43, 226, 0.1);
}

.service-item i {
    color: var(--accent-color);
}

.service-item:hover h3 {
    color: var(--primary-color);
}

.portfolio-overlay {
    background: var(--gradient-2);
}

.testimonial-item {
    background-color: rgba(50, 205, 50, 0.1);
}

.testimonial-item .client-name {
    color: var(--accent-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.contact-form button {
    background: var(--gradient-3);
}

.footer {
    background-color: rgba(138, 43, 226, 0.1);
}

.social-links a {
    color: var(--primary-color);
}

.social-links a:hover {
    color: var(--accent-color);
}


body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

.header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(148, 0, 211, 0.3);
}

.logo {
    font-size: 36px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(148, 0, 211, 0.3);
}

.nav a {
    color: var(--primary-color);
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.nav a::after {
    background: var(--accent-color);
    height: 3px;
}

.hero {
    background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url('hero-image.jpg');
}

.hero::before {
    background: var(--gradient-1);
    opacity: 0.4;
    animation: gradientShift 8s infinite alternate;
}

@keyframes gradientShift {
    0% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
    100% { opacity: 0.4; transform: scale(1); }
}

.hero h1 {
    font-size: 80px;
    color: var(--primary-color);
    text-shadow: 3px 3px 6px rgba(148, 0, 211, 0.5);
    animation: pulsate 2s infinite alternate;
}

@keyframes pulsate {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.cta-button {
    background: var(--gradient-3);
    color: #FFFFFF;
    font-size: 20px;
    padding: 18px 36px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.6);
}

.section h2 {
    font-size: 56px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 255, 0, 0.3);
}

.section h2::after {
    height: 4px;
    background: var(--gradient-3);
    width: 150px;
}

.service-item {
    background-color: rgba(148, 0, 211, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(148, 0, 211, 0.3);
}

.service-item i {
    color: var(--accent-color);
    font-size: 56px;
}

.portfolio-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-overlay {
    background: var(--gradient-2);
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 0.95;
}

.testimonial-item {
    background-color: rgba(0, 255, 0, 0.1);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.3);
}

.contact-form input,
.contact-form textarea {
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 15px rgba(148, 0, 211, 0.5);
    transform: scale(1.02);
}

.contact-form button {
    background: var(--gradient-3);
    font-size: 20px;
    padding: 15px 30px;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.contact-form button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.6);
}

.footer {
    background-color: rgba(148, 0, 211, 0.1);
    border-top: 4px solid var(--primary-color);
}

.social-links a {
    color: var(--primary-color);
    font-size: 28px;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-5px) scale(1.2);
}


body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

.header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.5);
}

.logo {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 3px 3px 6px rgba(255, 0, 255, 0.5);
}

.nav a {
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.nav a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

.nav a::after {
    background: var(--accent-color);
    height: 3px;
    box-shadow: 0 0 10px var(--accent-color);
}

.hero {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('hero-image.jpg');
}

.hero::before {
    background: var(--gradient-1);
    opacity: 0.3;
    animation: gradientShift 10s infinite alternate;
}

@keyframes gradientShift {
    0% { opacity: 0.3; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.5; transform: scale(1.1) rotate(5deg); }
    100% { opacity: 0.3; transform: scale(1) rotate(0deg); }
}

.hero h1 {
    font-size: 96px;
    font-weight: 900;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 4px 4px 8px rgba(0, 255, 255, 0.5);
    animation: glowPulsate 2s infinite alternate;
}

@keyframes glowPulsate {
    0% { text-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3), 0 0 30px rgba(0, 255, 255, 0.1); }
    100% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3); }
}

.cta-button {
    background: var(--gradient-3);
    color: var(--bg-color);
    font-size: 24px;
    font-weight: 800;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(255, 255, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    z-index: 1;
    transition: all 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 255, 0, 0.8);
}

.section {
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-2);
    opacity: 0.05;
    z-index: -1;
    animation: backgroundShift 15s infinite alternate;
}

@keyframes backgroundShift {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(5deg); }
}

.section h2 {
    font-size: 64px;
    font-weight: 900;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 3px 3px 6px rgba(255, 255, 0, 0.5);
}

.section h2::after {
    height: 5px;
    background: var(--gradient-3);
    width: 200px;
    box-shadow: 0 0 10px var(--accent-color);
}

.service-item {
    background: rgba(255, 0, 255, 0.1);
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.service-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.4);
}

.service-item i {
    font-size: 72px;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-item {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
    overflow: hidden;
}

.portfolio-overlay {
    background: var(--gradient-2);
    backdrop-filter: blur(5px);
}

.testimonial-item {
    background: rgba(0, 255, 255, 0.1);
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.testimonial-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.4);
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    transform: scale(1.02);
}

.contact-form button {
    background: var(--gradient-3);
    color: var(--bg-color);
    font-size: 24px;
    font-weight: 800;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(255, 255, 0, 0.4);
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 255, 0, 0.6);
}

.footer {
    background: rgba(255, 0, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 4px solid var(--primary-color);
}

.social-links a {
    color: var(--text-color);
    font-size: 32px;
    margin: 0 20px;
    transition: all 0.4s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-10px) scale(1.3);
    text-shadow: 0 0 20px var(--accent-color);
}


@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

.header {
    background: rgba(18, 0, 56, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    border-bottom: 2px solid var(--primary-color);
}

.logo {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-1);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 5s ease infinite, neon-glow 1.5s ease-in-out infinite alternate;
}

@keyframes neon-glow {
    from {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px var(--primary-color), 0 0 35px var(--primary-color), 0 0 40px var(--primary-color), 0 0 50px var(--primary-color), 0 0 75px var(--primary-color);
    }
    to {
        text-shadow: 0 0 2.5px #fff, 0 0 5px #fff, 0 0 7.5px #fff, 0 0 10px var(--primary-color), 0 0 17.5px var(--primary-color), 0 0 20px var(--primary-color), 0 0 25px var(--primary-color), 0 0 37.5px var(--primary-color);
    }
}

.nav a {
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-3);
    transition: all 0.3s ease;
}

.nav a:hover::before {
    left: 0;
}

.nav a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

.hero {
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0.3;
    animation: gradient-animation 15s ease infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 120px;
    font-weight: 900;
    background: var(--gradient-2);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 5s ease infinite, floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translate(0, 0px); }
    50% { transform: translate(0, 15px); }
    100% { transform: translate(0, -0px); }
}

.cta-button {
    background: var(--gradient-3);
    background-size: 300% 300%;
    color: var(--bg-color);
    font-size: 28px;
    font-weight: 800;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(255, 255, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: gradient-animation 5s ease infinite;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    z-index: 1;
    transition: all 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 255, 0, 0.8);
}

.section {
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-2);
    opacity: 0.05;
    z-index: -1;
    animation: gradient-animation 15s ease infinite;
}

.section h2 {
    font-size: 72px;
    font-weight: 900;
    background: var(--gradient-3);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 5s ease infinite, neon-glow 1.5s ease-in-out infinite alternate;
}

.service-item {
    background: rgba(255, 0, 255, 0.1);
    border: 3px solid;
    border-image: var(--gradient-1) 1;
    border-radius: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.service-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.4);
}

.service-item i {
    font-size: 72px;
    background: var(--gradient-3);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 5s ease infinite;
}

.portfolio-item {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 255, 255, 0.5);
}

.portfolio-overlay {
    background: var(--gradient-2);
    backdrop-filter: blur(5px);
}

.testimonial-item {
    background: rgba(0, 255, 255, 0.1);
    border: 3px solid;
    border-image: var(--gradient-2) 1;
    border-radius: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.testimonial-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.4);
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    transform: scale(1.02);
}

.contact-form button {
    background: var(--gradient-3);
    background-size: 300% 300%;
    color: var(--bg-color);
    font-size: 24px;
    font-weight: 800;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(255, 255, 0, 0.4);
    transition: all 0.3s ease;
    animation: gradient-animation 5s ease infinite;
}

.contact-form button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 255, 0, 0.6);
}

.footer {
    background: rgba(255, 0, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 4px solid;
    border-image: var(--gradient-1) 1;
}

.social-links a {
    color: var(--text-color);
    font-size: 36px;
    margin: 0 20px;
    transition: all 0.4s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-10px) scale(1.3);
    text-shadow: 0 0 20px var(--accent-color);
}

/* Add some particle effects */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
body, html {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.header {
    background: rgba(26, 26, 26, 0.8); /* Slightly transparent dark background */
}

.logo {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-button {
    background: var(--gradient-1);
}

.section h2 {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-item {
    background: rgba(138, 43, 226, 0.1); /* Slight purple tint */
    border: 2px solid var(--secondary-color);
}

.portfolio-overlay {
    background: var(--gradient-3);
}


body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

.header {
    background: rgba(26, 26, 26, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav a {
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav a:hover {
    color: var(--accent-color);
}

.hero {
    background-image: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)), url('hero-image.jpg');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 72px;
    font-weight: 900;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-button {
    background: var(--gradient-1);
    color: var(--text-color);
    font-size: 18px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 95, 31, 0.4);
}

.section h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    margin-bottom: 30px;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-color);
}

.service-item {
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

.service-item i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-overlay {
    background: var(--gradient-3);
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 0.9;
}

.testimonial-item {
    background: rgba(0, 206, 209, 0.1);
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 206, 209, 0.2);
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--secondary-color);
    color: var(--text-color);
    border-radius: 5px;
}

.contact-form button {
    background: var(--gradient-1);
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 95, 31, 0.4);
}

.footer {
    background: rgba(26, 26, 26, 0.9);
    padding: 50px 0;
}

.social-links a {
    color: var(--text-color);
    font-size: 24px;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}