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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #fff;
    scroll-behavior: smooth;
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="8" fill="%236a0dad" opacity="0.5"/><circle cx="10" cy="10" r="2" fill="%23fff"/></svg>'), auto;
}

/* Custom cursor for interactive elements */
a,
button,
.clickable {
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%236a0dad" opacity="0.7"/><circle cx="12" cy="12" r="3" fill="%23fff"/></svg>'), pointer;
}

/* Modern Mobile Navigation */

#hamburger {
    display: none;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    position: relative;
}

#hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

#hamburger span:nth-child(1) {
    top: 0;
}

#hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

#hamburger span:nth-child(3) {
    bottom: 0;
}

#hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

#hamburger.active span:nth-child(2) {
    opacity: 0;
}

#hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.second-nav {
    display: none;
    list-style: none;
    flex-direction: column;
    top: 80px;
    width: 90%;
    max-width: 400px;
    height: max-content;
    position: fixed;
    z-index: 9999;
    background: rgba(30, 30, 30, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(106, 13, 173, 0.3);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    overflow: hidden;
}

.second-nav.active-second-nav {
    display: flex;
    animation: slideDownMobile 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slideDownMobile {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.second-nav-li {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    width: 100%;
    height: max-content;
    text-align: center;
    font-size: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.second-nav-li:last-child {
    border-bottom: none;
}

.second-nav-li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(106, 13, 173, 0.2), transparent);
    transition: width 0.4s ease;
    z-index: -1;
}

.second-nav-li:hover::before {
    width: 100%;
}

.second-nav-li:hover {
    color: #6a0dad;
    transform: translateX(5px);
}

.second-nav-li a {
    color: inherit;
    text-decoration: none;
    display: block;
    padding: 18px 0;
    width: 100%;
}

@media (max-width: 768px) {
    #hamburger {
        display: inline-block;
    }

    #first-nav {
        display: none;
    }
}

/* Smooth page transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Enhanced typography and contrast */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

p {
    line-height: 1.7;
    letter-spacing: 0.3px;
}

/* Loading optimization */
img {
    /* loading: lazy; */
    transition: transform 0.3s ease, filter 0.3s ease;
}

img:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.75s ease, visibility 0.75s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    --path: #6a0dad;
    --dot: #5628ee;
    --duration: 3s;
    width: 44px;
    height: 44px;
    position: relative;
}

.loader:before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    display: block;
    background: var(--dot);
    top: 37px;
    left: 19px;
    transform: translate(-18px, -18px);
    animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader svg {
    display: block;
    width: 100%;
    height: 100%;
}

