/*----------header----------*/

.site-header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.header-container {
  max-width: 1640px;
  margin: 0 auto;
  height: 140px;
  padding: 0 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 140px;
  height: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  font-weight: 400;
  transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #2563ff;
}

.menu-toggle {
  display: none;
  width: 35px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 12px;
}

.menu-toggle span:nth-child(3) {
  top: 24px;
}

/* Aktif olduğunda X olsun */
.menu-toggle.active span:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  top: 12px;
  transform: rotate(-45deg);
}



/*-------------------footer-------------------*/

.footer {
  background: linear-gradient(135deg, #3f78b5, #124a8c);
  padding: 90px 6% 35px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr 1fr;
  gap: 22px;
}

.footer-card {
  min-height: 360px;
  padding: 36px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-logo-card {
  text-align: center;
  display: flex;
  justify-content: center;
}

.footer-logo-card img {
  width: 230px;
  height: 230px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-sizing: border-box;
}

.footer-logo-card p {
  font-size: 16px;
  line-height: 1.6;
  margin: 25px auto 0;
  max-width: 310px;
}

.footer-card h3 {
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 32px;
  font-weight: 800;
}

.footer-card h3::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: #f4a62a;
  margin-top: 18px;
  border-radius: 10px;
}

.footer-card a {
  display: block;
  color: #050505;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
  text-decoration: none;
}

.footer-card a:hover {
  color: #f4a62a;
}

.footer-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-card li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-card li a {
  margin: 0;
  padding: 13px 0;
}

.footer-card li a::before {
  content: "›";
  color: #f4a62a;
  margin-right: 12px;
  font-size: 24px;
}

.footer-card p {
  font-size: 16px;
  line-height: 1.6;
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 35px;
}

.socials a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f4a62a;
  color: #124a8c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 800;
  margin: 0;
}

.socials a:hover {
  background: #f4a62a;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 65px;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 15px;
  color: #fff;
}


/*----------home-body----------*/

.video-section {
  position: relative;
  width: 100%;
  height: 760px;
  overflow: hidden;
  padding: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ses butonu */
.sound-btn {
  position: absolute;
  right: 35px;
  bottom: 35px;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  z-index: 5;
}

.sound-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.about-section {
  width: 100%;
  max-height: 750px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 50px;
  margin-bottom: 120px;
}

.about-content {
  background: #fff;
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 35px;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #000;
}

.about-content p {
  max-width: 780px;
  font-size: 26px;
  line-height: 1.55;
  color: #000;
  margin-bottom: 35px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border: 1px solid #000;
  border-radius: 30px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

.about-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programs-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
}

.program-card {
  min-height: 365px;
  padding: 115px 45px 50px;
  box-sizing: border-box;
  color: #000 !important;
}

.program-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.program-title span {
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
}

.program-title h3 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.program-card p {
  font-size: 24px;
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
  color: #000 !important;
}

.blue {
  background: #3f78b5 !important;
}

.orange {
  background: #f0a033 !important;
}

.pink {
  background: #cf3a86 !important;
}

.green {
  background: #58ae4f !important;
}

.purple {
  background: #5b358b !important;
}

.turquoise {
  background: #58aeb4 !important;
}

.center-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.dots {
  width: 95px;
  height: 210px;
  position: relative;
}

.dots span {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
}

.dots span:nth-child(1) {
  top: 0;
  left: 25px;
}

.dots span:nth-child(2) {
  top: 40px;
  left: 52px;
}

.dots span:nth-child(3) {
  top: 82px;
  left: 25px;
}

.dots span:nth-child(4) {
  top: 123px;
  left: 0;
}

.dots span:nth-child(5) {
  top: 165px;
  left: 25px;
}

.dots span:nth-child(6) {
  top: 83px;
  left: 26px;
}

.why-section {
  width: 100%;
  background: #fff;
  padding: 120px 140px;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 120px;
  box-sizing: border-box;
}

.why-left {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.why-left h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #000;
}

.why-left p {
  font-size: 18px;
  line-height: 1.55;
  color: #000;
  margin: 0;
  max-width: 720px;
}

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  row-gap: 50px;
  padding-top: 5px;
}

