:root {
    --midnight-purple: #1A103D;
    --deep-purple: #2A1B5E;
    --electric-purple: #7B3FE4;
    --neon-purple: #9D50FF;
    --moonlight: #E2DAEB;
    --wolf-gray: #A3A3A3;
    --wolf-gold: #FFD700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--midnight-purple);
    color: var(--moonlight);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--deep-purple);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo span {
    color: var(--neon-purple);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--moonlight);
    text-decoration: none;
    display: flex;
    align-items: center;
}


.logo-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 0%;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;

}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--moonlight);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--neon-purple);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-purple);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(45deg, var(--electric-purple), var(--neon-purple));
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(123, 63, 228, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 63, 228, 0.6);
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    text-align: center;
    background: radial-gradient(ellipse at center, var(--deep-purple) 0%, var(--midnight-purple) 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%239D50FF" fill-opacity="0.2"/></svg>');
    opacity: 0.3;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    background: linear-gradient(to right, var(--moonlight), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--electric-purple), var(--wolf-gold));
    border-radius: 2px;
}

.tagline {
    font-size: 1.5rem;
    color: var(--wolf-gray);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--moonlight);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.primary-button {
    background: linear-gradient(45deg, var(--electric-purple), var(--neon-purple));
    color: white;
    padding: 16px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(123, 63, 228, 0.4);
    position: relative;
    overflow: hidden;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(123, 63, 228, 0.6);
}

.primary-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--neon-purple), var(--electric-purple));
    opacity: 0;
    transition: opacity 0.3s;
}

.primary-button:hover::after {
    opacity: 1;
}

.primary-button span {
    position: relative;
    z-index: 1;
}

.secondary-button {
    background-color: transparent;
    color: var(--neon-purple);
    padding: 16px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--neon-purple);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.secondary-button:hover {
    color: var(--moonlight);
    background-color: rgba(157, 80, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(123, 63, 228, 0.2);
}

/* Services Section */
.services {
    padding: 120px 0;
    background-color: var(--deep-purple);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(26, 16, 61, 0.8), transparent);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--moonlight);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--electric-purple), var(--wolf-gold));
    border-radius: 2px;
}

.section-title p {
    color: var(--wolf-gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--midnight-purple);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s, box-shadow 0.4s;
    border: 1px solid rgba(157, 80, 255, 0.1);
    position: relative;
    z-index: 1;
    display: flex;
    height: 700px;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 63, 228, 0.1), rgba(157, 80, 255, 0.05));
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(157, 80, 255, 0.3);
}

.card-header {
    padding: 0px;
    background: linear-gradient(135deg, var(--electric-purple), var(--neon-purple));
    color: white;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: bottom;
    height: 300px;
    
  
}

.image-header {
    position: absolute;
    width: 500px;
    height: 300px;
    overflow: hidden;
    place-items: center;
    display: flex;
    justify-content: center;
    align-items: center;

}
.image-header :hover {
   opacity: 40%;

}


.image-header img {
    max-width: 400px;
    opacity: 30%;




}

.card-header::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.card-header h3 {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    font-weight: 300;
    line-height: 1.2;
    padding-bottom: 10px;

}

.card-header .price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: -10px;
    position: relative;
    font-style: italic;
    z-index: 1;

}

.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 430px;


}

.card-body ul {
    list-style: none;
    margin-bottom: 25px;
}

.card-body ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(226, 218, 235, 0.1);
    display: flex;
    align-items: center;
}

.card-body ul li::before {
    content: '✓';
    color: var(--wolf-gold);
    margin-right: 10px;
    font-weight: bold;
}

.card-body ul li:last-child {
    border-bottom: none;
}

.card-button {
    display: block;
    text-align: center;
    background: linear-gradient(45deg, var(--electric-purple), var(--neon-purple));
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(123, 63, 228, 0.3);
    position: relative;
    bottom: 2px;

}

.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(123, 63, 228, 0.4);
}

/* Instagram Slideshow */
.instagram-section {
    padding: 100px 0;
    background-color: var(--midnight-purple);
    position: relative;
}

.swiper {
    width: 100%;
    height: 400px;
    margin: 40px 0;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
}

.swiper-slide:hover {
    transform: scale(1.02);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background: var(--moonlight);
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: var(--neon-purple);
    opacity: 1;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--midnight-purple), var(--deep-purple));
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    background-color: rgba(157, 80, 255, 0.1);
    border-radius: 15px;
    padding: 40px 20px;
    border: 1px solid rgba(157, 80, 255, 0.2);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    background-color: rgba(157, 80, 255, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--wolf-gold);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-title {
    font-size: 1.3rem;
    color: var(--moonlight);
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background-color: var(--deep-purple);
}

.testimonial-card {
    background-color: var(--midnight-purple);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 20px;
    border-left: 5px solid var(--neon-purple);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(157, 80, 255, 0.2);
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--neon-purple);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    color: var(--moonlight);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--wolf-gray);
    font-size: 0.9rem;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background-color: var(--midnight-purple);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 300px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 16, 61, 0.9), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

/* Footer */
footer {
    background-color: var(--midnight-purple);
    color: white;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(157, 80, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--wolf-gold);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--electric-purple), var(--wolf-gold));
}

.footer-column p {
    color: var(--wolf-gray);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--moonlight);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--neon-purple);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(157, 80, 255, 0.1);
    border-radius: 50%;
    color: var(--moonlight);
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--neon-purple);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(157, 80, 255, 0.1);
    color: var(--wolf-gray);
    font-size: 0.9rem;
}

/* Wolf Head Badge */
.wolf-badge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--electric-purple), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(123, 63, 228, 0.5);
    cursor: pointer;
    z-index: 99;
    transition: all 0.3s;
}

.wolf-badge:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(123, 63, 228, 0.7);
}

.embuh {
    background-color: #000000;
    padding: 100px;
    opacity: 100%;
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .swiper {
        height: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}