/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    cursor: none;
    overflow-x: hidden; 
    width: 100%; 
    position: relative; 
}
html {
    overflow-x: hidden;
    width: 100%; 
    position: relative; 
}

.shape {
    --r:20px; /* border radius */
  
    width: 180px;
    aspect-ratio: 1/cos(30deg);
    --_g:calc(tan(60deg)*var(--r)) top var(--r),#000 98%,#0000 101%;
    -webkit-mask:
      conic-gradient(from 150deg at 50% calc(3*var(--r)/2 - 100%),#000 60deg,#0000 0)
       0 0/100% calc(100% - 3*var(--r)/2) no-repeat,
      radial-gradient(var(--r) at 50% calc(100% - 2*var(--r)),#000 98%,#0000 101%),
      radial-gradient(var(--r) at left  var(--_g)),
      radial-gradient(var(--r) at right var(--_g));
    clip-path: polygon(50% 100%,100% 0,0 0);
    position: absolute;
    z-index: 0;
    max-width: 100%; 
    overflow: hidden; 
}

.about-shape-2 {
    bottom: 10%;
    left: -50px; 
    background: #a06de4;
    opacity: 1;
}

.service-shape-2 {
    right: 20px;
    background: #a06de4;
    opacity: 1;
}

.project-shape-1 {
    left: -40px; 
    background: #a06de4;
    opacity: 1;
}

.contact-shape-1 {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -50px; 
    background: #9747FF;
    opacity: 1;
}

.contact-shape-2 {
    width: 320px;
    height: 320px;
    bottom: 10%;
    left: -75px; 
    background: #ba8bf8;
    opacity: 0.15;
}

@media (max-width: 768px) {
    .shape {
        opacity: 0.1;
    }

    .hero-shape-1,
    .contact-shape-1 {
        width: 180px;
        height: 180px;
    }
    
    .hero-shape-2,
    .contact-shape-2 {
        width: 250px;
        height: 250px;
    }
    
    .about-shape-1,
    .service-shape-1 {
        width: 150px;
        height: 150px;
    }
    
    .about-shape-2,
    .service-shape-2 {
        width: 200px;
        height: 200px;
    }
    
    .project-shape-1 {
        width: 180px;
        height: 180px;
    }
    
    .project-shape-2 {
        width: 150px;
        height: 150px;
    }
}

:root {
    --primary-color: #6B2FBC;
    --dark-color: #2B2B2B;
    --light-color: #F8F9FA;
    --gradient: linear-gradient(45deg, #6B2FBC, #8B5CF6);
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    cursor: none;
    overflow-x: hidden; 
    width: 100%; 
    position: relative; 
}
html{
    overflow-x: hidden;
    width: 100%; 
    position: relative; 
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.section-padding {
    padding: 70px 0;
}


/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: 0.1s;
    z-index: 9999;
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: 0.15s;
    z-index: 9999;
}

/* Text Gradient */
.text-gradient {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Effect */
.glass-effect {
    background: #ffffff;
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}

.navbar-brand .text-primary {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-toggler {
    border: none;
    padding: 0;
    font-size: 28px;
    color: var(--dark-color);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav {
    gap: 10px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 10px 16px !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.nav-link i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.1);
}

.nav-link:hover i,
.nav-link.active i {
    transform: translateY(-2px);
}

.navbar .btn-primary {
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 8px;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 16px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .navbar .btn-primary {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }
}

/* Call Button Styles */
.call-btn-primary {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.call-btn-primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(var(--primary-rgb), 0.3),
        0 0 0 2px rgba(var(--primary-rgb), 0.2);
}

.call-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

.call-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0;
}

.toggler-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 12px;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover .toggler-icon {
    background: rgba(var(--primary-rgb), 0.15);
}

/* Glow Effects */
.nav-glow {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
    opacity: 0.3;
    background: rgba(15, 15, 15, 0.95);
}

.nav-glow .glow {
    position: absolute;
    background: var(--gradient);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: navGlow 8s infinite;
}

.nav-glow .glow-1 {
    width: 150px;
    height: 150px;
    top: -75px;
    left: 20%;
}

.nav-glow .glow-2 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: 15%;
    animation-delay: 2s;
}

@keyframes navGlow {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.15;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.2;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(15, 15, 15, 0.98);
        padding: 20px;
        border-radius: 16px;
        margin-top: 15px;
        border: 1px solid rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
    }

    .navbar-nav {
        flex-direction: column;
        gap: 5px;
        background: transparent;
        border: none;
        padding: 0;
    }

    .nav-link {
        justify-content: flex-start;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, rgba(107, 47, 188, 0.05) 0%, rgba(138, 92, 246, 0.253) 100%);
    overflow: visible;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(107, 47, 188, 0.08), transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero-badges .badge {
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.verified-badge {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.verified-badge:hover {
    transform: translateY(-2px);
    background: rgba(var(--primary-rgb), 0.15);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.15);
}

.freelance-badge {
    background: rgba(255, 184, 0, 0.1);
    color: #FF9500;
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.freelance-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 184, 0, 0.15);
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.15);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(33, 37, 41, 0.8);
    margin-bottom: 35px;
    max-width: 550px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    padding: 15px 32px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    /* display: flex; */
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-gradient {
    background: var(--gradient);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

.btn-gradient:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(var(--primary-rgb), 0.25),
        0 0 0 2px rgba(var(--primary-rgb), 0.1);
}

.btn-outline {
    background: white;
    color: var(--dark-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    color: var(--dark-color);
    background: rgba(var(--primary-rgb), 0.05);
    transform: translateY(-2px);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 12px;
    font-size: 22px;
    color: white;
}

.stat-text h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: var(--dark-color);
}

.stat-text p {
    font-size: 15px;
    color: rgba(33, 37, 41, 0.7);
    margin: 5px 0 0;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.hero-image-wrapper img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

.hero-cards {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-card {
    position: absolute;
    padding: 15px 25px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 3px 10px rgba(0, 0, 0, 0.02);
    animation: float 6s ease-in-out infinite;
}

.hero-card i {
    font-size: 22px;
    color: var(--primary-color);
}

.hero-card span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 15px;
}

.hero-card.card-1 {
    top: 20%;
    left: 5%;
    animation-delay: 1s;
}

.hero-card.card-2 {
    bottom: 20%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 140px 0 80px;
        text-align: center;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        margin-top: 60px;
        text-align: center;
    }

    .hero-image-wrapper img {
        max-width: 80%;
    }

    .hero-card {
        padding: 12px 20px;
    }

    .hero-card.card-1 {
        left: 5%;
    }

    .hero-card.card-2 {
        right: 5%;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .hero-badges {
        justify-content: center;
    }

    .hero-card {
        display: none;
    }

    .stat-item {
        width: 100%;
        justify-content: center;
    }
}

/* About Section */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image-wrapper img {
    transition: transform 0.5s ease;
}

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

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card i {
    font-size: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-card span {
    font-weight: 600;
    font-size: 14px;
}

.card-1 {
    top: 20%;
    left: 7px;
    animation: floating 3s ease-in-out infinite;
}

.card-2 {
    bottom: 20%;
    right: 30px;
    animation: floating 3s ease-in-out infinite 1s;
}

.experience-tag {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--gradient);
    padding: 20px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(107, 47, 188, 0.3);
}

.experience-tag .tag-content {
    text-align: center;
}

.experience-tag .number {
    font-size: 32px;
    font-weight: bold;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-tag .text {
    font-size: 14px;
    opacity: 0.9;
}

.typed-text{
    color: var(--primary-color);
}

.about-content {
    height: 100%;
    position: relative;
    z-index: 1;
}

.about-content::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: var(--gradient); */
    z-index: -1;
    opacity: 0.03;
    border-radius: 20px;
}

.skills-wrapper {
    position: relative;
}

.skill-item {
    margin-bottom: 25px;
}

.skill-name {
    font-weight: 500;
    font-size: 14px;
}

.skill-percentage {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
}

.progress-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.05);
    padding: 3px;
}

.progress {
    height: 8px;
    background: transparent;
}

.gradient-bar {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

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

.tech-stack-wrapper {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 30px;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-badge {
    background: rgba(107, 47, 188, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
}

.cta-buttons {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 30px;
}

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

/* Services Section */
#services {
    position: relative;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(107, 47, 188, 0.08) 100%);
    overflow: hidden;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(107, 47, 188, 0.1), transparent 60%);
    pointer-events: none;
}

.service-card {
    padding: 40px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

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

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.icon-box.glow::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    filter: blur(15px);
    opacity: 0.3;
    z-index: -1;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 10px;
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-content {
        margin-top: 60px;
    }
    
    .floating-card {
        padding: 10px 20px;
    }
    
    .card-1 {
        top: 10%;
    }
    
    .card-2 {
        bottom: 10%;
    }
}

@media (max-width: 767px) {
    .skill-item {
        margin-bottom: 20px;
    }
    
    .experience-tag {
        padding: 15px;
    }
    
    .experience-tag .number {
        font-size: 24px;
    }
    
    .experience-tag .text {
        font-size: 12px;
    }
}

/* Projects Section */
.project-slider {
    padding: 40px 20px 60px !important; 
    margin: 0; 
    overflow: hidden; 
}

.swiper-slide {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(2px);
}

.swiper-slide-active,
.swiper-slide-prev,
.swiper-slide-next {
    filter: blur(0);
}

.swiper-slide-active {
    transform: scale(1.05);
}
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper{
    perspective: 500px !important;
}

.swiper-pagination-bullet-active{
    background-color: var(--primary-color) !important;
}
.swiper-pagination{
    margin-top: 30px !important;

    bottom: 30px !important;
}

.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: rgba(107, 47, 188, 0.2);
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-pagination-bullet-active {
    width: 50px;
    background: var(--gradient);
}

.project-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(107, 47, 188, 0.2);
    border-color: rgba(107, 47, 188, 0.2);
}

.project-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.project-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(107, 47, 188, 0.9),
        rgba(107, 47, 188, 0.7)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.project-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.project-card:hover .project-link {
    transform: translateY(0);
}

.project-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(0) scale(1.1);
}

