html, body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100%;
    background: #f8f9fa;
    transition: background-color 0.3s ease;
    overflow-x: hidden;
}
html, body { margin:0; padding:0; overflow-x:hidden; }
* { box-sizing: border-box; }

*{
    scroll-behavior: smooth;
    box-sizing: border-box;
}

.body{
padding-top: 70px;
}
.container, .hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: saturate(180%) blur(14px);
    z-index: 9999;
    padding: 12px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    border-bottom: 1px solid rgba(16, 102, 52, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /* padding veya yükseklik değişmesin */
}

.nav-container {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 0 40px;
}

.nav-logo {
    justify-self: start;
}




.nav-logo-img {
    height: 110px; /* Daha büyük logo */
    width: auto;
    display: block;
    padding: 10px 10px; /* Sola yaslamak için sağdaki boşluğu azalttık */
    margin-right: 20px; /* Gerekirse sola yaslamak için bu değerle oyna */
}


.nav-logo:hover {
    transform: none;
    color: #106634;
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    justify-self: right;
}

.nav-menu a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #106634;
    transition: width 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
    
}

.nav-menu a:hover {
    color: #106634;
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    margin: 4px 0;
    background: linear-gradient(90deg, #0b745f, #126c38);
    box-shadow: 0 0 4px rgba(39, 174, 96, 0.45);
    border-radius: 3px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.hamburger span::before,
.hamburger span::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #0e7b65;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(39, 174, 96, 0.6);
}

.hamburger span::before { left: -6px; }
.hamburger span::after  { right: -6px; }

.hamburger:hover span {
    box-shadow: 0 0 8px rgba(39, 174, 96, 0.6), 0 0 12px rgba(39, 174, 96, 0.35);
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #2ecc71;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Enhanced Button Smoothness */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #27ae60, #229954);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

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

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2ecc71;
}

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

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

.image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #2ecc71;
}

.image-placeholder p {
    font-size: 1.1rem;
    opacity: 0.8;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
}

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

/* Enhanced Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05), rgba(46, 204, 113, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: #fff;
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 3px solid #2ecc71;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2ecc71;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 1rem;
}

.pricing-card p {
    color: #666;
    margin-bottom: 2rem;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card i {
    color: #2ecc71;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.03) 0%, rgba(102, 126, 234, 0.03) 100%);
}

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

/* Enhanced Process Steps */
.step {
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.4);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step-icon i {
    font-size: 2rem;
    color: #2ecc71;
    transition: transform 0.3s ease;
}

