:root {
    --primary-color: #4F46E5;
    --secondary-color: #818CF8;
    --accent-color: #3730A3;
    --success-color: #10B981;
    --background-color: #F9FAFB;
    --card-background: #FFFFFF;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex
;

font-weight: 700;
color: var(--primary-color) !important;
font-size: 1.5rem;
justify-content: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary) !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}



.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
}

.hero-title {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.form-card {
    background: var(--card-background);
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.form-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0;
    margin-top: 3rem;
}

.card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}


.response-badge {
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 3px 6px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.response-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.card-footer {
    background-color: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 2rem;
}


.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}



.empty-state {
    text-align: center;
    padding: 6rem 0;
}


.empty-state p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.pagination {
    margin-top: 3rem;
}

.page-link {
    border: none;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    border-radius: 0.5rem;
    margin: 0 0.25rem;
}


@font-face {
font-family: 'MazzardH';
src: url('/assets/MazzardH-Regular.otf') format('opentype');
font-weight: normal;
font-style: normal;

}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "MazzardH", sans-serif;
}

body {
height: 100%;
background: linear-gradient(to bottom right, #0d2b47f0, #cf0019db),
          url(https://www.yalova.bel.tr/upload/slaytlar/2024_11_25-codiGmkOmgqlCzli2Osm.jpg) no-repeat center center / cover;
color: white;
height: 100vh;
}

.mainsite {
max-width: 1440px;
margin: 0 auto;
}

.logos {
padding: 2rem 0;
display: flex;
align-items: center;
gap: 20px;
justify-content: space-between;

}

.logo {
height: 55px;
}

.logo-large {
height: 100px;
}

.social-icons {
display: flex;
align-items: center;
gap: 5px;
margin-left: 15px;
}

.social-icons img {
height: 20px;
}

.social-text {
margin: 0;
}

.qr {
display: flex;
gap: 10px;
flex-direction: row;
align-items: center;
}

.qr-text {
text-align: right;
font-size: 13px;
margin: 0;
}

.qr-img img {
height: 80px;
}

.form-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
gap: 20px;
padding: 40px 0;
}

@media (max-width: 768px) {
    .form-grid{
        margin: 0 16px;
    }
    .mobilgizle{
        display: none!important;
    }
.qr-img img{
height: 60px;
}
.logos{
justify-content: center;
display: flex
;
align-items: center;
}
.contactbox {
position: absolute;
top: 110%;
padding-bottom: 20px;
display: flex
;
flex-direction: column;
width: 100%;
}
body{
height: auto;

}
.form-grid {
grid-template-columns: repeat(2, 1fr);
}
.qr{
position: absolute;
top: 100%;
padding: 2rem;
}
}

.form-card {
background: white;
color: #0d2b47;
border-radius: 10px;
padding: 25px 15px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.form-card img {
height: 40px;
margin-bottom: 10px;
}

.form-card p {
font-weight: 600;
text-align: center;
margin-bottom: 10px;
}

.form-card button {
background-color: #33adff17;
color: #33adff;
border: solid 1px #33adff;
border-radius: 50%;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}

       /* Ensure smooth transitions for AOS animations */
       .form-card, .logos, .qr, .social-icons a, .logo-large {
        transition: all 0.3s ease-in-out;
    }
    .form-card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
    .social-icons a:hover {
        transform: scale(1.2);
    }
    .qr-img img:hover {
        transform: scale(1.1);
    }
  
    .backbuton{
        background: #FFF;
        padding: 10px;
        border-radius: 5px;
        display: flex
    ;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        color: #362846;
    }