.project-content {
    padding: 25px;
}

.project-content h4 {
    margin-bottom: 10px;
    font-size: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tech-badge {
    background: rgba(107, 47, 188, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .project-slider {
        padding: 40px 20px 80px; 
        margin: 0; 
    }
}




@media (max-width: 991px) {
    .project-slider {
        padding: 30px 20px 70px; 
        margin: 0; 
    }
    
    .project-image img {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .project-slider {
        padding: 20px 15px 60px; 
        margin: 0; 
    }
    
    .project-image img {
        height: 220px;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-content h4 {
        font-size: 18px;
    }
    
    .tech-badge {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .swiper-pagination-bullet {
        width: 25px;
        height: 3px;
    }
    
    .swiper-pagination-bullet-active {
        width: 40px;
    }
}

@media (max-width: 447px) {
    .btn{
        padding: 15px 25px;

    }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 10px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: var(--gradient);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(20px);
    z-index: -1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.testimonial-card:hover::after {
    opacity: 0.15;
}

.quote-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.quote-icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: var(--gradient);
    opacity: 0.15;
    filter: blur(12px);
    border-radius: inherit;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.quote-icon:hover::after {
    opacity: 0.25;
}

.quote-icon i {
    font-size: 20px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.client-avatar::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: var(--gradient);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.client-avatar::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--gradient);
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.client-avatar:hover::after {
    opacity: 0.2;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details {
    flex: 1;
}

.client-details h5 {
    margin: 0 0 2px;
    font-size: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(var(--primary-rgb), 0.2));
}

.client-details span {
    display: block;
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 5px;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #FFD700;
    font-size: 12px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
    transition: transform 0.3s ease;
}

.rating:hover i {
    transform: scale(1.1);
}

.testimonial-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.bg-shape {
    display: none;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.035;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.05;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@media (max-width: 1199px) {
    .testimonials-grid {
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 20px;
    }

    .quote-icon {
        width: 35px;
        height: 35px;
    }

    .quote-icon i {
        font-size: 18px;
    }

    .client-avatar {
        width: 45px;
        height: 45px;
    }

    .client-details h5 {
        font-size: 15px;
    }

    .client-details span {
        font-size: 12px;
    }

    .rating i {
        font-size: 11px;
    }
}

/* Contact Form Enhanced */
.contact-form.glass-effect {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

#contact:hover .contact-form.glass-effect {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.contact-form.glass-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(20px);
}

.contact-form.glass-effect:hover::before {
    opacity: 0.15;
}

/* Hover Indicator */
#contact::after {
    content: 'Hover to reveal contact form';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    text-align: center;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

#contact:hover::after {
    opacity: 0;
}

.input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.input-wrapper .form-control {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 2px solid #7251be93;
    border-radius: 8px;
    font-size: 15px;
    color: var(--dark-color);
    background: #fff;
}

.input-wrapper .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 47, 188, 0.1);
}

.input-wrapper label {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    font-size: 15px;
}

.input-wrapper .form-control:not(:placeholder-shown) + label {
    display: none;
}

.input-wrapper .form-control:-webkit-autofill,
.input-wrapper .form-control:-webkit-autofill:hover,
.input-wrapper .form-control:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--dark-color);
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: white;
}

/* Buttons */
.button-77 {
  align-items: center;
  appearance: none;
  background-clip: padding-box;
  background-color: initial;
  background-image: none;
  border-style: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  flex-direction: row;
  flex-shrink: 0;
  font-family: Eina01,sans-serif;
  font-size: 16px;
  font-weight: 800;
  justify-content: center;
  line-height: 24px;
  margin: 0;
  min-height: 64px;
  outline: none;
  overflow: visible;
  padding: 19px 26px;
  pointer-events: auto;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  width: auto;
  word-break: keep-all;
  z-index: 0;
}

@media (min-width: 768px) {
  .button-77 {
    padding: 19px 32px;
  }
}

.button-77:before,
.button-77:after {
  border-radius: 80px;
}

.button-77:before {
  background-color: #ba88fc71;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}

.button-77:after {
  background-color: initial;
  background-image: linear-gradient(92.83deg, #ba88fc 0, #6B2FBC 100%);
  bottom: 4px;
  content: "";
  display: block;
  left: 4px;
  overflow: hidden;
  position: absolute;
  right: 4px;
  top: 4px;
  transition: all 100ms ease-out;
  z-index: -1;
}

.button-77:hover:not(:disabled):after {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  transition-timing-function: ease-in;
}

.button-77:active:not(:disabled) {
  color: #ccc;
}

.button-77:active:not(:disabled):after {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), linear-gradient(92.83deg, #ba88fc 0, #6B2FBC 100%);
  bottom: 4px;
  left: 4px;
  right: 4px;
  top: 4px;
}

.button-77:disabled {
  cursor: default;
  opacity: 0.24;
}

/* Clients Section */
#clients {
    position: relative;
    background: linear-gradient(135deg, rgba(107, 47, 188, 0.04) 0%, rgba(139, 92, 246, 0.15) 100%);
    overflow: hidden;
}

#clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.08), transparent 70%);
    pointer-events: none;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 10px;
    position: relative;
    z-index: 1;
}

.client-card {
    background: #ffffff;
    position: relative;
    aspect-ratio: 3/2;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.client-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.client-logo img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-card:hover .client-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 991px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Contact Section */
#contact {
    background: var(--light-color);
    overflow: hidden;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h4 {
    color: var(--dark-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-color);
    font-size: 15px;
}

.input-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.input-wrapper .form-control {
    background: #fff;
    border: 2px solid #7251be93;
    border-radius: 12px;
    padding: 15px 20px 15px 45px;
    color: var(--dark-color);
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
}

.input-wrapper .form-control:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
}

.input-wrapper .form-control:focus {
    border-color: rgba(var(--primary-rgb), 0.5);
    box-shadow: 
        0 0 0 4px rgba(var(--primary-rgb), 0.1),
        0 0 20px rgba(var(--primary-rgb), 0.2);
    outline: none;
}

.input-wrapper label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    font-size: 15px;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    background: transparent;
}

.input-wrapper .form-control:focus + label,
.input-wrapper .form-control:not(:placeholder-shown) + label {
    transform: translateY(-130%) translateX(-10px) scale(0.85);
    color: rgba(var(--primary-rgb), 1);
    background: #fff;
    padding: 0 5px;
}

.input-wrapper textarea.form-control + label {
    top: 25px;
    transform: none;
}

textarea.form-control {
    min-height: 120px;
    resize: none;
}

.btn-send {
    background: var(--gradient);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 5px 20px rgba(var(--primary-rgb), 0.2),
        0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

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

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

.form-floating > .form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-floating > .form-control:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.1);
}