.why-item {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 20px;

}

.why-item h3 {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0;
  color: #000;
}

.why-item p {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
  margin: 0;
  color: #000;
}

.instagram-section {
  background: #3f78b5;
  padding: 35px 0 55px;
  overflow: hidden;
}

.instagram-section h2 {
  text-align: center;
  color: #fff;
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 35px;
}

.insta-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.insta-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 70px;
}

.insta-track::-webkit-scrollbar {
  display: none;
}

.insta-card {
  flex: 0 0 31%;
  height: 600px;
  overflow: hidden;
  background: #ddd;
}

.insta-card img,
.insta-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  font-size: 36px;
  cursor: pointer;
}

.prev {
  left: 25px;
}

.next {
  right: 25px;
}

.testimonials-section {
  width: 100%;
  background: #fff;
  padding: 55px 100px 90px;
  box-sizing: border-box;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 62px;
  font-weight: 800;
  color: #000;
  margin: 0 0 110px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
  align-items: start;
}

.testimonial-card {
  text-align: center;
  color: #000;
}

.testimonial-card img {
  width: 230px;
  height: 230px;
  object-fit: contain;
  margin-bottom: 22px;
}

.testimonial-card h3 {
  font-size: 25px;
  font-weight: 800;
  margin: 0 0 48px;
}

.testimonial-card p {
  text-align: left;
  font-size: 19px;
  line-height: 1.45;
  margin: 0 auto;
  max-width: 330px;
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.blog-section {
  width: 100%;
  background: #3f78b5;
  padding: 80px 105px 80px;
  box-sizing: border-box;
}

.blog-section h2 {
  text-align: center;
  color: #fff;
  font-size: 50px;
  font-weight: 800;
  margin: 0 0 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.blog-card {
  background: #fff;
  min-height: 155px;
  padding: 15px 14px 14px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.blog-card h3 {
  font-size: 19px;
  line-height: 1.25;
  font-weight: 400;
  color: #000;
  margin: 0 0 20px;
}

.blog-meta {
  font-size: 13px;
  color: #000;
  margin-top: auto;
  margin-bottom: 22px;
}

.blog-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: #000;
}

.blog-stats .heart {
  color: red;
  font-size: 22px;
  line-height: 1;
}

.contact-section {
  width: 100%;
  background: #fff;
  padding: 80px 155px 80px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 150px;
  color: #000;
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.contact-left h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0;
}

.contact-left p {
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 20px;
  max-width: 650px;
}

.contact-info {
  margin-top: 20px;
}

.contact-info h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px;
}

.contact-row {
  display: block;
  color: #000;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.contact-right {
  padding-top: 30px;
}

.contact-right h2 {
  font-size: 34px;
  line-height: 1.35;
  font-weight: 800;
  max-width: 700px;
  margin: 0 0 28px;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #777;
  padding: 0 12px 10px;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  background: transparent;
}

.form-group textarea {
  height: 90px;
  resize: none;
}

.contact-form button {
  width: 50%;
  height: 44px;
  border: 1px solid #000;
  background: transparent;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
}

.map-section {
  width: 100%;
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 650px;
  display: block;
}

/*-------------------about-body-------------------*/

.hero-section-about {
  width: 100%;
  min-height: 575px;
  background-image: url("../images/about-background.jpg") !important;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 40px 25px;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.28;
  font-weight: 600;
  margin: 30px;
  color: #fff;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
}

.about-intro {
  width: 100%;
  background: #fff;
  padding: 70px 120px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.about-intro-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-intro-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

.about-intro-content {
  max-width: 720px;
}

.about-intro-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}

.about-intro-content p {
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 16px;
  color: #000;
}

.why-kuzey {
  width: 100%;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}

.why-kuzey-content {
  padding: 90px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.why-kuzey-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 28px;
  color: #000;
}

.why-text {
  max-width: 650px;
}

.why-text h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 10px 0 4px;
  color: #000;
}

.why-text p {
  font-size: 18px;
  line-height: 1.45;
  margin: 0 0 6px;
  color: #000;
}

.why-btn {
  margin-top: 28px;
  padding: 12px 24px;
  border: 1px solid #000;
  border-radius: 30px;
  color: #000;
  text-decoration: none;
  font-size: 15px;
}

