e
/* Hero Services Split Layout */
.hero-services-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90vh;
    padding: 60px 0;
    gap: 3rem;
}

.hero-content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.hero-content-wrapper .hero-content {
    text-align: left;
    max-width: 100%;
}

.hero-content-wrapper h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content-wrapper p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.hero-image-wrapper .hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px var(--shadow-lg);
    transition: transform 0.5s ease;
}

.hero-image-wrapper .hero-image:hover {
    transform: scale(1.02);
}

@media (max-width: 1024px) {
    .hero-services-split {
        flex-direction: column;
        min-height: auto;
        padding: 40px 0;
        gap: 2rem;
    }

    .hero-content-wrapper {
        padding: 0;
    }

    .hero-content-wrapper h1 {
        font-size: 2.2rem;
    }

    .hero-image-wrapper {
        padding: 0;
        width: 100%;
    }

    .hero-image-wrapper .hero-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-services-split {
        padding: 30px 0;
    }

    .hero-content-wrapper h1 {
        font-size: 1.8rem;
    }

    .hero-content-wrapper p {
        font-size: 1rem;
    }

    .hero-image-wrapper .hero-image {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-services-split {
        padding: 20px 0;
        gap: 1rem;
    }

    .hero-content-wrapper {
        padding: 0 1rem;
    }

    .hero-image-wrapper {
        padding: 0 1rem;
    }

    .hero-content-wrapper h1 {
        font-size: 1.5rem;
    }

    .hero-content-wrapper p {
        font-size: 0.9rem;
    }

    .hero-image-wrapper .hero-image {
        max-height: 250px;
    }
}

/* Hero Resources Split Layout */
.hero-resources-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90vh;
    padding: 60px 0;
    gap: 3rem;
}

/* Hero Development Split Layout */
.hero-development-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90vh;
    padding: 60px 0;
    gap: 3rem;
}

.hero-resources-split .hero-image-wrapper img,
.hero-development-split .hero-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px var(--shadow-lg);
    transition: transform 0.5s ease;
}

.hero-resources-split .hero-image-wrapper img:hover,
.hero-development-split .hero-image-wrapper img:hover {
    transform: scale(1.02);
}

@media (max-width: 1024px) {
    .hero-resources-split,
    .hero-development-split {
        flex-direction: column;
        min-height: auto;
        padding: 40px 0;
        gap: 2rem;
    }

    .hero-resources-split .hero-content-wrapper,
    .hero-development-split .hero-content-wrapper {
        padding: 0;
    }

    .hero-resources-split .hero-content-wrapper h1,
    .hero-development-split .hero-content-wrapper h1 {
        font-size: 2.2rem;
    }

    .hero-resources-split .hero-image-wrapper,
    .hero-development-split .hero-image-wrapper {
        padding: 0;
        width: 100%;
    }

    .hero-resources-split .hero-image-wrapper img,
    .hero-development-split .hero-image-wrapper img {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-resources-split,
    .hero-development-split {
        padding: 30px 0;
    }

    .hero-resources-split .hero-content-wrapper h1,
    .hero-development-split .hero-content-wrapper h1 {
        font-size: 1.8rem;
    }

    .hero-resources-split .hero-content-wrapper p,
    .hero-development-split .hero-content-wrapper p {
        font-size: 1rem;
    }

    .hero-resources-split .hero-image-wrapper img,
    .hero-development-split .hero-image-wrapper img {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-resources-split,
    .hero-development-split {
        padding: 20px 0;
        gap: 1rem;
    }

    .hero-resources-split .hero-content-wrapper,
    .hero-development-split .hero-content-wrapper {
        padding: 0 1rem;
    }

    .hero-resources-split .hero-image-wrapper,
    .hero-development-split .hero-image-wrapper {
        padding: 0 1rem;
    }

    .hero-resources-split .hero-content-wrapper h1,
    .hero-development-split .hero-content-wrapper h1 {
        font-size: 1.5rem;
    }

    .hero-resources-split .hero-content-wrapper p,
    .hero-development-split .hero-content-wrapper p {
        font-size: 0.9rem;
    }

    .hero-resources-split .hero-image-wrapper img,
    .hero-development-split .hero-image-wrapper img {

/* Hero Quote Card Styles */
.hero-quote-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 20px 50px var(--shadow-lg);
    backdrop-filter: blur(10px);
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-quote-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--shadow-xl);
    border-color: rgba(99, 102, 241, 0.4);
}

.quote-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-quote-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.hero-quote-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-style: italic;
    font-weight: 500;
}

.quote-stats {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.quote-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .hero-quote-card {
        padding: 2.5rem 2rem;
        max-width: 100%;
    }

    .hero-quote-card h3 {
        font-size: 1.5rem;
    }

    .hero-quote-card p {
        font-size: 1rem;
    }

    .quote-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-quote-card {
        padding: 2rem 1.5rem;
    }

    .hero-quote-card h3 {
        font-size: 1.3rem;
    }

    .hero-quote-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .quote-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .quote-stats {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-quote-card {
        padding: 1.5rem 1rem;
    }

    .hero-quote-card h3 {
        font-size: 1.1rem;
    }

    .hero-quote-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .quote-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}


        max-height: 250px;
    }
}