.loader svg rect,
.loader svg polygon,
.loader svg circle {
    fill: none;
    stroke: var(--path);
    stroke-width: 10px;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.loader svg polygon {
    stroke-dasharray: 145 76 145 76;
    stroke-dashoffset: 0;
    animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader svg rect {
    stroke-dasharray: 192 64 192 64;
    stroke-dashoffset: 0;
    animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader svg circle {
    stroke-dasharray: 150 50 150 50;
    stroke-dashoffset: 75;
    animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader.triangle {
    width: 48px;
}

.loader.triangle:before {
    left: 21px;
    transform: translate(-10px, -18px);
    animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

@keyframes pathTriangle {
    33% {
        stroke-dashoffset: 74;
    }

    66% {
        stroke-dashoffset: 147;
    }

    100% {
        stroke-dashoffset: 221;
    }
}

@keyframes dotTriangle {
    33% {
        transform: translate(0, 0);
    }

    66% {
        transform: translate(10px, -18px);
    }

    100% {
        transform: translate(-10px, -18px);
    }
}

@keyframes pathRect {
    25% {
        stroke-dashoffset: 64;
    }

    50% {
        stroke-dashoffset: 128;
    }

    75% {
        stroke-dashoffset: 192;
    }

    100% {
        stroke-dashoffset: 256;
    }
}

@keyframes dotRect {
    25% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(18px, -18px);
    }

    75% {
        transform: translate(0, -36px);
    }

    100% {
        transform: translate(-18px, -18px);
    }
}

@keyframes pathCircle {
    25% {
        stroke-dashoffset: 125;
    }

    50% {
        stroke-dashoffset: 175;
    }

    75% {
        stroke-dashoffset: 225;
    }

    100% {
        stroke-dashoffset: 275;
    }
}


/* Updated Header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    z-index: 100;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    header {
        padding: 10px 3%;
    }
    
    nav {
        padding: 8px;
    }
    
    .logo {
        font-size: 1.5em;
        margin-left: 10px;
    }
}

header.scrolled {
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    background: transparent;
    position: relative;
    outline: 1.8px solid #444;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;

}

.logo {
    font-size: 1.8em;
    text-decoration: none;
    margin-left: 20px;
    letter-spacing: 2px;
    font-family: "Roboto Slab", sans-serif;
    font-weight: 500;
    font-style: normal;
    background: linear-gradient(135deg, #4d40c4, #520dad, #7c3aed);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;

}


nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    padding: 5px 20px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link span {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
    z-index: 1;

}


.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: white;
    transition: width 0.3s ease;
    z-index: 0;
    border-radius: 25px;

}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: black;
}

.nav-link:hover span {
    transform: translateX(5px);
}




/* Hero Section */
.hero {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 0 20px;
    position: relative;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.4), rgba(26, 26, 26, 0.9)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        padding-top: 80px;
        height: auto;
        min-height: 100vh;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(106, 13, 173, 0.1), rgba(86, 40, 238, 0.1));
    animation: gradientShift 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientShift {

    0%,
    100% {
        background: linear-gradient(45deg, rgba(106, 13, 173, 0.1), rgba(86, 40, 238, 0.1));
    }

    50% {
        background: linear-gradient(45deg, rgba(86, 40, 238, 0.1), rgba(106, 13, 173, 0.1));
    }
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    opacity: 1;
    transform: translateY(50px);
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

a {
    text-decoration: none;
    color: white;
}

.hero-title {
    color: #602dbe;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 0 10px;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 600px;
}

@media (max-width: 1024px) {
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
        padding: 0 5px;
    }
}
.cta-button {
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 10px rgba(106, 13, 173, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-radius: 50px;
    background-color: #c0c0c0;
    z-index: -1;
    transition: width 0.4s ease-in-out;
    box-shadow: 0 0 40px rgba(106, 13, 173, 0.6), 0 0 80px rgba(86, 40, 238, 0.3);
}

.cta-button:hover::before {
    width: 100%;
}

.cta-button:hover {
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(106, 13, 173, 0.7), 0 0 30px rgba(86, 40, 238, 0.5);
}
/* 
.cta-button span {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.cta-button:hover span {
    transform: translateX(5px);
} */

.cta-button {
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    color: var(--text-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease-in-out;
    box-shadow: 0 0 10px rgba(106, 13, 173, 0.5);
}

@media (max-width: 1024px) {
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .cta-button {
        margin-top: 20px;
    }
}
/* 
.cta-button span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-radius: 50px;
    background-color: #fff;
    z-index: -1;
    transition: width 0.4s ease-in-out;
    box-shadow: 0 0 40px rgba(106, 13, 173, 0.6), 0 0 80px rgba(86, 40, 238, 0.3);
}


.cta-button span:hover::before {
    color: #000;
    width: 100%;
} */

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(200%) rotate(45deg);
    }
}

/* Offer Zone styling */

.web-offer-card {
    width: 100%;
    max-width: 380px;
    margin-top: 100px;
    background: transparent;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
    transform: translateY(0);
    /* animation: web-float 3s ease-in-out infinite; */
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

@media (max-width: 768px) {
    .web-offer-card {
        display: none;
    }
}

/* Ensure the offer card is hidden on small screens */
@media screen and (max-width: 768px) {
    .web-offer-card {
        display: none !important;
    }
}

.web-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(31, 38, 135, 0.37), #602dbe, #5628ee, #4d40c4, #5792fe, #7f2ae0);
    background-size: 300% 300%;
    animation: web-gradientShift 3s ease infinite;
}

@keyframes web-gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.web-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px 0 rgba(31, 38, 135, 0.5);
}

@keyframes web-float {

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

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

.web-card-header {
    background: transparent;
    color: white;
    padding: 20px 15px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.web-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.web-service-icon {
    font-size: 1.6rem;
    animation: web-pulse 2s infinite;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes web-pulse {

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

    50% {
        transform: scale(1.1);
    }
}

.web-discount-badge {
    background: linear-gradient(45deg, #4ecdc4, #28a745);
    color: white;
    padding: 3px 12px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.8rem;
    animation: web-bounce 2s infinite;
    box-shadow: 0 4px 15px rgba(104, 192, 116, 0.4);
}

@keyframes web-bounce {

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

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

.web-service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.web-price-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
}

.web-current-price {
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.web-original-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    opacity: 0.8;
}

.web-timer-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 10px;
    margin: 15px 0;
    text-align: center;
}

.web-timer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.web-timer-container {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.web-timer-box {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 6px 8px;
    min-width: 45px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.web-timer-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transform: translateZ(0);
    transform-style: preserve-3d;
}

.web-timer-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.web-card-body {
    padding: 20px 15px;
}

.web-features-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.web-feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.web-feature-icon {
    color: #4ecdc4;
    font-size: 0.8rem;
    margin-right: 5px;
}

.web-feature-text {
    color: rgba(255, 255, 255, 0.9);
}

.web-cta-button {
    width: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    /* z-index: 99; */
}

/* .web-cta-button a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
} */

.web-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.5), 0 0 20px rgba(124, 58, 237, 0.4);
}

.web-cta-button i {
    transition: transform 0.3s ease;
}

.web-cta-button:hover i {
    transform: translateX(5px);
}

.web-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
    transition: width 0.5s ease;
}

.web-cta-button:hover::before {
    width: 100%;
}

.web-guarantee {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

.web-guarantee i {
    color: #4ecdc4;
    margin-right: 3px;
    font-size: 0.8rem;
}

@media (max-width: 480px) {
    .web-offer-card {
        max-width: 100%;
    }

    .web-card-header {
        padding: 15px 12px;
    }

    .web-service-title {
        font-size: 1.1rem;
    }

    .web-current-price {
        font-size: 1.6rem;
    }

    .web-timer-box {
        min-width: 35px;
        padding: 5px 6px;
    }

    .web-timer-value {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: max-content;
        flex-direction: column;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .hero-content {
        margin-top: 20px;
        width: 100%;
        padding: 0 15px;
    }
    
    .web-offer-card {
        margin-top: 50px;
        max-width: 90%;
    }
}

@media (min-width: 769px) {
    .second-nav {
        display: none !important;
    }
}

/* Offer Zone styling end */

/* Scroller */
.scroller {
    width: 100%;
}

.move {
    background-color: #6a0dad86;
    display: flex;
    padding: 3vw 0;
    overflow: hidden;
}

.marque {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 2vw;
    padding: 0 1.5vw;
}

.marque h1 {
    font-size: 2vw;
    font-family: 'Poppins', sans-serif;
}

.marque img {
    height: 2vw;
    rotate: 180deg;
    /* Add explicit dimensions to prevent layout shifts */
    width: 30px;
    height: 30px;
    /* Ensure images maintain aspect ratio */
    object-fit: contain;
    /* Prevent images from being distorted */
    flex-shrink: 0;
}

/* About Us Section */
.about-us {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(106, 13, 173, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(86, 40, 238, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.about-us .about-header {
    text-align: center;
    margin-bottom: 80px;
    transform: translateY(30px);
}

.about-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(106, 13, 173, 0.1);
    border: 1px solid rgba(106, 13, 173, 0.3);
    border-radius: 25px;
    color: #6a0dad;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-us .about-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff, #b0b0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.about-us .about-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

.about-text {
    /* opacity: 0; */
    transform: translateX(-30px);
}

.about-story {
    margin-bottom: 40px;
}

.about-story h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
}

.about-story h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    border-radius: 2px;
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 0;
}

.about-mission {
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #6a0dad;
    border-radius: 0 15px 15px 0;
    backdrop-filter: blur(10px);
}

.about-mission h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #6a0dad;
}

.about-mission p {
    font-size: 1rem;
    line-height: 1.7;
    color: #c0c0c0;
    margin: 0;
}

.about-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(106, 13, 173, 0.3);
    transform: translateX(10px);
}

.about-features .feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-item .feature-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.feature-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.feature-content p {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.5;
}

.about-cta {
    margin-top: 30px;
}

.about-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.3);
    gap: 10px;
    transform: translateY(0);
    letter-spacing: 0.5px;
}

.about-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.about-button:hover::before {
    left: 100%;
}

.about-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(106, 13, 173, 0.5);
}

.about-button span {
    margin-right: 0;
    transition: all 0.3s ease;
}

.about-button i {
    transition: transform 0.3s ease;
}

.about-button:hover i {
    transform: translateX(5px);
}

/* Add pulse animation */
.about-button.pulse {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 10px 30px rgba(106, 13, 173, 0.3);
    }
    50% {
        box-shadow: 0 10px 30px rgba(106, 13, 173, 0.3), 0 0 20px rgba(106, 13, 173, 0.5);
    }
    100% {
        box-shadow: 0 10px 30px rgba(106, 13, 173, 0.3);
    }
}

