/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  overflow-x: hidden;
}

body {
  background: #fff;
  color: #2f3138;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

a {
  color: #f82249;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #f8234a;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: #0e1b4d;
}

.main-page {
  margin-top: 70px;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #010306;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

/* Deep Space Nebula Effect */
#preloader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(30, 125, 233, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(248, 34, 73, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.12) 0%, transparent 60%);
  filter: blur(60px);
  z-index: -1;
}

/* Enhanced Stars */
#preloader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(1.5px 1.5px at 20px 30px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 50px 160px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2.5px 2.5px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(1.5px 1.5px at 130px 80px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 160px 120px, #fff, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 250px 250px;
  animation: starsTwinkle 6s ease-in-out infinite;
  opacity: 0.5;
  z-index: -1;
}

@keyframes starsTwinkle {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* Shooting Stars Effect */
.shooting-stars-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: rotateZ(45deg);
}

.shooting-stars-container .star {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  background: linear-gradient(-45deg, #fff, rgba(0, 0, 255, 0));
  filter: drop-shadow(0 0 6px #fff);
  animation: tail 3000ms ease-in-out infinite, shooting 3000ms ease-in-out infinite;
}

.shooting-stars-container .star::before,
.shooting-stars-container .star::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  height: 2px;
  background: linear-gradient(-45deg, rgba(0, 0, 255, 0), #fff, rgba(0, 0, 255, 0));
  border-radius: 100%;
  transform: translateX(50%) rotateZ(45deg);
  animation: shining 3000ms ease-in-out infinite;
}

.shooting-stars-container .star::after {
  transform: translateX(50%) rotateZ(-45deg);
}

.shooting-stars-container .star:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0ms;
}

.shooting-stars-container .star:nth-child(2) {
  top: 20%;
  left: 30%;
  animation-delay: 5000ms;
}

.shooting-stars-container .star:nth-child(3) {
  top: 50%;
  left: 0%;
  animation-delay: 3500ms;
}

.shooting-stars-container .star:nth-child(4) {
  top: 40%;
  left: 70%;
  animation-delay: 5000ms;
}

.shooting-stars-container .star:nth-child(5) {
  top: 80%;
  left: 20%;
  animation-delay: 500ms;
}

@keyframes tail {
  0% {
    width: 0;
  }

  30% {
    width: 100px;
  }

  100% {
    width: 0;
  }
}

@keyframes shining {
  0% {
    width: 0;
  }

  50% {
    width: 30px;
  }

  100% {
    width: 0;
  }
}

@keyframes shooting {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(300px);
  }
}

.loader-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.loader-logo {
  width: 130px;
  height: auto;
  z-index: 10;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));
  animation: logoBreathe 4s ease-in-out infinite;
}

@keyframes logoBreathe {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
  }

  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
  }
}

/* High-Tech Orbital Spinner */
.loader-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
  transform-style: preserve-3d;
}

.loader-ring::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 15px #fff, 0 0 30px rgba(255, 255, 255, 0.5);
}

.loader-ring::after {
  content: none;
  /* Resetting previous logic */
}

/* Outer Blue Ring */
.loader-ring.r1 {
  width: 280px;
  height: 280px;
  border-top: 3px solid #1e7de9;
  border-bottom: 3px solid #1e7de9;
  box-shadow: 0 0 20px rgba(30, 125, 233, 0.3);
  animation: orbit1 4s linear infinite;
}

.loader-ring.r1::before {
  top: 50%;
  left: -3px;
  transform: translateY(-50%);
}

/* Middle Red Ring */
.loader-ring.r2 {
  width: 220px;
  height: 220px;
  border-left: 3px solid #f82249;
  border-right: 3px solid #f82249;
  box-shadow: 0 0 20px rgba(248, 34, 73, 0.3);
  animation: orbit2 3s linear infinite reverse;
}

.loader-ring.r2::before {
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}

/* Inner Yellow Ring */
.loader-ring.r3 {
  width: 160px;
  height: 160px;
  border-top: 3px solid #ffc31d;
  box-shadow: 0 0 20px rgba(255, 195, 29, 0.3);
  animation: orbit3 2s linear infinite;
}

