/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

:root {
    --primary-color: #60a5fa;
    --secondary-color: #3b82f6;
    --text-color: #4b5563;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    font-size: 0.95rem;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    position: relative;
}

.logo a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: var(--secondary-color);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.4s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.btn-teklif {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 0.9rem 2.2rem;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.2);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    min-width: 160px;
}

.btn-teklif:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.3);
}

.btn-teklif::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    transition: all 0.4s ease;
}

.btn-teklif:hover::before {
    transform: translateX(100%);
}

/* Hero Section */
.hero {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    padding: 10rem 2rem 12rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    margin-top: 40px; /* Navbar yüksekliğini hesaba katmak için */
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
}

.hero::before {
    display: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6rem;
    padding-top: 1rem;
}

.hero-image {
    width: 45%;
    max-width: 500px;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(75, 123, 236, 0.2));
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.15;
    }
}

.social-icons {
    display: none;
}

.hero-text {
    text-align: left;
    max-width: 600px;
    margin-left: 2rem;
    margin-top: 0.5rem;
}

.hero-text h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    transition: all 1.5s ease;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: all 1.5s ease;
    line-height: 1.6;
    color: #000000;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

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

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

.shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes backgroundPulse {

    0%,
    100% {
        background-position: 0% 0%, 100% 100%, 0 0, 0 0;
    }

    50% {
        background-position: 100% 100%, 0% 0%, 60px 60px, 60px 60px;
    }
}

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

    100% {
        background-position: 60px 60px;
    }
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.3);
    color: var(--secondary-color);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(96, 165, 250, 0.1) 0%, rgba(96, 165, 250, 0) 100%);
    transition: all 0.4s ease;
}

.cta-button:hover::before {
    transform: translateX(100%);
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background-color: var(--light-bg);
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.services-page-hero {
    padding: 120px 0 60px; /* Üst padding'i artırıyoruz */
    background: var(--light-bg);
    text-align: center;
}

.services-page-hero h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1; /* Navbar'ın altında kalmaması için z-index ekliyoruz */
}

.services-page-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive düzenleme */
@media (max-width: 768px) {
    .services-page-hero {
        padding: 100px 0 40px;
    }
    
    .services-page-hero h1 {
        font-size: 2rem;
    }
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 1rem;
    margin-top: 2rem;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(96, 165, 250, 0.3);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 1rem;
    flex: 1;
}

.service-card {
    background: var(--white);
    padding: 1.2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

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

.service-card h3 {
    font-size: 1.2rem;
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.service-card ul li {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.service-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.detaylar-btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 0.7rem 1.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 1.2rem;
    min-width: 140px;
    text-align: center;
}

.detaylar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.3);
    color: var(--secondary-color);
}

.detaylar-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(96, 165, 250, 0.1) 0%, rgba(96, 165, 250, 0) 100%);
    transition: all 0.4s ease;
}

