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

:root {
    /* Main Colors from Logo */
    --primary-color: #1a237e;    /* Deep Blue */
    --secondary-color: #0d47a1;  /* Bright Blue */
    --accent-color: #e74c3c;     /* Orange */
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #fff;
    --dark-bg: #0a0a0a;
    
    /* Gradients */
    --gradient-1: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    --gradient-2: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    --gradient-3: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    
    /* Transparent Colors */
    --primary-transparent: rgba(26, 35, 126, 0.1);
    --secondary-transparent: rgba(13, 71, 161, 0.1);
    --accent-transparent: rgba(231, 76, 60, 0.1);
}

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

/* Header and Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px var(--primary-transparent);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px var(--primary-transparent);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 10px;
}

.logo:hover::before {
    opacity: 0.1;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px var(--primary-transparent));
}

.logo:hover .logo-img {
    transform: scale(1.05) rotate(5deg);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 2px 4px var(--primary-transparent);
    position: relative;
}

.logo-highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.logo-highlight::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-3);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover .logo-highlight::before {
    transform: scaleX(1);
    transform-origin: left;
}

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

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: var(--accent-color);
    opacity: 0.8;
}

.nav-links a:hover, .nav-links a:focus {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    transition: background 0.2s, color 0.2s;
}

.nav-links a:hover i, .nav-links a:focus i {
    transform: scale(1.2) rotate(5deg);
    opacity: 1;
    color: var(--white);
}

.nav-links a.active {
    color: var(--white);
    background: var(--gradient-3);
    box-shadow: 0 4px 15px var(--accent-transparent);
}

.nav-links a.active i {
    color: var(--white);
    opacity: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: 
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
        url('./images/Building1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(26, 35, 126, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(231, 76, 60, 0.2) 0%, transparent 50%);
    z-index: 1;
    animation: gradientMove 15s ease infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.1) 49%, rgba(255,255,255,0.1) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.1) 49%, rgba(255,255,255,0.1) 51%, transparent 52%);
    background-size: 40px 40px;
    opacity: 0.1;
    z-index: 1;
    animation: patternMove 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-3);
    border-radius: 2px;
    animation: linePulse 2s ease-in-out infinite;
}

.hero-content h1 .welcome-text {
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
    display: inline-block;
    margin-right: 0.5rem;
    animation: textGlow 2s ease-in-out infinite;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    position: relative;
}

.hero-content p::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gradient-3);
    opacity: 0.5;
}

.core-values {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.core-values span {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
}

.core-values span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.core-values span:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.core-values span:hover::before {
    opacity: 0.2;
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.scroll-indicator:hover i {
    opacity: 1;
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .core-values {
        gap: 1rem;
    }

    .core-values span {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* About Section */
.about {
    padding: 8rem 1rem;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(26, 35, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(231, 76, 60, 0.1) 0%, transparent 50%);
    z-index: 0;
    animation: gradientMove 15s ease infinite;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 20px;
}

.about-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.about-text:hover::before {
    opacity: 0.05;
}

.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission, .vision {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.mission::before, .vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.mission:hover, .vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.mission:hover::before, .vision:hover::before {
    opacity: 0.05;
}

.mission h3, .vision h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
    z-index: 1;
}

.mission h3::after, .vision h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-3);
    border-radius: 2px;
    animation: linePulse 2s ease-in-out infinite;
}

.mission p, .vision p {
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text, .mission, .vision {
        padding: 1.5rem;
    }
}

/* Process Section */
.process {
    padding: 8rem 1rem;
    background-color: var(--white);
}

.process h2 {
    text-align: center;
    margin-bottom: 5rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
}

