* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #111;
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

/* HEADER */
.top-header {
  background-color: #0b3d70;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 70px;
  width: auto;
  background: transparent;
}

.brand-divider {
  width: 2px;
  height: 45px;
  background: white;
}

.brand-text {
  font-size: 16px;
  font-weight: bold;
  color: white;
}

.brand a {
  color: white;
  font-size: 38px;
  font-weight: 700;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
}

.main-nav ul li a {
  color: white;
  font-size: 17px;
  font-weight: 600;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: #f0b400;
}

/* HERO */
.hero-simple {
  text-align: center;
  padding: 120px 20px 140px;
  background: linear-gradient(180deg, #f7f7f7, #ececec);
}

.hero-simple h1 {
  font-size: 58px;
  line-height: 1.2;
  color: #0b3d70;
  margin-bottom: 28px;
}

.hero-simple p {
  font-size: 20px;
  color: #333;
}

.hero-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  background: #0b3d70;
  color: white;
  font-weight: bold;
  border-radius: 5px;
}

.hero-btn:hover {
  background: #f0b400;
  color: #0b3d70;
}

/* GENERAL SECTION TITLES */
.section-title {
  font-size: 36px;
  color: #0b3d70;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #f0b400;
  border-radius: 3px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  background: rgba(240, 180, 0, 0.12);
  color: #0b3d70;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.4px;
}

/* ABOUT */
.about-section {
  background: #f7f7f7;
  padding: 90px 60px;
}

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

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  color: #0b3d70;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.about-text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #f0b400;
}

.about-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
  max-width: 600px;
}

.about-image {
  flex: 0 0 480px;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  display: block;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

/* ACTIVITIES */
.activities-section {
  background: #f7f7f7;
  padding: 90px 60px;
  width: 100%;
}

.activities-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.activities-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 45px;
}