.why-btn:hover {
  background: #000;
  color: #fff;
}

.why-kuzey-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.why-kuzey-image img {
  width: 850px;
  max-width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 12px;
}

.education-banner {
  width: 100%;
  min-height: 700px;
  position: relative;
  background-image: url("../images/about-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-align: center;
  color: white;
}

.banner-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #fff;
}

.banner-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #fff;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
  width: 180px;
  height: 55px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  transition: .3s;
}

.banner-btn:hover {
  background: white;
  color: #3f78b5;
}

.working-section {
  width: 100%;
  min-height: 800px;
  background: #fff;
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.working-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 40px 20px;
  color: #000;
}

.working-content h2 {
  font-size: 52px;
  font-weight: 800;
  margin: 0 0 25px;
}

.working-content p {
  font-size: 17px;
  line-height: 1.55;
  margin: 8px 0;
}

.working-content ul {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}

.working-content li {
  font-size: 17px;
  line-height: 1.6;
}

.working-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  width: 58px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 30px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

.working-btn:hover {
  background: #000;
  color: #fff;
}

.shape {
  position: absolute;
  z-index: 1;
}

.shape-blue {
  width: 68%;
  height: 155px;
  background: #3f78b5;
  top: 0;
  left: 5%;
}

.shape-purple {
  width: 19%;
  height: 282px;
  background: #5b358b;
  top: 0;
  right: 7.5%;
}

.shape-orange {
  width: 15%;
  height: 305px;
  background: #f0a033;
  left: 0;
  bottom: 0;
}

.shape-turquoise {
  width: 31%;
  height: 105px;
  background: #58aeb4;
  left: 22%;
  bottom: 0;
}

.shape-pink {
  width: 16%;
  height: 252px;
  background: #cf3a86;
  right: 11%;
  bottom: 0;
}

.shape-green {
  width: 6%;
  height: 128px;
  background: #58ae4f;
  right: 0;
  bottom: 31%;
}

.vision-mission {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 120px 0;
}

.vision-box,
.mission-box {
  min-height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 50px;
  box-sizing: border-box;
}

.vision-box {
  background: #3f78b5;
}

.mission-box {
  background: #ffffff;
}

.vm-content {
  max-width: 620px;
  text-align: center;
}

.vm-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.vision-box h2 {
  color: white;
}

.mission-box h2 {
  color: #000;
}

.vm-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.vision-box p {
  color: white;
}

.mission-box p {
  color: #000;
}

.why-parents {
  width: 100%;
  background: #e99a38;
  display: grid;
  grid-template-columns: 45% 55%;
  padding: 120px 100px;
  box-sizing: border-box;
  gap: 80px;
}

.why-left h2 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  color: #000;
}

.intro {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #000;
}

.why-right-about p {
  font-size: 18px;
  color: #000;

}

.meet-section {
  width: 100%;
  background: #fff;
  padding: 120px 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 360px 240px;
}

.meet-big-image {
  grid-row: 1 / 3;
  overflow: hidden;
}

.meet-big-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

/* Sağ üst yazı */
.meet-content {
  padding: 40px 50px;
  box-sizing: border-box;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.meet-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 15px;
  color: #000;
}

.meet-content p {
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 780px;
  color: #000;
}

.meet-btn {
  width: fit-content;
  padding: 12px 22px;
  border: 1px solid #000;
  border-radius: 30px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
}

/*-------------------services-about-------------------*/

.hero-section-services {
  width: 100%;
  min-height: 575px;
  background-image: url("../images/services-bg.png") !important;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sport-training {
  width: 100%;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  padding: 80px 50px 40px;
}

.sport-content {
  padding: 55px 90px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sport-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 28px;
  color: #000;
}

.sport-content p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: #000;
}

.sport-image {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.sport-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.family-info {
  width: 100%;
  background: #e79a3a;
  display: grid;
  grid-template-columns: 480px 1fr;
  align-items: center;
  padding: 80px 70px;
  box-sizing: border-box;
  gap: 90px;
}

/* Sol Görsel */

.family-image {
  display: flex;
  justify-content: center;
}

.family-image img {
  width: 490px;
  height: 550px;
  object-fit: cover;
  border-radius: 260px 260px 0 0;
}

/* Sağ İçerik */

.family-content {
  max-width: 900px;
}

.family-content h2 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  color: #000;
  margin-bottom: 40px;
}