.process h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-3);
    border-radius: 2px;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0 4rem 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-3);
    z-index: 0;
    border-radius: 2px;
    opacity: 0.15;
}
.timeline-item {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
    position: relative;
    margin-bottom: 4rem;
    z-index: 1;
}
.timeline-item.left {
    left: 0;
    flex-direction: row;
}
.timeline-item.right {
    left: 50%;
    flex-direction: row-reverse;
}
.timeline-content {
    background: var(--white);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 32px var(--primary-transparent);
    position: relative;
    width: 90%;
    text-align: left;
    border: 1px solid var(--primary-transparent);
    transition: box-shadow 0.3s, transform 0.3s;
    z-index: 2;
}
.timeline-item.left .timeline-content {
    margin-right: 2.5rem;
}
.timeline-item.right .timeline-content {
    margin-left: 2.5rem;
}
.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    font-size: 1.3rem;
    position: relative;
}
.timeline-content p {
    color: #666;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}
.timeline-step {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--gradient-3);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 16px var(--accent-transparent);
    border: 4px solid var(--white);
    z-index: 3;
    animation: timelinePulse 2s infinite;
}
.timeline-item.right .timeline-step {
    left: 0%;
    right: auto;
}
@keyframes timelinePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 var(--accent-transparent);
    }
    50% {
        box-shadow: 0 0 0 10px var(--accent-transparent);
    }
}
@media screen and (max-width: 900px) {
    .timeline-item, .timeline-item.left, .timeline-item.right {
        width: 100%;
        left: 0 !important;
        flex-direction: column !important;
        align-items: flex-start;
    }
    .timeline::before {
        left: 24px;
        width: 3px;
    }
    .timeline-step {
        left: 0 !important;
        top: 0;
        transform: translateY(-50%);
        margin-bottom: 1rem;
    }
    .timeline-content {
        margin: 0 0 2rem 2.5rem !important;
        width: calc(100% - 2.5rem);
    }
}

.process-step {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-transparent);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--primary-transparent);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-3);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 15px var(--accent-transparent);
}

/* Team Section */
.team {
    padding: 8rem 1rem;
    background-color: var(--light-bg);
}

.team h2 {
    text-align: center;
    margin-bottom: 5rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
}

.team h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-3);
    border-radius: 2px;
}

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

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--primary-transparent);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-transparent);
}

.team-member:hover {
    transform: translateY(-10px);
}
.team-member:hover .member-image {
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
    border: 4px solid var(--accent-color);
    transform: scale(1.04);
}

.member-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--white);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    position: relative;
} 

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    border: none;
    box-shadow: none;
    transition: transform 0.3s, filter 0.3s;
    filter: brightness(1) contrast(1.05) saturate(1.1);
    display: block;
} 

.member-image img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(26,35,126,0.18), 0 4px 16px rgba(52,152,219,0.16);
    filter: brightness(1.08) contrast(1.15) saturate(1.2);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #666;
}

/* Technologies Section */
.technologies {
    padding: 6rem 1rem 4rem 1rem;
    background: #fafbfc;
    text-align: center;
}
.technologies h2 {
    font-size: 2.3rem;
    margin-bottom: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}