.loader-ring.r3::before {
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes orbit1 {
  0% {
    transform: rotateX(65deg) rotateY(15deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(65deg) rotateY(15deg) rotateZ(360deg);
  }
}

@keyframes orbit2 {
  0% {
    transform: rotateX(-45deg) rotateY(-25deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(-45deg) rotateY(-25deg) rotateZ(360deg);
  }
}

@keyframes orbit3 {
  0% {
    transform: rotateX(25deg) rotateY(45deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(25deg) rotateY(45deg) rotateZ(360deg);
  }
}

#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 20px;
  bottom: 20px;
  z-index: 996;
  background: #010306;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #f82249;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(248, 34, 73, 0.2);
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
  transition: transform 0.3s ease;
  transform: rotate(-45deg);
}

.back-to-top:hover {
  background: #f82249;
  box-shadow: 0 0 20px rgba(248, 34, 73, 0.6);
  transform: translateY(-3px);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Rocket Launching Animation */
.back-to-top.launching {
  animation: rocketLaunch 1.2s ease-in forwards;
  pointer-events: none;
}

.back-to-top.launching::after {
  content: '';
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 30px;
  background: linear-gradient(to bottom, #ffc31d, #ff4500, transparent);
  filter: blur(3px);
  border-radius: 50%;
  z-index: -1;
  animation: exhaustFlame 0.1s infinite alternate;
}

@keyframes rocketLaunch {
  0% {
    transform: translateY(0) scale(1);
  }

  10% {
    transform: translateY(5px) scale(0.95);
  }

  30% {
    transform: translateY(-20px) scale(1.05);
  }

  100% {
    transform: translateY(-110vh) scale(1.2);
  }
}

@keyframes exhaustFlame {
  from {
    height: 25px;
    opacity: 0.8;
  }

  to {
    height: 40px;
    opacity: 1;
  }
}

/* Sections Header
--------------------------------*/
.section-header {
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-header::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #f82249;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-header h2 {
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-rocket {
  display: block;
  text-align: center;
  font-size: 3.5rem;
  color: #f82249;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 15px rgba(248, 34, 73, 0.4));
}

.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9195a2;
}

.bilim-text {
  max-width: 720px;
}

.bilim-side-image {
  width: 100%;
  border-radius: 10px;
  display: block;
  margin-top: 30px;
}

.bilim-side-image + .bilim-side-image {
  margin-top: 20px;
}

.section-with-bg {
  background-color: #f6f7fd;
}

/* Sections HeaderTwo
--------------------------------*/
.section-headerTwo {
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.section-headerTwo::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #2234f8;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-headerTwo h2 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 26px;
  text-transform: capitalize;
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
}

.section-headerTwo p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9195a2;
}

.section-with-bg {
  background-color: #f6f7fd;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

/* Background Space Decorations */
.space-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.satellite-drift {
  position: fixed;
  top: 15%;
  font-size: 3rem;
  animation: driftAcross 50s linear infinite;
}

.astronaut-float {
  position: absolute;
  right: 5%;
  top: 40%;
  font-size: 2.5rem;
  animation: floatAround 15s ease-in-out infinite;
}

@keyframes driftAcross {
  from {
    left: -100px;
    transform: rotate(0deg);
  }

  to {
    left: 100%;
    transform: rotate(360deg);
  }
}

@keyframes floatAround {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(15px, -20px) rotate(5deg);
  }

  66% {
    transform: translate(-10px, 15px) rotate(-5deg);
  }
}

#header {
  height: 90px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled,
#header.header-inner {
  background: rgba(6, 12, 34, 0.98);
  height: 70px;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 span {
  color: #f82249;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 992px) {
  #header #logo img {
    max-height: 30px;
  }
}

/*--------------------------------------------------------------
# Buy Tickets
--------------------------------------------------------------*/
.buy-tickets {
  color: #fff;
  background: #f82249;
  padding: 7px 10px;
  margin: 0 0 0 10px;
  border-radius: 50px;
  border: 2px solid #f82249;
  transition: all ease-in-out 0.3s;
  font-weight: 500;
  line-height: 1;
  font-size: 13px;
  white-space: nowrap;

}

.buy-tickets:hover {
  background: none;
  color: #fff;
}

.buy-tickets:focus {
  color: #fff;
}

@media (max-width: 992px) {
  .buy-tickets {
    margin: 0 10px 0 5px;
  }
}

/*--------------------------------------------------------------
# Buy Ticketstwo
--------------------------------------------------------------*/

.buy-ticketstwo {
  color: #fff;
  background: #df7009;
  padding: 7px 10px;
  margin: 0 0 0 10px;
  border-radius: 50px;
  border: 2px solid #df7009;
  transition: all ease-in-out 0.3s;
  font-weight: 500;
  line-height: 1;
  font-size: 13px;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
}

.buy-ticketstwo:hover {
  background: none;
  color: #fff;
}

.buy-ticketstwo:focus {
  color: #fff;
}

@media (max-width: 992px) {
  .buy-ticketstwo {
    margin: 0 10px 0 0;
  }
}

/*--------------------------------------------------------------
# Buy Ticketsthree
--------------------------------------------------------------*/

.buy-ticketsthree {
  color: #fff;
  background: #2ba915;
  padding: 7px 10px;
  margin: 0 0 0 10px;
  border-radius: 50px;
  border: 2px solid #2ba915;
  transition: all ease-in-out 0.3s;
  font-weight: 500;
  line-height: 1;
  font-size: 13px;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;

}

.buy-ticketsthree:hover {
  background: none;
  color: #fff;
}

.buy-ticketsthree:focus {
  color: #fff;
}

@media (max-width: 992px) {
  .buy-ticketsthree {
    margin: 0 10px 0 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 12px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(202, 206, 221, 0.8);
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  padding: 6px 4px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #f82249;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 12px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #060c22;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #f82249;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #060c22;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #f82249;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #f82249;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  background: url(..//img/bilim.webp) top center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

#hero:before {
  content: "";
  background: rgba(6, 12, 34, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 90px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

@media (max-width: 991px) {
  #hero .hero-container {
    top: 70px;
  }
}

#hero h1 {
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 56px;
  font-weight: 600;
  text-transform: uppercase;
}

#hero h1 span {
  color: #f82249;
}

@media (max-width: 991px) {
  #hero h1 {
    font-size: 34px;
  }
}

#hero p {
  color: #ebebeb;
  font-weight: 700;
  font-size: 20px;
}

@media (max-width: 991px) {
  #hero p {
    font-size: 16px;
  }
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#f82249 50%, rgba(101, 111, 150, 0.15) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

#hero .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 2px solid rgba(163, 163, 163, 0.4);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid #f82249;
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

#hero .about-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid #f82249;
}

