* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #25a9eb;
    --secondary-color: #1e64af;
    --accent-color: #c6bd04;
    --text-color: #1f2937;
    --light-bg: #b7b9bc;
    --white: #fffcfc;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Header */
.header {
    background: #bbdefb;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #f59e0b;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo img {
    height: 40px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #1565c0;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #0d47a1;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1565c0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 60vh;
    padding: 120px 20px 40px;
    background: linear-gradient(180deg, #b7b9bc 0%, #e2e8f0 30%, #d1d5db 60%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(37, 169, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 100, 175, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 60%, rgba(15, 23, 42, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="network" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23f59e0b" opacity="0.25"/><line x1="10" y1="10" x2="30" y2="10" stroke="%23f59e0b" stroke-width="0.5" opacity="0.15"/><line x1="10" y1="10" x2="10" y2="30" stroke="%23f59e0b" stroke-width="0.5" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23network)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.hero-content,
.hero-image {
    position: relative;
    z-index: 2;
}

/* Hero arrow shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.hero .shape {
    position: absolute;
    opacity: 0.1;
    animation: floatArrow 8s ease-in-out infinite;
}

.hero .shape-1 {
    top: 10%;
    left: 10%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 50px solid var(--primary-color);
    animation-delay: 0s;
}

.hero .shape-1::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -5px;
    width: 10px;
    height: 30px;
    background: var(--primary-color);
}

.hero .shape-2 {
    top: 20%;
    right: 15%;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 45px solid var(--accent-color);
    transform: rotate(45deg);
    animation-delay: 2s;
}

.hero .shape-2::after {
    content: '';
    position: absolute;
    bottom: -55px;
    left: -4px;
    width: 8px;
    height: 28px;
    background: var(--accent-color);
}

.hero .shape-3 {
    bottom: 30%;
    left: 20%;
    width: 0;
    height: 0;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-bottom: 55px solid var(--primary-color);
    transform: rotate(-30deg);
    animation-delay: 4s;
}

.hero .shape-3::after {
    content: '';
    position: absolute;
    bottom: -65px;
    left: -6px;
    width: 12px;
    height: 32px;
    background: var(--primary-color);
}

.hero .shape-4 {
    bottom: 20%;
    right: 25%;
    width: 0;
    height: 0;
    border-left: 19px solid transparent;
    border-right: 19px solid transparent;
    border-bottom: 48px solid var(--accent-color);
    transform: rotate(60deg);
    animation-delay: 6s;
}

.hero .shape-4::after {
    content: '';
    position: absolute;
    bottom: -58px;
    left: -5px;
    width: 10px;
    height: 30px;
    background: var(--accent-color);
}

.hero .shape-5 {
    top: 50%;
    left: 5%;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 40px solid var(--primary-color);
    transform: rotate(15deg);
    animation-delay: 1s;
}

.hero .shape-5::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -4px;
    width: 8px;
    height: 25px;
    background: var(--primary-color);
}

.hero .shape-6 {
    top: 70%;
    right: 10%;
    width: 0;
    height: 0;
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    border-bottom: 42px solid var(--accent-color);
    transform: rotate(-45deg);
    animation-delay: 3s;
}

.hero .shape-6::after {
    content: '';
    position: absolute;
    bottom: -52px;
    left: -4px;
    width: 8px;
    height: 26px;
    background: var(--accent-color);
}

@keyframes floatArrow {
    0%, 100% { 
        transform: translateY(0px);
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-30px);
        opacity: 0.15;
    }
}

/* Cloud floating shapes */
.cloud-solutions .shape {
    position: absolute;
    opacity: 0.12;
    animation: floatCloud 20s ease-in-out infinite;
}

.cloud-solutions .shape-1 {
    top: 10%;
    left: 10%;
    width: 80px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50px;
    animation-delay: 0s;
}

.cloud-solutions .shape-1::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 15px;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 50%;
}

.cloud-solutions .shape-1::after {
    content: '';
    position: absolute;
    top: -10px;
    right: 15px;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    border-radius: 50%;
}

.cloud-solutions .shape-2 {
    top: 20%;
    right: 15%;
    width: 60px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 40px;
    animation-delay: 3s;
}

.cloud-solutions .shape-2::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 12px;
    width: 28px;
    height: 28px;
    background: var(--accent-color);
    border-radius: 50%;
}

.cloud-solutions .shape-2::after {
    content: '';
    position: absolute;
    top: -8px;
    right: 12px;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
}

.cloud-solutions .shape-3 {
    bottom: 30%;
    left: 20%;
    width: 70px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 45px;
    animation-delay: 6s;
}

.cloud-solutions .shape-3::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 14px;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
}

