/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    overflow-x: hidden;
    background: linear-gradient(135deg, #22c1c3 0%, #fdbb2d 100%);
    background-attachment: fixed;
}

/* New Color Variables with Your Theme */
:root {
    --primary-color: #22c1c3;
    --secondary-color: #fdbb2d;
    --gradient-primary: linear-gradient(135deg, #22c1c3 0%, #fdbb2d 100%);
    --gradient-secondary: linear-gradient(135deg, #fdbb2d 0%, #22c1c3 100%);
    --gradient-vertical: linear-gradient(180deg, #22c1c3 0%, #fdbb2d 100%);
    --gradient-radial: radial-gradient(circle at 30% 70%, #22c1c3 0%, #fdbb2d 100%);
    --dark-cyan: #1ea0a3;
    --light-gold: #fdc546;
    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --bg-light: #f7fafc;
    --shadow-light: 0 4px 20px rgba(34, 193, 195, 0.15);
    --shadow-medium: 0 10px 40px rgba(34, 193, 195, 0.2);
    --shadow-heavy: 0 20px 60px rgba(34, 193, 195, 0.25);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1 { font-size: 4rem; font-weight: 800; }
h2 { font-size: 3rem; font-weight: 700; }
h3 { font-size: 2rem; font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Modern Glass Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-heavy);
    filter: brightness(1.1);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-medium);
}

.btn-full {
    width: 100%;
}

/* Utility Classes */
.text-primary { 
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-center { text-align: center; }

/* Modern Glass Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.header-top {
    background: var(--gradient-primary);
    padding: 6px 0;
    min-height: 50px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
}

.contact-info span {
    color: white;
    margin-right: 25px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
}

.header-cta {
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.navbar {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(34, 193, 195, 0.1);
}

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

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(34, 193, 195, 0.3));
    transition: transform 0.3s ease;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 16px;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(34, 193, 195, 0.1);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Ultra Modern Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #22c1c3 0%, #fdbb2d 100%);
    padding-top: 140px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(253, 187, 45, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 193, 195, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-bg-img {
    display: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-text {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-heavy);
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text h1 .text-primary {
    background: linear-gradient(135deg, #fdbb2d 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-contact {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-contact span {
    color: white;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-contact span::before {
    content: '✉';
    font-size: 18px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 30px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-person {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(1.1) contrast(1.1);
}

/* Modern Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-medium);
    animation: floatCard 4s ease-in-out infinite;
}

.card-1 {
    top: 15%;
    right: -40px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 25%;
    left: -40px;
    animation-delay: 1.5s;
}

.card-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.8;
}

.dot.green { background: #10b981; }
.dot.orange { background: #f59e0b; }
.dot.blue { background: #3b82f6; }

.chart-bars {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 30px;
}

.bar {
    width: 6px;
    border-radius: 3px;
    opacity: 0.9;
}

.bar-red { height: 80%; background: #ef4444; }
.bar-orange { height: 60%; background: #f59e0b; }
.bar-yellow { height: 100%; background: #eab308; }
.bar-blue { height: 40%; background: #3b82f6; }
.bar-purple { height: 70%; background: #8b5cf6; }

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape-circle {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 30%;
    right: 20px;
    animation: floatShape 3s ease-in-out infinite;
}

.shape-circle.yellow { background: #fbbf24; }

.shape-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #22c1c3;
    top: 60%;
    right: 60px;
    animation: floatShape 4s ease-in-out infinite reverse;
}

.shape-line {
    position: absolute;
    width: 40px;
    height: 2px;
    background: #fdbb2d;
    top: 80%;
    right: 30px;
    border-radius: 2px;
    animation: floatShape 2s ease-in-out infinite;
}

/* Enhanced Floating Icons with New Colors */
.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    color: #fff;
    z-index: 2;
    opacity: 0.95;
    box-shadow: var(--shadow-medium);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: floatIcon 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.floating-icon:hover {
    transform: scale(1.2) rotate(-8deg);
    box-shadow: var(--shadow-heavy);
}

.floating-icon-code {
    top: 8%;
    left: -70px;
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation-delay: 0s;
}

.floating-icon-gear {
    bottom: 10%;
    left: -60px;
    width: 65px;
    height: 65px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    animation-delay: 1.5s;
}

.floating-icon-cloud {
    top: 20%;
    right: -70px;
    width: 68px;
    height: 68px;
    background: var(--gradient-radial);
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
    animation-delay: 2.5s;
}

.floating-icon-cursor {
    bottom: 15%;
    right: -60px;
    width: 62px;
    height: 62px;
    background: var(--gradient-vertical);
    border-radius: 25px;
    animation-delay: 3.5s;
}

/* Modern Animations */
@keyframes floatIcon {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
    25% { transform: translateY(-20px) scale(1.05) rotate(-3deg); }
    50% { transform: translateY(-10px) scale(1.02) rotate(2deg); }
    75% { transform: translateY(5px) scale(0.98) rotate(-1deg); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

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

/* Modern Glass Stats Section */
.stats-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    margin: -50px 20px 50px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
}

.stat-item {
    padding: 40px 30px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-light);
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-heavy);
    background: rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: block;
}

.stat-label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Modern About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(34,193,195,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow-heavy);
    filter: brightness(1.1) contrast(1.05);
}

.about-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--gradient-primary);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
}