.tech-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.3rem;
}
.tech-filter {
    background: #f5f7fa;
    border: none;
    color: #1a237e;
    font-weight: 600;
    padding: 0.7rem 1.7rem;
    border-radius: 2rem;
    font-size: 1rem;
    box-shadow: 0 2px 12px 0 rgba(31,38,135,0.03);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    outline: none;
}
.tech-filter.active, .tech-filter:hover {
    background: var(--accent-color, #2962ff);
    color: #fff;
    box-shadow: 0 4px 18px 0 var(--accent-transparent, rgba(41,98,255,0.13));
}
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.tech-card {
    background: #fff;
    border-radius: 1.3rem;
    box-shadow: 0 2px 18px 0 rgba(31,38,135,0.06);
    padding: 2.2rem 1.3rem 1.3rem 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: box-shadow 0.22s, transform 0.22s;
    cursor: pointer;
    min-height: 180px;
    position: relative;
}
.tech-card:hover {
    box-shadow: 0 8px 28px 0 var(--accent-transparent, rgba(41,98,255,0.15));
    transform: translateY(-7px) scale(1.03);
    z-index: 2;
}
.tech-icon {
    font-size: 2.5rem;
    color: var(--accent-color, #2962ff);
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background: #f5f7fa;
    box-shadow: 0 1px 6px 0 rgba(31,38,135,0.04);
}
.tech-name {
    font-weight: 700;
    font-size: 1.13rem;
    color: #1a237e;
    margin-bottom: 0.2rem;
}
.tech-cat {
    font-size: 0.97rem;
    color: #6a7ba2;
}
@media (max-width: 700px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
    }
    .tech-card {
        padding: 1.3rem 0.7rem 1rem 0.7rem;
        min-height: 140px;
    }
    .tech-icon { font-size: 2rem; width: 2.4rem; height: 2.4rem; }
    .technologies h2 { font-size: 1.5rem; }
}

/* Contact Section */
.contact {
    padding: 8rem 1rem 4rem 1rem;
    background: linear-gradient(120deg, #f5f5f5 0%, #e3e9f9 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.contact-bg-deco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}
.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 2.7rem;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}
.contact-subtitle {
    text-align: center;
    color: #555;
    font-size: 1.18rem;
    margin-bottom: 1.3rem;
    z-index: 2;
    position: relative;
    opacity: 0.92;
}
.contact-divider {
    width: 110px;
    height: 5px;
    margin: 0 auto 2.7rem auto;
    background: var(--gradient-3);
    border-radius: 3px;
    box-shadow: 0 0 16px 0 var(--accent-transparent);
    animation: glowDivider 2.5s infinite alternate;
}
@keyframes glowDivider {
    0% { box-shadow: 0 0 8px 0 var(--accent-transparent); }
    100% { box-shadow: 0 0 32px 8px var(--accent-transparent); }
}
.contact-dynamic-layout {
    display: flex;
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}
.contact-info-float {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 320px;
    z-index: 2;
}
.info-card {
    background: rgba(255,255,255,0.7);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.13);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.13rem;
    color: var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    border: 1.5px solid rgba(26,35,126,0.07);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: floatIn 1s forwards, float 6s ease-in-out infinite;
}
.info-card.animate-float { opacity: 1; }
@keyframes floatIn {
    0% { opacity: 0; transform: translateY(40px) scale(0.95); }
    80% { opacity: 1; transform: translateY(-6px) scale(1.03); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.info-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px 0 rgba(52,152,219,0.13);
    background: rgba(255,255,255,0.95);
}
.info-card i, .info-card a i {
    font-size: 1.7rem;
    color: var(--accent-color);
    margin-right: 0.8rem;
}
.info-card.social {
    gap: 1.5rem;
    justify-content: flex-start;
}
.info-card.social a {
    color: var(--primary-color);
    font-size: 1.7rem;
    transition: color 0.3s, transform 0.3s;
}
.info-card.social a:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}
.info-card.map-preview {
    padding: 0;
    background: none;
    box-shadow: none;
    border: none;
    justify-content: center;
}
.info-card.map-preview img {
    width: 100%;
    max-width: 240px;
    border-radius: 16px;
    box-shadow: 0 6px 24px var(--primary-transparent);
    border: 3px solid #fff;
    display: block;
}
.contact-form-glass {
    background: rgba(255,255,255,0.55);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.15);
    border-radius: 24px;
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(26,35,126,0.08);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.contact-form-glass form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}
.contact-form-glass h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: left;
}
.contact-form-glass input,
.contact-form-glass textarea {
    padding: 1.1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1.07rem;
    transition: all 0.3s;
    background: rgba(255,255,255,0.85);
    color: var(--primary-color);
}
.contact-form-glass input:focus,
.contact-form-glass textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-transparent);
}
.contact-form-glass textarea {
    height: 130px;
    resize: vertical;
}
.submit-button {
    padding: 1.2rem;
    background: var(--gradient-3);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    box-shadow: 0 4px 15px var(--accent-transparent);
    font-size: 1.1rem;
}
.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
@media screen and (max-width: 900px) {
    .contact-dynamic-layout {
        flex-direction: column;
        gap: 3rem;
        align-items: stretch;
    }
    .contact-info-float {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.3rem;
        min-width: unset;
        justify-content: center;
    }
    .info-card {
        min-width: 160px;
        flex: 1 1 160px;
        justify-content: flex-start;
        padding: 1.1rem 1.2rem;
        font-size: 1rem;
    }
    .contact-form-glass {
        max-width: 100%;
        padding: 2rem 1rem 1.3rem 1rem;
    }
}
@media screen and (max-width: 600px) {
    .contact-bg-deco { display: none; }
    .contact h2 { font-size: 2rem; }
    .contact-subtitle { font-size: 1rem; }
    .contact-divider { margin-bottom: 1.2rem; }
    .contact-dynamic-layout { gap: 2rem; }
    .info-card { font-size: 0.97rem; }
    .contact-form-glass { padding: 1.2rem 0.5rem; }
}

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

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-3);
    border-radius: 2px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.contact-form {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--primary-transparent);
}

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

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-transparent);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 1.2rem;
    background: var(--gradient-3);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px var(--accent-transparent);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 1rem 1rem;
    position: relative;
    box-shadow: 0 -2px 15px var(--primary-transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

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

.social-links a {
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    text-shadow: 0 2px 4px var(--accent-transparent);
    transform: translateY(-3px);
}

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

/* Mobile Navigation */
.burger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--gradient-3);
    margin: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.burger div::before,