.about-visual {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 100px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.3), rgba(86, 40, 238, 0.3));
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 1));
    padding: 30px;
    z-index: 3;
}

.overlay-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    text-align: center;
}

.team-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #6a0dad;
    margin-bottom: 5px;
    /* opacity: 0; */
    transform: scale(0);
}

.team-stat .stat-label {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
    /* opacity: 0; */
    transform: translateY(10px);
}

.experience-cards {
    display: flex;
    gap: 20px;
}

.exp-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 50px;
}

.exp-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(106, 13, 173, 0.3);
    transform: translateY(-5px);
}

.exp-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: transform 0.3s ease;
}

.exp-card:hover .exp-icon {
    transform: scale(1.1);
}

.exp-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.exp-content h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.exp-content p {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about-content {
        gap: 60px;
    }

    .about-us .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        align-items: center;
        justify-content: center;
    }

    .about-us .about-title {
        font-size: 2.5rem;
        color: #602dbe;
        background: none;
        -webkit-text-fill-color: #602dbe;
    }

    .about-us .section-subtitle {
        font-size: 1.1rem;
    }

    .experience-cards {
        flex-direction: column;
        gap: 15px;
    }

    .image-container img {
        height: 300px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .about-us {
        padding: 80px 0;
    }

    .about-us .about-title {
        font-size: 2rem;
        color: #602dbe;
        background: none;
        -webkit-text-fill-color: #602dbe;
    }

    .about-story h3 {
        font-size: 1.8rem;
    }

    .feature-item {
        padding: 15px;
    }

    .overlay-content {
        flex-direction: column;
        gap: 20px;
    }

    /* Ensure section titles maintain the correct color on very small screens */
    .section-title {
        color: #602dbe !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: #602dbe !important;
        background-clip: unset !important;
    }

    .professional-section .section-title {
        color: #602dbe !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: #602dbe !important;
        background-clip: unset !important;
    }

    .professional-text .cta-button {
        display: block;
        margin: 20px auto;
        width: 90%;
        max-width: 250px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(106, 13, 173, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(86, 40, 238, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    /* opacity: 0; */
    transform: translateY(30px);
}

.header {
    text-align: center;
    margin-bottom: 80px;
    color: #6a0dad;
    font-size: 50px;
}

.why-choose-us .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
}

/* Professional Section */
.professional-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.professional-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(106, 13, 173, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(86, 40, 238, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.professional-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.professional-text {
    /* opacity: 0; */
    transform: translateX(-30px);
}

.professional-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #b0b0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.professional-section .section-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.stats-container {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6a0dad;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 500;
}

.professional-visual {
    position: relative;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.3), rgba(86, 40, 238, 0.3));
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.professional-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.professional-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.professional-image img:hover {
    transform: scale(1.05);
}

/* Responsive Design for Professional Section */
@media (max-width: 1024px) {
    .professional-content {
        gap: 40px;
    }

    .professional-section .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .professional-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .stats-container {
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .professional-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .professional-section {
        padding: 60px 0;
    }

    .professional-section .section-title {
        font-size: 1.8rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    /* opacity: 0; */
    transform: translate3d(0, 50px, 0);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    /* transform: translateY(-10px); */
    border-color: rgba(106, 13, 173, 0.5);
    box-shadow: 0 20px 40px rgba(106, 13, 173, 0.2);
    transform: translate3d(0, -10px, 0);
}

.features-grid .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(106, 13, 173, 0.3);
    animation: iconGlow 3s ease-in-out infinite;
    transform: scale(1);
}

@keyframes iconGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(106, 13, 173, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(106, 13, 173, 0.6);
    }
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 50px rgba(106, 13, 173, 0.8);
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {

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

    50% {
        transform: scale(1.2) rotate(15deg);
    }
}

.features-grid .feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    border-radius: 50%;
    /* opacity: 0; */
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon::before {
    opacity: 0.3;
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); 
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 20px;
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(106, 13, 173, 0.2);
    border: 2px solid rgba(106, 13, 173, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #6a0dad;
    transition: all 0.4s ease;
    transform: scale(1);
}

.feature-card:hover .feature-number {
    background: rgba(106, 13, 173, 0.3);
    border-color: #6a0dad;
    transform: scale(1.1);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.1), rgba(86, 40, 238, 0.1));
    background-size: 200% 200%;
    animation: gradientAnimation 6s ease infinite;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* opacity: 0; */
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(106, 13, 173, 0.1), transparent);
    transform: translateX(-100%) rotate(45deg);
    animation: shimmerStats 3s infinite;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes shimmerStats {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(200%) rotate(45deg);
    }
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #6a0dad;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #b0b0b0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-us .section-title {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 90%;
        margin: 0 auto 60px;
    }

    .feature-card {
        padding: 30px 20px;
        margin: 0 auto;
        transform: translate3d(0, 10px, 0);
    }

    .feature-card:hover {
        transform: translate3d(0, -5px, 0);
    }

    .features-grid .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Changes for small screen devices */
    .section-title {
        color: #602dbe !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: #602dbe !important;
        background-clip: unset !important;
    }

    .professional-section .section-title {
        color: #602dbe !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: #602dbe !important;
        background-clip: unset !important;
    }

    .professional-text .cta-button {
        display: block;
        margin: 20px auto;
        width: 80%;
        text-align: center;
        max-width: 200px;
    }

    .stats-container {
        display: flex;
        /* flex-direction: column; */
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        max-width: 95%;
        margin: 0 auto 50px;
        gap: 50px;
    }
    
    .feature-card {
        padding: 25px 15px;
        transform: translate3d(0, 10px, 0);
    }
    
    .feature-card:hover {
        transform: translate3d(0, -3px, 0);
    }
    
    .features-grid .feature-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }

    .stats-container {
        display: flex;
        /* flex-direction: column; */
        align-items: center;
        gap: 20px;
    }
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(106, 13, 173, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(86, 40, 238, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    height: 400px;
    perspective: 1000px;
    transform: translateY(50px);
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-card-back {
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.9), rgba(86, 40, 238, 0.9));
    transform: rotateY(180deg);
    color: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.3);
    transform: scale(1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(106, 13, 173, 0.5);
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1) rotate(5deg);
}

