/* CSS Variables */
:root {
  --primary: #4FADE3;
  --primary-hover: #2F94C9;
  --primary-dark: #1E6F9A;

  --primary-light: #BFE6F8;
  --primary-bg: #E6F6FD;

  --bg: #FFFFFF;
  --section-bg: #F5F7FA;

  --text-primary: #111827;
  --text-secondary: #6B7280;

  --border: #E5E7EB;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: #f8fafc;
    margin: 0;
    padding: 80px 0 0 0;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand a {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.admin-link {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(79, 173, 227, 0.3);
}

.admin-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(79, 173, 227, 0.4);
    color: white !important;
}

.admin-link::after {
    display: none;
}

.admin-link-footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white !important;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(79, 173, 227, 0.3);
    display: inline-block;
    margin-top: 5px;
}

.admin-link-footer:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(79, 173, 227, 0.4);
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-buttons .btn {
    margin: 0;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    min-width: 140px;
    text-align: center;
}

.hero-buttons .btn:not(.btn-outline) {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.hero-buttons .btn:not(.btn-outline):hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.hero-buttons .btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Page Container */
.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
}

/* Section Styles */
.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: white;
}

/* About Section */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Numbers Diagram Section */
.numbers-diagram {
    text-align: center;
    padding: 2rem 0;
}

.diagram-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.diagram-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services List */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    padding: 2rem;
    background: var(--bg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-item .service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.partner-logo i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.partner-logo span {
    font-weight: 600;
    color: var(--text-primary);
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 120px;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.logo-placeholder {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-bg);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: var(--bg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-hover);
}

/* Contact Form */
.contact-form-container {
max-width: 1200px;
margin: 0 auto;
}

.contact-form {
background: white;
padding: 3rem;
border-radius: 20px;
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(0, 0, 0, 0.05);
position: relative;
overflow: hidden;
}

.contact-form::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--primary), var(--primary-hover));
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.success-message,
.error-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
    border-radius: 2px;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.content-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.blog-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Clients Section */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-card {
    background: var(--bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.client-logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 0.8fr 1.5fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
    display: block;
}

.footer-logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-block;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #bdc3c7;
    max-width: 300px;
}

.footer-section:nth-child(2) {
    text-align: center;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-brand a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.social-links a.btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
}

.btn:active {
    transform: translateY(0);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
}

/* Scroll-Triggered Section Animations */
.section-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for elements within sections */
.stagger-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Different animation styles */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

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

.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.fade-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.fade-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(79, 173, 227, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

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

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-dark) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 173, 227, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hero {
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero-buttons .btn {
        width: 200px;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

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

    .section-title h2 {
        font-size: 2rem;
    }
}

/* ==========================================
   MODERN INDEX PAGE STYLES
   ========================================== */

/* CSS Variables Enhancement */
:root {
    --primary-rgb: 79, 173, 227;
    --secondary: #1E3A8A;
    --accent: #06B6D4;
    --dark: #0F172A;
    --darker: #020617;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-primary: 0 0 40px rgba(79, 173, 227, 0.3);
    --glow-accent: 0 0 60px rgba(6, 182, 212, 0.4);
}


/* Modern Hero Section */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(79, 173, 227, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
    z-index: 2;
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

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

.hero-content-modern {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 120px 20px 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: white;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-glow {
    box-shadow: 0 0 30px rgba(79, 173, 227, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-glow::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;
}

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

.btn-glow:hover {
    box-shadow: 0 0 50px rgba(79, 173, 227, 0.6);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.3rem;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    z-index: 10;
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

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

/* Section Tag */
.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary);
}

/* Section Header Modern */
.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-modern {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-title-modern .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-stats .section-subtitle {
    color: white;
}

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

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

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    display: inline-block;
}

.about-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle at center, rgba(79, 173, 227, 0.2) 0%, transparent 70%);
    border-radius: 20px;
    filter: blur(30px);
}

.about-image {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 100%;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary);
    font-size: 1.2rem;
}

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

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

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

.about-content-modern {
    padding: 20px 0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 173, 227, 0.3);
}

/* Stats Section */
section.section-stats {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.stats-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 40px 40px;
}

