 /* Reset and Base Styles */
 :root {
    --primary-blue: #4285F4;
    --primary-red: #EA4335;
    --primary-yellow: #FBBC05;
    --primary-green: #34A853;
    --dark-text: #202124;
    --light-text: #5f6368;
    --lighter-text: #9aa0a6;
    --background-light: #ffffff;
    --background-off: #f8f9fa;
    --background-dark: #202124;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 30px rgba(0, 0, 0, 0.12);
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.5s ease;
    --transition-slow: all 0.8s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 15px;
    --border-radius-lg: 30px;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--background-light);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--light-text);
    font-size: 1.05rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    font-family: var(--font-secondary);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-red), var(--primary-yellow), var(--primary-green));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-blue), var(--primary-red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234285F4' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.03) 0%, rgba(234, 67, 53, 0.03) 100%);
    z-index: 0;
}

.bg-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(var(--primary-blue) 1px, transparent 1px), radial-gradient(var(--primary-red) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.03;
    z-index: 0;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.1;
    border-radius: 50%;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: var(--primary-blue);
    animation: float 15s infinite ease-in-out;
}

.shape-2 {
    bottom: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: var(--primary-red);
    animation: float 18s infinite ease-in-out reverse;
}

.shape-3 {
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: var(--primary-yellow);
    animation: float 20s infinite ease-in-out;
    opacity: 0.05;
}

.shape-4 {
    bottom: 30%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: var(--primary-green);
    animation: float 12s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(0, -40px) rotate(10deg);
    }
    75% {
        transform: translate(-20px, -20px) rotate(5deg);
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-yellow) 100%);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

header.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: 10px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-red), var(--primary-yellow), var(--primary-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-secondary);
}

.google-icon {
    width: 30px;
    height: 30px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-red));
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-blue);
}

nav ul li a:hover:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-blue);
}

nav ul li a.active:after {
    width: 100%;
}

.nav-cta {
    margin-left: 20px;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--dark-text);
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    position: relative;
    background-color: var(--background-light);
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.1) 0%, rgba(66, 133, 244, 0) 70%);
}

.hero:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 67, 53, 0.1) 0%, rgba(234, 67, 53, 0) 70%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    margin-left: 50px;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-medium);
}

.hero-image:hover img {
    transform: scale(1.02) rotate(1deg);
}

.hero-image:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-md);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    z-index: -1;
    opacity: 0.5;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: var(--font-secondary);
    background: linear-gradient(to right, var(--dark-text), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    font-weight: 600;
    font-family: var(--font-secondary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.google-logo {
    display: inline-block;
}

.google-logo span {
    font-size: 4rem;
    font-weight: bold;
}

.g-blue {
    color: var(--primary-blue);
}

.g-red {
    color: var(--primary-red);
}

.g-yellow {
    color: var(--primary-yellow);
}

.g-green {
    color: var(--primary-green);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* About Section */
.about {
    background-color: var(--background-light);
    position: relative;
}

.about:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 188, 5, 0.1) 0%, rgba(251, 188, 5, 0) 70%);
    border-radius: 50%;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 0 0 40%;
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: var(--border-radius-md);
    transition: var(--transition-medium);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-yellow) 100%);
    border-radius: var(--border-radius-md);
    z-index: -1;
    opacity: 0.5;
}

.about-content {
    flex: 0 0 55%;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
    font-family: var(--font-secondary);
}

.about-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-red), var(--primary-yellow));
    border-radius: 2px;
}

.about-text {
    margin-bottom: 1.5rem;
    color: var(--light-text);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-name {
    font-weight: 700;
    color: var(--primary-red);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.social-icons .linkedin {
    background: linear-gradient(135deg, #0077B5, #0e4e73);
}

.social-icons .twitter {
    background: linear-gradient(135deg, #1DA1F2, #0d8ad6);
}

.social-icons .facebook {
    background: linear-gradient(135deg, #4267B2, #2f4a80);
}

.social-icons .instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-icons .youtube {
    background: linear-gradient(135deg, #FF0000, #cc0000);
}

.about-username {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 25px;
    display: block;
}

.about-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--dark-text) 0%, var(--light-text) 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Process Section */
.process {
    background-color: var(--background-off);
    position: relative;
}

.process-container {
    margin-top: 60px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 80px;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-red), var(--primary-yellow), var(--primary-green));
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-text);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-fast);
}

.process-step:hover .step-number {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 2px dashed var(--primary-blue);
    opacity: 0.5;
}

.step-1 .step-number {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1) 0%, rgba(66, 133, 244, 0.3) 100%);
}

.step-2 .step-number {
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.1) 0%, rgba(234, 67, 53, 0.3) 100%);
}

.step-3 .step-number {
    background: linear-gradient(135deg, rgba(251, 188, 5, 0.1) 0%, rgba(251, 188, 5, 0.3) 100%);
}

.step-4 .step-number {
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.1) 0%, rgba(52, 168, 83, 0.3) 100%);
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.step-description {
    font-size: 0.95rem;
    color: var(--light-text);
}

/* Services Section */
.services {
    background-color: var(--background-light);
    position: relative;
}

.services:before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 168, 83, 0.1) 0%, rgba(52, 168, 83, 0) 70%);
    border-radius: 50%;
}

.services:after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.1) 0%, rgba(66, 133, 244, 0) 70%);
    border-radius: 50%;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    flex: 1;
    max-width: 350px;
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    position: relative;
    z-index: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-lg);
}

.pricing-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
}

.pricing-header {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-header:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    z-index: 0;
}

.basic .pricing-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: white;
}

.premium .pricing-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-yellow) 100%);
    color: white;
}

.standard .pricing-header {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-green) 100%);
    color: white;
}