.detaylar-btn:hover::before {
    transform: translateX(100%);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

/* Why Us Section */
.why-us {
    padding: 6rem 2rem;
    background: var(--light-bg);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.why-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 5rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 1rem;
    margin-top: 2rem;
}

.why-us h2::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(96, 165, 250, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    flex: 1;
}

.feature-card {
    background: var(--white);
    padding: 1.5rem 1.2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

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

.feature-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.2rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.4s ease;
}

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

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

/* Footer */
footer {
    background: #34495e;
    color: var(--white);
    padding: 0;
    position: relative;
    margin-top: 15rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
}

.footer-wave {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    line-height: 0;
    filter: drop-shadow(0 -3px 8px rgba(0, 0, 0, 0.15));
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    position: relative;
    z-index: 1;
    border-radius: 20px 20px 0 0;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f5f6fa;
    margin-bottom: 0.6rem;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f5f6fa;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.footer-logo:hover::after {
    transform: scaleX(1);
}

.footer-desc {
    color: #dcdde1;
    margin-bottom: 1.2rem;
    line-height: 1.4;
    max-width: 300px;
    font-size: 0.85rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #dcdde1;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.footer-contact p i {
    color: #f5f6fa;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-contact p:hover {
    color: #f5f6fa;
    transform: translateX(3px);
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.4rem;
    color: #f5f6fa;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #f5f6fa;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: #dcdde1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 0.4rem 0;
    font-size: 0.85rem;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -1rem;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    color: #f5f6fa;
    opacity: 0;
}

.footer-links a:hover {
    color: #f5f6fa;
    transform: translateX(3px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -1.2rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #dcdde1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.social-link i {
    font-size: 1.1rem;
    color: #f5f6fa;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #f5f6fa;
    transform: translateX(3px);
}

.social-link:hover i {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #dcdde1;
    background: rgba(0, 0, 0, 0.15);
    font-size: 0.8rem;
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
    }

    /* Hamburger ve mobile-menu responsive görünürlük */
    .hamburger {
        display: block;
    }

    .main-navbar .nav-links {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: block;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-desc {
        margin: 0 auto 1.2rem;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-links a {
        padding-left: 0;
    }

    .footer-links a::before {
        display: none;
    }

    .social-links {
        align-items: center;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 8rem 2rem 4rem;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .hero-image {
        width: 80%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

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

    .container {
        padding: 1rem;
    }
}

.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.scroll-arrow i {
    animation: arrowDown 2s infinite;
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.scroll-arrow .daha-fazla-btn {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    letter-spacing: 0.5px;
    padding: 0.3rem;
}

.scroll-arrow .daha-fazla-btn:hover {
    transform: translateY(-3px);
    color: var(--secondary-color);
}

@keyframes arrowDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@keyframes moveImages {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-100px, 100px);
    }

    100% {
        transform: translate(-150px, 0);
    }
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    width: 240px;
    position: relative;
    margin-top: 0.5rem;
    animation: moveImages 1.5s ease-in-out forwards;
    animation-delay: 0.5s;
}

.image-grid img {
    width: 100%;
    height: 110px;
    object-fit: contain;
    border-radius: 12px;
    background: white;
    padding: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    z-index: 1;
    opacity: 1;
}

.image-grid img.moving {
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
    opacity: 0.3;
}

/* Programming language icons styling */
.image-grid img[alt="JavaScript"],
.image-grid img[alt="C#"],
.image-grid img[alt="Python"],
.image-grid img[alt="PHP"] {
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.image-grid img[alt="JavaScript"]:hover {
    border-color: #f7df1e;
    background: linear-gradient(135deg, #fff3cd 0%, #f7df1e 100%);
    transform: translateY(-5px) scale(1.05);
}

.image-grid img[alt="C#"]:hover {
    border-color: #239120;
    background: linear-gradient(135deg, #e8f5e8 0%, #239120 100%);
    transform: translateY(-5px) scale(1.05);
}

.image-grid img[alt="Python"]:hover {
    border-color: #3776ab;
    background: linear-gradient(135deg, #e3f2fd 0%, #3776ab 100%);
    transform: translateY(-5px) scale(1.05);
}

.image-grid img[alt="PHP"]:hover {
    border-color: #777bb4;
    background: linear-gradient(135deg, #f3f4f6 0%, #777bb4 100%);
    transform: translateY(-5px) scale(1.05);
}

.image-grid img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Geçiş animasyonu için özel stil */
@keyframes smoothTransition {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    25% {
        opacity: 0.3;
    }

    75% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-grid img.moving {
    animation: smoothTransition 1.2s ease-in-out;
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .image-grid {
        width: 100%;
        max-width: 240px;
        margin: 2rem auto;
    }

    .hero-text {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 220px;
        animation: none; /* Disable sliding animation on mobile */
    }

    .image-grid img {
        height: 100px;
    }

    /* Disable all image animations on mobile */
    .image-grid img.moving {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Projects Page Styles */
.projects-page-hero {
    background: var(--gradient);
    padding: 8rem 2rem 4rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.projects-page-hero .hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.projects-page-hero .hero-text {
    flex: 1;
    text-align: left;
}

.projects-page-hero .hero-image {
    flex: 1;
    max-width: 500px;
}

.projects-page-hero .hero-image img {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.projects-page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.projects-page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

/* Project Cards Update */
.project-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: var(--light-bg);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.project-btn i {
    font-size: 1rem;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .projects-page-hero .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .projects-page-hero .hero-text {
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .stat-item {
        align-items: center;
    }

    .projects-page-hero .hero-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .projects-page-hero {
        padding: 6rem 1rem 3rem;
    }

    .projects-page-hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .project-links {
        flex-direction: column;
    }

    .project-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Projects Section Styles */
.projects-section {
    padding: 6rem 0 4rem;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    margin-top: 50px;
    padding: 0 2rem;
}

.section-header h1 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h1::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-color);
    font-size: 1rem;
    opacity: 0.8;
}

/* Section Sub Header Styles */
.section-sub-header {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 3rem;
    padding: 0 2rem;
}

.section-sub-header p {
    color: var(--text-color);
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive styles */
@media (max-width: 768px) {
    .section-sub-header {
        margin: 3rem auto 2rem;
    }

    .section-sub-header h2 {
        font-size: 1.6rem;
    }

    .section-sub-header p {
        font-size: 0.9rem;
    }
}


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

.project-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
}

.project-card:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.project-info {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.project-info h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.title-dots {
    color: var(--primary-color);
    font-size: 1.4rem;
    line-height: 0;
    position: relative;
    top: -2px;
    opacity: 0.5;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.project-card:hover .title-dots {
    opacity: 1;
    letter-spacing: 4px;
    color: var(--secondary-color);
}

.project-card:hover h3 {
    color: var(--primary-color);
}

.project-info p {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-tech span {
    background: var(--light-bg);
    color: var(--text-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-tech span:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.project-preview {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.6;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    text-align: center;
}

.project-card:hover .project-preview {
    opacity: 1;
    color: var(--primary-color);
}

/* Glowing effect on hover */
.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
            rgba(96, 165, 250, 0.1),
            transparent 40%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

@media (max-width: 768px) {
    .project-card {
        transform: none !important;
    }

    .project-info {
        padding: 1.2rem;
    }

    .project-preview {
        font-size: 0.8rem;
    }
}


/* Contact Page Styles */
.contact-page-hero {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.95) 0%, rgba(59, 130, 246, 0.95) 100%);
    padding: 8rem 2rem 4rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png');
    opacity: 0.1;
    animation: patternMove 20s linear infinite;
}

.contact-page-hero h1 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-page-hero p {
    font-size: 0.98rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.contact-section {
    background: #f6f8fb;
    padding: 4rem 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.contact-info,
.contact-form {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(96, 165, 250, 0.06);
    padding: 2rem 1.5rem;
}

.contact-info h2,
.contact-form h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    padding-bottom: 0.2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 0.7rem 0;
    border-radius: 8px;
    background: none;
    transition: background 0.2s;
}

.info-item i {
    font-size: 1.15rem;
    color: #60a5fa;
    min-width: 32px;
    text-align: center;
}

.info-text h3 {
    font-size: 0.93rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.2rem;
}

.info-text p {
    color: #4b5563;
    font-size: 0.92rem;
    opacity: 1;
}

/* Sosyal Medya İkonları */
.contact-info .social-links {
    margin-top: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-info .social-link {
    font-size: 1.3rem;
    color: #222;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-info .social-link i {
    font-size: 1.5rem;
    color: #60a5fa;
    transition: color 0.2s;
}

.contact-info .social-link:hover {
    color: #3b82f6;
}

.contact-info .social-link:hover i {
    color: #3b82f6;
}

.contact-info .social-title {
    margin-top: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.5rem;
}

/* Modern ve hizalı iletişim formu */
.contact-form {
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(96, 165, 250, 0.06);
    padding: 2rem 1.5rem;
}

.contact-form h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    padding-bottom: 0.2rem;
}

.contact-form .form-group {
    margin-bottom: 1.1rem;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 0.97rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #222;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    font-size: 0.97rem;
    padding: 0.7rem 1rem;
    border-radius: 7px;
    border: 1.5px solid #e5e7eb;
    background: #f8fafc;
    margin-bottom: 0;
    box-sizing: border-box;
    transition: border 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #60a5fa;
    background: #fff;
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.08);
    outline: none;
}

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

.btn-submit {
    font-size: 0.97rem;
    padding: 0.6rem 1.3rem;
    border-radius: 7px;
    font-weight: 700;
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.10);
    transition: background 0.2s, transform 0.2s;
}

.btn-submit:hover {
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
    transform: translateY(-2px) scale(1.03);
}

/* Responsive düzeltmeler */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.1rem 0.5rem;
    }

    .contact-form h2 {
        font-size: 1rem;
    }
}

/* Contact Cards Animation */
.contact-cards {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.contact-card {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-card.whatsapp {
    background: #25d366;
}

.contact-card.phone {
    background: #007bff;
}

.contact-card i {
    margin-right: 10px;
    font-size: 1.2rem;
}

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

    .contact-page-hero h1 {
        font-size: 1.3rem;
    }

    .contact-page-hero p {
        font-size: 0.98rem;
    }
}

.contact-map {
    background: #fff;
    padding: 0.7rem 0.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(96, 165, 250, 0.06);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.05);
}

/* Sadece iletişim sayfası için font küçültme */
.contact-page-hero h1 {
    font-size: 2.1rem;
}

.contact-page-hero p {
    font-size: 0.98rem;
}

.contact-info h2,
.contact-form h2,
.contact-map h2 {
    font-size: 1.15rem;
}

.info-text h3,
.contact-form label {
    font-size: 0.93rem;
}

.info-text p,
.contact-form input,
.contact-form textarea,
.contact-map {
    font-size: 0.92rem;
}

.btn-submit {
    font-size: 0.97rem;
    padding: 0.6rem 1.3rem;
}

@media (max-width: 768px) {
    .contact-page-hero h1 {
        font-size: 1.3rem;
    }

    .contact-info h2,
    .contact-form h2,
    .contact-map h2 {
        font-size: 1rem;
    }
}

.teklif-form {
    max-width: 900px !important;
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 2rem !important;
    font-size: 1.08rem;
    box-shadow: 0 6px 32px rgba(59, 130, 246, 0.10);
}

@media (max-width: 768px) {
    .teklif-form {
        max-width: 100% !important;
        padding: 1.2rem 0.5rem !important;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 220px;
        margin: 2rem auto;  /* auto margin ile yatayda ortalama */
        justify-content: center;  /* grid içeriğini ortala */
        align-items: center;  /* dikeyde ortala */
    }

    .image-grid img {
        height: 100px;
        margin: 0 auto;  /* resimleri grid içinde ortala */
    }
}
/* Optional: Add a class for JS-driven hover effect if needed */
.service-card.js-hover {
    /* Define specific styles here if different from standard hover */
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .hero-content {
        padding: 0 1rem;
    }

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

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

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding: 6rem 1rem 4rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        margin: 0 auto;
    }

    .image-grid {
        margin: 2rem auto;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-cards {
        right: 15px;
        bottom: 15px;
    }

    .contact-card {
        padding: 8px 12px;
        min-width: 110px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 5rem 1rem 3rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .service-card {
        padding: 1.2rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .contact-cards {
        right: 10px;
        bottom: 10px;
    }

    .contact-card {
        padding: 6px 10px;
        min-width: 100px;
    }

    .contact-card i {
        font-size: 14px;
        width: 24px;
        height: 24px;
    }

    .contact-card span {
        font-size: 0.75rem;
    }
}

/* Hamburger Menu Styles */
.hamburger {
    display: none; /* Varsayılan olarak gizli */
    cursor: pointer;
    padding: 10px;
    position: fixed;
    top: 20px;
    right: 32px;
    z-index: 1100;
    background: transparent;
    border: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Responsive görünürlük */
@media (max-width: 992px) {
    .hamburger {
        display: block; /* 992px altında göster */
    }
    
    .nav-links {
        display: none;
    }

    /* Hamburger active durumunda çizgilerin animasyonu */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Enhanced Project Page Styles */
.project-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem auto 3rem;
    padding: 0 2rem;
}

.category-btn {
    background: var(--white);
    border: 2px solid #e5e7eb;
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.category-btn:hover::before,
.category-btn.active::before {
    left: 0;
}

.category-btn:hover,
.category-btn.active {
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

/* Enhanced Project Cards */
.project-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px; /* Set minimum height for consistency */
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    flex-shrink: 0; /* Prevent image from shrinking */
}

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

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

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-status.completed {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.project-status.ongoing {
    background: rgba(251, 191, 36, 0.1);
    color: #d97706;
    border: 1px solid rgba(251, 191, 36, 0.2);
    animation: pulse 2s infinite;
}

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

.project-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute space evenly */
}

.project-info h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
    flex-shrink: 0; /* Prevent title from shrinking */
}

.project-info p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1; /* Allow description to grow and take available space */
    min-height: 3.6rem; /* Minimum height for 2-3 lines of text */
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0; /* Prevent tech tags from shrinking */
}

.project-tech span {
    background: #f1f5f9;
    color: #475569;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-tech span:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
}

.project-actions {
    margin-top: auto; /* Push buttons to bottom */
    flex-shrink: 0; /* Prevent buttons from shrinking */
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.project-actions .btn-primary,
.project-actions .btn-secondary {
    flex: 1;
    min-width: 120px;
}

.install-btn {
    background: #059669 !important;
    border-color: #059669 !important;
}

.install-btn:hover {
    background: #047857 !important;
    border-color: #047857 !important;
    transform: translateY(-2px);
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.3);
}

.btn-secondary {
    background: #f8fafc;
    color: var(--text-color);
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Section Sub Headers Enhanced */
.section-sub-header h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-sub-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Call to Action */
.projects-cta {
    text-align: center;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 4rem auto 0;
    max-width: 600px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.projects-cta h3 {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.projects-cta p {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-categories {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .project-image {
        height: 180px;
    }
    
    .section-sub-header h2 {
        font-size: 1.5rem;
    }
    
    .projects-cta {
        margin: 3rem 1rem 0;
        padding: 2rem 1.5rem;
    }
    
    .projects-cta h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .project-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 200px;
        text-align: center;
    }
}

/* Enhanced Services Page Styles */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

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

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

.services-intro p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
}

.service-card.featured {
    position: relative;
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.service-badge {
    position: absolute;
    top: -1px;
    right: 1.5rem;
    background: var(--gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.service-card ul li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.service-tech span {
    background: #f1f5f9;
    color: #475569;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-tech span:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.service-action {
    margin-top: auto;
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
    text-align: center;
}

.service-action .btn-primary {
    width: 100%;
    margin-bottom: 0.5rem;
}

.price-range {
    font-size: 0.85rem;
    color: #059669;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.why-choose-us h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

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

.benefit-item p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Services CTA Section */
.services-cta {
    background: var(--gradient);
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
}

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

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-intro h2 {
        font-size: 1.6rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .why-choose-us {
        padding: 3rem 1.5rem;
        margin: 3rem 0;
    }
}

