/* Modern Dashboard Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 50%, #d4edda 100%);
    color: #2c5530;
    overflow-x: hidden;
    line-height: 1.6;
}

body::before, body::after {
    content: '';
    position: fixed;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.35;
    filter: blur(60px);
    animation: bgBlobMove 18s ease-in-out infinite alternate;
}
body::before {
    width: 420px;
    height: 420px;
    left: -180px;
    top: -120px;
    background: radial-gradient(circle at 30% 30%, #90EE90 0%, #32CD32 80%, transparent 100%);
    animation-delay: 0s;
}
body::after {
    width: 340px;
    height: 340px;
    right: -120px;
    bottom: -100px;
    background: radial-gradient(circle at 70% 70%, #87CEEB 0%, #4682B4 80%, transparent 100%);
    animation-delay: 6s;
}
@keyframes bgBlobMove {
    0% { transform: scale(1) translateY(0) translateX(0); }
    50% { transform: scale(1.08) translateY(30px) translateX(40px); }
    100% { transform: scale(0.95) translateY(-20px) translateX(-30px); }
}
.bg-float {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    opacity: 0.18;
    filter: blur(18px);
    border-radius: 50%;
    animation: floatShape 12s ease-in-out infinite alternate;
}
.bg-float.shape1 {
    width: 120px;
    height: 120px;
    left: 12vw;
    top: 60vh;
    background: linear-gradient(135deg, #90EE90 0%, #32CD32 100%);
    animation-delay: 2s;
}
.bg-float.shape2 {
    width: 90px;
    height: 90px;
    right: 10vw;
    top: 30vh;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
    animation-delay: 5s;
}
.bg-float.shape3 {
    width: 70px;
    height: 70px;
    left: 50vw;
    bottom: 10vh;
    background: linear-gradient(135deg, #98FB98 0%, #3CB371 100%);
    animation-delay: 8s;
}
@keyframes floatShape {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
    100% { transform: translateY(20px) scale(0.95); }
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 15px 30px;
    border: 1px solid rgba(44, 85, 48, 0.2);
    box-shadow: 0 8px 32px rgba(44, 85, 48, 0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-glow {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.4);
    margin-right: 12px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #1e90ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #2c5530;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-item::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;
}

.nav-item:hover::before {
    left: 100%;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-item.active {
    background: linear-gradient(45deg, #32CD32, #90EE90);
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.4);
}

.nav-item i {
    font-size: 1.1rem;
}

/* Hero Section */
.hero-parallax {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #87CEEB 0%, #98FB98 100%);
    z-index: -2;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

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

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

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

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    align-items: center;
}