.service-card-front h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.service-card-front p {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.service-card-back h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.service-card-back ul {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.service-card-back li {
    padding: 8px 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.service-card-back li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4ecdc4;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    margin-top: auto;
}

/* Currency Toggle Switch */
.currency-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.currency-label {
    font-size: 1.8 rem;
    font-weight: 600;
    color: #6a0dad;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    transition: 0.4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.slider:before {
    transform: translateX(30px);
}

/* Add-on Services */
.addon-services {
    margin-top: 80px;
    text-align: center;
}

.addon-services h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.addon-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.addon-item:hover {
    transform: translateY(-5px);
    background: rgba(106, 13, 173, 0.1);
    border-color: #6a0dad;
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.2);
}

.addon-item i {
    font-size: 2.5rem;
    color: #6a0dad;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.addon-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.addon-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.addon-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4ecdc4;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        height: 350px;
    }

    .service-card-front,
    .service-card-back {
        padding: 30px 20px;
    }
}


/* Contact Us Section */
.contact-us {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.contact-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 90%, rgba(106, 13, 173, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(86, 40, 238, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-title,
.project-title {
    font-size: 50px;
    color: #6a0dad;
}

.contact-subtitle,
.project-subtitle {
    color: white;
    text-transform: uppercase;
}

/* Responsive styles for contact section titles */
@media (max-width: 768px) {
    .contact-title,
    .project-title {
        font-size: 36px;
    }
    
    .contact-subtitle,
    .project-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-title,
    .project-title {
        font-size: 28px;
    }
    
    .contact-subtitle,
    .project-subtitle {
        font-size: 14px;
    }
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.info-item i {
    font-size: 2rem;
    color: #6a0dad;
    margin-bottom: 15px;
}

.info-item h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 1rem;
    color: #b0b0b0;
}

.contact-form {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    color: #fff;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
}

.form-group label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 1rem;
    color: #b0b0b0;
    pointer-events: none;
    transition: 0.3s ease all;
}

.form-group input:focus~label,
.form-group input:valid~label,
.form-group textarea:focus~label,
.form-group textarea:valid~label {
    top: -20px;
    font-size: 0.8rem;
    color: #6a0dad;
}

.form-group .line {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background: #b0b0b0;
}

.form-group .line::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #6a0dad;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.form-group input:focus~.line::before,
.form-group textarea:focus~.line::before {
    transform: scaleX(1);
    transform-origin: left;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.4);
    gap: 10px;
    transform: translateY(0);
}

.submit-btn span {
    z-index: 1;
    transition: all 0.3s ease;
}

.submit-btn i {
    margin-left: 10px;
    transform: translateX(0);
    opacity: 1;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.6), 0 0 20px rgba(106, 13, 173, 0.4);
}