.burger div::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    transition: all 0.3s ease;
}

.burger div::before {
    transform: translateY(-8px);
}

.burger div::after {
    transform: translateY(8px);
}

.burger.active div {
    background: transparent;
}

.burger.active div::before {
    transform: rotate(45deg);
}

.burger.active div::after {
    transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        height: calc(100vh - 80px);
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transition: right 0.5s ease;
        box-shadow: 0 2px 15px var(--primary-transparent);
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links li:nth-child(5) { transition-delay: 0.5s; }

    .burger {
        display: block;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content .subtitle {
        font-size: 1.4rem;
    }

    .about-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .process-steps,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }

    .nav-links a {
        padding: 1rem;
        justify-content: center;
    }
    
    .nav-links a i {
        font-size: 1.4rem;
    }
}

/* Services Section */
.services {
    padding: 8rem 1rem;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(231, 76, 60, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-intro h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.services-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-3);
    border-radius: 2px;
}

.services-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 10px 30px var(--primary-transparent);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--primary-transparent);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent var(--secondary-color) transparent transparent;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px var(--accent-transparent);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover::after {
    opacity: 0.3;
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(0,0,0,0.1);
    z-index: 2;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.service-icon i {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card:hover h3 {
    color: var(--secondary-color);
}

.service-card p {
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card:hover p {
    color: #444;
}

.service-card .read-more {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card .read-more::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-3);
    transition: width 0.4s ease;
}

.service-card:hover .read-more::after {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .services-intro p {
        font-size: 1rem;
    }
}

/* Add animation to service cards */
@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-card {
    animation: cardFloat 3s ease-in-out infinite;
}

/* Add hover effect to service cards */
.service-card:hover {
    animation: none;
}

/* Add decorative elements to service cards */
.service-card {
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, var(--secondary-color) 49%, var(--secondary-color) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, var(--secondary-color) 49%, var(--secondary-color) 51%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0.05;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 0.1;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

/* Add decorative border to service cards */
.service-card {
    border: 1px solid var(--primary-transparent);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-3);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::after {
    opacity: 1;
}

/* Add decorative corner to service cards */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent var(--secondary-color) transparent transparent;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.service-card:hover::before {
    opacity: 0.3;
}

/* Add decorative background to service cards */
.service-card {
    background: 
        linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(231, 76, 60, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

/* Core Values */
.core-values span {
    background: var(--primary-transparent);
    border: 1px solid var(--accent-transparent);
}

.core-values span:hover {
    background: var(--accent-transparent);
    border-color: var(--accent-color);
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

@keyframes linePulse {
    0%, 100% { width: 80px; opacity: 1; }
    50% { width: 120px; opacity: 0.8; }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255,255,255,0.5); }
    50% { text-shadow: 0 0 20px rgba(255,255,255,0.8); }
}

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