#hero .about-btn:hover {
  background: #f82249;
  color: #fff;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about {
  background: url("..//img/about-bg1.jpg");
  background-size: cover;
  overflow: hidden;
  position: relative;
  color: #fff;
  padding: 60px 0 40px 0;
}

@media (min-width: 1024px) {
  #about {
    background-attachment: fixed;
  }
}

#about:before {
  content: "";
  background: rgba(13, 20, 41, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#about h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

#about h3 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}

#about p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff;
}

/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
#atolye {
  padding: 60px 0 30px 0;
}

#atolye .speaker {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#atolye .speaker .details {
  background: rgba(6, 12, 34, 0.76);
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  text-align: center;
  padding-top: 10px;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#atolye .speaker .details h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

#atolye .speaker .details p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
  font-style: italic;
}

#atolye .speaker .details .social {
  height: 40px;
}

#atolye .speaker .details .social i {
  line-height: 0;
  margin: 0 2px;
}

#atolye .speaker .details .social a.nsosyal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
}

#atolye .speaker .details .social a.nsosyal .nsosyal-n {
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  background: linear-gradient(135deg, #42EADD 0%, #3B82F6 50%, #9333EA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-family: "Raleway", sans-serif;
}

#atolye .speaker .details .social a.nsosyal:hover .nsosyal-n {
  background: #f82249;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#atolye .speaker .details a {
  color: #fff;
}

#atolye .speaker .details a:hover {
  color: #f82249;
}

#atolye .speaker:hover .details {
  bottom: 0;
}

#atolye-details {
  padding: 60px 0;
}

#atolye-details .details h2 {
  color: #112363;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

#atolye-details .details .social {
  margin-bottom: 15px;
}

#atolye-details .details .social a {
  background: #e9edfb;
  color: #112363;
  line-height: 1;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#atolye-details .details .social a:hover {
  background: #f82249;
  color: #fff;
}

#atolye-details .details .social a i {
  font-size: 16px;
  line-height: 0;
}

#atolye-details .details p {
  color: #112363;
  font-size: 15px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
#schedule {
  padding: 60px 0 60px 0;
}

#schedule .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
  margin-bottom: 30px;
}

#schedule .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
}

#schedule .nav-tabs a {
  border: none;
  border-radius: 50px;
  font-weight: 600;
  background-color: #0e1b4d;
  color: #fff;
  padding: 10px 100px;
}

@media (max-width: 991px) {
  #schedule .nav-tabs a {
    padding: 8px 60px;
  }
}

@media (max-width: 767px) {
  #schedule .nav-tabs a {
    padding: 8px 50px;
  }
}

@media (max-width: 480px) {
  #schedule .nav-tabs a {
    padding: 8px 30px;
  }
}

#schedule .nav-tabs a.active {
  background-color: #f82249;
  color: #fff;
}

#schedule .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 30px auto;
}

@media (min-width: 991px) {
  #schedule .sub-heading {
    width: 75%;
  }
}

#schedule .tab-pane {
  transition: ease-in-out 0.2s;
}