.step:hover .step-icon i {
    transform: scale(1.1);
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.04) 0%, rgba(46, 204, 113, 0.04) 100%);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.about-text {
    width: 100%;
    max-width: none;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.feature i {
    color: #2ecc71;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-list {
    margin: 2rem 0 2rem 1.5rem;
    padding-left: 0.5rem;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
    list-style: disc inside;
}

.about-list li {
    margin-bottom: 0.7rem;
}

.about-impact {
    background: #f8f9fa;
    border-left: 4px solid #2ecc71;
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(46,204,113,0.05);
}

.about-impact h4 {
    color: #2ecc71;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.about-impact p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

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

/* Enhanced Contact Items */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.05), transparent);
    transition: left 0.5s ease;
}

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

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    color: #2ecc71;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #27ae60;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #333 0%, #2c3e50 100%);
    color: white;
    padding: 3rem 0 1rem;
    transition: background-color 0.3s ease;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2ecc71;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #2ecc71;
    transition: width 0.3s ease;
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-section a:hover {
    color: #2ecc71;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        position: relative;
        min-height: 64px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Logo on the left */
    .nav-logo {
        order: 1;
        margin: 0;
        display: flex;
        align-items: center;
        transform: translate(-6px, 4px);
    }

    .nav-logo:hover {
        transform: none;
        color: inherit;
    }

    /* Icons container on the right */
    .nav-icons {
        order: 3;
        display: flex;
        align-items: center;
        gap: 16px;
    }

    /* Pricing icon */
    .nav-pricing-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        color: #106634;
        text-decoration: none;
        transition: color 0.2s ease, transform 0.2s ease;
    }

    .nav-pricing-icon:hover {
        color: #2ecc71;
        transform: scale(1.1);
    }

    .nav-pricing-icon i {
        font-size: 1.4rem;
    }

    /* Hamburger on the right */
    .hamburger {
        order: 2;
        margin: 10px 0 0 10px;
    }
    .navbar {
        padding: 10px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .nav-menu {
        display: block;
        position: fixed;
        top: 96px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.99);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
        z-index: 10000;
    }
    
    .nav-menu.active {
        max-height: 70vh;
        opacity: 1;
        padding: 8px 0;
        box-shadow: 0 10px 28px rgba(0,0,0,0.15);
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu a {
        width: 100%;
        padding: 12px 20px;
    }
    
    .hamburger {
        display: flex;
    }

    /* Show nav-icons on mobile */
    .nav-icons {
        display: flex;
    }
    
    .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);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat {
        min-width: 120px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-list {
        margin-left: 1rem;
        padding-left: 0.5rem;
    }
    
    .about-impact {
        margin: 1rem 0;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid,
    .pricing-table,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .service-card,
    .pricing-card,
    .contact-item {
        padding: 1.5rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 1.3rem;
    }
    
    .nav-logo i {
        font-size: 1.5rem;
    }
    
    .about-features {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .feature {
        justify-content: center;
    }
}

/* Tablet specific styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-table {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        grid-column: span 2;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large screen optimizations */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .service-card:hover,
    .pricing-card:hover {
        transform: none;
    }
    
    .nav-menu a:hover {
        color: #2ecc71;
    }
    
    .contact-item a:hover,
    .footer-section a:hover {
        color: #2ecc71 !important;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

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

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

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

.service-card,
.pricing-card,
.step,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

.about-content {
    animation: fadeInRight 0.6s ease forwards;
}

/* Stagger animations */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }
.contact-item:nth-child(4) { animation-delay: 0.4s; }

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
} 

.pricing-table-responsive {
    overflow-x: auto;
    margin-bottom: 2rem;
}

/* Enhanced Table Smoothness */
.pricing-detailed-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    font-size: 1rem;
    min-width: 700px;
    transition: all 0.3s ease;
}

.pricing-detailed-table:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.pricing-detailed-table th, .pricing-detailed-table td {
    padding: 1rem 0.7rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.pricing-detailed-table tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-detailed-table tr:hover {
    background: #f8f9fa;
    transform: scale(1.01);
}

.pricing-detailed-table .highlight-price td {
    background: #fffbe6;
    color: #b8860b;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-detailed-table .highlight-price:hover td {
    background: #fff8dc;
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .pricing-detailed-table {
        min-width: 600px;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .pricing-detailed-table {
        min-width: 400px;
        font-size: 0.9rem;
    }
    .pricing-detailed-table th, .pricing-detailed-table td {
        padding: 0.7rem 0.4rem;
    }
} 

.contact-item a:hover, .footer-section a:hover {
    color: #2ecc71 !important;
    text-decoration: underline !important;
    transition: all 0.3s ease;
} 

/* Touch device specific styles */
.touch-device .btn:hover {
    transform: none;
}

.touch-device .service-card:hover,
.touch-device .pricing-card:hover {
    transform: none;
}

/* Mobile table improvements */
@media (max-width: 768px) {
    .pricing-table-responsive {
        margin: 0 -15px;
        padding: 0 15px;
    }
    
    .pricing-detailed-table {
        min-width: 500px;
        font-size: 0.85rem;
    }
    
    .pricing-detailed-table th,
    .pricing-detailed-table td {
        padding: 0.6rem 0.3rem;
    }
    
    .pricing-detailed-table th {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pricing-detailed-table {
        min-width: 400px;
        font-size: 0.8rem;
    }
    
    .pricing-detailed-table th,
    .pricing-detailed-table td {
        padding: 0.5rem 0.2rem;
    }
    
    .pricing-detailed-table th {
        font-size: 0.85rem;
    }
}

/* Mobile navigation improvements */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        top: 70px;
    }
    
    .nav-menu a {
        padding: 0.8rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
}

/* Mobile button improvements */
@media (max-width: 480px) {
    .btn {
        min-height: 44px; /* Apple's recommended touch target size */
    }
    
    .contact-item a,
    .footer-section a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
} 

@media (max-width: 768px) {
    .nav-menu {
        left: 0;
        right: 0;
        width: 100%;
        box-sizing: border-box;
        padding-left: 16px;
        padding-right: 16px;
    }
    .nav-menu a {
        padding-left: 20px;
        padding-right: 20px;
    }
} 

@media (max-width: 768px) {
    .nav-menu {
        top: 0;
        padding-top: 70px;
    }
} 

.about-text ol, .about-text ul {
    text-align: left !important;
    max-width: none !important;
    margin: 0 !important;
    width: 100% !important;
    padding-left: 2em !important;
    display: block !important;
}

.about-text h2 {
    text-align: center;
}

.about-text h3 {
    text-align: left;
}

/* About Services Grid */
.about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(46, 204, 113, 0.1);
}

.about-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.3);
}