.about-text {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-medium);
}

.about-text h2 {
    margin-bottom: 25px;
    color: var(--text-dark);
    font-size: 3rem;
}

.about-text p {
    margin-bottom: 35px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-light);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 28px;
    margin-top: 5px;
    padding: 15px;
    background: rgba(34, 193, 195, 0.1);
    border-radius: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-item p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-light);
}

/* Modern Services Section */
.services-section {
    padding: 120px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

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

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

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.service-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover .service-arrow {
    transform: translate(5px, -5px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

/* Modern Process Section */
.process-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,2 26,8 26,22 15,28 4,22 4,8" fill="none" stroke="rgba(34,193,195,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
    opacity: 0.6;
}

.process-section .section-header {
    position: relative;
    z-index: 2;
}

.process-section .section-header h2 {
    color: var(--text-dark);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-section .section-header p {
    color: var(--text-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.process-step {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-medium);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-medium);
}

.process-step h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

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

.contact-info-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.contact-info-card h3 {
    margin-bottom: 15px;
    color: #1a202c;
}

.contact-info-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.form-text h2 {
    margin-bottom: 20px;
    color: #1a202c;
}

.form-text p {
    margin-bottom: 40px;
    color: #666;
    font-size: 1.1rem;
}

.contact-features .feature {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-features .feature i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 5px;
}

.contact-features .feature h4 {
    margin-bottom: 5px;
    color: #1a202c;
}

.contact-features .feature p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.form-header h3 {
    margin-bottom: 10px;
    color: #1a202c;
}

.form-header p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a202c;
    font-size: 14px;
}

.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.checkbox-group {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

/* Map Section */
.map-section {
    padding: 0;
    background: white;
}

.map-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.map-embed {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    z-index: 2;
}

.map-info h3 {
    margin-bottom: 15px;
    color: #1a202c;
}

.map-info p {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.office-hours h4 {
    margin-bottom: 10px;
    color: #1a202c;
    font-size: 16px;
}

.office-hours ul {
    list-style: none;
    margin-bottom: 20px;
}

.office-hours li {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" patternUnits="userSpaceOnUse" width="25" height="25"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
}

.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.services-section .section-header h2 {
    color: white;
    margin-bottom: 15px;
}

.services-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.section-header h2 {
    color: #1a202c;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 2;
}

.service-arrow {
    margin-top: 20px;
    color: var(--secondary-color);
    font-size: 20px;
    position: relative;
    z-index: 2;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1.5" fill="%2300b09b" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    animation: float 8s ease-in-out infinite;
}

.process-section .section-header h2 {
    color: #1a202c;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8fafc;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover::before {
    opacity: 0.05;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 176, 155, 0.15);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    position: relative;
    z-index: 2;
}

.process-step h3 {
    margin-bottom: 15px;
    color: #1a202c;
    position: relative;
    z-index: 2;
}

.process-step p {
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Modern Testimonials Section - Fixed */
.testimonials-section {
    padding: 120px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.testimonials-section .section-header h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: none;
    -webkit-text-fill-color: white;
}

.testimonials-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    min-height: 500px;
    z-index: 2;
    margin-bottom: 40px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 50px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-heavy);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: bold;
}

.testimonial-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: white;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: center;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
    background: none;
    -webkit-text-fill-color: white;
}

.author-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 1.5rem;
    color: #fdbb2d;
    margin-bottom: 20px;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 3;
}

.testimonial-arrow {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.testimonial-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.testimonial-arrow:active {
    transform: scale(0.95);
}

.testimonial-dots {
    display: flex;
    gap: 12px;
}

.testimonial-dots .nav-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-dots .nav-dot.active {
    background: white;
    transform: scale(1.2);
    border-color: white;
}

.testimonial-dots .nav-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Modern FAQ Section */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="question" width="40" height="40" patternUnits="userSpaceOnUse"><text x="20" y="25" text-anchor="middle" font-family="Arial" font-size="20" fill="rgba(34,193,195,0.05)">?</text></pattern></defs><rect width="100" height="100" fill="url(%23question)"/></svg>');
    opacity: 0.7;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.faq-section .section-header h2 {
    color: var(--text-dark);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    transition: left 0.5s ease;
}

.faq-item:hover::before {
    left: 0;
}

.faq-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.faq-item h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Ultra Modern Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow-heavy);
}