.submit-btn:hover span {
    transform: translateX(-5px);
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.submit-btn:hover::before {
    transform: translateX(100%);
}

/* Add pulse animation */
.submit-btn.pulse {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 5px 15px rgba(106, 13, 173, 0.4);
    }
    50% {
        box-shadow: 0 5px 15px rgba(106, 13, 173, 0.4), 0 0 20px rgba(106, 13, 173, 0.6);
    }
    100% {
        box-shadow: 0 5px 15px rgba(106, 13, 173, 0.4);
    }
}

/* Responsive design for contact section */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }
    
    .contact-title,
    .project-title {
        font-size: 36px;
    }
    
    .contact-subtitle,
    .project-subtitle {
        font-size: 16px;
    }
    
    /* Increase label size on focus for small screens */
    .form-group input:focus~label,
    .form-group input:valid~label,
    .form-group textarea:focus~label,
    .form-group textarea:valid~label {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }
    
    .contact-title,
    .project-title {
        font-size: 28px;
    }
    
    .contact-subtitle,
    .project-subtitle {
        font-size: 14px;
    }
    
    /* Increase label size on focus for small screens */
    .form-group input:focus~label,
    .form-group input:valid~label,
    .form-group textarea:focus~label,
    .form-group textarea:valid~label {
        font-size: 1.2rem;
    }
}