.stats-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(79, 173, 227, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.stat-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(79, 173, 227, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(79, 173, 227, 0.4);
    box-shadow: 0 30px 60px rgba(79, 173, 227, 0.3), 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.stat-card-1 {
    background: linear-gradient(145deg, rgba(79, 173, 227, 0.1) 0%, rgba(47, 148, 201, 0.05) 100%);
}

.stat-card-2 {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.1) 0%, rgba(109, 40, 217, 0.05) 100%);
}

.stat-card-3 {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
}

.stat-card-4 {
    background: linear-gradient(145deg, rgba(251, 146, 60, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.stat-number-wrapper {
    margin-bottom: 1.5rem;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(79, 173, 227, 0.3);
    display: inline-block;
    position: relative;
}

.stat-plus, .stat-percent {
    font-size: 2rem;
    font-weight: 700;
    color: #4fade3;
    margin-left: 0.2rem;
}

.stat-icon-wrapper {
    position: relative;
    margin: 0 auto 1.5rem;
    width: 70px;
    height: 70px;
}

.stat-icon-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(79, 173, 227, 0.2) 0%, rgba(47, 148, 201, 0.1) 100%);
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
}

.stat-card-1 .stat-icon-bg {
    background: linear-gradient(135deg, rgba(79, 173, 227, 0.2) 0%, rgba(47, 148, 201, 0.1) 100%);
}

.stat-card-2 .stat-icon-bg {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(109, 40, 217, 0.1) 100%);
}

.stat-card-3 .stat-icon-bg {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.1) 100%);
}

.stat-card-4 .stat-icon-bg {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2) 0%, rgba(249, 115, 22, 0.1) 100%);
}

.stat-icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(79, 173, 227, 0.4);
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4fade3 0%, #2f94c9 100%);
    border-radius: 2px;
    width: 0;
    animation: progressGrow 2s ease-out forwards;
    box-shadow: 0 0 10px rgba(79, 173, 227, 0.5);
}

.stats-bottom-line {
    text-align: center;
    margin-top: 3rem;
}

.stats-trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(79, 173, 227, 0.1);
    border-color: rgba(79, 173, 227, 0.3);
    transform: translateY(-3px);
}

.trust-badge i {
    font-size: 1.2rem;
    color: #4fade3;
}

@keyframes progressGrow {
    from { width: 0; }
    to { width: var(--progress-width, 90%); }
}

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

/* Services Section */
section.section-services {
    background: linear-gradient(180deg, #e2e8f0 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
}

.section-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(79, 173, 227, 0.08) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card-modern {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 2px solid #cbd5e1;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.service-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(79, 173, 227, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(79, 173, 227, 0.25), 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.service-card-modern:hover .service-card-glow {
    opacity: 1;
}

.service-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    position: relative;
    z-index: 1;
}

.service-card-modern h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card-modern p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-link:hover {
    gap: 12px;
}

