/*
Theme Name: Global Insurvesta
Theme URI: https://globalinsurvesta.com
Author: Global insurvesta
Description: Static HTML'den WordPress'e çevrilmiş tema
Version: 1.0
*/
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0D0433;
  color: white;
  padding: 20px 0;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

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

.logo img {
  height: 120px;
  margin-right: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: white;
  font-weight: bold;
}

.btn {
  background: #03095b;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  transition: 0.3s;
}

.btn:hover {
  background: #03095b;
}

.hero {
  background: url('images/backg.jpg') no-repeat center center/cover;
  height: 100vh;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.4); 
  padding: 40px;
  border-radius: 10px;
}

.about {
  background: #f8f8f8;
  padding: 60px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 20px;
  color: #002953;
}

.solutions-section {
  background: white;
  padding: 60px 20px;
}

.solutions-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.solutions-text {
  flex: 1;
}

.solutions-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  background: #f1f1f1;
  padding: 60px 20px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.section {
  text-align: center;
  padding: 40px 20px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: center;
}
.partner-item {
  border: 1px solid #ddd;           
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
  transition: transform 0.3s;
  width: 100%;
  max-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.partner-item:hover {
  transform: scale(1.05);
}
.partner-item img {
  max-width: 100%;
  height: auto;
  display: block;
}
.contact-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background: #001f3f;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

.contact-info {
  flex: 1;
}

.contact-info p {
  margin: 10px 0;
}

.contact-info i {
  margin-right: 10px;
  color: #001f3f;
}

footer {
  background: #0D0433;
  color: white;
  text-align: center;
  padding: 20px;
}

.footer-social a {
  color: white;
  margin: 0 10px;
  font-size: 20px;
}

.footer-social a:hover {
  color: #ddd;
}
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
}
@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: 1fr; 
  }
@media (max-width: 768px) {
  .header-inner, .about-container, .solutions-container, .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .solutions-image img,
  .about-image img {
    max-width: 100%;
  }
}