.pricing-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    font-family: var(--font-secondary);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-features {
    padding: 30px 20px;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    color: var(--light-text);
    position: relative;
    padding-left: 30px;
}

.pricing-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
}

.basic .pricing-features li:before {
    color: var(--primary-blue);
}

.premium .pricing-features li:before {
    color: var(--primary-red);
}

.standard .pricing-features li:before {
    color: var(--primary-yellow);
}

.pricing-btn {
    display: block;
    padding: 14px 15px;
    text-decoration: none;
    text-align: center;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    margin: 0 auto;
    max-width: 200px;
    transition: var(--transition-fast);
    color: white;
    box-shadow: var(--shadow-md);
}

.basic .pricing-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
}

.premium .pricing-btn {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-yellow) 100%);
}

.standard .pricing-btn {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-green) 100%);
}

.pricing-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background: white;
    color: var(--primary-red);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
}

/* Portfolio Section */
.portfolio {
    background-color: var(--background-off);
    position: relative;
}

.portfolio-container {
    margin-top: 50px;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: white;
    border: none;
    border-radius: var(--border-radius-lg);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light-text);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-medium);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-medium);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-medium);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.portfolio-category {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--background-light);
    position: relative;
}

.testimonials:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(234, 67, 53, 0.1) 0%, rgba(234, 67, 53, 0) 70%);
    border-radius: 50%;
}

.testimonial-container {
    position: relative;
    margin-top: 50px;
    padding: 0 50px;
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    background-color: var(--dark-text);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    position: relative;
    min-width: 300px;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    padding: 30px;
    position: relative;
}

.testimonial-content:before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.1);
}

.testimonial-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.testimonial-text {
    margin: 20px 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-author {
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
    font-size: 1.2rem;
}

.testimonial-stars {
    color: var(--primary-yellow);
    margin-top: 15px;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark-text);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    z-index: 10;
}

.testimonial-nav:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: white;
    box-shadow: var(--shadow-lg);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    transform: scale(1.2);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiPjxwYXRoIGQ9Ik0wIDAgTDEwIDAgTDEwIDEwIEwwIDEwIFoiIGZpbGw9InJnYmEoMjU1LCAyNTUsIDI1NSwgMC4wNSkiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiLz48L3N2Zz4=');
    opacity: 0.2;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-box {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 200px;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-count {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.stat-title {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.faq {
    background-color: var(--background-off);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark-text);
    transition: var(--transition-fast);
}

.faq-question:hover h3 {
    color: var(--primary-blue);
}

.faq-icon {
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-medium);
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-item.active .faq-question {
    background-color: rgba(66, 133, 244, 0.05);
}

.faq-item.active .faq-question h3 {
    color: var(--primary-blue);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Contact Section */
.contact {
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.contact:before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.1) 0%, rgba(66, 133, 244, 0) 70%);
    border-radius: 50%;
}

.contact-container {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-text);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    font-size: 16px;
    transition: var(--transition-fast);
    background-color: var(--background-off);
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
    outline: none;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.contact-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: white;
    border: none;
    border-radius: var(--border-radius-lg);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    transition: var(--transition-fast);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark-text);
    position: relative;
    padding-bottom: 10px;
}

.contact-card-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-red));
    border-radius: 2px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1) 0%, rgba(66, 133, 244, 0.3) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.contact-info-text {
    color: var(--light-text);
}

.contact-map {
    height: 250px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Partners Section */
.partners {
    background-color: var(--background-off);
    padding: 80px 0;
}

.partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.partner-logo {
    max-width: 150px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-fast);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Footer Banner */
.footer-banner {
    background-color: white;
    padding: 50px 0;
    text-align: center;
}

.footer-banner-content {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    padding: 50px 30px;
    border-radius: var(--border-radius-md);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.footer-banner-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiPjxwYXRoIGQ9Ik0wIDAgTDEwIDAgTDEwIDEwIEwwIDEwIFoiIGZpbGw9InJnYmEoMjU1LCAyNTUsIDI1NSwgMC4wNSkiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiLz48L3N2Zz4=');
    opacity: 0.2;
}

.footer-banner-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.footer-banner-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--dark-text);
    color: white;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiPjxwYXRoIGQ9Ik0wIDAgTDEwIDAgTDEwIDEwIEwwIDEwIFoiIGZpbGw9InJnYmEoMjU1LCAyNTUsIDI1NSwgMC4wMikiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiLz48L3N2Zz4=');
    opacity: 0.1;
}

.footer-container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: 10px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-red), var(--primary-yellow), var(--primary-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-secondary);
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-red));
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
    margin-right: 10px;
    color: var(--primary-blue);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    padding: 0 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    border: none;
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    transform: translateY(-5px);
    background-color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .google-logo span {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
    }
    
    .hero-image {
        margin-left: 0;
        max-width: 80%;
    }

    .hero-stats {
        justify-content: center;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 50px;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }

    .process-steps {
        flex-direction: column;
        gap: 50px;
    }

    .process-steps:before {
        width: 2px;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        max-width: 80%;
        margin-bottom: 30px;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 20px);
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info {
        margin-top: 50px;
    }

    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: white;
        box-shadow: var(--shadow-md);
        transition: var(--transition-fast);
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 30px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .google-logo span {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .pricing-card, .testimonial-card {
        max-width: 100%;
    }

    .testimonial-card {
        flex: 0 0 calc(100% - 20px);
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .stat-box {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .google-logo span {
        font-size: 2.2rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .btn-group {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-box {
        flex: 0 0 100%;
    }

    .testimonial-container {
        padding: 0 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-radius: var(--border-radius-lg);
        margin-bottom: 10px;
    }

    .newsletter-btn {
        border-radius: var(--border-radius-lg);
        width: 100%;
        padding: 12px;
    }
}