#schedule .schedule-item {
  border-bottom: 1px solid #cad4f6;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}

#schedule .schedule-item:hover {
  background-color: #fff;
}

#schedule .schedule-item time {
  padding-bottom: 5px;
  display: inline-block;
}

#schedule .schedule-item .speaker {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
}

#schedule .schedule-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}

#schedule .schedule-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

#schedule .schedule-item h4 span {
  font-style: italic;
  color: #19328e;
  font-weight: normal;
  font-size: 16px;
}

#schedule .schedule-item p {
  font-style: italic;
  color: #152b79;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
#venue {
  padding: 60px 0;
}

#venue .container-fluid {
  margin-bottom: 3px;
}

#venue .venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

#venue .venue-info {
  background: url("../img/venue-info-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

#venue .venue-info:before {
  content: "";
  background: rgba(13, 20, 41, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#venue .venue-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 574px) {
  #venue .venue-info h3 {
    font-size: 24px;
  }
}

#venue .venue-info p {
  color: #fff;
  margin-bottom: 0;
}

#venue .venue-gallery-container {
  padding-right: 12px;
}

#venue .venue-gallery {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  aspect-ratio: 16/9;
}

#venue .venue-gallery a {
  display: block;
  height: 100%;
}

#venue .venue-gallery img {
  transition: all ease-in-out 0.4s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#venue .venue-gallery:hover img {
  transform: scale(1.1);
}

.venue-slider {
  position: relative;
  overflow: hidden;
}

.venue-slider .swiper-button-next,
.venue-slider .swiper-button-prev {
  color: #fff;
  background: rgba(248, 34, 73, 0.7);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: 0.3s;
}

.venue-slider .swiper-button-next:after,
.venue-slider .swiper-button-prev:after {
  font-size: 20px;
}

.venue-slider .swiper-button-next:hover,
.venue-slider .swiper-button-prev:hover {
  background: #f82249;
}

.venue-slider .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.venue-slider .swiper-pagination-bullet-active {
  background: #f82249;
  opacity: 1;
}

/*--------------------------------------------------------------
# VenueTwo Section
--------------------------------------------------------------*/
#venueTwo {
  padding: 60px 0;
}

#venueTwo .container-fluid {
  margin-bottom: 3px;
}

#venueTwo .venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

#venueTwo .venue-info {
  background: url("../img/venue-info-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

#venueTwo .venue-info:before {
  content: "";
  background: rgba(13, 20, 41, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#venueTwo .venue-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 574px) {
  #venueTwo .venue-info h3 {
    font-size: 24px;
  }
}

#venueTwo .venue-info p {
  color: #fff;
  margin-bottom: 0;
}

#venueTwo .venue-gallery-container {
  padding-right: 12px;
}

#venueTwo .venue-gallery {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

#venueTwo .venue-gallery img {
  transition: all ease-in-out 0.4s;
}

#venueTwo .venue-gallery:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Kulup Section
--------------------------------------------------------------*/
#kulup {
  padding: 60px 0;
}

#kulup .kulups {
  border: 1px solid #e0e5fa;
  background: #fff;
  margin-bottom: 30px;
}

#kulup .kulups:hover .kulups-img img {
  transform: scale(1.1);
}

#kulup .kulups-img {
  overflow: hidden;
  margin-bottom: 15px;
  text-align: center;
}

#kulup .kulups-img img {
  transition: 0.3s ease-in-out;
}

#kulup h3 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 0 20px;
}

#kulup a {
  color: #152b79;
}

#kulup a:hover {
  color: #f82249;
}

#kulup .btnbilet {
  margin: 15px;
  text-align: start;
  display: flex;
  /* Flexbox düzeni */
  align-items: center;
  /* Dikeyde ortala (isteğe bağlı) */
  text-align: center;

}

#kulup .btnbilet a {
  color: white;
}

#kulup .btnbilet a:hover {
  color: #f82249;
}

#kulup .stars {
  padding: 0 20px;
  margin-bottom: 5px;
}

#kulup .stars i {
  color: rgb(255, 195, 29);
}

#kulup p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: #060c22;
  font-style: italic;
  font-size: 15px;
}

/*--------------------------------------------------------------
# Gallery Section (Sergi sayfası - grid galeri)
--------------------------------------------------------------*/
#gallery {
  padding: 60px 0;
  overflow: hidden;
}

#gallery .sergi-gallery-container {
  padding: 0 12px;
}

#gallery .sergi-gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  aspect-ratio: 4/3;
}

#gallery .sergi-gallery-item a {
  display: block;
  height: 100%;
}

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

#gallery .sergi-gallery-item:hover img {
  transform: scale(1.08);
}