/* Projects Section */


.project-showcase {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.project-header {
    text-align: center;
    margin-bottom: 60px;
}

.project-title {
    color: #6a0dad;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.project-subtitle {
    color: #94a3b8;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid rgba(106, 13, 173, 0.3);
    background: transparent;
    color: #94a3b8;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    transition: width 0.3s ease;
    z-index: -1;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    color: white;
    border-color: #6a0dad;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
}

.filter-btn:hover::before {
    width: 100%;
}

.filter-btn.active::before {
    width: 100%;
}

/* Modal Styles */
.project-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.modal-info {
    padding: 30px;
    color: white;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #6a0dad;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(106, 13, 173, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    box-shadow: 0 8px 30px rgba(106, 13, 173, 0.5), 0 0 20px rgba(106, 13, 173, 0.3);
}

.scroll-to-top:active {
    transform: translateY(0) scale(1.05);
}

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

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

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

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

.project-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.project-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-item {
    min-width: 100%;
    padding: 40px;
    background: transparent;
    display: flex;
    gap: 40px;
    align-items: center;
}

.project-visual {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transform: scale(0.95);
    opacity: 0.7;
    transition: all 0.8s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.project-item.active .project-visual {
    transform: scale(1);
    opacity: 1;
}

.project-screenshot {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.project-visual:hover .project-screenshot {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.1) contrast(1.1);
}

.project-visual::after {
    content: '↗';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    background: rgba(106, 13, 173, 0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-visual:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.project-details {
    flex: 1;
    color: white;
    transform: translateX(30px);
    opacity: 0;
}

.project-details {
    transition: all 0.8s ease 0.2s;
}

.project-item.active .project-details {
    transform: translateX(0);
    opacity: 1;
}

.project-tag {
    background: linear-gradient(45deg, #8b5cf6, #520dad);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
}

.project-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: #6a0dad;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-description {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.project-highlights {
    list-style: none;
    margin-bottom: 25px;
}

.project-highlight {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #e2e8f0;
}

.project-highlight i {
    color: #7f2ae0;
    margin-right: 12px;
    font-size: 1.1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

.project-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tech-item {
    background: rgba(106, 13, 173, 0.1);
    color: #6a0dad;
    ;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(106, 13, 173, 0.5);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(106, 13, 173, 0.2);
    transform: translateY(-2px);
}

.project-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.project-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: width 0.3s ease;
    z-index: -1;
}

.project-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.view-btn {
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    color: white;
}

.view-btn::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
}

.view-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.3);
}

.view-btn:hover::before {
    width: 100%;
}

.code-btn {
    background: transparent;
    color: #94a3b8;
    border: 2px solid #666;
}

.code-btn::before {
    background: rgba(255, 255, 255, 0.1);
}

.code-btn:hover {
    background: rgba(51, 65, 85, 0.3);
    color: white;
    transform: translateY(-3px);
}

.code-btn:hover::before {
    width: 100%;
}

.project-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-btn:hover i {
    transform: translateX(3px);
}

.project-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 25px;
}

.nav-control {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #222;
    border: 2px solid #666;
    color: #94a3b8;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.nav-control::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    transition: width 0.3s ease;
    z-index: -1;
}

.nav-control:hover {
    background: rgba(106, 13, 173, 0.2);
    color: #fff;
    border-color: #666;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
}

.nav-control:hover::before {
    width: 100%;
}

.nav-control:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.nav-control:disabled:hover {
    transform: none;
    box-shadow: none;
}

.progress-container {
    flex: 1;
    max-width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #6a0dad);
    width: 33.33%;
    transition: width 0.5s ease;
}

.project-indicators {
    display: flex;
    gap: 12px;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: #5628ee;
    transform: scale(1.3);
}

.indicator-dot:hover {
    background: rgba(148, 163, 184, 0.8);
}


