/* ASKera Design - Modern Premium Design System */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Modern Color Palette - Purple & Teal Theme */
    --primary-purple: #7C3AED;
    --primary-purple-light: #A78BFA;
    --primary-purple-dark: #5B21B6;
    --accent-teal: #14B8A6;
    --accent-teal-light: #2DD4BF;
    --accent-teal-dark: #0F766E;
    --dark-bg: #0F172A;
    --dark-bg-light: #1E293B;
    --dark-bg-lighter: #334155;
    --text-white: #F8FAFC;
    --text-gray: #CBD5E1;
    --text-gray-dark: #94A3B8;
    --accent-pink: #EC4899;
    --accent-orange: #F59E0B;

    /* Typography */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container: 1320px;
    --section-padding: 100px;
    --card-radius: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.4);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: clip;
    /* Changed from hidden to clip to allow sticky positioning */
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    background: var(--dark-bg);
    overflow-x: clip;
    /* Changed from hidden to clip to allow sticky positioning */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-purple), var(--accent-teal));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-purple-light), var(--accent-teal-light));
}

/* Typography Scale */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}

h5 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h6 {
    font-size: 1.125rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* Page Transition Overlay - Premium Fade */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    z-index: 100000;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.page-transition-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Ensure no transforms on body to protect position: sticky */
body {
    opacity: 1;
    transform: none !important;
}

/* Optional: Content fade in for extra smoothness */
.main-content-wrapper {
    animation: contentFadeIn 0.8s ease-out forwards;
}

@keyframes contentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-teal));
    z-index: 10000;
    transition: width 0.1s linear;
}

/* Navigation - Enhanced Sticky Header */
.navbar {
    position: sticky;
    position: -webkit-sticky;
    /* Safari support */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    /* Ensure navbar is always on top */
    padding: 15px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    will-change: transform;
    /* Performance optimization */
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple-light), var(--accent-teal-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: all var(--transition-base);
}

.logo:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

.logo .design-text {
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 3px;
    margin-left: 8px;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    transition: all var(--transition-base);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-teal));
    transition: width var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-white);
}

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

/* Hamburger Menu */
#mobile-nav {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-teal));
    border-radius: 3px;
    transition: all var(--transition-base);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
    /* CRITICAL FIX: Allow clicks to pass through when hidden */
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
    /* Re-enable clicks when visible */
}

/* Premium Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border-radius: 50px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.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-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-teal));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-hero-cta {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-teal));
    color: var(--text-white);
    font-size: 1.1rem;
    padding: 18px 40px;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
    animation: pulse 2s infinite;
}

.btn-hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(20, 184, 166, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(20, 184, 166, 0.6);
    }
}

.btn-outline {
    background: transparent;
    color: var(--accent-teal);
    border: 2px solid var(--accent-teal);
}

.btn-outline:hover {
    background: var(--accent-teal);
    color: var(--text-white);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--text-white);
    font-size: 1.1rem;
    padding: 18px 40px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(20, 184, 166, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.hero-text {
    max-width: 900px;
}

.hero-text h1 {
    color: var(--text-white);
    margin-bottom: 30px;
    line-height: 1.1;
    font-weight: 800;
}

.hero-subtitle {
    color: var(--text-gray);
    font-size: 1.25rem;
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Floating Shapes Animation */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float-random 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-teal));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-purple));
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    bottom: 20%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float-random {

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

    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }

    50% {
        transform: translate(-30px, 30px) rotate(180deg);
    }

    75% {
        transform: translate(30px, 50px) rotate(270deg);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--primary-purple-light);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    margin-bottom: 24px;
    color: var(--text-white);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-gray);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
    border-radius: var(--card-radius);
    padding: 40px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-purple);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(20, 184, 166, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(20, 184, 166, 0.3));
}

.service-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-purple-light), var(--accent-teal-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    color: var(--text-white);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Terms Section */
.terms-section {
    background: linear-gradient(135deg, var(--dark-bg-light), var(--dark-bg));
    position: relative;
    overflow: hidden;
}

.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.term-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--card-radius);
    padding: 50px;
    transition: all var(--transition-base);
    position: relative;
}

.term-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.term-card.global {
    border-top: 4px solid var(--accent-teal);
}

