/* Base Styles */
:root {
    --primary-purple: #6B46C1;
    --dark-purple: #553C9A;
    --light-purple: #A78BFA;
    --pink: #EC4899;
    --light-pink: #FBCFE8;
    --accent-pink: #F472B6;
    --text-color: #444444;
    --gray-light: #F3F4F6;
    --white: #FFFFFF;
    --gradient-purple: linear-gradient(135deg, #6B46C1 0%, #EC4899 100%);
    --gradient-light: linear-gradient(135deg, #A78BFA 0%, #FBCFE8 100%);
}

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

html,
body {
    margin: 0;
    padding: 0;
}

html {
    background-color: var(--dark-purple);
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-purple);
    border-radius: 2px;
    animation: expandWidth 0.8s ease 0.3s both;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

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

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gradient-purple);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
}

.btn-accent {
    background: var(--gradient-purple);
}

.btn-accent:hover {
    background: var(--gradient-light);
}

section {
    padding: 80px 0;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 80px;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    display: inline-block;
}

.section-title h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(107, 70, 193, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 30px rgba(107, 70, 193, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
    position: relative;
}

.nav-menu a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-purple);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-purple);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-purple);
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: rotate(90deg);
}

/* Hero Banner */
.hero {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.85) 0%, rgba(236, 72, 153, 0.85) 100%), url('https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    padding: 200px 0 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.8) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.8) 0%, transparent 70%);
    bottom: -300px;
    right: -200px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes floatOrb {

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

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: floatParticle 15s linear infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 16s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 13s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 17s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 4.5s;
    animation-duration: 15s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 1.5s;
    animation-duration: 14s;
}

.particle:nth-child(10) {
    left: 15%;
    animation-delay: 3.5s;
    animation-duration: 16s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(100px) scale(1);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text-wrapper {
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    color: white;
}

.title-line {
    display: block;
    animation: slideInFromLeft 1s ease 0.5s both;
    color: white;
}

.title-line.highlight {
    background: linear-gradient(135deg, #FBCFE8 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInFromRight 1s ease 0.7s both;
    position: relative;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(135deg, #FBCFE8 0%, #A78BFA 100%);
    border-radius: 2px;
    animation: expandUnderline 1s ease 1.2s forwards;
}

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

.hero-subtitle {
    font-size: 1.35rem;
    max-width: 850px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.9s both;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 1.1s both;
}

.btn-hero-primary {
    padding: 18px 40px;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(107, 70, 193, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    background: rgba(255, 255, 255, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(107, 70, 193, 0.5);
}

.btn-hero-secondary {
    padding: 18px 40px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-stats-preview {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease 1.3s both;
}

.stat-preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FBCFE8 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    animation: fadeInUp 1s ease 1.5s both, bounce 2s ease-in-out infinite 2s;
}

.scroll-arrow {
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {

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

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

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

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

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

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: var(--gradient-light);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
}

.stat-item h3 {
    color: var(--primary-purple);
    font-size: 2.2rem;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.2);
    transition: transform 0.4s ease;
}

.about-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

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

/* Services Section */
.services {
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-purple);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.25);
    border-color: var(--light-purple);
}

.service-icon {
    font-size: 2.5rem;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

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

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-purple);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.team-card:hover::after {
    opacity: 0.1;
}

.team-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.3);
}

.team-img {
    height: 200px;
    background: var(--gradient-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-purple);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.team-card:hover .team-img {
    transform: scale(1.1);
    background: var(--gradient-purple);
    color: white;
}

.team-info {
    padding: 25px 20px;
    position: relative;
    z-index: 2;
}

.team-info h4 {
    margin-bottom: 5px;
}

.team-role {
    color: var(--pink);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

/* Clients Section */
.clients {
    background: var(--gray-light);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
}

.client-logo {
    background: white;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.1);
    font-weight: 700;
    color: var(--primary-purple);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1 !important;
    filter: grayscale(0%) !important;
    -webkit-filter: grayscale(0%) !important;
    transition: all 0.4s ease;
    border-radius: 10px;

}

.client-logo span {
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.3;
    padding: 10px;
    font-weight: 600;
    color: var(--primary-purple);
    position: relative;
    z-index: 1;
    word-break: break-word;
    display: none;
}

/* Client logo hover effect simplified */
.client-logo:hover {
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.2);
    border: 1px solid var(--light-purple);
}

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

.client-logo:hover span {
    color: var(--primary-purple);
    z-index: 1;
    position: relative;
}

/* Testimonials */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding-top: 50px;
}

.testimonial-group {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    animation: fadeIn 0.6s ease;
}

.testimonial-group.active {
    display: grid;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    position: relative;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 350px;
    display: flex;
    flex-direction: column;
    z-index: 10;
    border: 2px solid transparent;
    margin-top: 10px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-purple);
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.2);
    border-color: var(--light-purple);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

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