/*--------------------------------------------------------------

# GalleryTwo Section
--------------------------------------------------------------*/
#galleryTwo {
  padding: 60px;
  overflow: hidden;
}

#galleryTwo .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#galleryTwo .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #f82249;
}

#galleryTwo .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f82249;
}

#galleryTwo .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  #galleryTwo .swiper-wrapper {
    padding: 40px 0;
  }

  #galleryTwo .swiper-slide-active {
    border: 5px solid #f82249;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.15);
    margin-top: 6px;
  }
}

/*--------------------------------------------------------------
# Atolye Gallery Section
--------------------------------------------------------------*/
#atolye-gallery {
  padding: 60px 0;
  overflow: hidden;
}

#atolye-gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

#atolye-gallery .gallery-item img {
  transition: all 0.5s ease;
  width: 100%;
}

#atolye-gallery .gallery-item:hover img {
  transform: scale(1.1);
}

#atolye-gallery .gallery-item a {
  position: relative;
  display: block;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 12, 34, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

#atolye-gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: #fff;
  font-size: 32px;
}

/* Galeri öğeleri eşit boyut */
.gallery-equal .gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-equal .gallery-item a {
  display: block;
  height: 100%;
}

.gallery-equal .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------------


# Sponsors Section
--------------------------------------------------------------*/
#supporters {
  padding: 60px 0;
}

#supporters .supporters-wrap {
  border-top: 1px solid #e0e5fa;
  border-left: 1px solid #e0e5fa;
  margin-bottom: 30px;
}

#supporters .supporter-logo {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #e0e5fa;
  border-bottom: 1px solid #e0e5fa;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  height: 220px;
}

@media (max-width: 991px) {
  #supporters .supporter-logo {
    height: 160px;
    padding: 20px;
  }
}

@media (max-width: 575px) {
  #supporters .supporter-logo {
    height: 120px;
    padding: 15px;
  }
}

#supporters .supporter-logo:hover img {
  transform: scale(1.2);
}

#supporters img {
  transition: all 0.4s ease-in-out;
  max-width: 100%;
  max-height: 100%;
}

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/
#faq {
  padding: 60px 0;
}

#faq .faq-list {
  padding: 0;
  list-style: none;
}

#faq .faq-list li {
  border-bottom: 1px solid #e9eaed;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

#faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #f82249;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #e0072f;
  transition: 0.3s;
}

#faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

#faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

#faq .faq-list .icon-show {
  display: none;
}

#faq .faq-list .collapsed {
  color: black;
}

#faq .faq-list .collapsed:hover {
  color: #f82249;
}

#faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

#faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Subscribe Section
--------------------------------------------------------------*/
#subscribe {
  padding: 60px;
  background: url(../img/subscribe-bg.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#subscribe:before {
  content: "";
  background: rgba(6, 12, 34, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

@media (min-width: 1024px) {
  #subscribe {
    background-attachment: fixed;
  }
}

#subscribe .section-header h2,
#subscribe p {
  color: #fff;
}

#subscribe input {
  background: #fff;
  color: #060c22;
  border: 0;
  outline: none;
  margin: 0;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px;
}

@media (min-width: 767px) {
  #subscribe input {
    min-width: 400px;
  }
}

#subscribe button {
  border: 0;
  padding: 9px 25px;
  cursor: pointer;
  background: #f82249;
  color: #fff;
  transition: all 0.3s ease;
  outline: none;
  font-size: 14px;
  border-radius: 50px;
}

#subscribe button:hover {
  background: #e0072f;
}

@media (max-width: 460px) {
  #subscribe button {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Social Media Follow Section
--------------------------------------------------------------*/
#social-media-follow {
  padding: 60px 0;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.social-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #f82249;
  z-index: -1;
  transition: all 0.4s ease;
}

.social-card:hover::before {
  height: 100%;
}

.social-card .social-icon {
  width: 70px;
  height: 70px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 32px;
  color: #0e1b4d;
  transition: all 0.4s ease;
}

.social-card:hover .social-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-10px);
}

.social-card .social-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #0e1b4d;
  transition: all 0.4s ease;
}