.cloud-solutions .shape-3::after {
    content: '';
    position: absolute;
    top: -9px;
    right: 14px;
    width: 22px;
    height: 22px;
    background: var(--primary-color);
    border-radius: 50%;
}

.cloud-solutions .shape-4 {
    bottom: 20%;
    right: 25%;
    width: 65px;
    height: 32px;
    background: var(--accent-color);
    border-radius: 42px;
    animation-delay: 9s;
}

.cloud-solutions .shape-4::before {
    content: '';
    position: absolute;
    top: -13px;
    left: 13px;
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 50%;
}

.cloud-solutions .shape-4::after {
    content: '';
    position: absolute;
    top: -8px;
    right: 13px;
    width: 21px;
    height: 21px;
    background: var(--accent-color);
    border-radius: 50%;
}

.cloud-solutions .shape-5 {
    top: 50%;
    left: 5%;
    width: 55px;
    height: 28px;
    background: var(--primary-color);
    border-radius: 38px;
    animation-delay: 12s;
}

.cloud-solutions .shape-5::before {
    content: '';
    position: absolute;
    top: -11px;
    left: 11px;
    width: 26px;
    height: 26px;
    background: var(--primary-color);
    border-radius: 50%;
}

.cloud-solutions .shape-5::after {
    content: '';
    position: absolute;
    top: -7px;
    right: 11px;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
}

.cloud-solutions .shape-6 {
    top: 70%;
    right: 10%;
    width: 58px;
    height: 29px;
    background: var(--accent-color);
    border-radius: 40px;
    animation-delay: 15s;
}

.cloud-solutions .shape-6::before {
    content: '';
    position: absolute;
    top: -11px;
    left: 12px;
    width: 27px;
    height: 27px;
    background: var(--accent-color);
    border-radius: 50%;
}

.cloud-solutions .shape-6::after {
    content: '';
    position: absolute;
    top: -7px;
    right: 12px;
    width: 19px;
    height: 19px;
    background: var(--accent-color);
    border-radius: 50%;
}

@keyframes floatCloud {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
    }
    25% { 
        transform: translateY(-15px) translateX(10px);
    }
    50% { 
        transform: translateY(-25px) translateX(-10px);
    }
    75% { 
        transform: translateY(-15px) translateX(15px);
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #6b7280;
}

.cta-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: var(--secondary-color);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Cloud Solutions Section */
.cloud-solutions {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.cloud-solutions .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cloud-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.cloud-solutions::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="network" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23f59e0b" opacity="0.25"/><line x1="10" y1="10" x2="30" y2="10" stroke="%23f59e0b" stroke-width="0.5" opacity="0.15"/><line x1="10" y1="10" x2="10" y2="30" stroke="%23f59e0b" stroke-width="0.5" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23network)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

/* Cloud Particles */
.cloud-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.cloud-particle {
    position: absolute;
    border-radius: 50%;
    animation: floatParticle 6s ease-in-out infinite;
}

.cloud-particle-1 {
    top: 15%;
    left: 12%;
    width: 7px;
    height: 7px;
    background: rgba(37, 169, 235, 0.6);
    animation-delay: 0s;
}

.cloud-particle-2 {
    top: 25%;
    right: 18%;
    width: 6px;
    height: 6px;
    background: rgba(245, 158, 11, 0.5);
    animation-delay: 1s;
}

.cloud-particle-3 {
    top: 55%;
    left: 25%;
    width: 8px;
    height: 8px;
    background: rgba(37, 169, 235, 0.5);
    animation-delay: 2s;
}

.cloud-particle-4 {
    top: 75%;
    right: 22%;
    width: 5px;
    height: 5px;
    background: rgba(245, 158, 11, 0.6);
    animation-delay: 3s;
}

.cloud-particle-5 {
    top: 35%;
    left: 55%;
    width: 6px;
    height: 6px;
    background: rgba(37, 169, 235, 0.4);
    animation-delay: 1.5s;
}

.cloud-particle-6 {
    top: 65%;
    right: 45%;
    width: 7px;
    height: 7px;
    background: rgba(245, 158, 11, 0.5);
    animation-delay: 2.5s;
}

.cloud-particle-7 {
    top: 85%;
    left: 35%;
    width: 5px;
    height: 5px;
    background: rgba(37, 169, 235, 0.6);
    animation-delay: 0.5s;
}

.cloud-particle-8 {
    top: 45%;
    right: 12%;
    width: 6px;
    height: 6px;
    background: rgba(245, 158, 11, 0.4);
    animation-delay: 3.5s;
}

.cloud-solutions .hero-content {
    flex: 1;
    max-width: 600px;
}

.cloud-solutions .hero-image {
    flex: 1;
    text-align: center;
}

.cloud-solutions .hero-content h1 {
    color: #1f2937;
}

.cloud-solutions .hero-content p {
    color: #374151;
}

.cloud-benefits {
    margin: 2rem 0;
}

.cloud-benefits h3 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.cloud-benefits ul {
    list-style: none;
    padding: 0;
}

.cloud-benefits li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.cloud-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #25a9eb;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(180deg, #94a3b8 0%, #64748b 30%, #94a3b8 70%, #b7b9bc 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(37, 169, 235, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(30, 100, 175, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(37, 169, 235, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tech-grid" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="%23f59e0b" opacity="0.2"/><line x1="12.5" y1="12.5" x2="37.5" y2="12.5" stroke="%23f59e0b" stroke-width="0.5" opacity="0.12"/><line x1="12.5" y1="12.5" x2="12.5" y2="37.5" stroke="%23f59e0b" stroke-width="0.5" opacity="0.12"/><line x1="12.5" y1="12.5" x2="25" y2="0" stroke="%23f59e0b" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23tech-grid)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

/* About floating shapes - tech style */
.about-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    animation: floatBubbles 15s ease-in-out infinite;
}