@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@media (max-width: 992px) {
    .project-item {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .project-details {
        transform: translateY(30px);
    }

    .project-item.active .project-details {
        transform: translateY(0);
    }

    .project-description {
        text-align: left;
    }

    .project-tech-stack {
        justify-content: center;
    }

    .project-actions {
        justify-content: center;
    }

    .project-name {
        font-size: 2rem;
    }

    .project-screenshot {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .project-showcase {
        padding: 60px 15px;
    }

    .project-title {
        font-size: 2.2rem;
    }

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

    .project-name {
        font-size: 1.8rem;
    }

    .project-screenshot {
        height: 250px;
    }

    .nav-control {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .project-navigation {
        gap: 15px;
    }

    .progress-container {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .project-item {
        padding: 25px 20px;
    }

    .project-title {
        font-size: 1.8rem;
    }

    .project-name {
        font-size: 1.5rem;
    }

    .project-screenshot {
        height: 200px;
    }

    .project-description {
        font-size: 0.95rem;
    }

    .project-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .tech-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* project section end */

/* ================== Pricing Section ================== */
.pricing-section {
    padding: 120px 0;
    background-color: var(--background-color);
}

.pricing-section .header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--subtle-text-color);
    max-width: 500px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(106, 13, 173, 0.2);
}

.pricing-card.popular {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(106, 13, 173, 0.2);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -45px;
    background-color: rgb(221, 221, 16);
    color: white;
    padding: 8px 40px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.pricing-card .card-header {
    margin-bottom: 30px;
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.pricing-card .plan-desc {
    color: var(--subtle-text-color);
}

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

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.features-list li.disabled {
    color: var(--subtle-text-color);
    text-decoration: line-through;
}

.features-list .fa-check-circle {
    color: #28a745;
    /* Green checkmark */
}

.features-list .fa-times-circle {
    color: #dc3545;
    /* Red cross */
}

/* Pricing Card CTA Button Fixes */
.pricing-card .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(106, 13, 173, 0.3);
    position: relative;
    z-index: 10;
    opacity: 1;
    visibility: visible;
    gap: 10px;
    transform: translateY(0);
}

.pricing-card .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
    transition: width 0.5s ease;
    z-index: -1;
    border-radius: 50px;
}

.pricing-card .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(106, 13, 173, 0.5), 0 0 20px rgba(106, 13, 173, 0.3);
    color: #fff !important;
}

.pricing-card .cta-button:hover::before {
    width: 100%;
}

.pricing-card .cta-button i {
    transition: transform 0.3s ease;
}

.pricing-card .cta-button:hover i {
    transform: translateX(5px);
}

/* Purchase Page Specific Styles */
.pricing-purchase-hero {
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Add a subtle background glow */
.pricing-purchase-hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(106, 13, 173, 0.2),
        transparent 70%
    );
    transform: translate(-50%, -50%);
    animation: pulse-glow 10s infinite alternate;
    z-index: -1;
}

.pricing-purchase-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #6a0dad;
}

.pricing-purchase-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #ccc;
}