.social-card .social-info span {
  font-size: 14px;
  color: #9195a2;
  display: block;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.social-card:hover .social-info h3,
.social-card:hover .social-info span {
  color: #fff;
}

.social-card .social-action {
  font-size: 14px;
  font-weight: 600;
  color: #f82249;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.4s ease;
}

.social-card:hover .social-action {
  color: #fff;
}

/* Platform Specific Colors on Hover */
.social-card.instagram:hover::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-card.facebook:hover::before {
  background: #1877F2;
}

.social-card.twitter-x:hover::before {
  background: #000000;
}

.social-card.youtube:hover::before {
  background: #FF0000;
}

.social-card.nsosyal:hover::before {
  background: linear-gradient(135deg, #42EADD 0%, #3B82F6 50%, #9333EA 100%);
}

.nsosyal-n {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-size: 38px;
  background: linear-gradient(135deg, #42EADD 0%, #3B82F6 50%, #9333EA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: block;
}

.social-card.nsosyal:hover .nsosyal-n {
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*--------------------------------------------------------------
# Social Media Follow Section
--------------------------------------------------------------*/
#social-media-follow {
  background: rgba(6, 12, 34, 0.98);
  padding: 80px 0;
  position: relative;
}

#social-media-follow .section-header h2 {
  color: #fff;
}

#social-media-follow .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

#social-media-follow .social-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

#social-media-follow .social-card .social-icon {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#social-media-follow .social-card .social-info h3 {
  color: #fff;
}

#social-media-follow .social-card .social-info span {
  color: rgba(255, 255, 255, 0.5);
}

#social-media-follow .social-card:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
}

#social-media-follow .social-card .social-action {
  color: #f82249;
}

#social-media-follow .social-card:hover .social-action {
  color: #fff;
}

#social-media-follow .social-card .social-icon {
  transition: all 0.4s ease;
}

#social-media-follow .social-card.instagram .social-icon {
  color: #E4405F;
}

#social-media-follow .social-card.facebook .social-icon {
  color: #1877F2;
}

#social-media-follow .social-card.twitter-x .social-icon {
  color: #fff;
}

#social-media-follow .social-card:hover .social-icon {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}


/*--------------------------------------------------------------
# Statistics Section
--------------------------------------------------------------*/
.statistics-section {
  padding: 80px 0 120px 0;
  background: rgba(6, 12, 34, 0.98);
  ;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
  font-family: "Raleway", sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.stat-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0.9;
}

.stat-label .dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
}

.stat-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.stat-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
}

.stat-wave.wave-1 {
  animation: waveMove 10s linear infinite;
  opacity: 0.3;
}

.stat-wave.wave-2 {
  animation: waveMove 15s linear infinite reverse;
  opacity: 0.2;
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-20px);
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .stat-number {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .statistics-section {
    padding: 60px 0 100px 0;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
    letter-spacing: 1px;
  }
}

/*--------------------------------------------------------------
# Anket Section
--------------------------------------------------------------*/
#anket {
  padding: 60px 0;
}

.anket-card {
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(6, 12, 34, 0.05);
  height: 100%;
  border: 1px solid #f0f1f5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.anket-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(6, 12, 34, 0.1);
  border-color: #f82249;
}

.anket-icon {
  width: 80px;
  height: 80px;
  background: #f6f7fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 36px;
  color: #f82249;
  transition: all 0.4s ease;
}

.anket-card:hover .anket-icon {
  background: #f82249;
  color: #fff;
}

.anket-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0e1b4d;
}

.anket-card p {
  font-size: 15px;
  color: #9195a2;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.anket-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: #f82249;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
  border: 2px solid #f82249;
}

.anket-btn:hover {
  background: transparent;
  color: #f82249;
}

.anket-btn i {
  font-size: 18px;
  transition: 0.3s;
}

.anket-btn:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Haberler ve Duyurular
--------------------------------------------------------------*/
.haberler-ust-baslik {
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.haberler-baslik {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0e1b4d;
  margin: 0;
}

.btn-haberler-tumunu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f82249;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.3s;
}

.btn-haberler-tumunu:hover {
  background: #0e1b4d;
  color: #fff;
  transform: scale(1.05);
}

/* Mobilde başlık ile Tümünü Gör yan yana ama dengeli */
.haberler-baslik-row {
  row-gap: 0.75rem;
}

.haberler-baslik-row .haberler-baslik {
  font-size: clamp(0.9rem, 4vw, 36px);
}

@media (max-width: 575.98px) {
  .btn-haberler-tumunu {
    padding: 4px 14px;
    font-size: 11px;
  }
}

.haberler-swiper {
  padding: 10px 0 50px;
  position: relative;
}

/* Haberler swiper ok butonları - modern yuvarlak stil */
.haberler-swiper .haberler-swiper-next,
.haberler-swiper .haberler-swiper-prev {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(14, 27, 77, 0.15);
  color: #f82249;
  border: 2px solid rgba(248, 34, 73, 0.2);
  transition: all 0.3s ease;
}

.haberler-swiper .haberler-swiper-next:after,
.haberler-swiper .haberler-swiper-prev:after {
  font-size: 18px;
  font-weight: 700;
}