.about-shape-1 {
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: rgba(37, 169, 235, 0.35);
    animation-delay: 0s;
    animation-duration: 20s;
}

.about-shape-2 {
    top: 60%;
    right: 8%;
    width: 60px;
    height: 60px;
    background: rgba(30, 100, 175, 0.3);
    animation-delay: 3s;
    animation-duration: 18s;
}

.about-shape-3 {
    bottom: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: rgba(37, 169, 235, 0.25);
    animation-delay: 6s;
    animation-duration: 22s;
}

.about-shape-4 {
    top: 30%;
    right: 15%;
    width: 70px;
    height: 70px;
    background: rgba(37, 169, 235, 0.32);
    animation-delay: 9s;
    animation-duration: 19s;
}

@keyframes floatBubbles {
    0%, 100% { 
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.35;
    }
    25% { 
        transform: translateY(-30px) translateX(20px) scale(1.1);
        opacity: 0.45;
    }
    50% { 
        transform: translateY(-60px) translateX(-15px) scale(0.9);
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-30px) translateX(25px) scale(1.05);
        opacity: 0.38;
    }
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Mission Vision Section */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(180deg, #b7b9bc 0%, #d1d5db 50%, #f3f4f6 80%, #fffcfc 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision .container {
    position: relative;
    z-index: 2;
}

/* Mission Vision Particles */
.mv-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.mv-particle {
    position: absolute;
    border-radius: 50%;
    animation: floatParticle 6s ease-in-out infinite;
}

.mv-particle-1 {
    top: 10%;
    left: 10%;
    width: 8px;
    height: 8px;
    background: rgba(37, 169, 235, 0.6);
    animation-delay: 0s;
}

.mv-particle-2 {
    top: 20%;
    right: 15%;
    width: 6px;
    height: 6px;
    background: rgba(245, 158, 11, 0.5);
    animation-delay: 1s;
}

.mv-particle-3 {
    top: 50%;
    left: 20%;
    width: 7px;
    height: 7px;
    background: rgba(37, 169, 235, 0.5);
    animation-delay: 2s;
}

.mv-particle-4 {
    top: 70%;
    right: 25%;
    width: 5px;
    height: 5px;
    background: rgba(245, 158, 11, 0.6);
    animation-delay: 3s;
}

.mv-particle-5 {
    top: 30%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(37, 169, 235, 0.4);
    animation-delay: 1.5s;
}

.mv-particle-6 {
    top: 60%;
    right: 40%;
    width: 7px;
    height: 7px;
    background: rgba(245, 158, 11, 0.5);
    animation-delay: 2.5s;
}

.mv-particle-7 {
    top: 80%;
    left: 30%;
    width: 5px;
    height: 5px;
    background: rgba(37, 169, 235, 0.6);
    animation-delay: 0.5s;
}

.mv-particle-8 {
    top: 40%;
    right: 10%;
    width: 6px;
    height: 6px;
    background: rgba(245, 158, 11, 0.4);
    animation-delay: 3.5s;
}

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

.mv-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

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

.mv-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 50%, #94a3b8 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="network" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23f59e0b" opacity="0.25"/><line x1="10" y1="10" x2="30" y2="10" stroke="%23f59e0b" stroke-width="0.5" opacity="0.15"/><line x1="10" y1="10" x2="10" y2="30" stroke="%23f59e0b" stroke-width="0.5" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23network)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

/* Services floating shapes - Concentric circles and particles */
.services-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.services-shape {
    position: absolute;
}

/* Concentric circles */
.services-shape-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    animation: pulseRing 4s ease-in-out infinite;
}

.services-shape-1::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 70px;
    height: 70px;
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: 50%;
}

