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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 50px;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

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

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

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #1e40af;
}

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

/* Academy Navigation Link Special Styling */
.academy-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.academy-nav-link:hover {
    color: #f59e0b;
}

.academy-nav-link::after {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.nav-badge {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    animation: pulse 2s infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 10%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(-20px) rotate(240deg); }
}

/* Geometric Patterns */
.geometric-patterns {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.pattern-grid {
    position: absolute;
    top: 20%;
    right: 10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    animation: gridPulse 4s ease-in-out infinite;
}

.grid-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: dotGlow 2s ease-in-out infinite alternate;
}

.grid-dot:nth-child(even) {
    animation-delay: 1s;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes dotGlow {
    0% { opacity: 0.4; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.2); }
}

.circuit-lines {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 200px;
    height: 200px;
    opacity: 0.6;
    animation: circuitFlow 8s linear infinite;
}

.circuit-svg {
    width: 100%;
    height: 100%;
}

.circuit-path {
    stroke-dasharray: 10;
    animation: pathDash 4s linear infinite;
}

.circuit-node {
    animation: nodeFlash 2s ease-in-out infinite;
}

.circuit-node:nth-child(even) {
    animation-delay: 1s;
}

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

@keyframes pathDash {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 20; }
}

@keyframes nodeFlash {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Floating Tech Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tech-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: techFloat 6s ease-in-out infinite;
}

.tech-icon-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
    color: #e34f26;
}

.tech-icon-2 {
    top: 25%;
    right: 25%;
    animation-delay: 1s;
    color: #f7df1e;
}

.tech-icon-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
    color: #61dafb;
}

.tech-icon-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
    color: #3776ab;
}

.tech-icon-5 {
    top: 40%;
    left: 10%;
    animation-delay: 4s;
    color: #ff9900;
}

.tech-icon-6 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    color: #4479a1;
}