.term-card.india {
    border-top: 4px solid var(--accent-orange);
}

.term-card h3 {
    color: var(--text-white);
    margin-bottom: 12px;
    font-size: 1.75rem;
}

.term-card h3 i {
    background: linear-gradient(135deg, var(--primary-purple-light), var(--accent-teal-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 12px;
}

.term-subtitle {
    color: var(--primary-purple-light);
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

.term-list {
    list-style: none;
}

.term-list li {
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.term-list li:last-child {
    border-bottom: none;
}

.term-list i {
    color: var(--accent-teal);
    font-size: 1.1rem;
}

/* 3D Reviews Carousel */
.reviews-section {
    background: linear-gradient(180deg, var(--dark-bg), var(--dark-bg-light));
    overflow: hidden;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.carousel-wrapper {
    position: relative;
}

.carousel-container {
    perspective: 2000px;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 0 40px;
}

.carousel-3d {
    width: 420px;
    height: 580px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCarousel 40s infinite linear;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-3d.paused {
    animation-play-state: paused;
}

.carousel-3d:hover {
    animation-play-state: paused;
}

.review-card-3d {
    position: absolute;
    width: 420px;
    height: 580px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
    backdrop-filter: blur(40px);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    overflow: hidden;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
    transform: skewX(-15deg);
    animation: shine 8s infinite;
}

@keyframes shine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 150%;
    }
}

/* Calculate 3D positioning for 5 cards */
.review-card-3d[data-index="0"] {
    transform: rotateY(0deg) translateZ(550px);
}

.review-card-3d[data-index="1"] {
    transform: rotateY(72deg) translateZ(550px);
}

.review-card-3d[data-index="2"] {
    transform: rotateY(144deg) translateZ(550px);
}

.review-card-3d[data-index="3"] {
    transform: rotateY(216deg) translateZ(550px);
}

.review-card-3d[data-index="4"] {
    transform: rotateY(288deg) translateZ(550px);
}

@keyframes rotateCarousel {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

.review-header {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.client-avatar {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-purple);
}

.avatar-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-teal));
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
}

.client-info h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.client-info p {
    color: var(--text-gray-dark);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.client-location {
    color: var(--primary-purple-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.rating-stars i {
    color: var(--accent-orange);
    font-size: 1rem;
}

.rating-number {
    margin-left: 8px;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
}

.review-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-teal);
    font-size: 0.85rem;
    font-weight: 600;
}

.verified-badge i {
    font-size: 1.1rem;
}

.review-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-gray-dark);
    font-size: 0.85rem;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 120px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-purple);
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-btn:hover {
    background: var(--primary-purple);
    color: var(--text-white);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

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

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.3);
    cursor: pointer;
    transition: all var(--transition-base);
}

.indicator.active,
.indicator:hover {
    background: var(--primary-purple);
    transform: scale(1.3);
}

.carousel-autoplay-toggle {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.autoplay-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--primary-purple);
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-purple-light);
    cursor: pointer;
    transition: all var(--transition-base);
}

.autoplay-btn:hover {
    background: var(--primary-purple);
    color: var(--text-white);
}

/* Contact Section */
.contact-section {
    background: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    color: var(--text-white);
    margin-bottom: 40px;
    font-size: 2rem;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: all var(--transition-base);
}

.contact-item:hover {
    border-color: var(--primary-purple);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(20, 184, 166, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple-light), var(--accent-teal-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-details h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.contact-details p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Social Media Section */
.social-media-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.social-media-section h4 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

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

.social-icon:hover::before {
    width: 100px;
    height: 100px;
}

.social-icon i {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.social-icon:hover i {
    transform: scale(1.2) rotate(360deg);
}

.social-icon:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877F2, #0865DC);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #E4405F, #FD1D1D, #FCAF45);
}

.social-icon.linkedin {
    background: linear-gradient(135deg, #0077B5, #005582);
}

.social-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.social-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.social-icon:hover .social-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Contact Form */
.contact-form {
    background: rgba(30, 41, 59, 0.5);
    padding: 50px;
    border-radius: var(--card-radius);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all var(--transition-base);
}

.form-control option {
    background: var(--dark-bg);
    color: var(--text-white);
}

.form-control[type="file"] {
    padding: 10px;
    height: auto;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Modern Footer */
.modern-footer {
    background: linear-gradient(180deg, var(--dark-bg-light) 0%, #050911 100%);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), var(--accent-teal), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-teal);
    border-radius: 2px;
}

.footer-desc {
    color: var(--text-gray);
    margin: 20px 0 30px;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 350px;
}

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

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

.footer-column ul li a {
    color: var(--text-gray);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--primary-purple-light);
    transform: translateX(5px);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer-contact-list i {
    color: var(--accent-teal);
    font-size: 1.1rem;
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
}

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

.copyright {
    color: var(--text-gray-dark);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-gray-dark);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-teal);
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-desc {
        max-width: 100%;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-teal));
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 9998;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 0.8s ease forwards;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 0.8s ease forwards;
}

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

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
}

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

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.about-img-main {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.6) 100%);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid var(--accent-teal);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-teal);
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 600;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-desc {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary-purple-light), var(--accent-teal-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }
}