.services-shape-1::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(245, 158, 11, 0.5);
    border-radius: 50%;
}

.services-shape-2 {
    top: 50%;
    right: 8%;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(37, 169, 235, 0.3);
    border-radius: 50%;
    animation: pulseRing 5s ease-in-out infinite;
    animation-delay: 1s;
}

.services-shape-2::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(37, 169, 235, 0.4);
    border-radius: 50%;
}

.services-shape-2::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(37, 169, 235, 0.5);
    border-radius: 50%;
}

.services-shape-3 {
    bottom: 15%;
    left: 10%;
    width: 90px;
    height: 90px;
    border: 3px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    animation: pulseRing 4.5s ease-in-out infinite;
    animation-delay: 2s;
}

.services-shape-3::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: 50%;
}

.services-shape-3::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(245, 158, 11, 0.5);
    border-radius: 50%;
}

/* Small particles */
.services-shape-4 {
    top: 20%;
    left: 30%;
    width: 8px;
    height: 8px;
    background: rgba(37, 169, 235, 0.6);
    border-radius: 50%;
    animation: floatParticle 6s ease-in-out infinite;
}

.services-shape-4::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 30px;
    width: 6px;
    height: 6px;
    background: rgba(245, 158, 11, 0.5);
    border-radius: 50%;
}

.services-shape-4::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50px;
    width: 5px;
    height: 5px;
    background: rgba(37, 169, 235, 0.4);
    border-radius: 50%;
}

@keyframes pulseRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.5;
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(20px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50px) translateX(-10px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(30px);
        opacity: 0.7;
    }
}

.services .container {
    position: relative;
    z-index: 2;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

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

.service-card {
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-content {
    padding: 1.5rem;
    flex: 1;
    background: white;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.service-card p {
    color: #6b7280;
}

/* Contact Section */
.contact {
    padding: 20px 0;
    background: var(--light-bg);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

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

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
}

.contact-form button {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: var(--secondary-color);
}

.contact-form button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.form-status {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-status.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    display: block;
}

.form-status.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    display: block;
}

.form-status.loading {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
    display: block;
}

/* Newsletter */
.newsletter {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.newsletter h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
}

.newsletter-form button {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
}

/* Footer */
.footer {
    background: var(--text-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

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

.social-media a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-media a:hover {
    color: var(--accent-color);
}

/* Contact Enhancements */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

.call-btn {
    background: var(--primary-color);
    color: white;
}

.call-btn:hover {
    background: var(--secondary-color);
}

.map-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.map-link:hover {
    text-decoration: underline;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    color: white;
    font-size: 1.8rem;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

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

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.back-to-top i {
    color: white;
    font-size: 1.2rem;
}

/* Loading Overlay */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s;
}

.loading.hide {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}



/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.bounce-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.rotate-in {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Animated Counter */
.counter-section {
    padding: 10px 0;
    background: linear-gradient(135deg, #25a9eb, #1e64af, #94a3b8);
    color: white;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.counter-item {
    padding: 2rem;
}

.counter-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Animated Headline */
.animated-headline {
    display: inline-block;
    position: relative;
}

.headline-text {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.headline-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.headline-text.active::after {
    width: 100%;
}

/* Services Carousel */
.services-carousel {
    position: relative;
    padding: 40px 0;
}

.swiper {
    width: 100%;
    padding: 20px 0 60px;
}

.swiper-slide {
    height: auto;
}

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-content p {
    color: #6b7280;
    flex: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

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

.accordion-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-bg);
    transition: background 0.3s ease;
}

.accordion-item.active .accordion-header {
    background: var(--primary-color);
    color: white;
}

.accordion-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.accordion-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-body {
    padding: 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f3f4f6;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Pricing Section */
.pricing-section {
    padding: 120px 20px 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.pricing-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

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

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

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-align: center;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.period {
    font-size: 1rem;
    color: #6b7280;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.75rem 0;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

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

.features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.pricing-card .cta-button {
    width: 100%;
}

/* Benefits Carousel */
.benefits-carousel-section {
    background: linear-gradient(180deg, #cbd5e1 0%, #cbd5e1 50%, #f8fafc 100%);
    padding: 2rem 0;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.benefits-carousel-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle at 50% 100%, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.benefits-carousel-section .benefits-carousel {
    position: relative;
    z-index: 2;
}

.benefits-carousel {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.benefit-slide {
    min-width: 300px;
    flex-shrink: 0;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.benefit-slide i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.benefit-slide h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.benefit-slide p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 6 - 12rem));
    }
}

.benefits-carousel-section:hover .benefits-carousel {
    animation-play-state: paused;
}

/* Hero Benefits */
.hero-benefits {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefit-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.benefit-item p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

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