@keyframes techFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.8;
    }
    33% { 
        transform: translateY(-20px) rotate(120deg) scale(1.1); 
        opacity: 1;
    }
    66% { 
        transform: translateY(10px) rotate(240deg) scale(0.9); 
        opacity: 0.9;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: white;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.gradient-text {
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.gradient-text:nth-child(1) { animation-delay: 0.2s; }
.gradient-text:nth-child(2) { animation-delay: 0.4s; }
.gradient-text:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

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

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-visual {
    animation: fadeInRight 1s ease-out 0.5s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tech-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: zoomIn 0.6s ease-out both;
}

.tech-card[data-delay="0"] { animation-delay: 0.8s; }
.tech-card[data-delay="200"] { animation-delay: 1s; }
.tech-card[data-delay="400"] { animation-delay: 1.2s; }
.tech-card[data-delay="600"] { animation-delay: 1.4s; }

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.tech-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tech-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.tech-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

/* Services Background Graphics */
.services-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.code-pattern {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 200px;
}

.code-line {
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, transparent);
    margin-bottom: 15px;
    border-radius: 2px;
    opacity: 0.3;
    animation: codeFlow 3s ease-in-out infinite;
}

.code-line:nth-child(1) {
    width: 80%;
    animation-delay: 0s;
}

.code-line:nth-child(2) {
    width: 60%;
    animation-delay: 0.5s;
}

.code-line:nth-child(3) {
    width: 90%;
    animation-delay: 1s;
}

.code-line:nth-child(4) {
    width: 40%;
    animation-delay: 1.5s;
}

.code-line:nth-child(5) {
    width: 70%;
    animation-delay: 2s;
}

@keyframes codeFlow {
    0%, 100% { 
        opacity: 0.3; 
        transform: scaleX(1); 
    }
    50% { 
        opacity: 0.7; 
        transform: scaleX(1.1); 
    }
}

.network-diagram {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 300px;
    height: 200px;
    opacity: 0.4;
}

.network-svg {
    width: 100%;
    height: 100%;
    animation: networkPulse 4s ease-in-out infinite;
}

.network-svg circle {
    animation: nodePulse 2s ease-in-out infinite;
}

.network-svg circle:nth-child(even) {
    animation-delay: 1s;
}

.network-svg line {
    animation: connectionFlow 3s linear infinite;
}

@keyframes networkPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@keyframes nodePulse {
    0%, 100% { opacity: 0.7; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes connectionFlow {
    0% { stroke-dasharray: 0, 100; }
    50% { stroke-dasharray: 50, 50; }
    100% { stroke-dasharray: 100, 0; }
}

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

.service-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
}

.service-item[data-aos="fade-up"][data-delay="0"] { animation-delay: 0.1s; }
.service-item[data-aos="fade-up"][data-delay="100"] { animation-delay: 0.2s; }
.service-item[data-aos="fade-up"][data-delay="200"] { animation-delay: 0.3s; }
.service-item[data-aos="fade-up"][data-delay="300"] { animation-delay: 0.4s; }
.service-item[data-aos="fade-up"][data-delay="400"] { animation-delay: 0.5s; }

.service-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
    transition: left 0.6s ease;
    z-index: 1;
}

.service-item:hover .service-hover-effect {
    left: 0;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.service-content h3 {
    color: #1e40af;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-content p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.feature-tag {
    background: linear-gradient(45deg, #e0e7ff, #c7d2fe);
    color: #3730a3;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    position: relative;
}

.stats-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

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

.testimonial-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    animation: fadeInUp 0.8s ease-out both;
}

.testimonial-item[data-aos="fade-up"][data-delay="0"] { animation-delay: 0.1s; }
.testimonial-item[data-aos="fade-up"][data-delay="200"] { animation-delay: 0.3s; }
.testimonial-item[data-aos="fade-up"][data-delay="400"] { animation-delay: 0.5s; }

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    background: white;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: #3b82f6;
    position: absolute;
    top: -10px;
    left: -20px;
    font-family: serif;
    opacity: 0.3;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: #1e40af;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Google Maps Section */
.map-section {
    padding: 4rem 0 0;
    background: white;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.map-info {
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.map-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: mapPulse 8s ease-in-out infinite;
}

@keyframes mapPulse {
    0%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.1; }
}

.office-details {
    position: relative;
    z-index: 2;
}

.office-details h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.detail-item i {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.detail-item span {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.map-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.map-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.map-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
}

.map-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.map-embed {
    position: relative;
    background: #f8fafc;
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-embed:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    pointer-events: none;
}

.map-marker {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50% 50% 50% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transform: rotate(-45deg);
    animation: markerBounce 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.map-marker i {
    transform: rotate(45deg);
}

@keyframes markerBounce {
    0%, 100% { transform: rotate(-45deg) translateY(0px); }
    50% { transform: rotate(-45deg) translateY(-10px); }
}

/* Quick Links Section */
.quick-links {
    padding: 6rem 0;
    background: white;
}

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

.link-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.link-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.link-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.link-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.link-content p {
    opacity: 0.9;
    font-size: 1rem;
}

.link-arrow {
    margin-left: auto;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

/* Academy Link Special Styling */
.academy-link {
    position: relative;
    overflow: hidden;
}

.academy-link .link-icon {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: white;
}

.academy-link:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.4);
}

.academy-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

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

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

/* Contact Background Graphics */
.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.data-flow {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100%;
    height: 60%;
}

.data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    opacity: 0.6;
    animation: dataFlow 8s linear infinite;
}

.data-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.data-particle:nth-child(2) {
    top: 40%;
    left: 20%;
    animation-delay: 1.6s;
}

.data-particle:nth-child(3) {
    top: 60%;
    left: 30%;
    animation-delay: 3.2s;
}

.data-particle:nth-child(4) {
    top: 30%;
    left: 40%;
    animation-delay: 4.8s;
}

.data-particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 6.4s;
}

@keyframes dataFlow {
    0% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateX(200px) translateY(-50px) scale(1.5);
        opacity: 1;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateX(400px) translateY(-100px) scale(0.5);
        opacity: 0;
    }
}

.server-racks {
    position: absolute;
    bottom: 15%;
    right: 10%;
    display: flex;
    gap: 30px;
}

.server-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.5rem;
    animation: serverBlink 3s ease-in-out infinite;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.server-icon:nth-child(1) {
    animation-delay: 0s;
}

.server-icon:nth-child(2) {
    animation-delay: 1s;
}

.server-icon:nth-child(3) {
    animation-delay: 2s;
}

@keyframes serverBlink {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
        box-shadow: 0 0 0 rgba(59, 130, 246, 0);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
}

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

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    animation: zoomIn 0.8s ease-out both;
}

.contact-card[data-aos="zoom-in"][data-delay="0"] { animation-delay: 0.1s; }
.contact-card[data-aos="zoom-in"][data-delay="100"] { animation-delay: 0.2s; }
.contact-card[data-aos="zoom-in"][data-delay="200"] { animation-delay: 0.3s; }

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
}