/* Hero Quote Styles */
.hero-quote {
    margin-top: 1.5rem;
    padding: 1.5rem 2rem;
    background: rgba(99, 102, 241, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    max-width: 500px;
}

.hero-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}


/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --text-color: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --shadow: rgba(0,0,0,0.1);
    --shadow-lg: rgba(0,0,0,0.15);
    --shadow-xl: rgba(0,0,0,0.25);
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Slideshow Styles */
.slideshow-container {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.slideshow-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="slideshow-bg" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(99,102,241,0.05);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(139,92,246,0.03);stop-opacity:1" /></radialGradient></defs><rect width="100" height="100" fill="url(%23slideshow-bg)"/></svg>');
    z-index: 0;
}

.slideshow-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.slideshow-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.slideshow-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.slideshow {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-lg);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.slide.active img {
    transform: scale(1.05);
}

.slide-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%);
    backdrop-filter: blur(10px);
    position: relative;
}

.slide-category {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.slide-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.slide-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.slide-features span {
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
}

.slideshow-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 3;
}

.slide-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px var(--shadow);
}

.slide-btn:hover {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.3);
}

.slide-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--gradient);
    transform: scale(1.3);
    border-color: rgba(99, 102, 241, 0.2);
}

/* Header */
header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 2px 4px var(--shadow));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

nav ul li a:hover::after {
    width: 80%;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    list-style: none;
    padding: 1rem 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
    z-index: 999;
    margin-top: 0.8rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
}

.dropdown-menu li a::before {
    content: '→';
    position: absolute;
    left: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.dropdown-menu li a:hover {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
    color: var(--primary-color);
    padding-left: 2.5rem;
}

.dropdown-menu li a:hover::before {
    opacity: 1;
}

.dropdown-menu li a::after {
    display: none;
}

/* Hero section */
.hero {
    display: flex;
    align-items: center;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="hero-bg" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(99,102,241,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(139,92,246,0.05);stop-opacity:1" /></radialGradient></defs><rect width="100" height="100" fill="url(%23hero-bg)"/></svg>');
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    min-width: 160px;
}

.btn.primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

.btn.secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-color: var(--border-color);
    color: var(--text-color);
}

.btn.secondary:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-stats .stat p {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px var(--shadow-xl);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.02) rotate(1deg);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    box-shadow: 0 10px 30px var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.2rem;
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: -15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    right: -5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="subtle-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(99,102,241,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23subtle-pattern)"/></svg>');
    pointer-events: none;
}

section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    max-width: 600px;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow-lg);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px var(--shadow-xl);
    border-color: rgba(99, 102, 241, 0.3);
}

.service:hover::before {
    transform: scaleX(1);
}

.service img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.4s ease;
}

.service:hover img {
    transform: scale(1.1) rotate(5deg);
}

.service h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.service.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.service-link:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(5px);
}

