@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Licorice&display=swap");

:root {
  --primary: #205184;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Titillium Web", sans-serif;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*HEADER START*/

.desktop-header-top {
  background: #373b44; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #4286f4,
    #373b44
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #4286f4,
    #373b44
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  padding: 8px 0;
  font-size: 13px;
}

.desktop-header-top .container {
  display: flex;
  gap: 15px;
  align-items: center;
}

.desktop-header-top-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.desktop-header-top-left a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  font-size: 16px;
  font-weight: 600;
}

.desktop-header-right a {
  color: white;
  font-size: 16px;
  font-weight: 600;
}

.desktop-header-top-right {
  position: absolute;
  right: 100px;
  top: 0;
  background: white;
  height: 127px;
  width: 127px;
  z-index: 3;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}

@media (max-width: 1920px) {
  .desktop-header-top-right {
    right: 30px;
  }
}

.desktop-header-top-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-header-top-right a:hover {
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .desktop-header-top {
    font-size: 10px;
  }
}

@media (max-width: 1125px) {
  .desktop-header-top {
    display: none;
  }
}

.desktop-header {
  padding: 10px 0;
  width: 100%;
  background: white;
  border-bottom: none;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
  align-items: center;
  transition: background-color 0.5s ease, box-shadow 0.5s ease,
    padding 0.3s ease;
}

.desktop-header.scrolled {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}

.desktop-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: sticky;
}

.desktop-header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.desktop-header.scrolled .dropdown-icon i {
  color: #000 !important;
}

.desktop-header.scrolled nav ul li a {
  color: #000 !important;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
}

.container-fluid {
  max-width: 95%;
  margin: 0 auto;
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

@media (max-width: 1255px) {
  nav ul {
    gap: 30px;
  }
}

nav ul li a {
  color: #222;
  font-size: 18px;
}

@media (max-width: 1100px) {
  nav ul li a {
    font-size: 14px;
  }

  nav ul {
    gap: 15px;
  }
}

nav ul li {
  position: relative;
}

nav ul li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}

.desktop-header .logo {
  width: 200px;
  height: auto;
}

nav .logo:hover img {
  transform: scale(1.03);
}

.phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-radius: 40px;
  text-decoration: none;
  background: #373b44; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #4286f4,
    #373b44
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #4286f4,
    #373b44
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: white;
  background-color: transparent;
  font-weight: 500;
  transition: all 0.3s ease;
  transform: translateX(-100px);
}

/*DROPDOWN START*/
.dropdown {
  position: relative;
}

.dropdown a {
  z-index: 999;
  padding-bottom: 40px;
}

.dropdown-content {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 384px;
  background: white;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.dropdown:hover > .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.dropdown-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-items li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown-items li:hover a {
  background-color: #dadada;
  z-index: 5;
}

.dropdown-icon i {
  color: #222;
  transition: 0.3s;
}

.dropdown:hover .dropdown-icon i {
  transform: rotate(180deg);
}

.dropdown-content ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.dropdown-content ul li {
  width: 100%;
}

.dropdown-content ul li a {
  width: 100%;
  display: block;
}

@media (max-width: 991px) {
  .dropdown {
    width: 100%;
  }

  .menu-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
  }

  .dropdown-content {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }

  .dropdown.open > .dropdown-content {
    max-height: 600px;
    opacity: 1;
    pointer-events: all;
  }

  .dropdown-icon {
    padding: 15px;
    display: flex;
    align-items: center;
  }

  .dropdown-icon i {
    transform: none !important;
    transition: transform 0.4s ease;
    color: white !important;
  }

  .dropdown.open .dropdown-icon i {
    transform: rotate(180deg) !important;
  }

  .dropdown-items li a {
    padding: 12px 18px;
    display: block;
    background: #fff;
    border-bottom: 1px solid #eee;
    color: #333;
  }
}

/*DROPDOWN END*/
/*MOBÄ°LE HEADER START*/

.mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  transition: background-color 0.5s ease, box-shadow 0.5s ease,
    padding 0.3s ease, color 0.3s ease;
}