.activities-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.activity-card {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: 0.3s;
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.activity-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.activity-content {
  padding: 30px 24px;
}

.activity-date {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  background: rgba(11, 61, 112, 0.08);
  color: #0b3d70;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.3px;
}

.activity-content h3 {
  font-size: 24px;
  color: #0b3d70;
  margin-bottom: 15px;
}

.activity-text {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  background: rgba(11, 61, 112, 0.04);
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.activity-btn {
  display: inline-block;
  background: #0b3d70;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
}

.activity-btn:hover {
  background: #f0b400;
  color: #0b3d70;
}

.border-style {
  border-left: 4px solid #f0b400;
  padding-left: 14px;
}

.highlight {
  color: #0b3d70;
  font-weight: 700;
}

.accent {
  color: #f0b400;
  font-weight: 600;
}
@media (max-width: 992px) {
  .activities-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .activities-cards {
    grid-template-columns: 1fr;
  }

  .activity-card img {
    height: 260px;
  }
}


/* EVENTS */
.events-section {
  background: white;
  padding: 90px 60px;
}

.events-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.events-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 45px;
}

.events-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.event-card {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: 0.3s;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.event-card img {
  width: 100%;
  height: 340px; /* 👈 böyütdük */
  object-fit: cover; /* 👈 əsas məsələ */
  display: block;
}

.event-content {
  padding: 30px 24px;
}

.event-content h3 {
  font-size: 24px;
  color: #0b3d70;
  margin-bottom: 15px;
}

.event-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.event-btn {
  display: inline-block;
  background: #0b3d70;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
}

.event-btn:hover {
  background: #f0b400;
  color: #0b3d70;
}

/* COURSES */
.courses-section {
  background: #f7f7f7;
  padding: 90px 60px;
}

.courses-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.courses-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 45px;
}

.courses-highlight-wrap {
  text-align: left;
}

.courses-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.course-info-card {
  position: relative;
  overflow: hidden;
  background: white;
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.course-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #f0b400;
  transition: width 0.3s ease;
}

.course-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.course-info-card:hover::before {
  width: 100%;
}

.course-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(11, 61, 112, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.course-info-icon i {
  font-size: 24px;
  color: #0b3d70;
}

.course-info-card h3 {
  font-size: 26px;
  color: #0b3d70;
  margin-bottom: 16px;
}

.course-info-card p {
  font-size: 17px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 0;
}

.courses-more-wrap {
  margin-top: 24px;
  text-align: right;
}

.courses-more-link {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: #0b3d70;
  transition: transform 0.3s ease, color 0.3s ease;
}

.courses-more-link:hover {
  color: #f0b400;
  transform: translateX(6px);
}

/* PAGE HERO */
.page-hero {
  text-align: center;
  padding: 100px 20px 80px;
  background: #f3f3f3;
}

.page-hero h1 {
  font-size: 52px;
  color: #0b3d70;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 20px;
  color: #333;
}

/* PAGE CONTENT */
.page-content {
  background: white;
  padding: 70px 20px;
}

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

.page-container p {
  font-size: 19px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 24px;
  max-width: 980px;
}

.page-container p strong {
  color: #0b3d70;
  font-weight: 700;
}

/* SIMPLE CARD */
.simple-card {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.simple-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #f0b400;
  transition: width 0.3s ease;
}

.simple-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.simple-card:hover::before {
  width: 100%;
}

.simple-card h3 {
  color: #0b3d70;
  font-size: 24px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.simple-card:hover h3 {
  color: #08315c;
}

.simple-card p {
  margin-bottom: 0;
}

/* VALUES */
.values-section {
  background: #f7f7f7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* TIMELINE */
.timeline-section {
  background: white;
}

.timeline {
  position: relative;
  margin-top: 20px;
  padding-left: 48px;
  border-left: 3px solid #0b3d70;
}

.timeline-item {
  position: relative;
  margin-bottom: 35px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -58px;
  top: 0;
  width: 16px;
  height: 16px;
  background: #f0b400;
  border: 3px solid #0b3d70;
  border-radius: 50%;
}

.timeline-content {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
  padding: 22px 24px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #f0b400;
  transition: width 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.timeline-content:hover::before {
  width: 100%;
}

.timeline-content h3 {
  font-size: 22px;
  color: #0b3d70;
  margin-bottom: 10px;
}

.timeline-content p {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

/* TEAM */
.team-section {
  background: #f7f7f7;
  padding: 90px 60px 40px; /* 👈 aşağı padding azaldıldı */
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 160px;
  cursor: pointer;
  transition: 0.3s ease;
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);

  text-decoration: none;
  color: inherit;
}

.team-card i {
  font-size: 28px;
  color: #0b3d70;
  background: rgba(11, 61, 112, 0.08);
  padding: 14px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.team-card:hover {
  background: #0b3d70;
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.team-card:hover i {
  background: white;
  color: #0b3d70;
  transform: scale(1.1);
}

.team-card:hover h3 {
  color: white;
}


/* FOOTER */
.site-footer {
  background: linear-gradient(90deg, #2d246d 0%, #0b3d70 55%, #4fc3dc 100%);
  color: white;
  padding-top: 60px;
}

.footer-top {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
}

.footer-column h3 {
  font-size: 24px;
  margin-bottom: 24px;
  white-space: nowrap;
}

.footer-info p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 10px;
  color: #f2f2f2;
}

.footer-info a {
  color: white;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-center {
  text-align: center;
}

.footer-join-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 16px 36px;
  border: 2px solid white;
  border-radius: 40px;
  color: white;
  font-size: 22px;
  font-weight: bold;
}

.footer-join-btn:hover {
  background: white;
  color: #0b3d70;
}

.footer-social h3 {
  margin-bottom: 24px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.social-icons a {
  border: 2px solid white;
  color: white;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: white;
  color: #0b3d70;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact i {
  margin-right: 0;
  font-size: 18px;
  width: 22px;
  color: white;
  transition: 0.3s;
}

.footer-contact:hover i {
  color: #ffe082;
}

.footer-links-row {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-links-row a {
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.footer-links-row a:hover {
  color: #ffe082;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  padding: 22px 20px;
  font-size: 15px;
  color: #f0f0f0;
}
/* ACTIVITY DETAIL SECTION */
.activity-detail-section {
  padding: 90px 60px;
  background: #ffffff;
}

.activity-detail-section:nth-child(even) {
  background: #f7f7f7;
}

/* CONTAINER */
.activity-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* TEXT SIDE */
.activity-detail-text {
  padding: 10px 0;
  max-width: 600px;
}

.activity-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 14px;
  background: rgba(240, 180, 0, 0.12);
  color: #0b3d70;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.3px;
}

.activity-detail-text h2 {
  font-size: 36px;
  color: #0b3d70;
  margin-bottom: 20px;
  line-height: 1.2;
}

.activity-detail-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  max-width: 600px;
}

/* MEDIA SIDE */
.activity-detail-media img,
.activity-detail-media video,
.activity-detail-media iframe {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ALTERNATE (LEFT-RIGHT CHANGE) */
.alt .activity-detail-container {
  grid-template-columns: 1fr 1.1fr;
}

/* HOVER EFFECT (yüngül premium hiss) */
.activity-detail-media img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.activity-detail-media img:hover {
  transform: scale(1.03);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
}
/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(60px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.activity-card.reveal.active:hover,
.event-card.reveal.active:hover,
.course-info-card.reveal.active:hover,
.simple-card.reveal.active:hover,
.team-card.reveal.active:hover {
  transform: translateY(-8px);
}
/* VIDEO HERO */
.hero-video {
  position: relative;
  height: 90vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 22, 49, 0.52) 0%,
    rgba(7, 22, 49, 0.30) 35%,
    rgba(7, 22, 49, 0.10) 60%,
    rgba(7, 22, 49, 0.08) 100%
  );
  z-index: 2;
}

.hero-content-left {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding-left: 100px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-accent-line {
  width: 70px;
  height: 3px;
  background: #f0b400;
  margin-bottom: 26px;
  animation: lineReveal 0.8s ease forwards;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: #fff;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.35);
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroReveal 0.9s ease forwards;
}

.hero-line-1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.5px;
  animation-delay: 0.25s;
}

.hero-line-2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
  animation-delay: 0.55s;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineReveal {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.event-date {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  background: rgba(11, 61, 112, 0.08);
  color: #0b3d70;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.3px;
}
.event-text {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  background: rgba(11,61,112,0.04);
  padding: 14px 16px;
  border-radius: 8px;
}

.event-info-section {
  padding: 90px 60px;
  background: #f7f7f7;
}

.event-info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.event-info-text h2 {
  font-size: 58px;
  line-height: 1.08;
  color: #0b3d70;
  margin-bottom: 28px;
}

.event-desc {
  font-size: 18px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 24px;
  max-width: 680px;
}

.event-details {
  margin-bottom: 22px;
}

.event-detail-item {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 8px;
}

.event-detail-item span {
  font-weight: 700;
  color: #0b3d70;
}

.event-highlight {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
  color: #f0b400;
  max-width: 680px;
  margin: 0;
}

.event-info-image img {
  width: 100%;
  max-width: 560px;
  display: block;
  margin-left: auto;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.event-register-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 34px;
  background: linear-gradient(135deg, #0b3d70, #1f5fa5);
  color: white;
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(11, 61, 112, 0.25);
  transition: all 0.3s ease;
}

/* hover effekt */
.event-register-btn:hover {
  background: linear-gradient(135deg, #f0b400, #ffcc33);
  color: #0b3d70;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(240, 180, 0, 0.35);
}

/* klik effekti */
.event-register-btn:active {
  transform: scale(0.97);
}
.course-flow {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-arrow {
  font-size: 28px;
  color: #0b3d70;
  margin-bottom: 30px;
  animation: bounceArrow 1.5s infinite;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.flow-steps-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-line {
  width: 2px;
  height: 40px;
  background: rgba(11, 61, 112, 0.2);
}

.flow-card {
  background: white;
  padding: 24px 22px;
  width: 320px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.3s;
  position: relative;
}

.flow-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: #f0b400;
  transition: 0.3s;
}

.flow-card:hover::before {
  width: 100%;
}

.flow-card::after {
  content: attr(data-step);
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0b3d70;
  color: white;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.flow-card h4 {
  color: #0b3d70;
  margin-bottom: 10px;
  font-size: 20px;
}

.flow-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 0;
}

.branch-card {
  position: relative;
  overflow: visible;
}

.side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 42px;
  color: #0b3d70;
  line-height: 1;
}

.left-arrow {
  left: -110px;
}

.right-arrow {
  right: -110px;
}

.branch-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px 30px;
  min-width: 170px;
  text-align: center;
  background: #0b3d70;
  color: white;
  border-radius: 40px;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(11, 61, 112, 0.18);
}

.branch-btn.left {
  left: -335px;
  background: #f0b400;
  color: #0b3d70;
}

.branch-btn.right {
  right: -335px;
}

.branch-btn:hover {
  transform: translateY(-50%) scale(1.05);
}
.register-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.register-modal.active {
  display: flex;
}

.register-modal-content {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.register-modal-content h3 {
  color: #0b3d70;
  margin-bottom: 10px;
}

.register-modal-content p {
  margin-bottom: 20px;
  color: #555;
}

.register-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.register-option {
  display: block;
  padding: 14px;
  background: #0b3d70;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.register-option:hover {
  background: #f0b400;
  color: #0b3d70;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 26px;
  cursor: pointer;
  color: #0b3d70;
}
.selected-teacher-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.15);
}
.team-page {
  padding: 80px 20px;
  background: #f7f7f7;
}

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

/* Tabs */
.team-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 25px;
  border-radius: 30px;
  border: none;
  background: #ddd;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.tab-btn.active {
  background: #c98a35;
  color: white;
}

/* Content */
.tab-content {
  display: none;
  background: white;
  padding: 30px;
  border-radius: 12px;
}

.tab-content.active {
  display: block;
}

/* Table */
.team-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.team-table th {
  background: #c98a35;
  color: white;
  padding: 12px;
}

.team-table td {
  padding: 12px;
  border: 1px solid #ddd;
}
.selected-teacher-content {
  max-width: 600px;
}

.selected-teacher-content h2 {
  font-size: 36px;
  color: #0b3d70;
  margin-bottom: 20px;
}

.selected-teacher-content h3 {
  font-size: 20px;
  margin-top: 20px;
  color: #0b3d70;
}

.selected-teacher-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.selected-teacher-content ul {
  margin-top: 10px;
  padding-left: 20px;
}

.selected-teacher-content li {
  margin-bottom: 8px;
  font-size: 16px;
}
.selected-teacher-card {
  width: 100%;
  height: 500px; /* istədiyin hündürlük */
  overflow: hidden;
  border-radius: 20px;
  transition: 0.3s ease;
}

.selected-teacher-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}
 .activity-detail-text h3 {
  font-size: 20px;
  margin-top: 20px;
  color: #0b3d70;
}

/* 🔥 Highlight box */
.highlight-box {
  margin-top: 25px;
  padding: 15px 18px;
  background: rgba(11, 61, 112, 0.06);
  border-left: 4px solid #f0b400;
  border-radius: 8px;
  font-weight: 500;
}
.register-btn {
   margin-top: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 16px 32px;
  border-radius: 50px;

  background: #1f4f8b;
  color: white;

  font-size: 18px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

  transition: all 0.35s ease;
}

/* 🔥 Hover */
.register-btn:hover {
  background: linear-gradient(135deg, #f5c21b, #f0b400);
  color: #0b3d70;

  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.partners-section {
  background: #ffffff;
  padding: 90px 60px;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.partner-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 45px;
}

.partner-card {
  background: #fff;
  border: 2px solid #315a38;
  min-height: 380px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.partner-top {
  position: relative;
  min-height: 190px;
  padding: 30px 20px 60px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}

.partner-top::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -36px;
  transform: translateX(-50%);
  width: 120%;
  height: 90px;
  background: inherit;
  clip-path: polygon(0 0, 50% 55%, 100% 0, 100% 25%, 50% 82%, 0 25%);
}

.partner-bottom {
  height: 220px;
  padding: 60px 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-bottom img {
  width: 100% !important;
  max-width: none !important;
}

.blue {
  background: #2c6e7f;
}

.teal {
  background: #2f8da5;
}

.orange {
  background: #c96b2c;
}

.red {
  background: #a94442;
}

@media (max-width: 992px) {
  .partner-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .partners-section {
    padding: 70px 20px;
  }

  .partner-cards {
    grid-template-columns: 1fr;
  }
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stats-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 45px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.stat-card {
  background: white;
  border-radius: 18px;
  padding: 34px 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #f0b400;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.stat-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: rgba(11, 61, 112, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon i {
  font-size: 28px;
  color: #0b3d70;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #0b3d70;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 18px;
  color: #333;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 70px 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-label {
    font-size: 16px;
  }
}
.floating-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0b3d70;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  font-size: 16px;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px 22px;
  border-radius: 999px;

  background: linear-gradient(135deg, #0b3d70, #155ca0);
  color: #fff;

  font-size: 16px;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 16px 35px rgba(11, 61, 112, 0.35);
  transition: 0.35s ease;

  animation: ctaPulse 2.5s infinite;
}

.floating-cta:hover {
  transform: translateY(-5px) scale(1.03);
  background: linear-gradient(135deg, #f0b400, #ffcf33);
  color: #0b3d70;
  box-shadow: 0 20px 45px rgba(240, 180, 0, 0.45);
}

.cta-badge {
  background: #f0b400;
  color: #0b3d70;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.floating-cta:hover .cta-badge {
  background: #0b3d70;
  color: #fff;
}

.cta-text {
  white-space: nowrap;
}

.cta-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
}

.floating-cta:hover .cta-arrow {
  transform: translateX(4px);
  background: rgba(11, 61, 112, 0.15);
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(240, 180, 0, 0.45),
                0 16px 35px rgba(11, 61, 112, 0.35);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(240, 180, 0, 0),
                0 16px 35px rgba(11, 61, 112, 0.35);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(240, 180, 0, 0),
                0 16px 35px rgba(11, 61, 112, 0.35);
  }
}

@media (max-width: 576px) {
  .floating-cta {
    left: 16px;
    right: 16px;
    bottom: 18px;
    justify-content: center;
    padding: 14px 16px;
    font-size: 14px;
  }

  .cta-badge {
    display: none;
  }

  .cta-text {
    white-space: normal;
    text-align: center;
  }
}
.image-slider-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.image-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.slider-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slider-image.active {
  opacity: 1;
}

.slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Nöqtələr artıq şəkilin çölündədir */
.dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #0b3d70;
  opacity: 0.35;
  cursor: pointer;
  transition: 0.3s ease;
}

.dot.active {
  background: #f0b400;
  opacity: 1;
  transform: scale(1.25);
}

@media (max-width: 768px) {
  .image-slider {
    height: 320px;
  }
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* əvvəl 12 idi → azaltdıq */

  padding: 14px 34px;

  background: linear-gradient(135deg, #0b3d70, #1f5fa5);
  color: white;

  font-size: 18px;
  font-weight: 700;

  border-radius: 50px;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(11, 61, 112, 0.25);
}

.button-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 22px;
  height: 22px;

font-size: 18px !important;
  line-height: 1;

  transform: translateY(-1px); /* ortalama fix */
}

.button:hover {
  background: linear-gradient(135deg, #f0b400, #ffcc33);
  color: #0b3d70;
  transform: translateY(-3px);
}
#scrollTopBtn {
  position: fixed;
  right: 24px;
  bottom: 120px; /* CTA düyməsinin üstündə olsun */

  width: 48px;
  height: 48px;
  border-radius: 50%;

  background: linear-gradient(135deg, #0b3d70, #155ca0);
  color: white;
  border: none;

  font-size: 20px;
  font-weight: bold;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(11, 61, 112, 0.3);

  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
   z-index: 10000;
}

#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}

#scrollTopBtn:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #f0b400, #ffcc33);
  color: #0b3d70;
}
.scroll-top-btn {
  position: fixed !important;
  right: 24px !important;
  bottom: 130px !important;
  z-index: 100000 !important;

  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;

  background: linear-gradient(135deg, #0b3d70, #155ca0);
  color: white;

  font-size: 24px;
  font-weight: 800;
  line-height: 1;

  display: flex !important;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  box-shadow: 0 12px 28px rgba(11, 61, 112, 0.35);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(12px);
  transition: 0.3s ease;
}

.scroll-top-btn.show {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: linear-gradient(135deg, #f0b400, #ffcc33);
  color: #0b3d70;
  transform: translateY(-4px);
}
.header-top-bar {
  height: 46px;
  background: #083763;
  padding: 0 60px;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;

  border-bottom: none;
}

.top-left a {
  color: white;
  font-size: 15px;
  font-weight: 700;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-socials a {
  color: white;
  font-size: 17px;
}

.top-socials a:hover {
  color: #f0b400;
}
.top-apply-btn {
  height: 46px;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f0b400;
  color: #0b3d70;

  font-size: 16px;
  font-weight: 700; /* əvvəl 900 idi */

  border-radius: 4px; /* əvvəl dümdüz idi */
  text-transform: none; /* 🔥 ƏN VACİB */
  letter-spacing: normal;

  transition: 0.3s ease;
}

.top-apply-btn:hover {
  background: white;
  color: #0b3d70;
}
html {
  scroll-behavior: smooth;
}
.video-box {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.section-video {
  width: 100%;
  height: auto;
  display: block;
}
/* =========================
   RESPONSIVE / MOBILE FIX
========================= */

/* Tablet */
@media (max-width: 992px) {
  .main-header {
    padding: 20px 30px;
  }

  .main-nav ul {
    gap: 18px;
  }

  .activities-cards,
  .events-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .header-top-bar {
    height: auto;
    padding: 10px 16px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .top-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .top-socials {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-apply-btn {
    height: 40px;
    padding: 0 18px;
    font-size: 15px;
  }

  .main-header {
    padding: 18px 20px;
    position: relative;
    flex-direction: row;
    justify-content: space-between;
  }

  .brand {
    gap: 10px;
  }

  .logo {
    height: 58px;
  }

  .brand-divider {
    height: 48px;
  }

  .brand a,
  .brand-text {
    font-size: 24px;
    line-height: 1.15;
    max-width: 190px;
  }

  .hamburger {
    display: block;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10001;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0b3d70;
    padding-top: 90px;
    z-index: 10000;
    transition: 0.35s ease;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 0 28px;
  }

  .main-nav ul li a {
    font-size: 18px;
  }

  .hero-video {
    height: 70vh;
    min-height: 520px;
  }

  .hero-content-left {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-line-1 {
    font-size: 38px;
  }

  .hero-line-2 {
    font-size: 28px;
  }

  .about-section,
  .activities-section,
  .events-section,
  .courses-section,
  .event-info-section,
  .activity-detail-section,
  .team-section,
  .partners-section {
    padding: 60px 20px;
  }

  .about-container,
  .event-info-container,
  .activity-detail-container {
    grid-template-columns: 1fr;
    display: grid;
    gap: 35px;
  }

  .about-image {
    flex: unset;
    width: 100%;
  }

  .activities-cards,
  .events-cards,
  .courses-highlight-grid,
  .values-grid,
  .stats-grid,
  .partner-cards,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .event-info-text h2,
  .page-hero h1 {
    font-size: 38px;
  }

  .section-title {
    font-size: 30px;
  }

  .image-slider {
    height: 320px;
  }

  .footer-top {
    padding: 0 20px 40px;
  }

  .footer-links-row {
    padding: 0 20px 28px;
    justify-content: center;
    text-align: center;
  }

  .floating-cta {
    left: 16px;
    right: 16px;
    bottom: 18px;
    justify-content: center;
    font-size: 14px;
  }

  .scroll-top-btn {
    right: 18px !important;
    bottom: 92px !important;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .brand a,
  .brand-text {
    font-size: 21px;
    max-width: 170px;
  }

  .logo {
    height: 52px;
  }

  .hero-line-1 {
    font-size: 32px;
  }

  .hero-line-2 {
    font-size: 24px;
  }

  .image-slider {
    height: 260px;
  }

  .button,
  .register-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
  }
}
#footer {
  scroll-margin-top: 120px;
}
.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0b3d70;
    padding-top: 100px;
    transition: 0.35s ease;
    z-index: 10000;
  }

  .main-nav.active {
    right: 0;
  }

  .hamburger {
    display: block;
  }
}
@media (max-width: 768px) {
  .main-header {
    padding: 14px 16px;
  }

  .brand-text {
    font-size: 20px;
    max-width: 170px;
  }

  .hero-video {
    min-height: 430px;
    height: 65vh;
  }

  .hero-line-1 {
    font-size: 30px;
  }

  .hero-line-2 {
    font-size: 24px;
  }

  .section-title {
    font-size: 28px;
  }

  .footer-column h3 {
    white-space: normal;
  }

  .social-icons {
    flex-wrap: wrap;
  }

  .floating-cta {
    width: auto;
    left: 12px;
    right: 12px;
  }
}
.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    color: white;
    font-size: 32px;
    cursor: pointer;
    z-index: 10001;
  }
}
@media (max-width: 768px) {
  .branch-btn.left,
  .branch-btn.right {
    position: static;
    transform: none;
    margin: 10px auto;
    display: block;
  }

  .side-arrow {
    display: none;
  }

  .branch-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.action-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.action-buttons .button {
  width: auto;
  min-width: 280px;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .action-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .action-buttons .button {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  .contact-card {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .contact-card h3 {
    font-size: 20px;
  }

  .contact-card p,
  .contact-card a {
    font-size: 16px;
    word-break: break-word;
  }
}
.seminar-card img {
  object-fit: cover;
  object-position: 50% 85%;
}
@media (max-width: 768px) {
  .hero-video {
    height: auto;
    min-height: 0;
    background: #0b3d70;
  }

  .hero-bg-video {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content-left {
    position: absolute;
    left: 0;
    top: 28%;
    padding: 0 24px;
  }

  .hero-line-1 {
    font-size: 34px;
    line-height: 1.05;
  }

  .hero-line-2 {
    font-size: 24px;
    line-height: 1.1;
  }
}