@import url(fontawesome.css);
@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900");

body {
  font-family: "Montserrat", sans-serif;
}

/* Basic */

a {
  color: #3cf;
  text-decoration: none;
}

a:hover {
  color: #fc3;
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

p {
  font-size: 13px;
  line-height: 22px;
}

.section-heading {
  text-align: center;
  margin-bottom: 70px;
}

.section-heading h2:before {
  width: 1px;
  height: 100px;
  background-color: rgba(250, 250, 250, 0.1);
  position: absolute;
  top: -102px;
  content: "";
  left: 50%;
  transform: translate(-50%);
}

.section-heading h2 {
  margin-top: 100px;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid rgba(250, 250, 250, 0.1);
}

/* Buttons */

.action-button {
  background-color: #f5a425;
  color: #fff;
}

.action-button:hover {
  color: #18233a;
}

.main-button a {
  background-color: #f5a425;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  padding: 12px 20px;
  display: inline-block;
  outline: none;
}

a.menu-link {
  display: none;
}

@media screen and (max-width: 950px) {
  a.menu-link {
    float: right;
    display: block;
    font-size: 36px;
    color: #fff;
    padding-right: 30px;
    padding-top: 15px;
  }
  nav[role="navigation"] {
    clear: both;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .js nav[role="navigation"] {
    overflow: hidden;
    max-height: 0;
  }
  nav[role="navigation"].active {
    max-height: 20em;
    height: 20em;
    overflow-y: scroll;
  }
  nav[role="navigation"] ul {
    top: 0;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(250, 250, 250, 0.25);
    background-color: rgba(22, 34, 57, 0.99);
  }
  nav[role="navigation"] li a {
    display: block;
    padding: 15px 0px;
    border-bottom: 1px solid rgba(250, 250, 250, 0.25);
    text-align: center;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.5;
  }
  nav[role="navigation"] li:hover a,
  nav[role="navigation"] li.active a {
    color: #f5a425;
  }

  @media screen and (min-width: 951px) {
    .js nav[role="navigation"] {
      max-height: none;
    }

    nav[role="navigation"] li {
      display: inline-block;
      margin: 0 0.25em;
    }
    nav[role="navigation"] li a {
      border: 0;
    }
  }
}

/* Header */

@media screen and (max-width: 1050px) {
  .main-header .logo {
    padding-left: 30px !important;
  }

  .main-menu {
    padding-right: 30px !important;
  }

  .main-menu li {
    margin-left: 5px !important;
  }
}

.main-header {
  background-color: rgba(22, 34, 57, 0.95);
  height: 80px;
  position: fixed;
  z-index: 12;
  width: 100%;
  top: 0;
}

.main-header .logo {
  float: left;
  line-height: 80px;
  padding-left: 60px;
}

.main-header .logo a {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
}
.main-header .logo a em {
  font-style: normal;
  color: #f5a425;
}

.main-menu {
  float: right;
  padding-right: 60px;
}

.main-menu li {
  display: inline-block;
  line-height: 79px;
  margin-left: 15px;
  position: relative;
}

.main-menu li:first-child {
  margin-left: 0px;
}

.main-menu li a {
  padding: 10px 15px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: #fff;
  border: 2px solid transparent;
  transition: all 0.5s;
}

.main-menu li.has-submenu a:after {
  content: "\f107";
  font-family: "FontAwesome";
  margin-left: 5px;
}

.main-menu li.has-submenu ul li a:after {
  display: none;
}

.main-menu li .sub-menu {
  position: absolute;
  width: 160px;
  background-color: #18233a;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.main-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.main-menu li .sub-menu li {
  display: block;
  line-height: 20px;
  margin-left: 0px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #121b2f;
}

.main-menu li .sub-menu li:first-child {
  padding-top: 15px;
}

.main-menu li .sub-menu li:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.main-menu li .sub-menu li a {
  font-size: 12px;
  font-weight: 500;
  padding: 0px 15px;
  letter-spacing: 0.5px;
  border: none;
  transition: all 0.5s;
}

.main-menu li .sub-menu li a:hover {
  color: #f5a425;
  border: none;
}

.main-nav li:hover a,
.main-nav li.active a {
  border: 2px solid #f5a425;
}

@media (max-width: 950px) {
  .main-nav li:hover a,
  .main-nav li.active a {
    border: 2px solid transparent;
    border-bottom: 1px solid rgba(250, 250, 250, 0.25);
  }
}

/* Slider */

.main-banner {
  position: relative;
  max-height: 100%;
  overflow: hidden;
  margin-bottom: -7px;
}

#bg-video {
  min-width: 100%;
  min-height: 100vh;
  max-width: 100%;
  max-height: 100vh;
  object-fit: cover;
  z-index: -1;
}

#bg-video::-webkit-media-controls {
  display: none !important;
}