.haberler-swiper .haberler-swiper-next:hover,
.haberler-swiper .haberler-swiper-prev:hover {
  background: #f82249;
  color: #fff;
  border-color: #f82249;
  box-shadow: 0 6px 20px rgba(248, 34, 73, 0.35);
}

.haber-kart {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(6, 12, 34, 0.08);
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.haber-kart:hover {
  box-shadow: 0 15px 40px rgba(248, 34, 73, 0.15);
  transform: translateY(-4px);
}

.haber-kart-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.haber-kart-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.3s;
}

.haber-kart:hover .haber-kart-img-wrap img {
  transform: scale(1.05);
}

.haber-kart-etiket {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f82249;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.haber-kart-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.haber-kart-baslik {
  font-size: 18px;
  font-weight: 700;
  color: #0e1b4d;
  margin-bottom: 10px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.haber-kart-ozet {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.haber-kart-link {
  font-size: 14px;
  font-weight: 600;
  color: #f82249;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.haber-kart-link:hover {
  color: #0e1b4d;
  gap: 10px;
}

/* Haberler sayfası grid */
/* Haberler listesi sayfası - üst boşluk ve kart aralıkları */
#haberler-listesi {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

#haberler-listesi .section-header {
  margin-top: 0;
  padding-top: 0.5rem;
}

.haberler-grid {
  margin-top: 0;
}

.haberler-grid > [class*="col-"] {
  margin-bottom: 2rem;
}

.haberler-grid .haber-kart {
  margin-bottom: 0;
  height: 100%;
}

/* Haberler sayfalama (1, 2, 3, 4...) */
.haberler-pagination-wrapper {
  padding-bottom: 1rem;
}

.haberler-pagination {
  gap: 4px;
}

.haberler-pagination .page-item .page-link {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(14, 27, 77, 0.15);
  background: #fff;
  color: #0e1b4d;
  font-weight: 600;
  transition: all 0.3s ease;
}

.haberler-pagination .page-item .page-link:hover {
  background: #f6f7fd;
  border-color: #f82249;
  color: #f82249;
}

.haberler-pagination .page-item .page-link.active {
  background: #f82249;
  border-color: #f82249;
  color: #fff;
}

.haberler-pagination .page-item .page-link[data-page="prev"]:hover,
.haberler-pagination .page-item .page-link[data-page="next"]:hover {
  background: #0e1b4d;
  color: #fff;
  border-color: #0e1b4d;
}

/* Haber detay sayfası */
#haber-detay {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.haber-detay-breadcrumb {
  font-size: 14px;
}

.haber-detay-tarih {
  font-size: 14px;
}

.haber-detay-article {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(6, 12, 34, 0.06);
}

.haber-detay-baslik {
  font-size: 32px;
  font-weight: 700;
  color: #0e1b4d;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.haber-detay-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
}

.haber-detay-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  display: block;
}

.haber-detay-icerik {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.haber-detay-icerik .lead {
  font-size: 18px;
  color: #0e1b4d;
  font-weight: 500;
}

.haber-detay-icerik p {
  margin-bottom: 1rem;
}

.haber-detay-icerik p:last-child {
  margin-bottom: 0;
}

/* Galeri chip başlık */
.haber-detay-galeri {
  margin-top: 2.5rem;
}

.haber-detay-galeri-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(248, 34, 73, 0.06);
  border-radius: 999px;
  border: 1px solid rgba(248, 34, 73, 0.28);
  box-shadow: 0 8px 18px rgba(6, 12, 34, 0.06);
}

.haber-detay-galeri-chip-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #f82249;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.haber-detay-galeri-chip-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0e1b4d;
}

@media (max-width: 991px) {
  .haberler-baslik {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Survey Floating Card
--------------------------------------------------------------*/
.survey-card-wrapper {
  position: fixed;
  left: -400px;
  /* Hidden by default */
  bottom: max(80px, env(safe-area-inset-bottom, 80px));
  z-index: 9997;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  max-width: 320px;
}

.survey-card-wrapper.active {
  left: 20px;
}

.survey-card-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  border: 1px solid rgba(248, 34, 73, 0.1);
}

.survey-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  color: #9195a2;
  cursor: pointer;
  line-height: unit;
  padding: 0;
  transition: 0.3s;
}

.survey-close-btn:hover {
  color: #f82249;
  transform: rotate(90deg);
}

.survey-icon-mini {
  width: 50px;
  height: 50px;
  background: #f82249;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 8px 15px rgba(248, 34, 73, 0.2);
}

.survey-text h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #0e1b4d;
}

.survey-text p {
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.4;
}