.mobile-header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-mobile img {
  max-width: 200px;
  height: auto;
  z-index: 99999;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-right span {
  color: #00529b;
  font-size: 16px;
  margin-right: 8px;
}

.hamburger {
  display: flex !important;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 99999;
  position: relative;
}

.hamburger i {
  font-size: 25px !important;
  color: #00529b !important;
}

.scrolled .header-right .hamburger i,
.scrolled .header-right span {
  color: #00529b !important;
}

body.menu-open .header-right {
  display: none !important;
}

.mobile-slide {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transition: all 0.3s ease;
  overflow: hidden;
}

.mobile-slide.active {
  left: 0;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  background: none;
  border: none;
  color: white;
  display: none;
  cursor: pointer;
  z-index: 99999;
}

.mobile-slide.active .close-btn {
  display: block;
}

.mobile-slide-content {
  width: 75%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  transition: left 0.3s ease;
  padding: 30px 25px;
  overflow-y: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #00529b;
}

.mobile-slide.active .mobile-slide-content {
  left: 0;
}

.mobile-slide-content::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: brightness(0.8);
  z-index: 1;
}

.mobile-slide-content > * {
  position: relative;
  z-index: 2;
}

.mobile-slide-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.mobile-slide-top i {
  color: white;
  font-size: 28px;
}

.mobile-slide-top a {
  color: white;
  font-size: 16px;
  text-decoration: none;
}

.mobile-menu {
  margin-top: 30px;
}

.mobile-menu ul,
.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu a {
  color: white;
  font-size: 15px;
  text-decoration: none;
  padding: 10px 0;
  display: block;
}

@media (max-width: 992px) {
  nav,
  .nav-menu,
  .logo,
  .nav-right,
  .phone,
  .logo img {
    display: none !important;
  }

  .mobile-header {
    display: flex !important;
    padding: 15px 30px;
    align-items: center;
    width: 100%;
    background: white;
    border-bottom: none;
    transition: all 0.3s ease;
    z-index: 100;
    align-items: center;
  }

  .mobile-header.scrolled {
    position: fixed;
    top: 0;
    width: 100%;
  }

  .mobile-slide-right {
    position: relative;
    right: 20px;
    top: 0;
    background: white;
    height: 127px;
    width: 127px;
    z-index: 3;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }

  .mobile-slide-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/*SLÄ°DER START*/

.heroSlider {
  position: relative;
  padding-bottom: 60px !important;
}

.swiper-button-prev {
  color: white !important;
  z-index: 4;
}

.swiper-button-next {
  color: white !important;
  margin-right: 5px;
}

.swiper-pagination {
  transform: translateY(-25px) !important;
  z-index: 4 !important;
}
  .swiper-slide .hero-item img {
    width: 100%;
  }
@media (min-width: 992px) {
  .mobile-slider {
    display: none;
  }
}

@media (max-width: 992px) {
  .mobile-slider {
    display: block;
  }

  .desktop-slider {
    display: none;
  }


}

/*SLÄ°DER END*/
/*HEADER END*/

/*STEPS START*/

.steps {
  position: relative;
  align-items: center;
  padding: 100px 0;
}

.steps .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  justify-content: center;
  position: relative;
}

.steps-top {
    display: flex;
    max-width: 1320px;
    margin: 0 auto 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid grey;
    padding: 0 0 8px 0;
}