.video-overlay {
  position: absolute;
  background-color: rgba(22, 34, 57, 0.85);
  top: 0;
  left: 0;
  bottom: 7px;
  width: 100%;
}

.main-banner .caption {
  text-align: center;
  position: absolute;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main-banner .caption h6 {
  margin-top: 0px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 64px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 em {
  font-style: normal;
  color: #f5a425;
  font-weight: 900;
}

@media screen and (max-width: 1180px) {
  .main-banner .caption h6 {
    font-weight: 500;
  }

  .main-banner .caption h2 {
    font-size: 58px;
  }
}
@media screen and (max-width: 767px) {
  .main-banner .caption h6 {
    font-weight: 500;
  }

  .main-banner .caption h2 {
    font-size: 36px;
  }
}

/* Features */

section.features .col-4 {
  padding-left: 0px;
  padding-right: 0px;
}

.features-post {
  position: relative;
  margin-bottom: 0px;
}

.features-thumb {
  overflow: hidden;
  position: relative;
}

.features-thumb img {
  width: 100%;
}

.features-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0c1228;
  color: #fff;
  padding: 40px;
}

.features-content:hover {
  background-color: #f5a425;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}

.features-content h4 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0px;
}

.features-content h4 i {
  margin-right: 15px;
  font-size: 24px;
}

.features-content p {
  margin-bottom: 0px;
}

.features-content a {
  margin-top: 15px;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid #fff;
}

.features-content p.hidden-sm {
  display: none;
}

.second-features,
.third-features {
  border-left: 1px solid rgba(250, 250, 250, 0.1);
}

.content-hide {
  margin-top: 15px;
  display: none;
}

.content-hide p {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .features-content {
    padding: 15px;
  }
  .features-content h4 i {
    display: inline-block;
    margin-bottom: 0px;
    margin-right: 10px;
  }
  .features-content h4 {
    font-size: 14px;
  }
  .features-content p {
    display: none;
  }
  .features-content p.hidden-sm {
    display: block;
  }
  .features-content a {
    letter-spacing: 0px;
    font-size: 13px;
    font-weight: 600;
  }
}

/* Why Choosing Us */

section.why-us {
  background-image: url(../images/choosing-bg.jpg);
  background-color: #172238;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 30px;
}

#tabs {
  text-align: center;
}
#tabs ul {
  margin: 0;
  padding: 0;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 0;
  -moz-column-gap: 0;
  column-gap: 0;
}
#tabs ul::after {
  clear: both;
  content: "";
  display: table;
}
#tabs ul li {
  display: block;
  font-weight: 400;
  font-size: 1.2em;
  letter-spacing: 1px;
  text-align: center;
}
#tabs ul li a {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  outline: 0;
  padding-bottom: 30px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}
#tabs ul li a:after {
  transition: all 0.3s;
  width: 10px;
  height: 10px;
  background-color: #fff;
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 0;
}
#tabs ul li a:before {
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  border: 2px solid transparent;
  background-color: transparent;
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: -5px;
}
#tabs ul li span {
  display: block;
  margin-bottom: 0.75em;
}
#tabs ul .ui-tabs-active a {
  color: #f5a425;
}
#tabs ul .ui-tabs-active a:after {
  background-color: #f5a425;
  width: 15px;
  height: 15px;
}
#tabs ul .ui-tabs-active a:before {
  border-color: #f5a425;
}
#tabs h4 {
  margin-top: 60px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 30px;
}

#tabs p {
  color: #fff;
  font-size: 15px;
  line-height: 28px;
}

.tabs-content {
  margin-top: 60px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .tabs-content {
    text-align: center;
  }
}

.tabs-content img {
  width: 100%;
  overflow: hidden;
  padding-right: 45px;
}