.about-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.about-service-card:hover .about-service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
}

.about-service-icon i {
    font-size: 1.8rem;
    color: white;
}

.about-service-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.about-service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Certificates */
.about-certificates {
    margin: 3rem 0;
    text-align: center;
}

.about-certificates h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

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

.certificate-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.certificate-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.certificate-item i {
    font-size: 1.5rem;
    color: #2ecc71;
    min-width: 30px;
}

.certificate-item span {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

/* New Pricing Card Styles */
.pricing-notes {
    margin-bottom: 3rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    margin-bottom: 2rem;
}

.info-card i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-card div {
    line-height: 1.6;
}

.pricing-category {
    margin-bottom: 4rem;
}

.pricing-category h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-category h3 i {
    color: #667eea;
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

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

/* Premium Cards */
.pricing-card.premium {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.pricing-card.premium::before {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.pricing-card.premium .card-header i {
    color: #ffd700;
}

/* High Value Cards */
.pricing-card.high-value {
    border-color: #e74c3c;
    background: linear-gradient(135deg, #fdf2f2 0%, #ffffff 100%);
}

.pricing-card.high-value::before {
    background: linear-gradient(90deg, #e74c3c, #ff6b6b);
}

.pricing-card.high-value .card-header i {
    color: #e74c3c;
}

/* Standard Cards */
.pricing-card.standard {
    border-color: #3498db;
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}

.pricing-card.standard::before {
    background: linear-gradient(90deg, #3498db, #5dade2);
}

.pricing-card.standard .card-header i {
    color: #3498db;
}

/* Basic Cards */
.pricing-card.basic {
    border-color: #2ecc71;
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
}

.pricing-card.basic::before {
    background: linear-gradient(90deg, #2ecc71, #58d68d);
}

.pricing-card.basic .card-header i {
    color: #2ecc71;
}

/* Economy Cards */
.pricing-card.economy {
    border-color: #95a5a6;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.pricing-card.economy::before {
    background: linear-gradient(90deg, #95a5a6, #bdc3c7);
}

.pricing-card.economy .card-header i {
    color: #95a5a6;
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.card-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.category-tag {
    display: inline-block;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    display: block;
}

.unit {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.card-description {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-description p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.card-action {
    text-align: center;
}

.btn-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Responsive adjustments for pricing cards */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .card-header h4 {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .info-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .info-card i {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 1rem;
    }
    
    .card-header i {
        font-size: 2rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .pricing-category h3 {
        font-size: 1.5rem;
    }
}

/* Activities Page Styles */
.activities-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.activities-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.activities-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.activities-hero .hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.activities {
    padding: 80px 0;
    background: #f8f9fa;
}

.activity-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.activity-card.left {
    flex-direction: row;
}

.activity-card.right {
    flex-direction: row-reverse;
}

.activity-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

.activity-content {
    flex: 1;
    padding: 0 1rem;
}

.activity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.activity-card:hover .activity-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.activity-icon i {
    font-size: 2rem;
    color: white;
}

.activity-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.activity-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.activity-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 0.95rem;
}

.activity-features li i {
    color: #2ecc71;
    font-size: 1rem;
    min-width: 20px;
}



/* Responsive adjustments for activities page */
@media (max-width: 1024px) {
    .activity-card {
        flex-direction: column !important;
        gap: 2rem;
        padding: 2rem;
    }
    
    .activity-image img {
        height: 300px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .activities-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .activities-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .activity-card {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .activity-content h3 {
        font-size: 1.5rem;
    }
    
    .activity-image img {
        height: 250px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .activities-hero .hero-title {
        font-size: 2rem;
    }
    
    .activity-card {
        padding: 1rem;
    }
    
    .activity-content {
        padding: 0;
    }
    
    .activity-icon {
        width: 60px;
        height: 60px;
    }
    
    .activity-icon i {
        font-size: 1.5rem;
    }
    
    .activity-content h3 {
        font-size: 1.3rem;
    }
    
    .activity-image img {
        height: 200px;
    }
}

/* Mobilde hakkımızda kartlarının taşmasını ve sayfanın yatayda büyümesini engellemek için, 768px altı için .about-service-card'da aspect-ratio'yu kaldırıp, yükseklik ve yazı boyutunu optimize edeceğim. */
@media (max-width: 768px) {
  .about-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 8px;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
  }
  .about-service-card {
    aspect-ratio: 1 / 1;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    word-break: break-word;
    min-height: 120px;
    overflow-y: auto;
    /* Kart içeriği taşarsa dikey kaydırma */
    max-height: 80vw;
  }
  .about-service-card p {
    font-size: 0.92rem;
  }
  .nav-menu.active {
  position: fixed;       /* ekrana sabitle */
  top: 0;
  left: 0;
  width: 100vw !important; /* cihazın tüm genişliği */
  height: 100vh !important; /* cihazın tüm yüksekliği */
  max-height: 100vh !important;
  overflow-y: auto;      /* içerik taşarsa kaydır */
  background: #fff;      /* arka plan beyaz (senin tasarıma göre) */
  opacity: 1 !important;
  padding: 8px 0 !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.15) !important;
  z-index: 10000 !important;
}

}

/* Mobilde hamburger menü tam ekran ve kaydırılabilir olsun */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 70vw;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    box-shadow: -2px 0 16px rgba(0,0,0,0.08);
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow-y: auto;
    max-height: 100vh;
  }
.nav-menu.active {
  position: fixed;       /* ekrana sabitle */
  top: 0;
  left: 0;
  width: 100vw !important; /* cihazın tüm genişliği */
  height: 100vh !important; /* cihazın tüm yüksekliği */
  max-height: 100vh !important;
  overflow-y: auto;      /* içerik taşarsa kaydır */
  background: #fff;      /* arka plan beyaz (senin tasarıma göre) */
  opacity: 1 !important;
  padding: 8px 0 !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.15) !important;
  z-index: 10000 !important;
}

  .navbar {
    position: relative;
    z-index: 1000;
  }
}

/* Force slide-down behavior under navbar (overrides off-canvas), LAST WINS */
@media (max-width: 992px) {
  .nav-menu {
    top: 65px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    padding: 0 !important;
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    z-index: 10000 !important;
  }

/* Açık menü */
.nav-menu.active{
  position: fixed !important;
  width: 100% !important;     
  max-width: none !important;
  height: auto  !important;
  max-height: none !important;
  overflow-y: auto !important;
  background: #fff;
  border-radius: 0 !important;
  box-shadow: none !important;
  z-index: 10000 !important;
}


}

/* Hamburger menüye tıklanınca .nav-menu'ya 'active' class'ı eklenmeli (JS ile) */
/* Mobilde Belgeler ve Yetkiler kartları taşmasın, kare ve iki sütun halinde olsun */
@media (max-width: 768px) {
    .about-certificates
    .certificates-grid
    .certificate-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 8px;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
  }
 .about-certificates
    .certificates-grid
    .certificate-item{
    aspect-ratio: 1 / 1;
    width: 100%;
    min-width: 0;
    min-height: 100px;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    word-break: break-word;
  }
}

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

#home, #services, #process, #about, #contact {
    scroll-margin-top: 90px;
}

/*-------------------------------- */
@media (max-width: 768px) {
    .about-services-grid {
      grid-template-columns: 1fr;
    }
  
    .navbar {
      padding: 10px 15px;
    }
  
    .nav-logo-img{
      height: 64px;
      display: block;
      left: 5px !important;
      transform: translate(-6px, 4px);
      margin-right: 0;
      margin-left: 0;
      padding-left: 0;
      padding-right: 0;
      padding-top: 0;
      padding-bottom: 0;
      border-radius: 0;
      border-left: 0;
      border-right: 0;

    }
  
    .about-service-card {
      margin-bottom: 20px;
    }
  }
  