.contact-info h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 50px;
    line-height: 1.7;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateX(10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-medium);
}

.contact-item i {
    color: #fdbb2d;
    font-size: 2rem;
    margin-top: 5px;
    padding: 15px;
    background: rgba(253, 187, 45, 0.2);
    border-radius: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.contact-item div {
    position: relative;
    z-index: 2;
}

.contact-item h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Ultra Modern Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 30px 30px 0 0;
}

.contact-form h3 {
    color: var(--text-dark);
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form {
    position: relative;
    z-index: 2;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 16px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(34, 193, 195, 0.1);
    background: white;
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    font-weight: 500;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    font-family: inherit;
}

.btn-full {
    width: 100%;
    margin-top: 20px;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
}

.footer-content {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    margin-bottom: 20px;
    color: #a0aec0;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col .contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-col .contact-info i {
    color: var(--primary-color);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

/* Newsletter Form */
.newsletter-form .input-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #2d3748;
    border-radius: 25px;
    background: #2d3748;
    color: white;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #a0aec0;
}

.newsletter-form button {
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    background: var(--gradient-primary);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--dark-green);
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #2d3748;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #a0aec0;
    font-size: 14px;
}

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

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banner-inner.png') center/cover no-repeat;
    opacity: 0.1;
}

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

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb span {
    margin: 0 10px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Detail Section */
.services-detail-section {
    padding: 100px 0;
    background: white;
}

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

.services-detail-text h2 {
    margin-bottom: 20px;
    color: #1a202c;
    font-size: 2.2rem;
}

.services-detail-text p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.member {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.member:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 176, 155, 0.1);
}

.member img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.member-info h4 {
    margin-bottom: 5px;
    color: #1a202c;
    font-size: 1.1rem;
}

.member-info p {
    margin: 0;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

.services-detail-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.image-grid img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.img-1 {
    grid-column: span 2;
    height: 250px;
    object-fit: cover;
}

.img-2, .img-3 {
    height: 180px;
    object-fit: cover;
}

/* Detailed Services Section */
.detailed-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.detailed-services-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: url('../images/banner-inner.png') center/contain no-repeat;
    opacity: 0.05;
    animation: float 8s ease-in-out infinite;
}

.detailed-services-section .section-header {
    margin-bottom: 60px;
}

.detailed-services-section .section-header h2 {
    color: #1a202c;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.detailed-services-section .section-header h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.service-details {
    display: grid;
    gap: 30px;
}