.pricing-purchase-section {
    padding: 80px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 2.8rem;
    font-weight: 600;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.pricing-card {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease,
        border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card.pricing-recommended {
    border-color: #6a0dad;
    transform: scale(1.05);
    box-shadow: 0 0 40px -10px #6a0dad;
}

.recommended-badge {
    position: absolute;
    top: 15px;
    right: -40px;
    background-color: #6a0dad;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #6a0dad;
    margin-bottom: 10px;
}

.price span {
    font-size: 2rem;
    font-weight: 600;
    color: #4d40c4;
}

.features-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.features-list li:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.features-list i {
    color: #6a0dad;
    margin-right: 10px;
}

/* Purchase Footer */
.pricing-footer {
    background-color: #121212;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #333;
}

/* Keyframes for animations */
@keyframes pulse-glow {
    from {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.7;
    }
    to {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* TEAM SECTION START - Simple Grid Layout */

/* Team Section Styles */
.team-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #f5f5f5;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(106, 13, 173, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(86, 40, 238, 0.1) 0%, transparent 20%);
    z-index: 0;
}

.team-section .container {
    position: relative;
    z-index: 1;
}

.team-section .header {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.team-section .header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    border-radius: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

/* Team Member Card */
.team-member {
    width: 100%;
    height: auto;
    min-height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transform: translateY(0);
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(106, 13, 173, 0.35);
    border-color: rgba(106, 13, 173, 0.5);
}

.team-card {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
    z-index: 2;
}

.member-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #6a0dad;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.3);
    transition: all 0.4s ease;
    transform: scale(1);
}

.team-member:hover .member-image {
    border-color: #fff;
    box-shadow: 0 15px 40px rgba(106, 13, 173, 0.5);
    transform: scale(1.05);
}

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

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.member-info h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    transition: all 0.3s ease;
}

.member-info h3 {
    font-size: 1.1rem;
    color: #6a0dad;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.member-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    opacity: 0.9;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    flex-grow: 1;
}

.team-socials {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    transform: translateY(0);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Enhanced social link colors */
.social-link:nth-child(1):hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

.social-link:nth-child(2):hover {
    background: #0077b5;
    border-color: #0077b5;
    color: #fff;
}

.social-link:nth-child(3):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
    color: #fff;
}

/* TEAM SECTION END*/

/* Responsive Team Grid */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        padding: 0 15px;
    }

    .team-member {
        min-height: 400px;
    }

    .team-section .header {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 80px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    .team-member {
        min-height: 380px;
    }

    .team-section .header {
        font-size: 2rem;
    }

    .member-image {
        width: 120px;
        height: 120px;
    }
}



/* footer section styling */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 60px 0 20px;
    color: #fff;
    position: relative;
    border-top: 1px solid rgba(106, 13, 173, 0.3);
    box-shadow: 0 -5px 30px rgba(106, 13, 173, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6a0dad, #5628ee, #6a0dad, transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3.footer-logo {
    font-size: 1.8rem;
    color: #6a0dad;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-column h4 {
    font-size: 1.3rem;
    color: #6a0dad;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    border-radius: 2px;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact p {
    color: #b0b0b0;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: #6a0dad;
    margin-right: 10px;
    width: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '→';
    margin-right: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #6a0dad;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-newsletter-text {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-newsletter-form {
    display: flex;
    max-width: 100%;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(106, 13, 173, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.footer-newsletter-form input:focus {
    border-color: #6a0dad;
    box-shadow: 0 0 20px rgba(106, 13, 173, 0.3);
}

.footer-newsletter-form button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-newsletter-form button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(106, 13, 173, 0.5);
}

.footer-social h4 {
    margin-top: 20px;
    margin-bottom: 15px;
}

.social-media {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.social-media a {
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

/* Social media specific background colors on hover */
.social-media a:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.4);
}

.social-media a[href*="instagram.com"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-media a[href*="github.com"]:hover {
    background: linear-gradient(45deg, #24292e, #343a40);
}

.social-media a[href*="twitter.com"]:hover,
.social-media a[href*="x.com"]:hover {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
}

.social-media a[href*="linkedin.com"]:hover {
    background: linear-gradient(45deg, #0077b5, #00a0dc);
}

.social-media a[href*="youtube.com"]:hover {
    background: linear-gradient(45deg, #ff0000, #cc0000);
}

.social-media a[href*="facebook.com"]:hover {
    background: linear-gradient(45deg, #4267B2, #3b5998);
}

.social-media a[href*="dribbble.com"]:hover {
    background: linear-gradient(45deg, #ea4c89, #d6356c);
}

.social-media a[href*="behance.net"]:hover {
    background: linear-gradient(45deg, #1769ff, #0057e7);
}

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

.copyright {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
}

.footer-links-bottom a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #6a0dad;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-bottom {
        justify-content: center;
    }
    
    .footer-column h3.footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-column h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-newsletter-form {
        flex-direction: column;
    }

    .footer-newsletter-form input,
    .footer-newsletter-form button {
        width: 100%;
    }

    .footer-newsletter-form button {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .footer-column h3.footer-logo {
        font-size: 1.3rem;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
    }
    
    .social-media {
        justify-content: center;
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(106, 13, 173, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(106, 13, 173, 0.5);
}

/* Pricing Card CTA Button Fixes */
.pricing-card .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #6a0dad, #5628ee);
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(106, 13, 173, 0.3);
    position: relative;
    z-index: 10;
    opacity: 1;
    visibility: visible;
}

.pricing-card .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(106, 13, 173, 0.5);
    color: #fff !important;
}

/* Responsive styles for scroller/marque */
@media (max-width: 1200px) {
    .move {
        padding: 4vw 0;
    }
    
    .marque h1 {
        font-size: 2.5vw;
    }
    
    .marque img {
        height: 2.5vw;
    }
}

@media (max-width: 992px) {
    .move {
        padding: 5vw 0;
    }
    
    .marque h1 {
        font-size: 3vw;
    }
    
    .marque img {
        height: 3vw;
    }
}

@media (max-width: 768px) {
    .move {
        padding: 6vw 0;
    }
    
    .marque h1 {
        font-size: 4vw;
    }
    
    .marque img {
        height: 4vw;
    }
}

/* Scroller */
.scroller {
    width: 100%;
}

.move {
    background-color: #6a0dad86;
    display: flex;
    padding: 3vw 0;
    overflow: hidden;
}

.marque {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 2vw;
    padding: 0 1.5vw;
}

.marque h1 {
    font-size: 2vw;
    font-family: 'Poppins', sans-serif;
}

.marque img {
    height: 2vw;
    rotate: 180deg;
    /* Add explicit dimensions to prevent layout shifts */
    width: 30px;
    height: 30px;
    /* Ensure images maintain aspect ratio */
    object-fit: contain;
    /* Prevent images from being distorted */
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .move {
        padding: 8vw 0;
    }
    
    .marque h1 {
        font-size: 6vw;
    }
    
    .marque img {
        height: 6vw;
    }
}