.testimonial-content {
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 0;
    border: 3px solid var(--light-purple);
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.2);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.testimonial-image::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: var(--gradient-purple);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.testimonial-slide.active .testimonial-image::before {
    opacity: 0.1;
}

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

.testimonial-slide.active .testimonial-image:hover {
    transform: scale(1.1);
    border-color: var(--primary-purple);
}

.testimonial-slide.active .testimonial-image:hover img {
    transform: scale(1.1);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    padding: 0 10px;
    font-style: italic;
    max-height: 80px;
    overflow: hidden;
}

.testimonial-text::before {
    content: "\201C";
    font-size: 3rem;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    left: -5px;
    top: -15px;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text p {
    margin: 0;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-info {
    margin-top: 10px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-purple);
    margin-bottom: 4px;
}

.testimonial-company {
    color: var(--pink);
    font-size: 0.85rem;
    font-weight: 500;
}

.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-purple);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.testimonial-nav-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
}

.testimonial-nav-btn.prev-btn {
    left: 0;
}

.testimonial-nav-btn.next-btn {
    right: 0;
}

.testimonial-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-purple);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary-purple);
    transform: scale(1.3);
}

.testimonial-dot.active::after {
    width: 20px;
    height: 20px;
    background: var(--gradient-purple);
}

/* Finance Services */
.finance-services {
    background: var(--gray-light);
}

.finance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.finance-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.finance-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-purple);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.finance-item:hover::before {
    opacity: 1;
}

.finance-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.3);
    border-color: var(--light-purple);
    color: white;
}

.finance-item h4 {
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.finance-item p {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.finance-item:hover h4,
.finance-item:hover p {
    color: white;
}

/* Why Choose Us */
.why-choose-list {
    list-style: none;
}

.why-choose-list li {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    transition: transform 0.3s ease;
}

.why-choose-list li:hover {
    transform: translateX(10px);
}

.why-choose-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
    /* Light gray background instead of gradient */
    color: var(--text-color);
    /* Dark text for readability */
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.contact::before {
    display: none;
    /* Remove the rotating gradient orb */
}

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

.contact h2 {
    color: var(--primary-purple);
    /* Purple heading */
}

.contact h2:after {
    background: var(--gradient-purple);
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
}

.contact-form h3 {
    margin-bottom: 25px;
    color: var(--primary-purple);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
    /* Light border */
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: #f9f9f9;
    /* Very light background for inputs */
    color: var(--text-color);
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.1);
}

.contact-form select {
    background: #f9f9f9;
    color: var(--text-color);
    cursor: pointer;
}

.contact-form select option {
    background: white;
    color: var(--text-color);
}

.contact-info h3 {
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.contact-info-item h4 {
    color: var(--primary-purple);
    margin-bottom: 5px;
}

.contact-info-item p {
    margin-bottom: 0;
    color: #555;
}

.contact-icon {
    font-size: 1.5rem;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 15px;
    margin-top: 5px;
    transition: transform 0.3s ease;
}


.contact-info-item:hover {
    transform: translateX(10px);
}




/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulseWhatsApp 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes pulseWhatsApp {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-button:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:active {
    transform: scale(1.05);
}

/* Placement Gallery */
.placement-gallery {
    background: white;
}

.placement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.placement-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.placement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.2);
    border-color: var(--light-purple);
}

.placement-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placement-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.placement-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.6));
    opacity: 0.8;
}

.placement-info {
    padding: 25px;
}