.service-detail-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 176, 155, 0.15);
}

.service-detail-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: flex-start;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.service-detail-card h3 {
    margin-bottom: 15px;
    color: #1a202c;
    font-size: 1.5rem;
}

.service-detail-card p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #666;
}

.service-features {
    list-style: none;
    margin-bottom: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.service-features i {
    color: var(--secondary-color);
    font-size: 12px;
}

.service-arrow {
    color: var(--primary-color);
    font-size: 24px;
    align-self: center;
    transition: transform 0.3s ease;
}

.service-detail-card:hover .service-arrow {
    transform: translateX(5px);
}

/* Service Overview Section */
.service-overview-section {
    padding: 100px 0;
    background: white;
}

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

.service-overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 700;
}

.service-overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #333;
}

.highlight-item i {
    color: var(--secondary-color);
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-overview-image {
    position: relative;
}

.service-overview-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Technologies Section */
.technologies-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tech-categories {
    display: grid;
    gap: 60px;
}

.tech-category h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1a202c;
    text-align: center;
    font-weight: 600;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
}

.tech-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tech-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 176, 155, 0.15);
}

.tech-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tech-item span {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

/* Development Process Section */
.development-process-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.development-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(even) {
    grid-template-columns: 1fr auto;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 176, 155, 0.3);
}

.timeline-content {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 600;
}

.timeline-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #666;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.timeline-content li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banner-inner.png') center/cover no-repeat;
    opacity: 0.05;
}

.pricing-section .section-header {
    position: relative;
    z-index: 2;
}

.pricing-section .section-header h2,
.pricing-section .section-header p {
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--secondary-color);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 600;
}

.price {
    margin-bottom: 30px;
}

.price .currency {
    font-size: 1.2rem;
    color: var(--primary-color);
    vertical-align: top;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price .period {
    color: #666;
    font-size: 1rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i.fa-check {
    color: var(--secondary-color);
}

.pricing-features i.fa-times {
    color: #ccc;
}

.btn-full {
    width: 100%;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #1a202c;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Inner Banner Styles */
.inner-banner {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    padding-top: 120px; /* Prevents overlap with fixed header */
    border-bottom: 1px solid rgba(34, 193, 195, 0.1);
}

.inner-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 193, 195, 0.05) 0%, rgba(253, 187, 45, 0.05) 100%);
    z-index: 1;
}

.inner-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
    opacity: 0.1;
}

.inner-banner .container {
    position: relative;
    z-index: 3;
}

.page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: #22c1c3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fdbb2d;
}

.breadcrumb span {
    color: #718096;
}

.inner-banner h1 {
    color: #2d3748;
    font-size: 4rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inner-banner p {
    color: #4a5568;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .inner-banner {
        min-height: 180px;
        padding-top: 80px; /* Smaller header on mobile */
    }
    .inner-banner h1 {
        font-size: 2rem;
    }
}