@media screen and (max-width: 767px) {
  .tabs-content img {
    padding-right: 0px;
  }
}

/* Why Choosing Us Tab Next Button */
.tab-next {
  text-align: center;
  margin-top: 30px;
}

.tab-next a {
  color: #f5a425;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.tab-next a:hover {
  color: #fff;
}

.tab-next i {
  margin-left: 5px;
  font-size: 12px;
}

/* new-accounts
section.new-accounts {
  background-image: url(../images/choosing-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #172238;
  padding-bottom: 100px;
  padding: 0px 30px 70px 30px;
}
*/

/* Coming Soon */

section.coming-soon {
  background-image: url(../images/coming-soon-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #172238;
  padding: 120px 0px;
}

section.coming-soon .continer .counter div {
  display: inline-block;
}
section.coming-soon .continer h4 {
  margin-top: 100px;
  font-size: 30px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin-bottom: 50px;
}
section.coming-soon .continer h4 em {
  font-style: normal;
  color: #f5a425;
}

@media screen and (max-width: 767px) {
  section.coming-soon .continer h4 {
    text-align: center;
  }
}

section.coming-soon .continer .counter .days,
section.coming-soon .continer .counter .hours,
section.coming-soon .continer .counter .minutes,
section.coming-soon .continer .counter .seconds {
  width: 22%;
  height: 140px;
  float: left;
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  background-color: rgba(250, 250, 250, 0.1);
}
@media screen and (max-width: 992px) {
  section.coming-soon .continer .counter .days,
  section.coming-soon .continer .counter .hours,
  section.coming-soon .continer .counter .minutes,
  section.coming-soon .continer .counter .seconds {
    font-size: 26px;
  }

  section.coming-soon .continer .counter .days .value,
  section.coming-soon .continer .counter .hours .value,
  section.coming-soon .continer .counter .minutes .value,
  section.coming-soon .continer .counter .seconds .value {
    margin-top: 40px !important;
  }

  section.coming-soon .continer .counter span {
    font-size: 14px !important;
  }
}
section.coming-soon .continer .counter .days,
section.coming-soon .continer .counter .hours,
section.coming-soon .continer .counter .minutes {
  margin-right: 4%;
}
section.coming-soon .continer .counter .days .value,
section.coming-soon .continer .counter .hours .value,
section.coming-soon .continer .counter .minutes .value,
section.coming-soon .continer .counter .seconds .value {
  margin-top: 15px;
  display: block;
  width: 100%;
}

section.coming-soon .continer .counter span {
  font-size: 18px;
  text-transform: uppercase;
  color: #f5a425;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 0px;
  display: block;
}

section.coming-soon .right-content {
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  section.coming-soon .right-content {
    margin-top: 60px;
    margin-left: 0px;
  }
}

section.coming-soon .top-content {
  margin-bottom: -8px;
}

section.coming-soon .top-content h6 {
  font-size: 14px;
  color: #fff;
  background-color: rgba(250, 250, 250, 0.2);
  padding: 40px;
  text-align: center;
  line-height: 24px;
}

section.coming-soon .top-content h6 em {
  font-style: normal;
  font-weight: 600;
}

section.coming-soon form {
  background-color: rgba(250, 250, 250, 0.1);
  padding: 60px 40px;
  width: 100%;
  text-align: center;
}

section.coming-soon form input {
  width: 100%;
  height: 40px;
  background-color: rgba(250, 250, 250, 0.1);
  border-radius: 0px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

section.coming-soon form input:focus {
  outline: none;
  border: none;
  box-shadow: none;
  color: #fff;
  background-color: rgba(250, 250, 250, 0.1);
}

section.coming-soon form::placeholder {
  color: #fff;
}
section.coming-soon form input::placeholder {
  color: #fff;
}
section.coming-soon form input::placeholder {
  color: #fff;
}

section.coming-soon form button {
  margin-top: 10px;
  background-color: #f5a425;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  padding: 12px 20px;
  display: inline-block;
  outline: none;
  box-shadow: none;
  border: none;
}

/* Courses */

section.courses {
  background-image: url(../images/choosing-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #172238;
  padding-bottom: 100px;
  padding: 0px 30px 70px 30px;
}

section.courses .view-all {
  text-align: right;
  margin-bottom: 25px;
}

section.courses .view-all a {
  color: #f5a425;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s;
}

section.courses .view-all a:hover {
  color: #fff;
}

section.courses .view-all i {
  margin-right: 5px;
}

section.courses .item img {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

section.courses .item .down-content {
  padding: 30px;
  background-color: #fff;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

section.courses .item .down-content h4 {
  font-size: 16px;
  text-transform: uppercase;
  color: #1e1e1e;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.4em; /* Yaklaşık 2 satır yüksekliği */
  line-height: 1.2em;
  margin-bottom: 15px;
}

section.courses .item .down-content p {
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 7.5em; /* Yaklaşık 5 satır yüksekliği */
  line-height: 1.5em;
  margin-bottom: 15px;
}

section.courses .item .down-content img {
  width: 40px;
  border: 2px solid #f5a425;
  border-radius: 50%;
  text-align: left;
  display: inline-block;
}

section.courses .item .down-content .text-button-pay {
  display: block;
  text-align: right;
  margin-top: -30px;
}

section.courses .item .down-content .text-button-pay a {
  color: #f5a425;
  font-size: 13px;
}

section.courses .item .down-content .text-button-free {
  display: flex;
  justify-content: flex-end;
  margin-top: -30px;
}

section.courses .item .down-content .text-button-free a {
  color: #7a7a7a;
  font-size: 13px;
}

section.courses .owl-carousel .owl-nav {
  display: none;
}

section.courses .owl-carousel .owl-dots {
  text-align: center;
}

section.courses .owl-carousel button.owl-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  margin: 50px 10px 0px 10px;
  outline: none;
}
section.courses .owl-carousel button.active {
  background-color: #f5a425;
}

/* Video */

section.video {
  background-image: url(../images/video-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #172238;
  padding: 120px 0px;
}

section.video .left-content {
  color: #fff;
}

section.video .left-content span {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

section.video .left-content h4 {
  margin-top: 20px;
  font-size: 30px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 40px;
  margin-bottom: 20px;
}
section.video .left-content h4 em {
  font-style: normal;
  color: #f5a425;
}

section.video .left-content .main-button {
  margin-top: 30px;
}

.video-item {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-item figure {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 en-boy oranı için */
  margin: 0;
}

.video-item .responsive-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-item .video-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.video-item .video-caption h4 {
  color: #fff;
  margin: 0;
  font-size: 18px;
}

@media (max-width: 767px) {
  .video-item {
    margin-top: 30px;
  }
}

/* Testimonials */

section.testimonials {
  background-image: url(../images/bg.jpg);
  background-color: #172238;
  background-image: linear-gradient(135deg, #18233a 0%, #0c1228 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  padding: 60px 30px 60px 30px;
}
#ogrenci-yorumlari {
  padding-top: 100px;
}

section.testimonials:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/pattern-bg.jpg);
  opacity: 0.03;
  pointer-events: none;
}

section.testimonials .view-all {
  text-align: right;
  margin-bottom: 5px;
}

section.testimonials .view-all a {
  color: #f5a425;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s;
}

section.testimonials .view-all a:hover {
  color: #fff;
}

section.testimonials .view-all i {
  margin-right: 5px;
}

section.testimonials .section-heading {
  margin-bottom: 50px;
}

section.testimonials .section-heading h2 {
  margin-top: 0;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid rgba(250, 250, 250, 0.1);
}

/* Testimonials Cards */
.testimonials-carousel {
  position: relative;
  padding: 0;
  margin: 0 auto;
  max-width: 100%;
  overflow: visible !important;
}

.testimonials-carousel .slick-list {
  padding: 20px 0;
  margin: 0 -15px;
  overflow: visible !important;
}

.testimonials-carousel .slick-track {
  display: flex !important;
  margin-left: 0;
  margin-right: 0;
}

.testimonials-carousel .slick-slide {
  padding: 10px;
  height: auto !important;
}

.testimonial-card-container {
  perspective: 1000px;
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}

.testimonial-card {
  position: relative;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  margin: 0;
  background-color: transparent;
  border-radius: 10px;
  height: 100%;
  width: 100%;
  min-height: 300px;
}

.testimonial-card-front,
.testimonial-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.testimonial-card-front {
  background-color: rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 30px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  z-index: 2;
}

.testimonial-card-front:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(245, 164, 37, 0.05) 50%
  );
  border-radius: 0 0 10px 0;
  z-index: 1;
}

.testimonial-card-back {
  background-color: rgba(245, 164, 37, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 30px;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 164, 37, 0.2);
  overflow: hidden;
}

.testimonial-card-back:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(245, 164, 37, 0.1) 50%,
    transparent 50%
  );
  border-radius: 10px 0 0 0;
}

.testimonial-card-container:hover .testimonial-card {
  transform: rotateY(180deg);
}

.testimonial-card-back img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
  margin-bottom: 25px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-content p {
  font-style: italic;
  color: #fff;
  line-height: 1.6;
  font-size: clamp(14px, 1vw + 8px, 18px); /* Responsive font boyutu */
  margin-bottom: 0;
  padding-left: 30px;
  padding-right: 5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.quote-icon {
  position: absolute;
  top: -10px;
  left: -5px;
  font-size: 24px;
  color: #f5a425;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-author .author-image {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid #f5a425;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  flex-shrink: 0;
}

.testimonial-author .author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.testimonial-author .author-info h4 {
  font-size: clamp(14px, 0.8vw + 8px, 16px); /* Responsive font boyutu */
  color: #fff;
  margin-bottom: 3px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.testimonial-author .author-info span {
  font-size: clamp(11px, 0.5vw + 8px, 13px); /* Responsive font boyutu */
  color: #f5a425;
  font-weight: 500;
  display: block;
  margin-top: 3px;
  letter-spacing: 0.5px;
}

/* Slick Dots Düzeltme */
.testimonials-carousel .slick-dots {
  position: relative;
  bottom: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 30px 0 0;
}

.testimonials-carousel .slick-dots li {
  margin: 0 5px;
}

.testimonials-carousel .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
  cursor: pointer;
}

.testimonials-carousel .slick-dots li.slick-active button {
  background-color: #f5a425;
  width: 30px;
  border-radius: 10px;
}

.testimonials-carousel .slick-dots li button:hover {
  background-color: rgba(245, 164, 37, 0.5);
}

/* Testimonials Responsive Düzeltmeler */
@media (max-width: 1200px) {
  .testimonial-card {
    min-height: 280px;
  }

  .testimonial-content p {
    font-size: clamp(13px, 0.9vw + 7px, 16px);
    line-height: 1.5;
  }

  .testimonial-author .author-image {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 992px) {
  .testimonial-card {
    min-height: 260px;
  }

  .testimonial-card-front,
  .testimonial-card-back {
    padding: 25px 20px;
  }

  .testimonial-content {
    margin-bottom: 20px;
  }

  .testimonial-content p {
    font-size: clamp(12px, 0.8vw + 7px, 15px);
    line-height: 1.5;
    padding-left: 25px;
  }

  .quote-icon {
    font-size: 22px;
    top: -8px;
    left: -3px;
  }

  .testimonial-author .author-image {
    width: 45px;
    height: 45px;
    border-width: 2px;
  }

  .testimonial-author .author-info h4 {
    font-size: clamp(13px, 0.7vw + 7px, 15px);
  }

  .testimonial-author .author-info span {
    font-size: clamp(10px, 0.5vw + 7px, 12px);
  }
}

@media (max-width: 767px) {
  .testimonial-card {
    min-height: 240px;
  }

  .testimonial-card-front,
  .testimonial-card-back {
    padding: 20px 15px;
  }

  .testimonial-content {
    margin-bottom: 15px;
  }

  .testimonial-content p {
    font-size: clamp(12px, 0.7vw + 6px, 14px);
    line-height: 1.4;
    padding-left: 22px;
  }

  .quote-icon {
    font-size: 20px;
    top: -5px;
    left: -2px;
  }

  .testimonial-author {
    padding-top: 12px;
  }

  .testimonial-author .author-image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-width: 2px;
  }

  .testimonial-card-front:after,
  .testimonial-card-back:after {
    width: 60px;
    height: 60px;
  }

  .testimonials-carousel .slick-list {
    margin: 0 -10px;
  }

  .testimonials-carousel .slick-slide {
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    min-height: 220px;
  }

  .testimonial-card-front,
  .testimonial-card-back {
    padding: 15px 12px;
  }

  .testimonial-content p {
    font-size: clamp(11px, 0.6vw + 6px, 13px);
    line-height: 1.4;
    padding-left: 20px;
    padding-right: 3px;
  }

  .quote-icon {
    font-size: 18px;
    top: -3px;
    left: -2px;
  }

  .testimonial-author {
    padding-top: 10px;
  }

  .testimonial-author .author-image {
    width: 35px;
    height: 35px;
    margin-right: 8px;
    border-width: 2px;
  }

  .testimonial-author .author-info h4 {
    font-size: clamp(12px, 0.6vw + 6px, 14px);
    margin-bottom: 2px;
  }

  .testimonial-author .author-info span {
    font-size: clamp(9px, 0.4vw + 6px, 11px);
    margin-top: 2px;
  }

  .testimonial-card-front:after,
  .testimonial-card-back:after {
    width: 50px;
    height: 50px;
  }

  .testimonials-carousel .slick-dots {
    margin: 20px 0 0;
  }

  .testimonials-carousel .slick-dots li {
    margin: 0 3px;
  }

  .testimonials-carousel .slick-dots li button {
    width: 10px;
    height: 10px;
  }

  .testimonials-carousel .slick-dots li.slick-active button {
    width: 25px;
  }

  .testimonials-carousel .slick-list {
    margin: 0;
    padding: 20px 15px;
  }

  .testimonials-carousel .slick-slide {
    padding: 10px 15px;
  }

  .testimonial-card {
    margin: 0;
    width: calc(100% - 10px);
  }
}

/* 767px'den Büyük Ekranlar İçin Font Boyutu Düzeltmesi */
@media (min-width: 768px) {
  .testimonial-content p {
    font-size: clamp(10px, 0.8vw + 6px, 14px); /* 4px daha küçük */
    line-height: 1.5;
  }

  .testimonial-author .author-info h4 {
    font-size: clamp(10px, 0.7vw + 6px, 12px); /* 4px daha küçük */
  }

  .testimonial-author .author-info span {
    font-size: clamp(8px, 0.4vw + 5px, 10px); /* 3px daha küçük */
  }

  .quote-icon {
    font-size: 20px; /* Daha küçük ikon */
    top: -8px;
    left: -3px;
  }
}

/* Contact */

section.contact {
  background-image: url(../images/contact-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #172238;
  padding-bottom: 120px;
}

section.contact form {
  background-color: rgba(250, 250, 250, 0.1);
  padding: 30px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  section.contact form {
    margin-bottom: 30px;
  }
}

section.contact form input {
  width: 100%;
  height: 40px;
  background-color: rgba(250, 250, 250, 0.1);
  border-radius: 0px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13px;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

section.contact form textarea {
  width: 100%;
  height: 220px;
  max-height: 280px;
  min-height: 220px;
  background-color: rgba(250, 250, 250, 0.1);
  border-radius: 0px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13px;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

section.contact form input:focus,
section.contact form textarea:focus {
  outline: none;
  border: none;
  box-shadow: none;
  color: #fff;
  background-color: rgba(250, 250, 250, 0.1);
}

section.contact form::placeholder {
  color: #fff;
}
section.contact form input::placeholder {
  color: #fff;
}
section.contact form input::placeholder {
  color: #fff;
}

section.contact form::placeholder {
  color: #fff;
}
section.contact form textarea::placeholder {
  color: #fff;
}
section.contact form textarea::placeholder {
  color: #fff;
}

section.contact form button {
  background-color: #f5a425;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  padding: 12px 20px;
  display: inline-block;
  outline: none;
  box-shadow: none;
  border: none;
}

/* Footer */

footer {
  background-color: #152036;
  text-align: center;
}

footer p {
  margin-bottom: 0px;
  padding: 25px 0px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

footer p a,
footer p a:hover {
  color: #f5a425;
}

@media screen and (max-width: 992px) {
  .features {
    background-color: #0c1228;
  }
  .features-content {
    position: relative;
  }
  .features-post {
    border-left: 0;
  }
}

@media screen and (max-width: 950px) {
  .main-menu {
    padding-right: 0 !important;
  }
  .main-header .logo {
    line-height: 73px;
  }
  .main-menu li {
    display: block;
    line-height: 1;
    margin-left: 0 !important;
  }

  .main-menu li .sub-menu {
    opacity: 1;
    visibility: visible;
    position: static;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .main-menu li .sub-menu li:last-child {
    border-bottom: 1px solid rgba(250, 250, 250, 0.25);
  }
}

@media screen and (max-width: 950px) and (max-height: 400px) {
  nav[role="navigation"].active {
    max-height: calc(80px + 100vh);
    overflow-y: auto;
  }
}

@media screen and (max-width: 767px) {
  footer p {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25px;
  }
}

/* Üniversite Bölümleri Sayfası Stilleri */
.search-box {
  position: relative;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.search-box input {
  padding: 15px 20px;
  border-radius: 25px;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #f5a425;
  transition: all 0.3s;
}

.search-box input:focus {
  box-shadow: 0 5px 20px rgba(245, 164, 37, 0.3);
  border-color: #f5a425;
}

.search-box i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #f5a425;
  font-size: 18px;
}

/* Bölüm listesi grid düzeni */
#bolum-listesi .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.bolum-item {
  margin-bottom: 30px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 25%;
  max-width: 25%;
}

.bolum-item .item {
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bolum-item .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.bolum-item .item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.bolum-item .down-content {
  padding: 30px;
  background-color: #fff;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.bolum-item .down-content h4 {
  font-size: 16px;
  text-transform: uppercase;
  color: #1e1e1e;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.4em;
  line-height: 1.2em;
}

.bolum-item .down-content p {
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 7.5em;
  line-height: 1.5em;
}

.bolum-item .author-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}

.bolum-item .author-image img {
  width: 40px;
  height: 40px;
  border: 2px solid #f5a425;
  border-radius: 50%;
  object-fit: cover;
}

.bolum-item .text-button-pay,
.bolum-item .text-button-free {
  display: block;
  text-align: right;
  margin-top: -30px;
}

.bolum-item .text-button-pay a,
.bolum-item .text-button-free a {
  color: #f5a425;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}

.bolum-item .text-button-pay a:hover,
.bolum-item .text-button-free a:hover {
  color: #1e1e1e;
}

.bolum-item.hidden {
  display: none;
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
  .bolum-item {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (max-width: 992px) {
  .bolum-item {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .search-box {
    margin-bottom: 20px;
  }

  .bolum-item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bolum-item .down-content h4 {
    font-size: 16px;
  }
}

/* Pazarlama Etiketleri */
.etiket-container {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.etiket {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.etiket i {
  margin-right: 5px;
  font-size: 12px;
}

.etiket-populer {
  background-color: #f5a425;
}

.etiket-derece {
  background-color: #18233a;
}

.etiket-super-derece {
  background-color: #18233a;
}

.etiket-burs {
  background-color: #27ae60;
}

.bolum-item .item {
  position: relative;
}

/* #tabs2 için aynı stiller */
#tabs2 {
  text-align: center;
}
#tabs2 ul {
  margin: 0;
  padding: 0;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 0;
  -moz-column-gap: 0;
  column-gap: 0;
}
#tabs2 ul::after {
  clear: both;
  content: "";
  display: table;
}
#tabs2 ul li {
  display: block;
  font-weight: 400;
  font-size: 1.2em;
  letter-spacing: 1px;
  text-align: center;
}
#tabs2 ul li a {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  outline: 0;
  padding-bottom: 30px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}
#tabs2 ul li a:after {
  transition: all 0.3s;
  width: 10px;
  height: 10px;
  background-color: #fff;
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 0;
}
#tabs2 ul li a:before {
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  border: 2px solid transparent;
  background-color: transparent;
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: -5px;
}
#tabs2 ul li span {
  display: block;
  margin-bottom: 0.75em;
}
#tabs2 ul .ui-tabs-active a {
  color: #f5a425;
}
#tabs2 ul .ui-tabs-active a:after {
  background-color: #f5a425;
  width: 15px;
  height: 15px;
}
#tabs2 ul .ui-tabs-active a:before {
  border-color: #f5a425;
}
#tabs2 h4 {
  margin-top: 60px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 30px;
}

#tabs2 p {
  color: #fff;
  font-size: 15px;
  line-height: 28px;
}