/* Domains */
.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.domain {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.domain:hover {
    transform: translateY(-5px);
}

.domain img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.domain h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

/* Contact */
#contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(99,102,241,0.05)"/><circle cx="90" cy="20" r="0.5" fill="rgba(139,92,246,0.03)"/><circle cx="50" cy="80" r="0.8" fill="rgba(6,182,212,0.03)"/></svg>');
}

.contact-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 40px var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.contact-info {
    max-width: 500px;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-detail i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 20px;
}

.contact-detail span {
    font-weight: 500;
    color: var(--text-color);
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#contact-form input,
#contact-form textarea {
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: white;
}

#contact-form textarea {
    height: 150px;
    resize: vertical;
    line-height: 1.5;
}

#contact-form button {
    align-self: flex-start;
    background: var(--gradient);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

#contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Domain specific styles */
.domain-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.domain-section:nth-child(even) {
    direction: rtl;
}

.domain-section:nth-child(even) .domain-content {
    direction: ltr;
}

.domain-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.domain-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.case-study img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.case-tech {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.case-tech span {
    background-color: #f0f0f0;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    color: #667eea;
}

/* Client styles */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.client-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.client-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.client-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.tech-stack {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.tech-stack span {
    background-color: #667eea;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
}

.testimonials {
    margin-top: 4rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial cite {
    font-weight: bold;
    color: #667eea;
}

/* Service detail styles */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) .service-content {
    direction: ltr;
}

.service-detail img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.service-content h2 {
    color: #667eea;
    margin-bottom: 1rem;
}

.service-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-content li {
    margin-bottom: 0.5rem;
}

/* Featured Service Styles */
.featured-service {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    position: relative;
}

.service-badge-main {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

.service-link:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(5px);
}

/* Overview Cards */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.overview-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overview-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.overview-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Resource Types Grid */
.resource-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-type {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
}

.resource-type:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.type-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

.expertise-level {
    background: var(--gradient);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.skills-list {
    list-style: none;
    margin: 1.5rem 0;
}

.skills-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    padding-left: 1.5rem;
    position: relative;
}

.skills-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.type-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* Engagement Models */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.model-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.model-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.model-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.model-features {
    list-style: none;
}

.model-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-weight: 500;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Development Services Grid */
.dev-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.dev-service {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
}

.dev-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

.tech-badge {
    background: var(--gradient-accent);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-intro {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

/* Process Timeline */
.process-timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: 60px;
    background: var(--gradient);
}

.timeline-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.timeline-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Tech Stack */
.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.tech-category h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-item {
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* Quality Commitment */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quality-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
}

.quality-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.quality-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.quality-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Sections */
#contact-resources,
#contact-dev {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

#contact-resources h2,
#contact-dev h2 {
    color: white;
    margin-bottom: 1rem;
}

#contact-resources p,
#contact-dev p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

#contact-resources .btn,
#contact-dev .btn {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#contact-resources .btn:hover,
#contact-dev .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #374151 100%);
    color: white;
    text-align: center;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="20" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="80" r="0.8" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="60" r="0.3" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

footer p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Responsive design */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .floating-elements {
        display: none;
    }

    /* Navigation responsive */
    nav ul {
        gap: 1.5rem;
    }

    nav ul li a {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    /* Slideshow responsive */
    .slideshow-container {
        padding: 60px 0;
    }

    .slide-content {
        padding: 3rem 2rem;
    }

    .slide-content h3 {
        font-size: 1.8rem;
    }

    /* Services responsive */
    .services-grid,
    .domains-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2.5rem;
    }

    /* Contact responsive */
    .contact-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .slideshow-container {
        height: 70vh;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Navigation mobile */
    nav {
        padding: 1rem;
    }

    nav ul {
        gap: 1rem;
    }

    nav ul li a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    /* Mobile menu toggle - assuming we add hamburger later */
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid var(--border-color);
        box-shadow: 0 10px 30px var(--shadow);
        margin-top: 0.5rem;
        display: block;
        flex-direction: column;
        padding: 0;
    }

    .nav-dropdown .dropdown-menu li {
        border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    }

    .nav-dropdown .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .nav-dropdown .dropdown-menu li a {
        padding: 1rem;
        color: var(--text-color);
        border-radius: 0;
    }

    .nav-dropdown .dropdown-menu li a:hover {
        background: rgba(99, 102, 241, 0.1);
    }

    /* Services responsive */
    .services-grid,
    .domains-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service,
    .domain,
    .client-card,
    .testimonial {
        padding: 2rem 1.5rem;
    }

    /* Contact responsive */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container iframe {
        height: 300px;
    }

    /* Domain sections responsive */
    .domain-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    /* Grid layouts responsive */
    .clients-grid,
    .testimonial-grid,
    .case-study-grid {
        grid-template-columns: 1fr;
    }

    /* Overview cards responsive */
    .overview-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    /* Resource types responsive */
    .resource-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Development services responsive */
    .dev-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Tech categories responsive */
    .tech-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Process steps responsive */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Benefits grid responsive */
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    /* Quality grid responsive */
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Models grid responsive */
    .models-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-width: 140px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats .stat h3 {
        font-size: 2rem;
    }

    /* Extra small screens */
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Navigation extra small */
    nav {
        padding: 0.75rem;
    }

    nav ul {
        gap: 0.5rem;
    }

    nav ul li a {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }

    /* Slideshow extra small */
    .slideshow-container {
        height: 60vh;
    }

    .slide-content {
        padding: 2rem 1.5rem;
    }

    .slide-content h3 {
        font-size: 1.6rem;
    }

    .slide-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .slide-features span {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    /* Services extra small */
    .service,
    .domain,
    .client-card,
    .testimonial {
        padding: 1.5rem 1rem;
    }

    .service-content h2 {
        font-size: 1.4rem;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    /* Contact form extra small */
    #contact-form input,
    #contact-form textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    #contact-form button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    /* Footer extra small */
    footer {
        padding: 3rem 0 1.5rem;
    }

    footer p {
        font-size: 1rem;
    }
}

/* Services Page Specific Styles */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header .section-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.primary-services-section {
    margin-bottom: 6rem;
}

.supporting-services-section {
    margin-bottom: 4rem;
}

.primary-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 3rem;
}

.supporting-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 40px var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px var(--shadow-xl);
    border-color: rgba(99, 102, 241, 0.3);
}

.service-card.featured-service {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.service-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    z-index: 2;
}

.service-content {
    padding: 3rem 2rem 2rem;
    flex: 1;
}

.service-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.service-visual {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-visual img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.8) 0%, rgba(139, 92, 246, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 1rem;
}

.overlay-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.service-link:hover {
    background: var(--gradient);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.service-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-link:hover::after {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .services-header h2 {
        font-size: 2.4rem;
    }

    section h2 {
        font-size: 2.5rem;
    }

    .slideshow-header h2 {
        font-size: 2.2rem;
    }

    .primary-services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .supporting-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .service-card {
        margin-bottom: 2rem;
    }

    .service-visual {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 2.2rem;
    }

    .slideshow-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.7rem;
    }

    .services-header .section-intro {
        font-size: 1.1rem;
    }

    .section-subtitle {
        font-size: 1.7rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .primary-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .supporting-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        margin-bottom: 1.5rem;
    }

    .service-content {
        padding: 2rem 1.5rem 1.5rem;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .service-features {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
    }

    .service-visual {
        height: 200px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        top: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-header {
        margin-bottom: 3rem;
    }

    .services-header h2 {
        font-size: 1.8rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .slideshow-header h2 {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 1.4rem;
    }

    .services-header .section-intro {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-subtitle {
        font-size: 1.4rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .primary-services-section {
        margin-bottom: 4rem;
    }

    .supporting-services-section {
        margin-bottom: 3rem;
    }

    .service-card {
        margin-bottom: 1rem;
        border-radius: 15px;
    }

    .service-content {
        padding: 1.5rem 1rem 1rem;
    }

    .service-content h2 {
        font-size: 1.3rem;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }

    .service-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .service-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin: 1rem 0;
    }

    .feature-item {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .service-visual {
        height: 180px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        top: 1rem;
        right: 1rem;
    }

    .overlay-content h4 {
        font-size: 1rem;
    }

    .overlay-content p {
        font-size: 0.8rem;
    }

    .service-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}