.placement-info h3 {
    margin-bottom: 5px;
    color: var(--primary-purple);
    font-size: 1.4rem;
}

.placement-role {
    display: none;
}

.placement-roles {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 15px;
}

.email-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.email-link,
.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Contact Section specific email color */
.contact-info .email-link,
.contact-info .phone-link {
    color: #000;
}

/* Footer specific email color */
footer .email-link,
footer .phone-link {
    color: rgba(255, 255, 255, 0.9);
}

.email-link i {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.email-link:hover,
.phone-link:hover {
    transform: translateX(5px);
}

.contact-info .email-link:hover,
.contact-info .phone-link:hover {
    color: var(--primary-purple);
}

footer .email-link:hover,
footer .phone-link:hover {
    color: var(--light-pink);
    text-shadow: none;
}

.email-link:hover i {
    transform: scale(1.1);
}

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(236, 72, 153, 0.1);
    color: var(--pink);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.role-badge i {
    font-size: 0.75rem;
}

.role-badge:hover {
    background: var(--pink);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(236, 72, 153, 0.3);
}

.placement-company,
.placement-location {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.placement-company i,
.placement-location i {
    width: 20px;
    text-align: center;
    color: var(--light-purple);
}

.placement-quote {
    background: var(--gray-light);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    font-size: 0.9rem;
    font-style: italic;
    color: #555;
    position: relative;
}

.placement-quote i {
    color: var(--light-purple);
    margin-right: 5px;
    font-size: 0.8rem;
    vertical-align: super;
}

.placement-quote p {
    margin: 0;
    display: inline;
}

/* Footer */
footer {
    background: var(--dark-purple);
    color: white;
    padding: 60px 0 0;
    position: relative;
    margin-top: auto;
}

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

.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--pink);
}

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

.footer-links li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-pink);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding-bottom: 20px;
}

.copyright p {
    margin: 0;
}

.footer-column a[href*="facebook"],
.footer-column a[href*="twitter"],
.footer-column a[href*="linkedin"],
.footer-column a[href*="instagram"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-column a[href*="facebook"]:hover,
.footer-column a[href*="twitter"]:hover,
.footer-column a[href*="linkedin"]:hover,
.footer-column a[href*="instagram"]:hover {
    background: var(--gradient-purple);
    transform: translateY(-5px) scale(1.1);
}

/* Scroll Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

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

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

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

    h1 {
        font-size: 2.4rem;
    }

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

    .testimonial-group {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    .testimonial-slider-wrapper {
        padding: 0 50px;
    }

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

    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .testimonial-content {
        padding: 20px 15px 15px;
    }

    .testimonial-image {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        padding: 0 5px;
        max-height: 70px;
    }

    .testimonial-text::before {
        font-size: 2.5rem;
        left: -3px;
        top: -12px;
    }

    .testimonial-author {
        font-size: 0.95rem;
    }

    .testimonial-company {
        font-size: 0.8rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
        transition: 0.3s;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: 90vh;
        padding: 150px 0 100px;
        background-attachment: scroll;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 3rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats-preview {
        gap: 30px;
        padding-top: 2rem;
    }

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

    .stat-label {
        font-size: 0.85rem;
    }

    .orb-1,
    .orb-2,
    .orb-3 {
        filter: blur(60px);
    }

    section {
        padding: 60px 0;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
    }
}

/* इसकी जगह यह नया कोड पेस्ट करें */
@media (max-width: 576px) {
    .logo-img {
        height: 35px;
        max-width: 120px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    /* इस पूरे ब्लॉक को Replace करें */
    @media (max-width: 576px) {
        .logo-img {
            height: 35px;
            max-width: 120px;
        }

        .about-stats {
            grid-template-columns: 1fr;
        }

        .clients-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 0 10px;
        }

        .client-logo {
            height: 100px;
            padding: 10px;
        }

        /* यहाँ बदलाव किया गया है: इमेज को रंगीन बनाने के लिए */
        .client-logo img {
            max-height: 50px;
            filter: grayscale(0%) !important;
            /* Black & white हटाता है */
            opacity: 1 !important;
            /* पूरी तरह विजिबल करता है */
        }
    }
}