.form-floating > .form-control:focus {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(var(--primary-rgb), 0.5);
    box-shadow: 
        0 0 0 4px rgba(var(--primary-rgb), 0.1),
        0 0 20px rgba(var(--primary-rgb), 0.2);
    outline: none;
}

.form-floating > label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    padding-left: 18px;
}

.form-floating > .form-control:focus ~ label {
    color: rgba(var(--primary-rgb), 1);
    transform: scale(0.85) translateY(-1rem) translateX(0.15rem);
}

/* Contact Info */
.contact-info-wrapper {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.contact-info-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info-header h4 {
    color: var(--dark-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-header p {
    color: var(--text-color);
    font-size: 15px;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(var(--primary-rgb), 0.02);
    transform: translateX(5px);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.info-card .icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--gradient);
    font-size: 20px;
    color: #fff;
}

.info-card .details h5 {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.info-card .details p {
    color: var(--text-color);
    font-size: 14px;
    margin: 5px 0 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    color: var(--text-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gradient);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
    border-color: transparent;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-form-card,
    .contact-info-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .contact-form-card,
    .contact-info-wrapper {
        padding: 30px 20px;
    }
    
    .form-header h4,
    .contact-info-header h4 {
        font-size: 22px;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .info-card .icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Modern Footer Styles */
.footer-section {
    position: relative;
    background: linear-gradient(to bottom, rgba(43, 43, 43, 0.97), rgba(43, 43, 43, 0.99));
    padding-top: 80px;
    overflow: hidden;
}

.footer-top {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo .gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    color: white;
    font-size: 35px;
    font-weight: 700;
    margin: 0;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(var(--primary-rgb), 0.3);
}

.widget-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gradient);
    transition: all 0.3s ease;
}

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

.footer-links a:hover::before {
    width: 15px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact p i {
    color: var(--primary-color);
    font-size: 18px;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 30px 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.footer-shapes .shape {
    position: absolute;
    background: var(--gradient);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: shapeFloat 8s infinite;
}

.footer-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.footer-shapes .shape-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
    animation-delay: 2s;
}

.footer-shapes .shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.15;
    }
}

@media (max-width: 991px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .copyright {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .social-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 54px;
    height: 54px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.scroll-top .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.scroll-top .progress-ring-circle {
    stroke: var(--primary-color);
    stroke-dasharray: 151; /* 2 * π * radius */
    stroke-dashoffset: 151;
    transition: stroke-dashoffset 0.3s ease;
}

.scroll-top:hover .progress-ring-circle {
    stroke: white;
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
    
    .scroll-top .progress-ring {
        width: 46px;
        height: 46px;
    }
    
    .scroll-top .progress-ring-circle {
        r: 20;
        cx: 23;
        cy: 23;
        stroke-dasharray: 126;
        stroke-dashoffset: 126;
    }
}

/* Decorative Shapes */
.hero-section {
    position: relative;
    overflow: visible;
}

/* Section Titles */
.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(107, 47, 188, 0.1);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

h2.fw-bold {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    text-align: center;
    width: fit-content;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

.title-line {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    position: relative;
    border-radius: 2px;
    margin-top: 20px;
}

.title-line::before,
.title-line::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--gradient);
    top: 50%;
    transform: translateY(-50%);
    animation: pulse 2s infinite;
}

.title-line::before {
    left: -20px;
    animation-delay: 0s;
}

.title-line::after {
    right: -20px;
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    h2.fw-bold {
        font-size: 2rem;
    }
}

/* Contact Form Alerts */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-success {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    border: 1px solid rgba(25, 135, 84, 0.2);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.d-none {
    display: none !important;
}