.steps-left-title {
  font-weight: 600;
  font-size: 27px;
  text-transform: uppercase;
  background: linear-gradient(to right, #4286f4, #373b44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.steps-right-title {
      font-weight: 600;
  font-size: 27px;
  text-transform: uppercase;
  background: linear-gradient(to right, #4286f4, #373b44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.steps-left-title-mobile {
  display: none;
  grid-column: span 12;
  text-align: center;
  margin-bottom: 40px;
}

.steps-bigtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid grey;
}

.step-card {
  position: relative;
  border-top: 4px solid rgba(0, 82, 155, 0.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  text-align: center;
  padding: 60px 15px;
}

.step-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-wrapper {
  grid-column: span 4;
  display: flex;
  justify-content: center;
}

.step-card i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(to right, #4286f4, #373b44);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.3s ease;
  margin: 0 auto 15px;
}

.step-card:hover i {
  background: rgba(0, 82, 155, 0.85);
  transform: scale(1.05);
}

.step-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
  font-weight: 500;
}

.step-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.step-no {
  position: absolute;
  top: -22px;
  left: 7%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: white;
  border: 3px solid rgba(0, 82, 155, 0.3);
  border-radius: 50%;
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.step-card:hover .step-no {
  background: var(--primary);
  color: white;
  box-shadow: 0 3px 10px rgba(0, 82, 155, 0.4);
}

@media (max-width: 992px) {
  .steps-left-title {
    display: none;
  }

  .steps .container {
    width: 50%;
  }

  .step-wrapper {
    grid-column: span 12;
    display: flex;
    justify-content: center;
  }

  .steps-left-title-mobile {
    display: block;
  }
}

/*STEPS END*/
/*SERVÄ°CES START*/

.services {
  background-color: #f8f9fc;
  padding: 60px 0;
}

.services-top {
  max-width: 1320px;
  margin: 0 auto 60px;
  justify-content: space-between;
  display: flex;
  align-items: center;
  border-bottom: 1px solid grey;
}

.services-title {
  display: inline-block;
  font-size: 27px;
  background: linear-gradient(to right, #4286f4, #373b44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
}

.servics-bigtitle {
  font-size: 27px;
  background: linear-gradient(to right, #4286f4, #373b44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-transform: uppercase;
}

.services-text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #555;
}

.services .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 50px;
}

.services-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-card:hover img {
  box-shadow: 0 10px 25px rgba(0.2, 0.2, 0.2, 0.2);
}

.services-card {
  grid-column: span 4;
  background: #fff;
  padding: 30px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  position: relative;
}

.services-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.services-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 25px;
  margin-top: -55px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1b1d21;
  font-weight: 700;
}

.card-text {
  color: #5f5f5f;
  line-height: 1.8;
  font-size: 15px;
}

@media (max-width: 992px) {
  .services {
    padding-bottom: 40px;
  }

  .services-top {
    padding: 50px 0;
  }

  .services-title {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .servics-bigtitle {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .services-text {
    font-size: 14px;
    max-width: 60%;
  }

  .services .container {
    gap: 25px;
    padding: 0 20px;
  }

  .services-card {
    grid-column: span 12;
    padding: 20px;
  }

  .services-card img {
    width: 60px;
    height: 60px;
    margin-top: -40px;
    margin-bottom: 20px;
  }

  .card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .card-text {
    font-size: 14px;
    line-height: 1.6;
  }
}

/*SERVÄ°CES END*/
/*SERVÄ°CES DETAY START*/
.services-detail .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  padding: 50px 15px;
}

.services-detail .container .services-left {
  grid-column: span 8;
}

.services-detail .container aside {
  grid-column: span 4;
}

@media (max-width: 1225px) {
  .services-detail .container {
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    padding: 30px 15px;
  }

  .services-detail .container .services-left {
    grid-column: span 12;
  }

  .services-detail .container aside {
    grid-column: span 12;
  }
}

/*SERVÄ°CES DETAY END*/
/*ABOUT START*/

.about {
  padding-bottom: 60px;
  background-color: #f8f9fc;
}

.about .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 60px;
  padding: 50px 15px;
  align-items: center;
}

.about-left {
  grid-column: span 5;
  position: relative;
}

.about-left .max-img {
  max-width: 480px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-left .min-img {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  border: 8px solid #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-experience {
  position: absolute;
  top: 40px;
  left: -30px;
  background: linear-gradient(to right, #4286f4, #373b44);
  color: #fff;
  padding: 24px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 82, 155, 0.3);
}

.about-experience-number {
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.about-experience-text {
  font-size: 14px;
  font-weight: 600;
}

.about-right {
  grid-column: span 7;
}

.about-title {
  display: inline-block;
  font-size: 27px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  margin-bottom: 15px;
  border-bottom: 1px solid grey;
  background: linear-gradient(to right, #4286f4, #373b44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-subtitle {
  font-size: 27px;
  font-weight: 700;
  color: #1b1d21;
  line-height: 1.25;
  margin-bottom: 25px;
}

.about-text {
  font-size: 16px;
  color: #5f5f5f;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

.about-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-item i {
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(to right, #4286f4, #373b44);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: rgba(0, 82, 155, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 82, 155, 0.4);
}

@media (max-width: 992px) {
  .about .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px 15px;
  }

  .about-left,
  .about-right {
    grid-column: unset;
    width: 100%;
  }

  .about-right {
    order: 1;
  }

  .about-left {
    order: 2;
    position: relative;
  }

  .about-left .min-img {
    position: absolute;
    bottom: -20px;
    right: -12px;
    width: 150px;
    height: 150px;
  }

  .about-left .max-img {
    max-width: 100%;
    border-radius: 16px;
  }

  .about-experience {
    top: 20px;
    left: -14px;
    padding: 16px 20px;
  }

  .about-title {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .about-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .about-text {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .about-items {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
  }

  .about-btn {
    padding: 12px 24px;
    font-size: 13px;
  }
}

/*ABOUT END*/
/*WHYUS START*/

.whyus {
  padding: 30px 0 60px 0;
}

.whyus-top {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid grey;
}

.whyus-top .whyus-title {
  display: inline-block;
  background: linear-gradient(to right, #4286f4, #373b44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 27px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
}

.whyus-top .whyus-subtitle {
  font-size: 27px;
  background: linear-gradient(to right, #4286f4, #373b44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-transform: uppercase;
}

.whyus .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  position: relative;
  padding: 40px 0;
  box-sizing: border-box;
  --gap: 40px;
}

.whyus .container::before,
.whyus .container::after {
  content: "";
  position: absolute;
  background: var(--primary);
  pointer-events: none;
  z-index: 3;
}

.whyus .container::before {
  width: 1px;
  transform: translateY(-50%);
  height: 88%;
  left: 50%;
  top: 50%;
}

.whyus .container::after {
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.whyus-content {
  grid-column: span 6;
  padding: 40px 35px;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  z-index: 2;
}

.whyus-content .icon {
  font-size: xx-large;
  color: var(--primary);
  margin-bottom: 30px;
}

.whyus-content:hover {
  background: rgba(0, 82, 155, 0.03);
}

.content-title {
  font-size: 22px;
  margin-bottom: 20px;
  color: #1b1d21;
  font-weight: 700;
  line-height: 1.3;
}

.content-text {
  display: grid;
  grid-template-columns: 20px auto;
  column-gap: 10px;
  align-items: start;
  color: #5f5f5f;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.content-text i {
  color: var(--primary);
  margin-top: 3px;
}

@media (max-width: 992px) {
  .whyus .container {
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
  }

  .whyus-content {
    grid-column: unset;
    max-width: 100%;
    text-align: center;
    grid-template-columns: unset;
    border-bottom: 1px solid #00529b;
  }

  .whyus .container::before,
  .whyus .container::after {
    display: none;
  }

  .content-text {
    text-align: start;
  }
}

/*WHYUS END*/
/*GALLERY START*/

.gallery {
  padding: 30px 0 60px 0;
  background-color: #f8f9fc;
}

.gallery-title {
  display: inline-block;
  font-size: 27px !important;
  background: linear-gradient(to right, #4286f4, #373b44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
}

.gallery {
  padding: 80px 0;
}

.gallery-top {
  max-width: 1320px;
  text-align: center;
  display: flex;
  align-items: center;
  margin: 0 auto 60px;
  justify-content: space-between;
  border-bottom: 1px solid grey;
}

.gallery-subtitle {
  font-size: 27px;
  background: linear-gradient(to right, #4286f4, #373b44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-cover {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.gallery-cover:hover img {
  transform: scale(1.06);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-thumbs img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-thumbs img:hover {
  transform: scale(1.06);
}

@media (max-width: 992px) {
  .gallery-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 400px;
    margin: 0 auto;
  }

  .gallery-thumbs {
    gap: 10px;
    margin: 0 auto;
  }

  .gallery-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 80%;
    margin: 0 auto;
  }
}

/*GELLERY END*/
/*BLOG START*/
.blog-top {
  grid-column: 1 / -1;
  text-align: center;
  justify-content: center;
  padding: 80px 0;
}

.blog-title {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid grey;
}

.blog-subtitle {
  font-size: 27px;
  color: #222;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #555;
}

.blog {
  padding: 60px;
}

.blog .container {
  position: relative;
}

.blog .swiper {
  padding: 40px 0;
}

.blog .swiper-slide {
  display: flex;
  justify-content: center;
}

.blog-cards {
  display: block;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  color: #222;
  width: 420px;
  height: 360px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.blog-cards:hover {
  transform: translateY(-5px);
}

.blog-cards img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-cards-title {
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.blog-btn-container {
  text-align: center;
}

.blog-btn {
  display: inline-flex;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  align-items: center;
  margin-top: 30px;
}

.blog-btn:hover {
  background: rgba(0, 82, 155, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 82, 155, 0.4);
}

.blog .swiper-button-next,
.blog .swiper-button-prev {
  width: 55px;
  height: 55px;
  background: #0055a5;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog .swiper-button-next:after,
.blog .swiper-button-prev:after {
  font-size: 20px;
  color: white;
}

.blog .swiper-button-prev {
  left: -60px;
}

.blog .swiper-button-next {
  right: -60px;
}

@media (max-width: 992px) {
  .blog-top {
    padding: 20px 0;
  }

  .blog-subtitle {
    font-size: 20px;
    font-weight: 500;
  }

  .blog-text {
    font-size: 10px;
  }

  .blog-cards {
    display: block;
    width: 80%;
  }
}

/*BLOG END*/
/*BLOG TEMPLATE START*/

.blog-page .container {
  padding: 60px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1330px) {
  .blog-page .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-items: center;
  }
}

@media (max-width: 991px) {
  .blog-page .container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    justify-items: center;
    width: 365px;
  }
}

/*BLOG TEMPLATE END*/
/*BLOG DETAİL START*/

.blog-detail .container {
  padding: 60px 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  justify-content: space-between;
}

.blog-left {
  grid-column: span 8;
}

.blog-left .content-wrapper img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.blog-detail aside {
  grid-column: span 4;
  position: sticky;
  top: 95px;
  height: max-content;
}

@media (max-width: 992px) {
  .blog-detail .container {
    grid-template-columns: repeat(12, 1fr);
    padding: 40px 15px;
    gap: 20px;
  }

  .blog-left {
    grid-column: span 12;
  }

  .blog-detail aside {
    grid-column: span 12;
    position: static; /* sticky kapalı */
    margin-top: 30px;
  }

  .blog-left .content-wrapper img {
    height: 320px;
  }
}

/*BLOG DETAİL END*/
/*CTA START*/
.cta {
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f6f7 0%, #7a9bb8 100%);
  position: relative;
}

.cta .container {
  display: flex;
  align-items: center;
  gap: 30px;
  text-align: center;
  justify-content: space-between;
}

.cta-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a2b4a;
  margin-bottom: 10px;
}

.cta-text {
  font-size: 16px;
  color: #2d4470;
}

.cta-right {
  display: flex;
  gap: 30px;
}

.cta-sol-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(to right, #4286f4, #373b44);
  color: #fff;
  padding: 15px 60px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-sol-btn:hover {
  background: #2d4470;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 43, 74, 0.35);
}

.cta-sag-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #1a2b4a;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-sag-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  .cta .container {
    display: flex;
    flex-direction: column;
  }
}

/*CTA END*/
/*FOOTER START*/
footer {
  background: linear-gradient(to right, var(--primary), #373b44);
  /* background: linear-gradient(to right, #4286f4, #373b44); */
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
  font-size: 14px;
}

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

footer .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

footer .container .row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo img {
  width: 300px;
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-start span {
  display: block;
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 450px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #00529b;
  transform: translateY(-3px);
}

.footer-links span,
.footer-services span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

.footer-links a,
.footer-services a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 14px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.footer-links ul li:hover,
.footer-services ul li:hover {
  transform: translateX(5px);
}

.footer-end {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-end span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.footer-end a {
  display: flex;
  align-items: flex-start;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-end a:hover {
  color: white;
  transform: translateY(-3px);
}

.footer-end i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  color: white;
  padding: 20px;
}

.footer-end i:hover {
  background: #00529b;
  transform: translateY(-3px);
}

.footer-span {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: block;
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}

@media (max-width: 992px) {
  footer .container .row {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-content: center;
  }

  .footer-logo img {
    width: 220px;
  }
}

/* FOOTER STICKY MENU START */

.footer-sticky {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: black;
  position: fixed;
  z-index: 10;
  width: 100%;
  bottom: 0;
  padding: 0 0.5rem 1.15rem 0.5rem;
  border-top-left-radius: 2.15rem;
  border-top-right-radius: 2.15rem;
  border-top: 6px solid #00529b;
}

@media (max-width: 992px) {
  .footer-sticky {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer-sticky .sticky-box {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.footer-sticky .sticky-box .icon {
  height: 48px;
  width: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
}

.footer-sticky .sticky-box .text {
  font-size: 14px;
  color: white;
  text-align: center;
}

@media (max-width: 568px) {
  .footer-sticky .sticky-box .text {
    font-size: 10px;
  }
}

.footer-sticky .top-box .icon::before {
  content: "";
  position: absolute;
  height: 66px;
  width: 66px;
  border: 1px solid #00529b;
  border-radius: 50%;
  opacity: 0.5;
}

.footer-sticky .top-box .icon::after {
  content: "";
  position: absolute;
  height: 56px;
  width: 56px;
  border: 1px solid #00529b;
  border-radius: 50%;
  opacity: 0.75;
}

.footer-sticky .sticky-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box .icon i {
  font-size: 22px;
  color: #00529b;
}

.footer-sticky .top-box {
  -webkit-transform: translateY(-1.5rem);
  transform: translateY(-1.5rem);
}

.footer-sticky .top-box .text {
  -webkit-transform: translateY(1.5rem);
  transform: translateY(1.5rem);
  text-align: center;
}

.footer-sticky .top-box .icon {
  background: black;
  border-radius: 50%;
  position: relative;
}

.fixedButton {
  position: fixed;
  right: 30px;
  bottom: 15px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fixedButton-content.hidden {
  visibility: hidden;
  opacity: 0;
}

.fixedButton-content {
  position: relative;
  max-width: 220px;
  text-align: center;
  padding: 12px 14px;
  margin-bottom: 12px;
  background: white;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.fixedButton-content::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
  transform: translateX(-50%);
}

.fixedButton-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: white;
  font-size: 28px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fixedButton-icon:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
}

.fixedButton .close {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  font-size: 12px;
  border-radius: 50%;
  cursor: pointer;
}

@media (max-width: 992px) {
  .fixedButton {
    display: none;
  }
}

/* FOOTER STICKY BUTTON END */

/*CAREER START*/

.career-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

.career-form-desc {
  display: block;
  max-width: 720px;
  margin: 0 auto 15px;
  text-align: center;
  font-size: 15px;
  color: #000;
  line-height: 1.5;
  white-space: normal;
  white-space: nowrap;
}

.career-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.career-form input[type="text"],
.career-form input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dcdcdc;
  font-size: 13px;
  outline: none;
}

.career-form textarea {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  width: 100%;
  padding: 12px 14px;
  border: none;
  font-size: 13px;
  outline: none;
}

.career-file {
  margin-top: 20px;
  border: 1px solid #dcdcdc;
  padding: 15px;
}

.career-file label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.career-bottom {
  margin: 25px 0;
}

.career-btn {
  background: linear-gradient(to right, #4286f4, #373b44);
  color: white;
  padding: 10px 50px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
}

.career-btn:hover {
  background: rgba(0, 82, 155, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 82, 155, 0.4);
}

@media (max-width: 992px) {
  .career-form-grid {
    grid-template-columns: 1fr;
  }

  .career-form-desc {
    white-space: normal;
  }
}

/*CAREER END*/
/* CAREER FORM START */
.career-form {
  padding: 60px 0;
}

.career-form-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
}

.career-form-left {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  top: 80px;
}

.career-form-title {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(to right, #4286f4, #373b44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.career-form-text {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

.career-form-left-bold {
  font-weight: 700;
  margin-top: 10px;
}

.career-form-left a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #00529b;
  text-decoration: none;
}

.career-form-right {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  top: 80px;
}

.career-form-right input {
  border: none !important;
  padding: 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.career-right-title {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(to right, #4286f4, #373b44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.career-right-text {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 5px;
  background: white;
  color: #444;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 4px 16px;
}

.career-right-message {
  display: block;
  padding: 12px 16px 100px 16px;
  font-size: 14px;
  border-radius: 5px;
  background: white;
  color: #444;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 4px 16px;
}

.career-form-right .g-recaptcha {
  margin-top: 10px;
}

.career-form-right button {
  margin-top: 10px;
  padding: 10px 28px;
  background: linear-gradient(to right, #4286f4, #373b44);
  color: white;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  transition: all 0.3s ease;
  border: none;
}

.career-form-right button:hover {
  background-color: #003f78;
}

.maps iframe {
  width: 100%;
}

@media (max-width: 991px) {
  .career-form-row {
    grid-template-columns: 1fr;
  }

  .career-form-left,
  .career-form-right {
    grid-column: span 12;
  }

  .career-form-right {
    position: static;
  }

  .career-form-right button {
    width: 100%;
    justify-content: center;
  }
}

/* CAREER FORM END */

/*FORM START*/
.form-right {
  grid-column: span 6;
  display: grid;
  gap: 10px;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 30px;
  position: sticky;
  top: 80px;
  height: fit-content;
}

.right-title {
  font-weight: 800;
  font-size: x-large;
  margin-bottom: 15px;
  color: #00529b;
}

.right-text {
  color: black;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 5px;
  padding: 5px 20px;
  font-size: 14px;
  resize: none;
  border: none;
}

.right-text .placeholder {
  color: #a9aea7;
}

.right-message {
  color: black;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 5px;
  font-size: 14px;
  padding: 5px 20px 120px 20px;
  border: none;
}

.form-right img {
  width: 250px;
  height: auto;
  border: 1px solid #a9aea7;
  border-radius: 5px;
}

.form-right button {
  padding: 6px 25px;
  background-color: #205184;
  color: white;
  border: 1px solid #205184;
  border-radius: 5px;
  cursor: pointer;
  max-width: 150px;
}

/*FORM END*/
/*BREADCRUMB START*/

.breadcrumb-container {
  background: #373b44; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #4286f4,
    #373b44
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #4286f4,
    #373b44
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.breadcrumb-container .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 15px 0;
  gap: 10px;
  color: white;
}

.breadcrumb-container .container .links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.breadcrumb-container .container .links li {
  position: relative;
}

.breadcrumb-container .container .links li:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.breadcrumb-container .container .links li a {
  text-align: center;
  color: white;
}

@media (max-width: 992px) {
  .breadcrumb-container .container .links {
    gap: 15px;
  }

  .breadcrumb-container .container .links li:not(:last-child)::after {
    right: -10px;
  }

  .breadcrumb-container .container {
    padding: 10px 15px;
  }

  .breadcrumb-container .container .links li {
    font-size: 12px;
  }
}

/*BREADCRUMB END*/
/* ANIMATION CSS START */

/* BaÅŸlangÄ±Ã§ durumu */
.animate-section-slide-in {
  opacity: 0;
  transform: translateY(60px);
}

/* Aktif animasyon */
.animate-section-slide-in-active {
  animation: sectionSlideUpFade 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Keyframes */
@keyframes sectionSlideUpFade {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ANIMATION CSS END */

/* NEWS SECTION START */

.news {
  padding: 60px 0;
}

.news .section-top {
  display: flex;
  justify-content: center;
}

.news .section-title {
  display: inline-block;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  padding: 8px 20px;
  border-bottom: 1px solid grey;
}

.newsSlider {
  padding: 15px 10px !important;
}

.news-box {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.news-box a {
  color: black;
}

.news-box .profile-info {
  display: flex;
  flex-direction: column;
  padding: 15px 15px 0 15px;
}

.news-box .profile-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-box .profile-image {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 50%;
}

.news-box .profile-name {
  font-size: 18px;
  font-weight: 500;
}

.news-box .profile-desc {
  margin: 0 0 15px 0;
}

.news-gallery {
  padding: 0 10px 10px 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 5px;
  height: 480px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Soldaki büyük görsel */
.gallery-item.is-large {
  grid-column: 1 / 2;
  grid-row: 1 / -1; /* 3 satırı kaplar */
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .gallery-item.is-large {
    grid-column: span 2;
    height: 260px;
  }

  .gallery-item {
    height: 160px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.is-large {
    height: 220px;
  }
}

/* NEWS SECTION END */
