/* Global Styles */
:root {
    --primary-color: #00167a;
    --secondary-color: #00167a;
    --accent-color: #5ce7ff;
    --dark-color: #00167a;
    --light-color: #5ce7ff;
    --text-color: #00167a;
    --text-light: #334155;
    --border-color: #e0f7ff;
    --success-color: #10b981;
    --warning-color: #ffff00;
    --gradient-1: linear-gradient(135deg, #00167a 0%, #0025a8 50%, #5ce7ff 100%);
    --gradient-2: linear-gradient(135deg, #00167a 0%, #5ce7ff 100%);
    --gradient-3: linear-gradient(120deg, #ffff00 0%, #5ce7ff 100%);
    --shadow-sm: 0 2px 4px 0 rgba(0, 22, 122, 0.08);
    --shadow-md: 0 8px 16px -4px rgba(0, 22, 122, 0.12);
    --shadow-lg: 0 16px 32px -8px rgba(0, 22, 122, 0.15);
    --shadow-xl: 0 24px 48px -12px rgba(0, 22, 122, 0.2);
    --shadow-glow: 0 0 40px rgba(92, 231, 255, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

section {
    padding: 80px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-2);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 22, 122, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 22, 122, 0.4), var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #ffff00;
    box-shadow: 0 4px 16px rgba(255, 255, 0, 0.2);
}

.btn-secondary:hover {
    background: #ffff00;
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 255, 0, 0.4);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-3);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(92, 231, 255, 0.4);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Times New Roman MT', 'Times New Roman', Times, serif;
    transition: transform 0.3s ease;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.5rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-top: 2px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo i {
    font-size: 2rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(92, 231, 255, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-3);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(92, 231, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(92, 231, 255, 0.1) 0%, transparent 50%);
    animation: heroGradient 15s ease infinite;
}

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

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(120deg, #ffff00 0%, #5ce7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 1.5rem;
    cursor: pointer;
}

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

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

/* Page Header for internal pages */
.page-header {
    padding: 150px 0 80px;
    background: var(--gradient-1);
    color: white;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(92, 231, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 0, 0.15) 0%, transparent 50%);
    animation: headerFloat 10s ease-in-out infinite;
}

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

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-1);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(92, 231, 255, 0.2) 0%, transparent 70%);
    animation: ctaPulse 4s ease-in-out infinite;
}

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

.cta-section h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* Contact Info Grid (for homepage) */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background: #ffffff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mission-card {
    background: white;
    padding: 45px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
}

.mission-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: var(--gradient-2);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    color: white;
}

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

.mission-card:hover h3,
.mission-card:hover p {
    color: white;
}

.mission-card i {
    font-size: 3.5rem;
    color: #00167a;
    margin-bottom: 20px;
    display: block;
    transition: all 0.4s ease;
}

.mission-card:hover i {
    color: #ffff00;
    transform: scale(1.1);
}

.mission-card h3 {
    color: #00167a;
    margin-bottom: 20px;
}

.mission-card p {
    line-height: 1.8;
    color: var(--text-color);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.team-member {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.team-photo {
    margin-bottom: 25px;
    position: relative;
}

.team-photo-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 22, 122, 0.3);
    transition: all 0.4s ease;
    border: 4px solid white;
    outline: 3px solid var(--accent-color);
}

.team-member:hover .team-photo-img {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
    outline-color: #ffff00;
}

.photo-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 22, 122, 0.3);
    transition: all 0.4s ease;
}

.team-member:hover .photo-placeholder {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.photo-placeholder i {
    font-size: 5rem;
    color: white;
}

.team-info h3 {
    color: #00167a;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.team-role {
    display: inline-block;
    background: linear-gradient(135deg, #ffff00 0%, #ffff80 100%);
    color: #00167a;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(255, 255, 0, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.team-bio {
    color: var(--text-color);
    line-height: 1.8;
    text-align: left;
    margin-bottom: 15px;
    font-size: 1rem;
}

.team-bio:last-child {
    margin-bottom: 0;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: #5ce7ff;
}

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

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 22, 122, 0.05);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.value-item:hover::before {
    width: 300px;
    height: 300px;
}

.value-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.value-item i {
    font-size: 2.8rem;
    color: #00167a;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.value-item:hover i {
    transform: rotateY(360deg) scale(1.2);
    color: var(--primary-color);
}

.value-item h4 {
    color: #00167a;
    margin-bottom: 15px;
}

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

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #5ce7ff;
}

