* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Sans-sherif, ;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    max-height: 65px; /* Logonuzun boyutuna göre ayarlayın */
}

.slogan {
    font-size: 20px;
    color: #FF9933; /* Hindistan bayrağı safran rengi */
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav a:hover {
    color: #138808; /* Hindistan bayrağı yeşil rengi */
}

/* Hero Section */
.hero {
    background: #f4f4f4;
    padding: 100px 0;
    text-align: center;
    border-bottom: 5px solid linear-gradient(to right, #FF9933, #FFFFFF, #138808); /* Hindistan bayrağı şeridi */
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #666;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: #fff;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #FF9933; /* Hindistan bayrağı safran çerçeve */
}

.service-card h3 {
    margin-bottom: 10px;
    color: #000080; /* Hindistan bayrağı lacivert */
}

.service-card .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #138808; /* Hindistan bayrağı yeşil */
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.service-card .btn:hover {
    background: #0f6b06;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.partner-logo {
    max-height: 40px; /* Partner logoları için boyut */
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background: #f4f4f4;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 30 görsel için 5x6 ızgara */
    gap: 10px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #FFFFFF; /* Hindistan bayrağı beyaz çerçeve */
}

/* About Section */
.about {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #f4f4f4;
}

.contact-info {
    text-align: center;
}

.contact-info a {
    color: #000080; /* Hindistan bayrağı lacivert */
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    border-top: 5px solid linear-gradient(to right, #FF9933, #FFFFFF, #138808); /* Hindistan bayrağı şeridi */
}

footer .social-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

footer .social-links a:hover {
    color: #FF9933;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobilde 2 sütun */
    }

    header .container {
        flex-direction: column;
        gap: 10px;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        flex-direction: column;
        text-align: center;
    }

    .partner-logos {
        flex-direction: column;
        align-items: center;
    }

    .partner-logo {
        max-height: 30px;
    }
}
 