.hero-text-container {
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

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

.highlight {
    background: linear-gradient(45deg, #32CD32, #90EE90);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(44, 85, 48, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}

.cta-button.primary {
    background: linear-gradient(45deg, #32CD32, #90EE90);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(50, 205, 50, 0.6);
}

.cta-button.secondary {
    background: rgba(44, 85, 48, 0.1);
    border: 2px solid rgba(44, 85, 48, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(44, 85, 48, 0.2);
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-sphere {
    position: relative;
    width: 800px;
    height: 800px;
}

.sphere-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(44, 85, 48, 0.3);
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 600px;
    height: 600px;
    top: 100px;
    left: 100px;
    animation-delay: 0s;
}

.ring-2 {
    width: 500px;
    height: 500px;
    top: 150px;
    left: 150px;
    animation-delay: -5s;
    animation-direction: reverse;
}

.ring-3 {
    width: 400px;
    height: 400px;
    top: 200px;
    left: 200px;
    animation-delay: -10s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sphere-core {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 250px;
    left: 250px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(50, 205, 50, 0.5);
}

.sphere-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(44, 85, 48, 0.7);
    animation: bounce 2s infinite;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: #2c5530;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

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

/* Stats Dashboard */
.stats-dashboard {
    background: linear-gradient(120deg, #181c2e 60%, #1e90ff 100%);
    padding: 60px 0 40px 0;
    position: relative;
    overflow: hidden;
}
.stats-dashboard::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #00d4ff55 0%, transparent 80%);
    z-index: 0;
    filter: blur(10px);
}
.stats-dashboard::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #1e90ff33 0%, transparent 80%);
    z-index: 0;
    filter: blur(12px);
}
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.stat-card {
    background: linear-gradient(135deg, #2c5530 60%, #32CD3222 100%);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(50, 205, 50, 0.12), 0 1.5px 8px #32CD3222;
    padding: 38px 32px 32px 32px;
    min-width: 220px;
    max-width: 260px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #90EE9033 0%, transparent 80%);
    z-index: 0;
    filter: blur(8px);
    opacity: 0.7;
    transition: opacity 0.3s;
}
.stat-card:hover {
    transform: translateY(-8px) scale(1.04) rotate(-1deg);
    box-shadow: 0 16px 48px 0 #32CD3244, 0 2px 12px #90EE9033;
    background: linear-gradient(120deg, #32CD32 60%, #2c5530 100%);
}
.stat-card:hover::before {
    opacity: 1;
}
.stat-icon {
    font-size: 2.8rem;
    color: #90EE90;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 8px #32CD3288);
    transition: color 0.3s, filter 0.3s;
}
.stat-card:hover .stat-icon {
    color: #fff;
    filter: drop-shadow(0 0 16px #90EE90cc);
}
.stat-content {
    text-align: center;
}
.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 1px;
    transition: font-size 0.3s;
    animation: statGlow 2.5s infinite alternate;
}
@keyframes statGlow {
    0% { text-shadow: 0 0 8px #32CD3255, 0 0 2px #90EE9033; }
    100% { text-shadow: 0 0 24px #90EE90cc, 0 0 8px #32CD3299; }
}
.stat-label {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.stat-progress {
    width: 100%;
    height: 7px;
    background: #2c5530;
    border-radius: 6px;
    margin-top: 10px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, #90EE90 0%, #32CD32 100%);
    box-shadow: 0 0 8px #90EE9088;
    animation: progressBarAnim 2s cubic-bezier(.4,2,.6,1) 1;
}
@keyframes progressBarAnim {
    0% { width: 0; }
    100% { width: 100%; }
}
@media (max-width: 900px) {
    .stats-grid {
        flex-direction: column;
        gap: 24px;
    }
    .stat-card {
        min-width: 180px;
        max-width: 100%;
        padding: 28px 16px 24px 16px;
    }
    .stat-number {
        font-size: 2.1rem;
    }
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

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

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #32CD32, #90EE90);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 30px;
}

.story-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(44, 85, 48, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(44, 85, 48, 0.1);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #000;
}

.highlight-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.highlight-text p {
    color: #ffffff;
    font-size: 1rem;
}

.image-stack {
    position: relative;
    height: 400px;
}

.stack-image {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.stack-image.main {
    width: 300px;
    height: 200px;
    top: 0;
    left: 0;
    z-index: 2;
}

.stack-image.overlay {
    width: 250px;
    height: 150px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.image-stack:hover .stack-image.main {
    transform: translateY(-10px) rotate(-5deg);
}

.image-stack:hover .stack-image.overlay {
    transform: translateY(-5px) rotate(5deg);
}

/* Mission Vision Values */
.mv-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
}

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

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

.mv-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(44, 85, 48, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1e90ff, #00d4ff);
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.mission .card-icon {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
}

.vision .card-icon {
    background: linear-gradient(45deg, #FF5722, #FF9800);
}

.values .card-icon {
    background: linear-gradient(45deg, #9C27B0, #E91E63);
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5530;
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(44, 85, 48, 0.8);
}

.card-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05));
    border-radius: 50% 0 20px 0;
}

/* Projects Showcase */
.projects-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #000000;
    margin-top: 15px;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(44, 85, 48, 0.2);
    border-radius: 25px;
    color: rgba(44, 85, 48, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-tab:hover,
.filter-tab.active {
    background: linear-gradient(45deg, #32CD32, #90EE90);
    color: #ffffff;
    transform: translateY(-2px);
}

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

.project-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(44, 85, 48, 0.1);
    transition: all 0.3s ease;
}

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

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.overlay-content {
    color: #ffffff;
    font-size: 2rem;
}

.project-content {
    padding: 30px;
}

.project-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge.arazi {
    background: linear-gradient(45deg, #795548, #8D6E63);
    color: #ffffff;
}

.badge.otonom {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    color: #ffffff;
}

.badge.ab {
    background: linear-gradient(45deg, #2196F3, #03A9F4);
    color: #ffffff;
}

.badge.moduler {
    background: linear-gradient(45deg, #FF9800, #FFC107);
    color: #ffffff;
}

.badge.tubitak {
    background: linear-gradient(45deg, #9C27B0, #E91E63);
    color: #ffffff;
}

.project-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 15px;
}

.project-card p {
    color: rgba(44, 85, 48, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e90ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: #00d4ff;
    transform: translateX(5px);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
}

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

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(44, 85, 48, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c5530;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
        flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: 600;
    color: #32CD32;
}

.author-location {
    font-size: 0.9rem;
    color: rgba(44, 85, 48, 0.8);
}

/* Sustainable Solutions Section */
.sustainable-solutions-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

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

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

.solution-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(44, 85, 48, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #32CD32, #90EE90);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(50, 205, 50, 0.2);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #32CD32, #90EE90);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(50, 205, 50, 0.3);
}

.solution-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 15px;
}

.solution-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(44, 85, 48, 0.8);
    margin-bottom: 20px;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(50, 205, 50, 0.1);
    color: #32CD32;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(50, 205, 50, 0.2);
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-card {
        padding: 25px;
    }
    
    .solution-card h3 {
        font-size: 1.2rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

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

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

.contact-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
        flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
        align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #1e90ff, #00d4ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.contact-text a:hover {
    color: #1e90ff;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.social-btn.linkedin {
    background: linear-gradient(45deg, #0077B5, #00A0DC);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e90ff;
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.3);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.form-group textarea + .form-icon {
    top: 25px;
    transform: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #1e90ff, #00d4ff);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.4);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #F44336;
}

/* Footer */
.modern-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #1e90ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #1e90ff;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .floating-nav {
        top: 10px;
        padding: 10px 20px;
    }
    
    .nav-container {
        gap: 20px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-item span {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    text-align: center;
}
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .tech-sphere {
        width: 300px;
        height: 300px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

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

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
} 

/* Page Hero Section */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.page-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.page-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(44, 85, 48, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

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

/* Project Features */
.project-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(44, 85, 48, 0.8);
}

.feature i {
    color: #32CD32;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

/* Additional Badge Styles */
.badge.bulut {
    background: linear-gradient(45deg, #2196F3, #03A9F4);
    color: #ffffff;
}

.badge.veri {
    background: linear-gradient(45deg, #9C27B0, #E91E63);
    color: #ffffff;
}

.badge.otomasyon {
    background: linear-gradient(45deg, #FF5722, #FF9800);
    color: #ffffff;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

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

/* Responsive adjustments for projects page */
@media (max-width: 768px) {
    .page-hero .hero-title {
    font-size: 2.5rem;
}
    
    .page-hero .hero-subtitle {
    font-size: 1.1rem;
    }
    
    .project-features {
        gap: 8px;
    }
    
    .feature {
        font-size: 0.85rem;
    }
} 

/* Team Section */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
}

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

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

.team-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(44, 85, 48, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

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

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 3px solid rgba(30, 144, 255, 0.3);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 10px;
}

.team-role {
    font-size: 1.1rem;
    color: #32CD32;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(44, 85, 48, 0.8);
    margin-bottom: 20px;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.skill {
    background: rgba(50, 205, 50, 0.2);
    color: #32CD32;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(50, 205, 50, 0.3);
}

/* Technology Section */
.tech-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

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

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

.tech-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(44, 85, 48, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1e90ff, #00d4ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #ffffff;
}

.tech-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 15px;
}

.tech-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(44, 85, 48, 0.8);
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-card {
        padding: 30px;
    }
    
    .team-image {
    width: 100px;
    height: 100px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-card {
        padding: 25px;
    }
} 

/* Contact Page Specific Styles */
.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

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

.map-wrapper {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.faq-grid {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-question i {
    color: #1e90ff;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .form-title {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 25px 20px;
    font-size: 0.95rem;
    }
} 

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.blog-filters .filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-filters .filter-btn:hover,
.blog-filters .filter-btn.active {
    background: linear-gradient(45deg, #1e90ff, #00d4ff);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 144, 255, 0.3);
}

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

    .blog-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(30, 144, 255, 0.9);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    color: #ffffff;
}

.blog-date .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

.blog-content {
    padding: 25px;
}

.blog-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.category {
    background: rgba(30, 144, 255, 0.2);
    color: #1e90ff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(30, 144, 255, 0.3);
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #1e90ff 0%, #00d4ff 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    padding: 10px 26px 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(30, 144, 255, 0.15);
    position: relative;
    overflow: hidden;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    outline: none;
}

.read-more span {
    z-index: 2;
    position: relative;
    transition: color 0.3s;
}

.read-more i {
    z-index: 2;
    position: relative;
    font-size: 1.1rem;
    transition: transform 0.3s, color 0.3s;
}

.read-more::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00d4ff 0%, #1e90ff 100%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.read-more:hover {
    background: linear-gradient(90deg, #00d4ff 0%, #1e90ff 100%);
    box-shadow: 0 4px 24px rgba(30, 144, 255, 0.25);
    transform: translateY(-2px) scale(1.04);
}

.read-more:hover::before {
    opacity: 1;
}

.read-more:hover span {
    color: #fff;
}

.read-more:hover i {
    transform: translateX(6px) scale(1.15);
    color: #fff;
}

.read-more:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(30, 144, 255, 0.12);
}

@media (max-width: 600px) {
    .read-more {
        font-size: 0.95rem;
        padding: 8px 18px 8px 14px;
    }
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: linear-gradient(45deg, #1e90ff, #00d4ff);
    color: #ffffff;
    transform: translateY(-2px);
}

.pagination-btn.next {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.newsletter-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content .section-subtitle {
    color: #ffffff;
}

/* About page specific styles */
.team-section .section-subtitle,
.tech-section .section-subtitle {
    color: #000000;
}

/* Contact page specific styles */
.map-section .section-subtitle,
.faq-section .section-subtitle {
    color: #ffffff;
}

/* Homepage specific styles */
.projects-showcase .section-subtitle,
.sustainable-solutions-section .section-subtitle {
    color: #ffffff;
}

/* Project pages specific styles */
.system-architecture-section .section-subtitle,
.tech-stack-section .section-subtitle,
.gallery-section .section-subtitle,
.results-section .section-subtitle {
    color: #ffffff;
}

/* Split Hero Section */
.split-hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.split-container {
    display: flex;
    height: 100%;
    width: 100%;
}

.split-section {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    overflow: hidden;
    transform: translateZ(0);
}

.split-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.split-section:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.split-container:hover .split-section:not(:hover)::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.split-section:hover {
    flex: 1.8;
    transform: scale(1.01);
}

.split-container:hover .split-section:not(:hover) {
    flex: 0.7;
    transform: scale(0.99);
}

.split-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.split-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.9) contrast(1.1);
}

.split-section:hover .split-background img {
    transform: scale(1.03);
    filter: brightness(1.1) contrast(1.05);
}

.split-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 40px;
    max-width: 500px;
    opacity: 0.9;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(20px);
}

.split-section:hover .split-content {
    opacity: 1;
    transform: translateY(0) scale(1.05);
}

.split-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #32CD32;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(10px);
    filter: drop-shadow(0 4px 8px rgba(50, 205, 50, 0.3));
}

.split-section:hover .split-icon {
    transform: translateY(0) scale(1.1);
    color: #90EE90;
    filter: drop-shadow(0 8px 16px rgba(144, 238, 144, 0.5));
}

.split-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.split-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.split-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #32CD32, #90EE90);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.3);
    transform: translateY(10px);
    opacity: 0.8;
}

.split-section:hover .split-button {
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 12px 35px rgba(50, 205, 50, 0.4);
}

.split-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(50, 205, 50, 0.5);
    background: linear-gradient(45deg, #90EE90, #32CD32);
}

.split-button i {
    transition: transform 0.3s ease;
}

.split-button:hover i {
    transform: translateX(5px);
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: #ffffff;
    animation: scrollBounce 2s infinite;
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-arrow {
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
    letter-spacing: 1px;
}

.scroll-indicator:hover .scroll-arrow {
    opacity: 1;
    transform: translateY(5px);
}

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

/* Responsive Floating Navigation */
@media (max-width: 1024px) {
    .floating-nav {
        padding: 15px 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-item {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .nav-item i {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        padding: 12px 15px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-item {
        padding: 10px 12px;
        font-size: 0.8rem;
        min-width: auto;
    }
    
    .nav-item i {
        font-size: 1rem;
        margin-right: 5px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 8px;
    }
    
    .nav-item {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
    
    .nav-item span {
        display: none;
    }
    
    .nav-item i {
        margin-right: 0;
        font-size: 1.2rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
    }
}

/* Responsive design for split hero */
@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }
    
    .split-section {
        height: 50vh;
    }
    
    .split-section:hover {
        flex: none;
        height: 60vh;
    }
    
    .split-section:not(:hover) {
        flex: none;
        height: 40vh;
    }
    
    .split-title {
        font-size: 2rem;
    }
    
    .split-description {
        font-size: 1rem;
    }
    
    .split-icon {
        font-size: 3rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-arrow {
        font-size: 1.5rem;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
}

/* Responsive Stats Dashboard */
@media (max-width: 1024px) {
    .stats-dashboard {
        padding: 80px 30px;
    }
    
    .stats-grid {
        gap: 25px;
    }
    
    .stat-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .stats-dashboard {
        padding: 60px 20px;
    }
    
    .dashboard-container {
        max-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-dashboard {
        padding: 40px 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
}

/* Responsive Sustainable Solutions */
@media (max-width: 1024px) {
    .sustainable-solutions-section {
        padding: 80px 30px;
    }
    
    .solutions-grid {
        gap: 25px;
    }
    
    .solution-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .sustainable-solutions-section {
        padding: 60px 20px;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .solution-card {
        padding: 25px 20px;
    }
    
    .solution-title {
        font-size: 1.3rem;
    }
    
    .solution-description {
        font-size: 0.9rem;
    }
    
    .solution-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .sustainable-solutions-section {
        padding: 40px 15px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .solution-card {
        padding: 20px 15px;
    }
    
    .solution-title {
        font-size: 1.1rem;
    }
    
    .solution-description {
        font-size: 0.8rem;
    }
    
    .solution-icon {
        font-size: 2rem;
    }
}

/* General Responsive Improvements */
@media (max-width: 1200px) {
    .container, .hero-container, .dashboard-container, .overview-container {
        max-width: 95%;
        padding: 0 20px;
    }
}

@media (max-width: 900px) {
    .container, .hero-container, .dashboard-container, .overview-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .container, .hero-container, .dashboard-container, .overview-container {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .modern-footer {
        padding: 60px 30px 30px;
    }
    
    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 40px 20px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-section a {
        font-size: 0.9rem;
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .modern-footer {
        padding: 30px 15px 15px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section a {
        font-size: 0.8rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form .form-group {
    flex: 1;
    min-width: 250px;
}

.newsletter-form .submit-btn {
    padding: 15px 30px;
    white-space: nowrap;
}

/* Responsive adjustments for blog page */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-filters {
        gap: 10px;
    }
    
    .blog-filters .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
    
    .newsletter-content {
        padding: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .form-group {
        min-width: auto;
    }
} 

/* Project Overview Section */
.project-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text {
    color: #ffffff;
}

.overview-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.project-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #1e90ff, #00d4ff);
    border-radius: 12px;
    display: flex;
        align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    flex-shrink: 0;
}

.highlight-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.highlight-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.overview-visual {
    display: flex;
    justify-content: center;
}

.project-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

/* Technology Stack Section */
.tech-stack-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

.tech-stack-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.tech-item .tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1e90ff, #00d4ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #ffffff;
}

.tech-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.tech-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Results Section */
.results-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.result-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1e90ff, #00d4ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #ffffff;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 10px;
}

.result-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.result-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments for project detail pages */
@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .highlight-item {
        padding: 15px;
    }
    
    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .tech-stack-grid,
    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-item,
    .result-card {
        padding: 25px;
    }
    
    .result-number {
        font-size: 2rem;
    }
} 

/* CV Button Styles */
.cv-btn {
    background: linear-gradient(45deg, #1e90ff, #00d4ff);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.cv-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 144, 255, 0.3);
}

/* CV Modal Styles */
.cv-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.cv-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.cv-close {
    color: #ffffff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.cv-close:hover {
    color: #1e90ff;
}

.cv-content {
    padding: 40px;
    color: #ffffff;
}

.cv-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cv-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e90ff;
    margin: 0;
}

.cv-body {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cv-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cv-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e90ff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cv-section h3::before {
    content: '';
    width: 3px;
    height: 20px;
    background: linear-gradient(45deg, #1e90ff, #00d4ff);
    border-radius: 2px;
}

.cv-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cv-section li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

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

.cv-section li::before {
    content: '•';
    color: #1e90ff;
    font-weight: bold;
    margin-right: 10px;
}

/* Responsive adjustments for CV modal */
@media (max-width: 768px) {
    .cv-modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 85vh;
    }
    
    .cv-content {
        padding: 30px 20px;
    }
    
    .cv-header h2 {
        font-size: 1.5rem;
    }
    
    .cv-section {
        padding: 15px;
    }
    
    .cv-section h3 {
        font-size: 1.1rem;
    }
    
    .cv-section li {
        font-size: 0.9rem;
    }
} 

/* System Architecture Section */
.system-architecture-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

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

.architecture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.architecture-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.architecture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.architecture-item .architecture-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1e90ff, #00d4ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #ffffff;
}

.architecture-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.architecture-item p {
  font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

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

.gallery-item {
  position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.gallery-overlay p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .architecture-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .architecture-item,
    .gallery-item {
        padding: 20px;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .gallery-overlay {
        padding: 20px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.2rem;
    }
    
    .gallery-overlay p {
        font-size: 0.9rem;
    }
} 

@media (max-width: 600px) {
    html, body {
        font-size: 13px !important;
        background: #181c2e !important;
    }
    .floating-nav {
        top: 0;
        left: 0;
        transform: none;
        width: 100vw;
        border-radius: 0 0 16px 16px;
        padding: 4px 0 4px 0;
        min-width: unset;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        background: rgba(30, 40, 60, 0.98);
    }
    .nav-container {
        flex-direction: row;
        gap: 0;
  align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .logo-section {
        margin: 0 0 0 10px;
    }
    .logo-img {
        width: 38px;
        height: 38px;
        border-radius: 8px;
        margin-right: 8px;
    }
    .logo-text {
        font-size: 1.1rem;
    }
    .nav-menu {
        gap: 0;
        width: auto;
        justify-content: flex-end;
    }
    .nav-item {
        padding: 6px 6px;
        font-size: 0.95rem;
        border-radius: 8px;
        margin: 0 2px;
    }
    .nav-item span {
        display: none;
    }
    .hero-content, .story-content, .overview-content, .contact-content {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 0 6px !important;
        text-align: center !important;
    }
    .hero-title, .page-hero .hero-title {
        font-size: 1.1rem !important;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    .hero-subtitle, .page-hero .hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 10px;
    }
    .cta-button {
        font-size: 0.95rem;
        padding: 7px 10px;
        border-radius: 8px;
    }
    .tech-sphere {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    .sphere-core {
        width: 50px;
        height: 50px;
        top: 35px;
        left: 35px;
    }
    .sphere-ring {
        width: 80px !important;
        height: 80px !important;
        top: 20px !important;
        left: 20px !important;
    }
    .ring-2, .ring-3 {
        display: none;
    }
    .stats-grid, .mv-grid, .projects-grid, .testimonials-grid, .team-grid, .tech-grid, .results-grid, .gallery-grid, .architecture-grid, .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    .stat-card, .mv-card, .project-card, .testimonial-card, .team-card, .tech-card, .result-card, .gallery-item, .architecture-item, .faq-item {
        padding: 8px !important;
        border-radius: 8px !important;
    }
    .project-image, .blog-image {
        height: 90px !important;
    }
    .project-content, .blog-content {
        padding: 8px !important;
    }
    .section-title {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
    }
    .section-header {
        margin-bottom: 10px !important;
    }
    .footer-content, .footer-links {
        grid-template-columns: 1fr !important;
        gap: 5px !important;
    }
    .footer-logo img {
        width: 20px;
        height: 20px;
    }
    .footer-logo span {
        font-size: 0.9rem;
    }
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    .footer-section a {
        margin-bottom: 2px;
        font-size: 0.85rem;
    }
    .contact-form-container, .newsletter-content {
        padding: 8px !important;
    }
    .form-group input, .form-group textarea {
        padding: 7px 7px 7px 25px !important;
        font-size: 0.85rem;
    }
    .form-icon {
        left: 5px;
        font-size: 0.9rem;
    }
    .cv-modal-content {
        width: 100vw !important;
        margin: 0 !important;
        border-radius: 0 !important;
        max-height: 98vh !important;
    }
    .cv-content {
        padding: 5px !important;
    }
    .cv-header h2 {
        font-size: 0.95rem !important;
    }
    .cv-section {
        padding: 5px !important;
    }
    .cv-section h3 {
        font-size: 0.9rem !important;
    }
    .cv-section li {
        font-size: 0.8rem !important;
    }
    .gallery-item img {
        height: 70px !important;
    }
    .gallery-overlay {
        padding: 5px !important;
    }
    .gallery-overlay h3 {
        font-size: 0.9rem !important;
    }
    .gallery-overlay p {
        font-size: 0.75rem !important;
    }
    .faq-question, .faq-answer p {
        font-size: 0.85rem !important;
        padding: 5px !important;
    }
    .faq-section, .map-section, .stats-section, .projects-section, .blog-section, .newsletter-section, .results-section, .system-architecture-section, .tech-stack-section, .gallery-section, .story-section, .mv-section, .team-section, .contact-section {
        padding: 20px 0 !important;
    }
    .scroll-indicator {
        bottom: 10px;
        font-size: 0.8rem;
    }
    .image-stack {
        height: 120px;
    }
    .stack-image.main {
        width: 90px;
        height: 60px;
    }
    .stack-image.overlay {
        width: 60px;
        height: 40px;
    }
}

@media (max-width: 400px) {
    .hero-title, .page-hero .hero-title {
        font-size: 0.9rem !important;
    }
    .section-title {
        font-size: 0.8rem !important;
    }
    .cta-button {
        font-size: 0.7rem;
        padding: 4px 6px;
    }
    .footer-logo span {
        font-size: 0.7rem;
    }
} 

/* Blog Modal Styles */
.blog-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.blog-modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.blog-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.blog-modal-body {
    padding: 40px;
}

.blog-modal-header {
    margin-bottom: 30px;
}

.blog-modal-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-modal-date,
.blog-modal-author,
.blog-modal-category {
    background: rgba(30, 144, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #1e90ff;
    border: 1px solid rgba(30, 144, 255, 0.3);
}

.blog-modal-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.blog-modal-image {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.blog-modal-image:hover img {
    transform: scale(1.05);
}

.blog-modal-text {
    line-height: 1.8;
}

.blog-modal-text p {
    margin-bottom: 20px;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.blog-modal-text h3 {
    color: #1e90ff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    position: relative;
}

.blog-modal-text h3::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(45deg, #1e90ff, #00d4ff);
    border-radius: 2px;
}

.blog-modal-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-modal-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(30, 144, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(30, 144, 255, 0.2);
    transition: all 0.3s ease;
}

.blog-modal-stats .stat-item:hover {
    background: rgba(30, 144, 255, 0.2);
    transform: translateY(-2px);
}

.blog-modal-stats .stat-item i {
    font-size: 1.5rem;
    color: #1e90ff;
    width: 30px;
    text-align: center;
}

.blog-modal-stats .stat-item span {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
}

/* Responsive Blog Modal */
@media (max-width: 768px) {
    .blog-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .blog-modal-body {
        padding: 30px 20px;
    }
    
    .blog-modal-header h2 {
        font-size: 1.8rem;
    }
    
    .blog-modal-meta {
        gap: 10px;
    }
    
    .blog-modal-date,
    .blog-modal-author,
    .blog-modal-category {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .blog-modal-image img {
        height: 200px;
    }
    
    .blog-modal-text p {
        font-size: 1rem;
    }
    
    .blog-modal-text h3 {
        font-size: 1.2rem;
    }
    
    .blog-modal-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .blog-modal-content {
        width: 98%;
        margin: 2% auto;
    }
    
    .blog-modal-body {
        padding: 20px 15px;
    }
    
    .blog-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .blog-modal-image img {
        height: 150px;
    }
    
    .blog-modal-text p {
        font-size: 0.95rem;
    }
    
    .blog-modal-text h3 {
        font-size: 1.1rem;
    }
    
    .blog-modal-stats {
        padding: 15px;
    }
    
    .blog-modal-stats .stat-item {
        padding: 12px;
    }
    
    .blog-modal-stats .stat-item i {
        font-size: 1.2rem;
    }
    
    .blog-modal-stats .stat-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .blog-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .blog-modal-text p {
        font-size: 0.9rem;
    }
    
    .blog-modal-text h3 {
        font-size: 1rem;
    }
    
    .blog-modal-image img {
        height: 120px;
    }
}