/* Modern Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .about-content {
        gap: 60px;
    }
    
    .contact-content {
        gap: 60px;
    }
}

@media (max-width: 968px) {
    /* Typography Mobile */
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.6rem; }
    h4 { font-size: 1.3rem; }
    
    /* Header Top Mobile */
    .header-top {
        padding: 15px 0;
        min-height: 45px;
    }
    
    .header-top .container {
        min-height: 45px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .contact-info {
        order: 1;
        flex: 1;
    }
    
    .contact-info span {
        font-size: 13px;
        margin-right: 15px;
    }
    
    .header-cta {
        order: 2;
        font-size: 13px;
        padding: 8px 16px;
    }
    
    /* Navigation Mobile */
    .nav-menu {
        display: none;
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        z-index: 1000;
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero Mobile */
    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-text {
        padding: 40px 30px;
        order: 2;
    }
    
    .hero-text h1 {
        font-size: 3.2rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-img-container {
        padding: 20px;
    }
    
    /* Floating Elements Mobile */
    .floating-icon {
        display: none;
    }
    
    .floating-card {
        display: none;
    }
    
    /* Stats Mobile */
    .stats-section {
        margin: 0 20px;
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    /* About Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text {
        padding: 40px 30px;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-item i {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        padding: 12px;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    /* Process Mobile */
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .process-step {
        padding: 40px 25px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-section .section-header h2 {
        font-size: 2.5rem;
    }
    
    .testimonial-slider {
        min-height: 550px;
    }
    
    .testimonial-content {
        padding: 40px 30px;
        margin-bottom: 30px;
    }
    
    .testimonial-content p {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .testimonial-content::before {
        font-size: 6rem;
        top: -15px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .author-info {
        text-align: center;
    }
    
    .testimonial-author img {
        width: 60px;
        height: 60px;
        border-width: 3px;
    }
    
    .author-info h4 {
        font-size: 1.1rem;
    }
    
    .author-info span {
        font-size: 0.9rem;
    }
    
    .testimonial-rating {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .testimonial-nav {
        gap: 20px;
        margin-top: 30px;
    }
    
    .testimonial-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .testimonial-dots .nav-dot {
        width: 12px;
        height: 12px;
    }
    
    /* FAQ Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info,
    .contact-form {
        padding: 40px 30px;
    }
    
    .contact-info h2 {
        font-size: 2.2rem;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-item i {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        padding: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 15px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    /* Header Top Ultra Mobile */
    .header-top {
        padding: 12px 0;
        min-height: 40px;
    }
    
    .header-top .container {
        min-height: 40px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .contact-info {
        order: 1;
        width: 100%;
    }
    
    .contact-info span {
        font-size: 12px;
        margin-right: 10px;
        display: inline-block;
        margin-bottom: 5px;
    }
    
    .header-cta {
        order: 2;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* Ultra Mobile */
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .stats-section {
        margin: 0 10px;
        padding: 50px 0;
    }
    
    .about-text,
    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
    
    /* Ultra Mobile Testimonials */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonial-slider {
        min-height: 600px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .testimonial-content::before {
        font-size: 4rem;
        top: -10px;
    }
    
    .testimonial-author {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.85rem;
    }
    
    .testimonial-rating {
        font-size: 1.1rem;
    }
    
    .testimonial-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonial-dots .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .faq-item {
        padding: 20px 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

/* Advanced Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(15px) rotate(-2deg); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes slideInLeft {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

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

@keyframes fadeInUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

/* Scroll Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.fade-in-right {
    animation: slideInRight 0.8s ease forwards;
}

.bounce-in {
    animation: bounceIn 1s ease forwards;
}

/* High Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    image-rendering: optimizeQuality;
}

.hero,
.about-section,
.services-section,
.process-section,
.testimonials-section,
.faq-section,
.contact-section {
    will-change: transform;
}

/* Loading States */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Focus States for Accessibility */
.btn:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: 3px solid rgba(34, 193, 195, 0.5);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .floating-elements,
    .testimonial-nav,
    .hero-buttons {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero,
    .about-section,
    .services-section,
    .contact-section {
        background: white !important;
        color: black !important;
    }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    /* Page Header Mobile */
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    /* Services Detail Section Mobile */
    .services-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-detail-text h2 {
        font-size: 1.8rem;
    }
    
    .member {
        padding: 15px;
    }
    
    .member img {
        width: 50px;
        height: 50px;
    }
    
    .image-grid {
        gap: 10px;
    }
    
    .img-1 {
        height: 200px;
    }
    
    .img-2, .img-3 {
        height: 150px;
    }
    
    /* Detailed Services Section Mobile */
    .detailed-services-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .detailed-services-section .section-header h3 {
        font-size: 1.4rem;
    }
    
    .service-detail-card {
        padding: 25px;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .service-detail-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin: 0 auto;
    }
    
    .service-arrow {
        display: none;
    }
    
    .service-detail-card h3 {
        font-size: 1.3rem;
    }
    
    .service-features {
        text-align: left;
    }
}

/* Responsive Design for Web Development Page */
@media (max-width: 768px) {
    /* Service Overview Mobile */
    .service-overview-content {
               grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-overview-text h2 {
        font-size: 2rem;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    
    /* Technologies Mobile */
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .tech-item {
        padding: 20px 15px;
    }
    
    .tech-item i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .tech-item span {
        font-size: 1rem;
    }
    
    /* Development Process Mobile */
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .timeline-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        border-left: 4px solid var(--primary-color);
        border-right: none;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .timeline-content {
        padding: 25px;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    /* Pricing Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card:hover,
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 25px;
    }
    
    /* CTA Mobile */
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .services-detail-section {
        padding: 60px 0;
    }
    
    .detailed-services-section {
        padding: 60px 0;
    }
    
    .service-detail-card {
        padding: 20px;
    }
    
    .member {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Privacy Policy Styles */
.policy-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 176, 155, 0.10), 0 1.5px 8px rgba(150, 201, 61, 0.08);
    padding: 48px 32px 32px 32px;
    margin: 40px auto 60px auto;
    max-width: 800px;
    position: relative;
    z-index: 2;
    transition: box-shadow 0.3s;
}
.policy-card h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.policy-card h2 i {
    color: var(--secondary-color);
    font-size: 2rem;
}
.policy-intro {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
}
.policy-section {
    margin-bottom: 2.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #f0f0f0;
}
.policy-section:last-child {
    border-bottom: none;
}
.policy-section h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.policy-section h3 i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}
.policy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.7rem;
}
.policy-list li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #555;
    padding-left: 1.5em;
    position: relative;
}
.policy-list li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1em;
}
.policy-thankyou {
    margin-top: 2.5rem;
    font-size: 1.1rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 500;
}
@media (max-width: 600px) {
    .policy-card {
        padding: 24px 10px 18px 10px;
    }
    .policy-card h2 {
        font-size: 1.3rem;
    }
    .policy-section h3 {
        font-size: 1rem;
    }
}

/* About Page Specific Styles - White Background Theme */
.about-detail-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 193, 195, 0.03) 0%, rgba(253, 187, 45, 0.03) 100%);
    z-index: 1;
}

.about-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-detail-text h2 {
    color: #2d3748;
    font-size: 3rem;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-detail-text p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.company-values {
    margin-top: 40px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(34, 193, 195, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 193, 195, 0.15);
    border-color: rgba(34, 193, 195, 0.3);
}

.value-item i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 50px;
}

.value-item h4 {
    color: #2d3748;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-item p {
    color: #718096;
    margin: 0;
    font-size: 1rem;
}

.about-detail-image {
    position: relative;
}

.about-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(34, 193, 195, 0.2);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--gradient-primary);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Section */
.team-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 80px;
}

.section-header h2 {
    color: #2d3748;
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: #718096;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(34, 193, 195, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 193, 195, 0.05) 0%, rgba(253, 187, 45, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(34, 193, 195, 0.2);
    border-color: rgba(34, 193, 195, 0.3);
}

.member-image {
    position: relative;
    margin-bottom: 30px;
    display: inline-block;
}

.member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: var(--gradient-primary);
    padding: 4px;
}

.member-social {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.team-member:hover .member-social {
    opacity: 1;
    transform: translateY(0);
}

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

.member-social a:hover {
    transform: scale(1.1);
}

.member-info h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-info p {
    color: #22c1c3;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
}

.member-info span {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mission & Vision Section */
.mission-vision-section {
    background: #f8fafc;
    padding: 100px 0;
    position: relative;
}

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

.mission-vision-item {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(34, 193, 195, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-vision-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 193, 195, 0.05) 0%, rgba(253, 187, 45, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-vision-item:hover::before {
    opacity: 1;
}

.mission-vision-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(34, 193, 195, 0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mission-vision-item h3 {
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.mission-vision-item p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Why Choose Us Section */
.why-choose-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(34, 193, 195, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 193, 195, 0.05) 0%, rgba(253, 187, 45, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(34, 193, 195, 0.2);
    border-color: rgba(34, 193, 195, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-detail-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-detail-text h2 {
        font-size: 2.5rem;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-detail-section,
    .team-section,
    .mission-vision-section,
    .why-choose-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