.survey-go-btn {
  display: inline-block;
  background: #f82249;
  color: #fff;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}

.survey-go-btn:hover {
  background: #0e1b4d;
  color: #fff;
  transform: scale(1.05);
}

@media (max-width: 575px) {
  .survey-card-wrapper {
    max-width: 280px;
  }
}

/*--------------------------------------------------------------
# Etkinlik Görsel Popup
--------------------------------------------------------------*/
.bm-image-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.bm-image-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

.bm-image-popup__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(480px, calc(100% - 32px));
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  animation: bmPopupIn .22s ease-out;
}

.bm-image-popup__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.bm-image-popup__close {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #f82249;
  font-size: 1rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform .15s ease, box-shadow .15s ease;
}

.bm-image-popup__close:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@keyframes bmPopupIn {
  from {
    transform: translate(-50%, calc(-50% + 10px));
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

@media (max-width: 575.98px) {
  .bm-image-popup__dialog {
    width: calc(100% - 24px);
    max-height: 90vh;
  }

  .bm-image-popup__img {
    max-height: 90vh;
    object-fit: contain;
  }

  .bm-image-popup__close {
    top: -10px;
    right: -6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bm-image-popup__dialog {
    animation: none;
  }
}

/*--------------------------------------------------------------
# Buy Tickets Section
--------------------------------------------------------------*/
#buy-tickets {
  padding: 60px 0;
}

#buy-tickets .card {
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 25px 0 rgba(6, 12, 34, 0.1);
}

#buy-tickets .card:hover {
  box-shadow: 0 10px 35px 0 rgba(6, 12, 34, 0.2);
}

#buy-tickets .card hr {
  margin: 25px 0;
}

#buy-tickets .card .card-title {
  margin: 10px 0;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: bold;
}

#buy-tickets .card .card-price {
  font-size: 48px;
  margin: 0;
}

#buy-tickets .card ul li {
  margin-bottom: 20px;
}

#buy-tickets .card .text-muted {
  opacity: 0.7;
}

#buy-tickets .card .btn {
  font-size: 15px;
  border-radius: 50px;
  padding: 10px 40px;
  transition: all 0.2s;
  background-color: #f82249;
  border: 0;
  color: #fff;
}

#buy-tickets .card .btn:hover {
  background-color: #e0072f;
}

#buy-tickets #buy-ticket-modal input,
#buy-tickets #buy-ticket-modal select {
  border-radius: 0;
}

#buy-tickets #buy-ticket-modal .btn {
  font-size: 15px;
  border-radius: 50px;
  padding: 10px 40px;
  transition: all 0.2s;
  background-color: #f82249;
  border: 0;
  color: #fff;
}

#buy-tickets #buy-ticket-modal .btn:hover {
  background-color: #e0072f;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
#contact {
  padding: 60px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #f82249;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #112363;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #112363;
}

#contact .contact-info a {
  color: #4869df;
}

#contact .contact-info a:hover {
  color: #f82249;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {

  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .php-email-form input:focus,
#contact .php-email-form textarea:focus {
  border-color: #f82249;
}

#contact .php-email-form input {
  padding: 10px 15px;
}

#contact .php-email-form textarea {
  padding: 12px 15px;
}

#contact .php-email-form button[type=submit] {
  background: #f82249;
  border: 0;
  padding: 10px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  cursor: pointer;
}

#contact .php-email-form button[type=submit]:hover {
  background: #e0072f;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #101522;
  padding: 0 0 25px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #040919;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 26px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #fff;
}

#footer .footer-top .footer-info img {
  height: 40px;
  margin-bottom: 10px;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  display: inline-block;
  background: #222636;
  color: #eee;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}

#footer .footer-top .social-links a:hover {
  background: #f82249;
  color: #fff;
}

#footer .footer-top .social-links a.nsosyal:hover {
  background: linear-gradient(135deg, #42EADD 0%, #3B82F6 50%, #9333EA 100%);
}

#footer .footer-top .social-links a.nsosyal .nsosyal-n {
  font-size: 18px;
  background: linear-gradient(135deg, #42EADD 0%, #3B82F6 50%, #9333EA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top .social-links a.nsosyal:hover .nsosyal-n {
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#atolye-details .details .social a.nsosyal .nsosyal-n {
  font-size: 18px;
  background: linear-gradient(135deg, #42EADD 0%, #3B82F6 50%, #9333EA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-family: "Raleway", sans-serif;
}

#atolye-details .details .social a.nsosyal:hover .nsosyal-n {
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid #f82249;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 5px;
  color: #f82249;
  font-size: 18px;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #262c44;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #f82249;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type=submit] {
  background: #f82249;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #e0072f;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}