.contact-content h3 {
    color: #1e40af;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-content p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid #3b82f6;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

/* Footer Graphics */
.footer-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.binary-rain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding-top: 2rem;
}

.binary-digit {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.1);
    animation: binaryFall 4s linear infinite;
    opacity: 0;
}

.binary-digit:nth-child(1) { animation-delay: 0s; }
.binary-digit:nth-child(2) { animation-delay: 0.5s; }
.binary-digit:nth-child(3) { animation-delay: 1s; }
.binary-digit:nth-child(4) { animation-delay: 1.5s; }
.binary-digit:nth-child(5) { animation-delay: 2s; }
.binary-digit:nth-child(6) { animation-delay: 2.5s; }
.binary-digit:nth-child(7) { animation-delay: 3s; }
.binary-digit:nth-child(8) { animation-delay: 3.5s; }

@keyframes binaryFall {
    0% {
        transform: translateY(-100vh);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.footer-wave svg {
    width: 100%;
    height: 120px;
    animation: waveFlow 6s ease-in-out infinite;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: none;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    height: 40px;
}

.footer-logo-image {
    height: 32px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.footer-logo-image:hover {
    filter: brightness(0) invert(1) opacity(0.8);
}

.footer-tagline {
    opacity: 0.9;
    font-size: 1rem;
    max-width: 300px;
}

.footer-links h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    padding: 0.3rem 0;
    transition: color 0.3s ease;
    display: block;
}

.footer-link:hover {
    color: #3b82f6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

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

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* WhatsApp Chat Widget */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #1e40af;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-content {
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        color: #1e40af;
        font-weight: 600;
    }
    
    .academy-nav-link {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }
    
    .nav-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .hero {
        padding-top: 100px;
        min-height: 100vh;
        padding-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        justify-content: center;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .tech-card {
        padding: 1.5rem 1rem;
    }
    
    .tech-card i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .tech-card span {
        font-size: 0.9rem;
    }
    
    .services {
        padding: 4rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .service-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .quick-links {
        padding: 4rem 0;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .link-card {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .link-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .link-content h3 {
        font-size: 1.2rem;
    }
    
    .link-content p {
        font-size: 0.9rem;
    }
    
    .contact {
        padding: 4rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .contact-content h3 {
        font-size: 1.2rem;
    }
    
    .contact-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Mobile-specific floating shapes adjustment */
    .shape {
        opacity: 0.3;
    }
    
    .shape-1, .shape-4 {
        display: none;
    }
    
    /* Hide complex graphics on mobile for performance */
    .geometric-patterns,
    .services-background,
    .contact-background,
    .footer-graphics {
        display: none;
    }
    
    /* Mobile stats section */
    .stats-section {
        padding: 3rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Mobile testimonials */
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-item {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    /* Mobile footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding-top: 90px;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .cta-primary, .cta-secondary {
        max-width: 100%;
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tech-card {
        padding: 1.2rem 0.8rem;
    }
    
    .tech-card i {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .tech-card span {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        line-height: 1.4;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .service-item,
    .contact-card,
    .link-card {
        padding: 1.5rem 1rem;
        margin: 0 5px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .service-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
    
    .link-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .link-content h3 {
        font-size: 1.1rem;
    }
    
    .link-content p {
        font-size: 0.85rem;
    }
    
    .contact-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
    
    .contact-content h3 {
        font-size: 1.1rem;
    }
    
    .contact-content p {
        font-size: 0.9rem;
    }
    
    .contact-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .services,
    .quick-links,
    .contact {
        padding: 3rem 0;
    }
    
    /* Mobile stats adjustments */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.2rem 0.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Mobile testimonials adjustments */
    .testimonial-item {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    /* Mobile logo adjustments */
    .logo {
        height: 45px;
    }
    
    .logo-image {
        height: 35px;
        max-width: 150px;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .footer-logo-image {
        height: 28px;
    }
    
    .footer-content {
        padding-bottom: 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.3rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    /* Enhanced touch targets for mobile */
    .nav-link,
    .cta-primary,
    .cta-secondary,
    .link-card,
    .contact-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Reduce animation complexity on small screens */
    .tech-card:hover,
    .service-item:hover,
    .link-card:hover,
    .contact-card:hover {
        transform: translateY(-5px);
    }
    
    /* Optimize floating shapes for performance */
    .shape-2, .shape-3 {
        animation-duration: 8s;
    }
    
    /* Adjust WhatsApp button for mobile */
    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    /* Mobile Google Maps section */
    .maps-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .maps-content {
        order: 1;
    }
    
    .office-details {
        order: 2;
    }
    
    .detail-card {
        padding: 1.2rem;
    }
    
    .detail-card h4 {
        font-size: 1rem;
    }
    
    .detail-card p {
        font-size: 0.85rem;
    }
    
    .maps-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .maps-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .embedded-map iframe {
        height: 250px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .service-item,
    .contact-card,
    .link-card {
        padding: 1.2rem 0.8rem;
    }
    
    .cta-primary, .cta-secondary {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Further adjust WhatsApp button for very small screens */
    .whatsapp-chat {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #1d4ed8, #1e40af);
}

/* Loading animation for images and content */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Intersection Observer animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Blog Post Styles */
.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 100px;
    margin-bottom: 2rem;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: #1e40af;
}

.blog-post-header {
    margin-bottom: 2rem;
}

.blog-post-category {
    display: inline-block;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.blog-post-excerpt {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.blog-post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.blog-post-meta-item i {
    color: #3b82f6;
}

.blog-post-featured-image {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.blog-post-featured-image:hover {
    transform: scale(1.02);
}

.blog-post-content {
    color: #1a202c;
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
    color: #1e40af;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.blog-post-content h3 {
    font-size: 1.5rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
    color: #374151;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
    color: #374151;
}

.blog-post-content blockquote {
    border-left: 4px solid #3b82f6;
    background: #f8fafc;
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    font-style: italic;
    color: #4b5563;
}

.blog-post-content code {
    background: #f1f5f9;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.9rem;
    color: #be185d;
}

.blog-post-content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-post-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.blog-post-content a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.blog-post-content a:hover {
    color: #1e40af;
    text-decoration: underline;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.blog-post-actions {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f1f5f9;
}

.blog-post-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-post-edit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.blog-post-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f1f5f9;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-post {
    display: block;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: #1a202c;
    transition: all 0.3s ease;
}

.nav-post:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.nav-post-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.nav-post-title {
    font-weight: 600;
    color: #1e40af;
}

/* Loading and error states */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    color: #64748b;
}

.error-message {
    text-align: center;
    padding: 3rem;
    color: #dc2626;
    font-size: 1.1rem;
}

/* Mobile responsiveness for blog posts */
@media (max-width: 768px) {
    .blog-post-container {
        margin-top: 80px;
        padding: 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .blog-post-title {
        font-size: 2rem;
    }

    .blog-post-excerpt {
        font-size: 1.1rem;
    }

    .blog-post-content {
        font-size: 1rem;
    }

    .blog-post-content h2 {
        font-size: 1.5rem;
    }

    .blog-post-content h3 {
        font-size: 1.3rem;
    }

    .blog-post-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .blog-post-navigation {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ===================================
   Articles Section Styles
   =================================== */
.articles-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.articles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 103, 103, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.articles-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.articles-section .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.articles-section .section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.articles-slider-container {
    position: relative;
    margin-bottom: 40px;
}

.articles-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 60px;
    transition: all 0.5s ease;
}

.articles-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

.articles-loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.articles-loading p {
    font-size: 1.1rem;
}

.article-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

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

.article-content {
    padding: 25px;
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-excerpt {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

.article-author {
    font-weight: 500;
}

.article-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.slider-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.4);
}

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

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}

.articles-footer {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .articles-section {
        padding: 60px 0;
    }
    
    .articles-section .section-header h2 {
        font-size: 2.2rem;
    }
    
    .articles-section .section-header p {
        font-size: 1rem;
    }
    
    .articles-slider {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .article-card {
        border-radius: 15px;
    }
    
    .article-image {
        height: 180px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-title {
        font-size: 1.2rem;
    }
    
    .slider-controls {
        gap: 15px;
        margin-top: 30px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .view-all-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .articles-section {
        padding: 40px 0;
    }
    
    .articles-section .section-header {
        margin-bottom: 40px;
    }
    
    .articles-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .articles-slider {
        padding: 0 10px;
        gap: 15px;
    }
    
    .article-content {
        padding: 15px;
    }
    
    .article-title {
        font-size: 1.1rem;
    }
    
    .article-excerpt {
        font-size: 0.9rem;
    }
    
    .articles-footer {
        margin-top: 30px;
    }
}