/* Partners Section */
section.section-partners {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.partners-marquee {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(90deg, white 0%, transparent 100%);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(270deg, white 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 4rem;
    animation: marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

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

.partner-logo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.5rem 2rem;
    background: #f8fafc;
    border-radius: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.partner-logo-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.partner-logo-item i {
    font-size: 2rem;
    color: var(--primary);
}

.partner-logo-item span {
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

/* Testimonials Section */
section.section-testimonials {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(79, 173, 227, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonials-auto-scroll {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    margin: 0 -1rem;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    transform: translateZ(0);
    isolation: isolate;
}

/* Disable any particle animations in testimonials section */
.section-testimonials .particles-bg {
    display: none !important;
}

.section-testimonials canvas {
    display: none !important;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scrollTestimonials 40s linear infinite;
    width: fit-content;
    will-change: transform;
}

.testimonials-auto-scroll:hover .testimonials-track {
    animation-play-state: paused;
}

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

.testimonials-auto-scroll .testimonial-card {
    flex: 0 0 auto;
    width: 350px;
    transform: translateZ(0);
    will-change: transform;
    contain: layout style paint;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(79, 173, 227, 0.2);
}

/* Client Logo - Top Left Positioning */
.testimonial-client-logo {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    max-width: 100px;
    max-height: 50px;
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.testimonial-client-logo img {
    max-width: 80px;
    max-height: 40px;
    object-fit: contain;
}

/* Adjust quote position when logo is present */
.testimonial-card:has(.testimonial-client-logo) .testimonial-quote {
    margin-top: 2.5rem;
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.testimonial-rating {
    margin-top: 1rem;
    color: #fbbf24;
}

/* CTA Section */
section.section-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 40px 40px;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    margin-bottom: 2rem;
}

.cta-badge i {
    color: var(--primary);
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.cta-feature i {
    color: #10B981;
}

/* Responsive Styles for Modern Sections */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-visual {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .stats-trust-badges {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badge {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-auto-scroll .testimonial-card {
        width: 300px;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
    }
    
    .testimonials-auto-scroll .testimonial-card {
        width: 280px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .stats-grid,
    .services-grid-modern,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .marquee-track {
        animation-duration: 20s;
    }
}

/* Modern Component Styles - Additional */

/* Blog Modern Styles */
.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card-modern {
    background: var(--bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

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

.blog-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-light), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.blog-card-modern:hover .blog-card-glow {
    opacity: 0.1;
}

.blog-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.blog-card-modern:hover .blog-image {
    transform: scale(1.05);
}

.blog-placeholder-image {
    width: 100%;
    height: 100%;
    background: var(--section-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.blog-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content-modern {
    padding: 2rem;
}

.blog-meta-modern {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-content-modern h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-link-modern {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-link-modern:hover {
    gap: 1rem;
}

/* Pagination Modern */
.pagination-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination-link {
    padding: 0.75rem 1rem;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.pagination-active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

/* Newsletter Modern */
.newsletter-content-modern {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.newsletter-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.newsletter-form-modern .form-group-modern {
    flex: 1;
    margin-bottom: 0;
}

.newsletter-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Contact Modern */
.contact-container-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-header h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info-header p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-items-grid {
    display: grid;
    gap: 1.5rem;
}

.contact-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--section-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.contact-icon-bg {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--primary-hover));
    border-radius: 50%;
    opacity: 0.1;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

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

.contact-details p {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form-container-modern {
    background: var(--bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-modern label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group-modern input,
.form-group-modern textarea {
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg);
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 173, 227, 0.1);
}

.form-group-modern textarea {
    min-height: 120px;
    resize: vertical;
}

/* Map Modern */
.map-container-modern {
    margin-top: 3rem;
}

.map-header-modern {
    text-align: center;
    margin-bottom: 3rem;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.map-content {
    max-width: 400px;
    margin: 0 auto;
}

.map-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.map-icon-bg {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.map-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.map-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.map-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.map-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* Portfolio Modern */
.portfolio-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-card-modern {
    background: var(--bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

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

.portfolio-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-light), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.portfolio-card-modern:hover .portfolio-card-glow {
    opacity: 0.1;
}

.portfolio-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.portfolio-card-modern:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-placeholder-image {
    width: 100%;
    height: 100%;
    background: var(--section-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.portfolio-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.portfolio-content-modern {
    padding: 2rem;
}

.portfolio-content-modern h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.client-name-modern {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-description-modern {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-tags-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag-modern {
    background: var(--primary-bg);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.portfolio-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.portfolio-link-modern,
.portfolio-contact-modern {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.portfolio-link-modern:hover,
.portfolio-contact-modern:hover {
    gap: 1rem;
}

.featured-title,
.all-projects-title {
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* Clients Modern */
.clients-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-card-modern {
    background: var(--bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
}

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

.client-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-light), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 20px;
}

.client-card-modern:hover .client-card-glow {
    opacity: 0.1;
}

.client-logo-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.client-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.client-logo-placeholder {
    width: 80px;
    height: 80px;
    background: var(--section-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin: 0 auto;
}

.client-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.client-info-modern h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.client-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.client-website-modern,
.client-contact-modern {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.client-website-modern:hover,
.client-contact-modern:hover {
    gap: 1rem;
}

/* Testimonials Modern */
.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card-modern {
    background: var(--bg);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

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

.testimonial-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-light), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 20px;
}

.testimonial-card-modern:hover .testimonial-glow {
    opacity: 0.1;
}

.testimonial-quote-modern {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testimonial-text-modern {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-avatar-modern {
    width: 50px;
    height: 50px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.author-info-modern h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info-modern span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.testimonial-rating-modern {
    color: #f39c12;
    font-size: 1.2rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.empty-icon-bg {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, var(--primary-light), transparent);
    border-radius: 50%;
    opacity: 0.3;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.empty-state h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Process Modern */
.process-timeline-modern {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.process-step-modern {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.process-number-modern {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon-bg {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, var(--primary), var(--primary-hover));
    border-radius: 50%;
    opacity: 0.1;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.process-number {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--primary-hover);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.process-content-modern h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-content-modern p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.process-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.process-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.process-features i {
    color: var(--primary);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .contact-container-modern,
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-items-grid {
        gap: 1rem;
    }
    
    .contact-item-modern {
        padding: 1rem;
    }
    
    .newsletter-form-row {
        flex-direction: column;
    }
    
    .blog-grid-modern,
    .portfolio-grid-modern,
    .clients-grid-modern,
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .process-timeline-modern {
        gap: 2rem;
    }
    
    .process-step-modern {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .process-number-modern {
        margin: 0 auto;
    }
    
    .portfolio-actions,
    .client-actions,
    .contact-features,
    .newsletter-features {
        justify-content: center;
    }
}

/* Simple Page Header */
.page-header-simple {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-simple .particles-bg,
.section-services .particles-bg,
.section-partners .particles-bg,
.section-testimonials .particles-bg,
.section-about .particles-bg,
.section-featured-team .particles-bg,
.section-team .particles-bg,
.section-company-story .particles-bg,
.section-milestones .particles-bg,
.section-mission-vision .particles-bg,
.section-values .particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.section-services,
.section-partners,
.section-testimonials,
.section-about,
.section-featured-team,
.section-team,
.section-company-story,
.section-milestones,
.section-mission-vision,
.section-values {
    position: relative;
    overflow: hidden;
}

.section-services .container,
.section-partners .container,
.section-testimonials .container,
.section-about .container,
.section-featured-team .container,
.section-team .container,
.section-company-story .container,
.section-milestones .container,
.section-mission-vision .container,
.section-values .container,
.page-header-simple .page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-simple .hero-subtitle {
    color: white !important;
}

/* Team Page Styles */
.featured-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.featured-team-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.featured-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-team-card:hover .featured-team-image img {
    transform: scale(1.05);
}

.featured-team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-team-card:hover .featured-team-overlay {
    opacity: 1;
}

.featured-team-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.featured-team-content {
    padding: 2rem;
}

.featured-team-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.featured-team-position {
    color: #4FADE3;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-team-bio {
    color: #374151;
    line-height: 1.6;
}

.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.team-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card-modern:hover .team-card-image img {
    transform: scale(1.08);
}

.team-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(79, 173, 227, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card-modern:hover .team-card-overlay {
    opacity: 1;
}

.team-card-social {
    display: flex;
    gap: 1rem;
}

.team-card-content {
    padding: 1.5rem;
}

.team-card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.team-position {
    color: #4FADE3;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-bio {
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.5;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state-icon {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.empty-state p {
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

/* About Us Page Styles */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-text p {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-text strong {
    color: #000000;
    font-weight: 700;
}

/* Company Story Section Specific Styles */
.section-company-story .section-tag {
    color: #000000;
}

.section-company-story .section-title-modern {
    color: #000000;
}

/* Services Section Specific Styles */
.section-services .section-tag {
    color: #000000;
}

.section-services .section-title-modern {
    color: #000000;
}

.section-services .section-subtitle {
    color: #000000;
}

.service-card-modern h3 {
    color: #000000;
}

.service-card-modern p {
    color: #000000;
}

.service-card-modern .service-link {
    color: #000000;
}

/* Process Section Specific Styles */
.section-process .section-tag {
    color: #000000;
}

.section-process .section-title-modern {
    color: #000000;
}

.section-process .section-subtitle {
    color: #000000;
}

.process-content-modern h3 {
    color: #000000;
}

.process-content-modern p {
    color: #000000;
}

.process-features span {
    color: #000000;
}

.story-image-wrapper {
    position: relative;
}

.story-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(79, 173, 227, 0.1) 0%, rgba(47, 148, 201, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
}

.story-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-stats {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-float {
    background: linear-gradient(135deg, #4FADE3 0%, #2F94C9 100%);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(79, 173, 227, 0.3);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 5;
}

/* Timeline Styles */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #4FADE3 0%, #2F94C9 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
    min-height: 120px;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year-ring {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    margin: 0 2rem;
}

.year-ring {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 4px solid #4FADE3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(79, 173, 227, 0.2);
    transition: all 0.3s ease;
}

.year-ring.featured {
    background: linear-gradient(135deg, #4FADE3 0%, #2F94C9 100%);
    border-color: #2F94C9;
    transform: scale(1.1);
}

.year-ring.featured .year {
    color: white;
    font-weight: 700;
}

.year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4FADE3;
}

.timeline-content {
    flex: 1;
    padding: 0 5rem;
    max-width: 45%;
}

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

.milestone-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.milestone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #4FADE3 0%, #2F94C9 100%);
}

.milestone-card.featured {
    background: linear-gradient(135deg, #4FADE3 0%, #2F94C9 100%);
    color: white;
    transform: scale(1.05);
}

.milestone-card.featured::before {
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
}

.milestone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.milestone-icon {
    width: 60px;
    height: 60px;
    background: rgba(79, 173, 227, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #4FADE3;
}

.milestone-card.featured .milestone-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.milestone-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.milestone-card.featured h3 {
    color: white;
}

.milestone-card p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.milestone-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.milestone-details {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.milestone-tag {
    background: rgba(79, 173, 227, 0.1);
    color: #4FADE3;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.milestone-card.featured .milestone-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Mission & Vision Styles */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.mission-card,
.vision-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 173, 227, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mission-icon-wrapper,
.vision-icon-wrapper {
    position: relative;
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.mission-icon-bg,
.vision-icon-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(79, 173, 227, 0.1) 0%, rgba(47, 148, 201, 0.05) 100%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.vision-icon-bg {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.mission-icon,
.vision-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4FADE3 0%, #2F94C9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.vision-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.mission-card p,
.vision-card p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.mission-features,
.vision-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.mission-features span,
.vision-features span {
    background: rgba(79, 173, 227, 0.1);
    color: #4FADE3;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vision-features span {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

/* Values Styles */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #4FADE3 0%, #2F94C9 100%);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(79, 173, 227, 0.1) 0%, rgba(47, 148, 201, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #4FADE3;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: linear-gradient(135deg, #4FADE3 0%, #2F94C9 100%);
    color: white;
    transform: scale(1.1);
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.value-item p {
    color: #374151;
    line-height: 1.6;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .featured-team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .featured-team-image {
        height: 250px;
    }
    
    .team-card-image {
        height: 200px;
    }
    
    .featured-team-content {
        padding: 1.5rem;
    }
    
    .team-card-content {
        padding: 1rem;
    }
    
    /* About Us Responsive */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .floating-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 80px;
        margin-bottom: 4rem;
        min-height: auto;
    }
    
    .timeline-year-ring {
        left: 20px;
        position: relative;
        margin: 0 0 2rem 0;
        transform: none;
    }
    
    .timeline-content {
        padding: 0;
        text-align: left !important;
        max-width: 100%;
        width: 100%;
    }
    
    .year-ring {
        width: 60px;
        height: 60px;
    }
    
    .year {
        font-size: 1rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .milestone-card {
        padding: 1.5rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .value-item {
        padding: 2rem;
    }
}

.page-header-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: heroGradientAnimation 8s ease-in-out infinite;
    z-index: 1;
}

.page-header-simple::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="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

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

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-header-content p {
    font-size: 1.2rem;
    color: white !important;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.page-header-content .hero-subtitle {
    color: white !important;
}

.page-header-simple .page-header-content .hero-subtitle {
    color: white !important;
}

.page-header-simple .page-header-content p {
    color: white !important;
}

@keyframes heroGradientAnimation {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .page-header-simple {
        padding: 4rem 0 3rem;
    }
    
    .page-header-content h1 {
        font-size: 2.2rem;
    }
    
    .page-header-content p {
        font-size: 1.1rem;
    }
}

/* Scroll-Based Overlapping Services Showcase */
.services-showcase {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0 4rem 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.services-scroll-container {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2rem;
}

.service-card-wrapper {
    position: absolute;
    width: 650px;
    z-index: 1;
    opacity: 0;
    transform: translateX(150px) scale(0.85);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.service-card-wrapper.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: all;
    z-index: 10;
}

.service-card-wrapper.prev {
    opacity: 0.8;
    transform: translateX(-80px) scale(0.92);
    z-index: 5;
}

.service-card-wrapper.next {
    opacity: 0.4;
    transform: translateX(80px) scale(0.88);
    z-index: 2;
}

.service-card-wrapper:hover {
    transform: translateX(-15px) scale(1.03);
    z-index: 15;
}

/* Progress indicator */
.services-section .services-progress {
    position: fixed;
    top: 50%;
    right: calc(50% + 360px);
    transform: translateY(-50%);
    z-index: 100;
}

/* Hide progress dots completely */
.services-progress {
    display: none !important;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(79, 173, 227, 0.3);
    border: 2px solid rgba(79, 173, 227, 0.5);
    margin: 1rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: #4FADE3;
    border-color: #4FADE3;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(79, 173, 227, 0.6);
}

.progress-dot:hover {
    background: rgba(79, 173, 227, 0.6);
    border-color: #4FADE3;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(79, 173, 227, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    animation: scrollHint 2s ease-in-out infinite;
    z-index: 5;
}

.scroll-hint i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollHint {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

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

.service-card-premium {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(79, 173, 227, 0.1);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 1px 6px rgba(79, 173, 227, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4FADE3 0%, #2F94C9 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card-premium:hover {
    box-shadow: 
        0 20px 50px rgba(79, 173, 227, 0.15),
        0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(79, 173, 227, 0.3);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 173, 227, 0.1) 0%, rgba(47, 148, 201, 0.1) 100%);
    border-radius: 16px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.service-card-premium:hover .service-icon-bg {
    transform: rotate(45deg) scale(1.1);
}

.service-icon-wrapper i {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    color: #4FADE3;
    transition: color 0.3s ease;
}

.service-card-premium:hover .service-icon-wrapper i {
    color: #2F94C9;
}

.service-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(79, 173, 227, 0.2);
    line-height: 1;
}

.service-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-body p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(79, 173, 227, 0.1);
    color: #4FADE3;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(79, 173, 227, 0.2);
    transition: all 0.3s ease;
}

.service-card-premium:hover .feature-tag {
    background: rgba(79, 173, 227, 0.15);
    border-color: rgba(79, 173, 227, 0.3);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4FADE3;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-cta i {
    transition: transform 0.3s ease;
}

.service-cta:hover {
    color: #2F94C9;
    gap: 0.75rem;
}

.service-cta:hover i {
    transform: translateX(4px);
}

/* Mobile Responsive for Scroll-Based Services */
@media (max-width: 768px) {
    .services-showcase {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .services-scroll-container {
        height: 100vh;
        padding: 0 1rem;
    }
    
    .service-card-wrapper {
        width: 95%;
        max-width: 480px;
    }
    
    .service-card-premium {
        padding: 1.25rem;
    }
    
    .service-header {
        margin-bottom: 1rem;
    }
    
    .service-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .service-icon-wrapper i {
        font-size: 1.2rem;
    }
    
    .service-number {
        font-size: 1.4rem;
    }
    
    .service-body h3 {
        font-size: 1rem;
    }
    
    .service-body p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .service-features {
        margin-bottom: 1rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .section-services .services-progress {
        right: 2rem;
    }
    
    .progress-dot {
        width: 10px;
        height: 10px;
        margin: 0.8rem 0;
    }
    
    .scroll-hint {
        bottom: 1rem;
        font-size: 0.8rem;
    }
    
    .scroll-hint i {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .services-showcase {
        min-height: 100vh;
        padding: 1rem 0 3rem 0;
    }
    
    .services-scroll-container {
        padding-top: 1.5rem;
    }
    
    .service-card-wrapper {
        width: 550px;
    }
    
    .service-card-premium {
        padding: 2rem;
    }
    
    .service-body h3 {
        font-size: 1.3rem;
    }
    
    .service-body p {
        font-size: 1.1rem;
    }
    
    .section-services .services-progress {
        right: calc(50% + 300px);
    }
}

@media (max-width: 480px) {
    .services-showcase {
        padding: 1rem 0;
    }
    
    .service-card-premium {
        padding: 1.25rem;
    }
    
    .service-features {
        margin-bottom: 1rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}