.family-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  max-width: 950px;
}

/*-------------------programs-about-------------------*/

.hero-section-programs {
  width: 100%;
  min-height: 575px;
  background-image: url("../images/programs-bg.jpeg") !important;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.programs-section {
  width: 100%;
  padding: 80px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.program-card {
  background: #e79a3a;
  padding: 50px;
  text-align: center;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: .3s;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.program-icon {
  font-size: 42px;
  margin-bottom: 20px;
}

.program-card h3 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 25px;
}

.program-card p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.program-card a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.big-message-section {
  width: 100%;
  background: #fff;
  padding: 70px 20px 85px;
  box-sizing: border-box;
  text-align: center;
}

.big-message-section h2 {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 48px;
  line-height: 1.38;
  font-weight: 600;
  color: #000;
}

/*-------------------blog-about-------------------*/

.hero-section-blog {
  width: 100%;
  min-height: 575px;
  background-image: url("../images/blog-bg.png") !important;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/*-------------------contact-about-------------------*/

.hero-section-contact {
  width: 100%;
  min-height: 575px;
  background-image: url("../images/contac-bg.jpg") !important;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 1200px) {

  /*-------------------footer-------------------*/

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .family-info {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .family-content {
    max-width: 100%;
  }
}

@media (max-width: 1100px) {

  /*-------------------home-body-------------------*/

  .contact-section {
    grid-template-columns: 1fr;
    padding: 70px 50px;
    gap: 50px;
  }

  .contact-right {
    padding-top: 0;
  }

  .programs-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .why-section {
    width: 100%;
    background: #fff;
    padding: 120px 140px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 120px;
    box-sizing: border-box;
  }

  .home-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /*-------------------about-body-------------------*/

  .hero-section {
    min-height: 520px;
  }

  .hero-content h1 {
    font-size: 58px;
    margin-bottom: 70px;
  }

  .about-intro {
    grid-template-columns: 1fr;
    padding: 60px 45px;
    gap: 45px;
    text-align: center;
  }

  .about-intro-image img {
    max-width: 520px;
  }

  .about-intro-content {
    max-width: 100%;
  }

  .about-intro-content h2 {
    font-size: 40px;
  }

  .about-intro-content p {
    font-size: 18px;
  }

  /*-------------------blog-body-------------------*/

  .post-item .post-item-wrap {
    background-color: #fff;
    position: relative;
    height: 525px !important;
  }

}

@media (max-width: 1000px) {

  /*-------------------about-body-------------------*/

  .why-kuzey {
    grid-template-columns: 1fr;
  }

  .why-kuzey-content {
    padding: 70px 35px;
  }

  .why-kuzey-content h2 {
    font-size: 40px;
  }

  .why-kuzey-image img {
    width: 100%;
    height: 450px;
  }

  .working-section {
    min-height: 680px;
  }

  .working-content h2 {
    font-size: 40px;
  }

  .shape-blue {
    width: 80%;
    height: 110px;
    left: 0;
  }

  .shape-purple {
    width: 24%;
    height: 180px;
    right: 0;
  }

  .shape-orange {
    width: 22%;
    height: 210px;
  }

  .shape-turquoise {
    width: 42%;
    height: 80px;
    left: 22%;
  }

  .shape-pink {
    width: 22%;
    height: 185px;
    right: 8%;
  }

  .shape-green {
    width: 10%;
    height: 95px;
  }

  .meet-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 35px 25px;
    gap: 35px;
  }

  .meet-big-image {
    grid-row: auto;
    height: 520px;
  }

  .meet-content {
    padding: 10px 0;
    text-align: center;
    align-items: center;
  }

  /*-------------------programs-body-------------------*/

  .big-message-section h2 {
    font-size: 42px;
  }

}

@media (max-width: 992px) {

  /*----------header----------*/

  .header-container {
    height: 105px;
    padding: 0 25px;
  }

  .logo img {
    width: 110px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 105px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 15px 25px;
    display: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
  }

  /*-------------------home-body-------------------*/

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding: 60px 25px;
  }

  .about-logo {
    width: 130px;
    height: 130px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 18px;
  }

  .about-image {
    height: 420px;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: auto;
    padding: 60px 30px;
  }

  .program-title span {
    font-size: 48px;
  }

  .program-title h3 {
    font-size: 24px;
  }

  .program-card p {
    font-size: 19px;
  }

  .center-icon {
    min-height: 260px;
  }

  .why-section {
    grid-template-columns: 1fr;
    padding: 70px 25px;
    gap: 60px;
  }

  .why-left h2 {
    font-size: 34px;
  }

  .why-left p {
    font-size: 20px;
  }

  .why-right {
    grid-template-columns: 1fr;
    row-gap: 45px;
  }

  .why-item h3 {
    font-size: 26px;
  }

  .why-item p {
    font-size: 17px;
  }

  .instagram-section {
    padding: 30px 0 40px;
  }

  .instagram-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .insta-track {
    padding: 0 20px;
    gap: 12px;
  }

  .insta-card {
    flex: 0 0 85%;
    min-width: 85%;
    height: 500px;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .prev {
    left: 8px;
  }

  .next {
    right: 8px;
  }

  .map-section iframe {
    height: 500px;
  }

  /*-------------------about-body-------------------*/

  .education-banner {
    min-height: 550px;
  }

  .banner-content h2 {
    font-size: 52px;
  }

  .banner-content p {
    font-size: 18px;
  }

  .vision-mission {
    grid-template-columns: 1fr;
  }

  .vision-box,
  .mission-box {
    min-height: 350px;
    padding: 60px 30px;
  }

  .vm-content h2 {
    font-size: 42px;
  }

  .vm-content p {
    font-size: 18px;
  }

  .why-parents {
    grid-template-columns: 1fr;
    padding: 80px 40px;
    gap: 50px;
  }

  .why-left h2 {
    font-size: 48px;
    text-align: center;
  }

  .intro {
    text-align: center;
    font-size: 22px;
  }

}

@media (max-width: 900px) {

  /*-------------------home-body-------------------*/

  .video-section {
    height: 520px;
  }

  /*-------------------services-body-------------------*/

  .sport-training {
    grid-template-columns: 1fr;
  }

  .sport-content {
    padding: 55px 28px;
  }

  .sport-content h2 {
    font-size: 34px;
  }

  .sport-content p {
    font-size: 16px;
  }

  .sport-image {
    height: 320px;
  }
}

@media (max-width: 768px) {

  /*-------------------home-body-------------------*/

  .map-section iframe {
    height: 400px;
  }

  .about-section {
    width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column-reverse;
    padding: 50px;
    margin-bottom: 0;
  }

  .home-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /*-------------------about-body-------------------*/

  .education-banner {
    min-height: 500px;
  }

  .banner-content {
    padding: 25px;
  }

  .banner-content h2 {
    font-size: 38px;
  }

  .banner-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  .banner-btn {
    width: 150px;
    height: 50px;
  }

  /*-------------------services-body-------------------*/

  .family-info {
    padding: 60px 25px;
    gap: 40px;
  }

  .family-image img {
    width: 320px;
    height: 380px;
    border-radius: 180px 180px 0 0;
  }

  .family-content h2 {
    font-size: 42px;
  }

  .family-content p {
    font-size: 18px;
    line-height: 1.7;
  }

  .sport-training-left {
    display: flex;
    flex-direction: column;
  }

  .sport-training-right {
    display: flex;
    flex-direction: column-reverse;
  }

  .sport-training {
    padding: 50px 50px 0;
  }

}

@media (max-width: 700px) {

  /*-------------------footer-------------------*/

  .footer {
    padding: 60px 22px 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-card {
    min-height: auto;
    padding: 28px;
  }

  .footer-logo-card img {
    width: 190px;
    height: 190px;
  }

  .footer-card h3 {
    font-size: 26px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .socials {
    justify-content: center;
  }

  /*-------------------about-body-------------------*/

  .hero-section {
    min-height: 460px;
    background-position: center;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 45px;
  }

  .hero-content p {
    font-size: 15px;
  }
}

@media (max-width: 650px) {

  /*-------------------home-body-------------------*/

  .testimonials-section {
    padding: 45px 25px 65px;
  }

  .testimonials-section h2 {
    font-size: 34px;
    margin-bottom: 55px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .testimonial-card img {
    width: 180px;
    height: 180px;
  }

  .testimonial-card h3 {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .testimonial-card p {
    text-align: center;
    font-size: 17px;
  }

  .contact-section {
    padding: 55px 25px;
  }

  .contact-left h2 {
    font-size: 36px;
  }

  .contact-left p {
    font-size: 20px;
  }

  .contact-row {
    font-size: 19px;
  }

  .contact-right h2 {
    font-size: 27px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form button {
    width: 100%;
  }

}

@media (max-width: 600px) {

  /*-------------------home-body-------------------*/

  .video-section {
    height: 360px;
  }

  .sound-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
    right: 18px;
    bottom: 18px;
  }

  /*-------------------about-body-------------------*/

  .why-kuzey-content {
    padding: 55px 22px;
  }

  .why-kuzey-content h2 {
    font-size: 34px;
  }

  .why-text h3 {
    font-size: 16px;
  }

  .why-text p {
    font-size: 15px;
  }

  .why-kuzey-image img {
    height: 300px;
  }

  .working-section {
    min-height: 620px;
  }

  .working-content {
    padding: 40px 25px;
  }

  .working-content h2 {
    font-size: 32px;
  }

  .working-content p,
  .working-content li {
    font-size: 16px;
  }

  .shape-blue {
    height: 70px;
    width: 75%;
  }

  .shape-purple {
    width: 28%;
    height: 110px;
  }

  .shape-orange {
    width: 26%;
    height: 150px;
  }

  .shape-turquoise {
    width: 45%;
    height: 65px;
  }

  .shape-pink {
    width: 30%;
    height: 145px;
    right: 0;
  }

  .shape-green {
    width: 14%;
    height: 75px;
  }

  .meet-big-image {
    height: 420px;
  }

  .meet-content h2 {
    font-size: 32px;
  }

  .meet-content p {
    font-size: 16px;
  }

  /*-------------------programs-body-------------------*/

  .big-message-section {
    padding: 55px 22px 65px;
  }

  .big-message-section h2 {
    font-size: 30px;
    line-height: 1.35;
  }

}

@media (max-width: 576px) {

  /*-------------------home-body-------------------*/

  .map-section iframe {
    height: 320px;
  }

  /*-------------------about-body-------------------*/

  .vm-content h2 {
    font-size: 34px;
  }

  .vm-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  .vm-btn {
    width: 130px;
    height: 45px;
  }

  .why-left h2 {
    font-size: 36px;
  }

  .reason-item {
    flex-direction: column;
    gap: 10px;
  }

  .reason-item span {
    font-size: 32px;
  }

  .reason-item h3 {
    font-size: 20px;
  }

  .reason-item p {
    font-size: 16px;
  }

}

@media (max-width: 550px) {

  /*-------------------about-body-------------------*/

  .about-intro {
    padding: 45px 22px;
  }

  .about-intro-image img {
    max-width: 330px;
  }

  .about-intro-content h2 {
    font-size: 34px;
  }

  .about-intro-content p {
    font-size: 17px;
  }
}

@media (max-width: 500px) {
  .sport-content h2 {
    font-size: 29px;
  }

  .sport-image {
    height: 260px;
  }
}

@media (max-width: 430px) {

  .about-section {
    width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column-reverse;
    padding: 50px;
    margin-bottom: 0;
  }

  .home-blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .blog-section h2 {
    font-size: 36px;
  }

  .post-item .post-item-wrap {
    background-color: #fff;
    position: relative;
    height: 445px !important;
  }

  /*-------------------about-body-------------------*/

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 14px;
  }

  /*-------------------programs-body-------------------*/

  .programs-section {
    width: 100%;
    padding: 80px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
  }
}

@media (max-width: 375px) {
  .programs-section {
    padding: 40px;
  }
}