/* Write Review Button */
.write-review-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Modal System */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: linear-gradient(135deg, var(--dark-bg-light), var(--dark-bg));
    border-radius: 24px;
    padding: 50px;
    z-index: 2;
    border: 1px solid rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-xl);
    transform: translateY(30px);
    transition: transform var(--transition-base);
    max-height: 90vh;
    overflow-y: auto;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-pink);
}

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

.modal-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-gray-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 10px;
    font-size: 1.5rem;
    margin-top: 5px;
}

.star-rating i {
    color: var(--text-gray-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating i.active,
.star-rating i.hover {
    color: var(--accent-orange);
    transform: scale(1.1);
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 30px;
        margin: 20px;
    }
}

/* Overall Rating Circle Styles */
.overall-rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.overall-rating-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.rating-circle-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 50%;
    padding: 10px;
    box-shadow: var(--shadow-xl), inset 0 0 20px rgba(124, 58, 237, 0.1);
}

.rating-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.rating-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 6;
}

.rating-progress {
    fill: none;
    stroke: url(#ratingGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 2.5s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 0 8px var(--primary-purple));
}

.overall-rating-container.visible .rating-progress {
    stroke-dashoffset: 0;
    /* Target: 100% (5.0/5) */
}

.rating-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.rating-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.1;
    font-family: var(--font-display);
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.rating-stars-mini {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 5px;
}

.rating-stars-mini i {
    color: var(--accent-orange);
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.4));
}

.rating-info {
    text-align: center;
}

.rating-info h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.rating-info p {
    color: var(--text-gray);
    font-size: 1rem;
    max-width: 300px;
}

/* Add a pulse animation to the value */
@keyframes ratingPulse {

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

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.overall-rating-container.visible .rating-value {
    animation: ratingPulse 3s infinite ease-in-out 2.5s;
}

/* Modern File Upload CTA */
.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-upload-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 15px !important;
    border: 2px dashed rgba(124, 58, 237, 0.4) !important;
    background: rgba(124, 58, 237, 0.05) !important;
    color: var(--text-gray) !important;
    cursor: pointer;
    transition: all var(--transition-base);
    border-radius: 12px !important;
    font-family: var(--font-body);
    font-weight: 500;
}

.file-upload-cta:hover {
    background: rgba(124, 58, 237, 0.1) !important;
    border-color: var(--primary-purple) !important;
    color: var(--text-white) !important;
    transform: translateY(-2px);
}

.file-upload-cta i {
    font-size: 1.4rem;
    color: var(--primary-purple-light);
}

.file-upload-cta.selected {
    border: 2px solid var(--accent-teal) !important;
    background: rgba(20, 184, 166, 0.1) !important;
    color: var(--accent-teal-light) !important;
}

.file-upload-cta.selected i {
    color: var(--accent-teal-light);
}

/* Notification System */
.notification {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 15px 25px;
    border-radius: 12px;
    background: #1E293B;
    color: #F8FAFC;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    animation: slideInRight 0.4s ease-out;
    transition: all 0.4s ease;
}

.notification.success {
    border-color: #14B8A6;
}

.notification.error {
    border-color: #EC4899;
}

.notification i {
    font-size: 1.25rem;
}

.notification.success i {
    color: #14B8A6;
}

.notification.error i {
    color: #EC4899;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

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