.map-placeholder {
    background: white;
    padding: 80px 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed var(--border-color);
    margin-top: 40px;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-placeholder p {
    color: var(--text-color);
    font-size: 1.1rem;
}

.map-note {
    color: var(--text-light);
    font-size: 0.95rem !important;
    margin-top: 10px;
}

/* Active nav link */
.nav-link.active {
    color: var(--primary-color);
    background: rgba(92, 231, 255, 0.15);
}

.nav-link.active::after {
    width: 70%;
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gradient-2);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Selection styling */
::selection {
    background: var(--accent-color);
    color: var(--primary-color);
}

::-moz-selection {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Services Section */
.services {
    background: #ffffff;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(92, 231, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 22, 122, 0.02) 0%, transparent 20%);
    pointer-events: none;
}

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

.service-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 22, 122, 0.1);
    border-color: transparent;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 22, 122, 0.25);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: var(--shadow-glow);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #00167a;
    color: #ffff00;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    margin-right: 10px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* About Section */
.about {
    background: #5ce7ff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 25px;
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-image {
    display: grid;
    gap: 20px;
}

.about-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(92, 231, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.about-card i {
    font-size: 2.5rem;
    color: #00167a;
    margin-bottom: 15px;
    display: block;
}

.about-card h4 {
    margin-bottom: 10px;
}

.about-card p {
    color: var(--text-light);
    margin: 0;
}

/* Portfolio Section */
.portfolio {
    background: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(92, 231, 255, 0.2);
}

.portfolio-image {
    height: 250px;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
}

.portfolio-item:hover .portfolio-image {
    filter: brightness(1.1);
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h3 {
    margin-bottom: 12px;
    color: var(--dark-color);
}

.portfolio-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.portfolio-tags span {
    padding: 8px 16px;
    background: linear-gradient(135deg, #5ce7ff 0%, #a0f0ff 100%);
    color: #00167a;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(92, 231, 255, 0.3);
}

.portfolio-item:hover .portfolio-tags span {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(92, 231, 255, 0.4);
}

.portfolio-result {
    margin-top: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.portfolio-result i {
    font-size: 1.2rem;
}

/* Technologies Section */
.technologies {
    background: #5ce7ff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 35px 25px;
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.tech-item:hover {
    background: linear-gradient(135deg, #ffff00 0%, #ffff80 100%);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(255, 255, 0, 0.3);
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(255, 255, 0, 0.5);
}

.tech-item i {
    font-size: 3rem;
    color: #00167a;
}

.tech-item span {
    font-weight: 600;
    color: var(--dark-color);
}

/* Contact Section */
.contact {
    background: #ffffff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 30px;
    color: var(--dark-color);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item i {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 22, 122, 0.3);
    transition: all 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.info-item h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #00167a;
    color: #ffff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #5ce7ff;
    color: #00167a;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 22, 122, 0.1), 0 4px 12px rgba(0, 22, 122, 0.15);
    transform: translateY(-2px);
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--text-light);
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 0.85rem;
    color: #00167a;
}

.form-group select + label {
    top: -10px;
    font-size: 0.85rem;
}

.contact-form button {
    width: 100%;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #dc3545;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.btn-loading {
    display: none;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #00167a 0%, #000d4a 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(92, 231, 255, 0.5), transparent);
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 0.95rem;
}

.newsletter-form button {
    padding: 12px 20px;
    background: #00167a;
    color: #ffff00;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #5ce7ff;
    color: #00167a;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 30px 0;
    }

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

    .hamburger {
        display: flex;
    }

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

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 2rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    section {
        padding: 60px 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 25px;
    }
}

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

    .team-member {
        padding: 30px 25px;
    }

    .photo-placeholder {
        width: 160px;
        height: 160px;
    }

    .photo-placeholder i {
        font-size: 4rem;
    }

    .team-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .service-card,
    .portfolio-item {
        padding: 25px 20px;
    }

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

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

    .photo-placeholder {
        width: 140px;
        height: 140px;
    }

    .photo-placeholder i {
        font-size: 3.5rem;
    }

    .team-role {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .team-bio {
        font-size: 0.95rem;
    }
}
