/* Events Countdown Section */
.events-countdown-section {
  background: linear-gradient(180deg, #c5e9ed 0%, #e8f8f9 100%);
  padding: 4rem 0;
  position: relative;
}

.countdown-container {
  padding: 2rem;
}

.countdown-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.countdown-title {
  font-size: 3rem;
  font-weight: 300;
  color: #00bcd4;
  font-style: italic;
  margin: 0;
}

.highlight-text {
  font-weight: 800;
  font-style: normal;
}

.megaphone-icon {
  width: 80px;
  height: 60px;
}

.countdown-boxes {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.countdown-box {
  text-align: center;
}

.countdown-flip {
  display: flex;
  gap: 0.3rem;
}

.countdown-number {
  background: #1e3a5f;
  color: white;
  width: 60px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.countdown-separator {
  font-size: 3rem;
  color: #1e3a5f;
  font-weight: 700;
}

.countdown-label {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #00bcd4;
  font-weight: 600;
  background: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  display: inline-block;
}

.btn-join-event {
  background: #00bcd4;
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,188,212,0.3);
}

.btn-join-event:hover {
  background: #00a5bb;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,188,212,0.4);
}

.btn-join-event i {
  margin-left: 0.5rem;
}

.event-banner-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border: 8px solid white;
}

.event-banner-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.event-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(30,58,95,0.8) 0%, rgba(30,58,95,0.95) 100%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-logos {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.event-logos img {
  height: 60px;
  filter: brightness(0) invert(1);
}

.event-banner-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.event-banner-date {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.event-banner-location {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.tmv-logo {
  width: 200px;
  margin-top: auto;
}

/* Activities Section */
.activities-section {
  background: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 120px;
}

.wave-top svg,
.wave-bottom svg {
  width: 100%;
  height: 100%;
}

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

.decorative-leaves {
  position: absolute;
  opacity: 0.4;
}

.left-leaves {
  left: -50px;
  top: 20%;
  width: 200px;
  height: 400px;
}

.right-leaves {
  right: -50px;
  top: 10%;
  width: 200px;
  height: 400px;
}

.activities-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: #00bcd4;
  margin-bottom: 4rem;
  letter-spacing: 2px;
}

.activity-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.activity-icon-box {
  background: #1e3a5f;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.activity-icon-box i {
  font-size: 2rem;
  color: white;
}

.activity-content {
  flex: 1;
}

.activity-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 0.8rem;
}

.activity-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

.tent-illustration{
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  opacity: 0.9;
}

.student-illustration{
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  opacity: 0.9;
}

.tent-illustration svg,
.student-illustration svg {
  width: 300px;
  max-width: 100%;
}

/* Countdown Timer Script */

/* Registration Section */
.registration-section {
  background: linear-gradient(180deg, #b8e5ea 0%, #d4f1f4 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.decorative-swirls {
  position: absolute;
  width: 200px;
  height: 300px;
  z-index: 1;
}

.left-swirl {
  left: 5%;
  top: 20%;
}

.right-swirl {
  right: 5%;
  bottom: 20%;
}

/* Registration Form Card */
.registration-form-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.15);
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 4px solid #e0f4f6;
}

.form-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff5252;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s;
}

.form-close-btn:hover {
  background: #ff1744;
  transform: rotate(90deg);
}

.form-header {
  background: #00bcd4;
  padding: 1.5rem;
  text-align: center;
}

.form-title {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.form-body {
  background: #1e3a5f;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 25px;
  font-size: 0.95rem;
  outline: none;
  background: white;
  color: #333;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #999;
}

.form-textarea {
  border-radius: 15px;
  resize: none;
  font-family: 'Poppins', sans-serif;
}

.form-check-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-check-label {
  color: white;
  font-size: 0.9rem;
  margin: 0;
  cursor: pointer;
}

.form-submit-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.btn-submit {
  background: #00bcd4;
  color: white;
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  flex: 1;
}

.btn-submit:hover {
  background: #00a5bb;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,188,212,0.3);
}

.form-logo {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

.form-footer {
  background: #152945;
  padding: 1.5rem 2rem;
}

.other-login-title {
  color: white;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-login-btn {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  transition: all 0.3s;
}

.facebook-btn {
  background: #1877f2;
  color: white;
}

.facebook-btn:hover {
  background: #0d65d9;
}

.google-btn {
  background: white;
  color: #333;
}

.google-btn:hover {
  background: #f5f5f5;
}

.social-login-btn i {
  font-size: 1.2rem;
}

/* Registration Illustration */
.registration-illustration {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  width: 350px;
  height: 550px;
  background: white;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  border: 12px solid #1e3a5f;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9fa 100%);
  padding: 2rem 1.5rem;
  position: relative;
}

.phone-content {
  position: relative;
  height: 100%;
}

.graduation-cap {
  position: absolute;
  top: -20px;
  right: 20px;
  width: 120px;
}

.app-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.app-logo img {
  width: 100%;
  height: 100%;
}

.app-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.app-subtitle {
  font-weight: 400;
}

.app-highlight {
  color: #00bcd4;
  font-weight: 800;
}

.app-bookmark {
  position: absolute;
  left: 20px;
  bottom: 150px;
  font-size: 3rem;
  color: #2563eb;
}

.app-rating {
  position: absolute;
  bottom: 80px;
  left: 20px;
  display: flex;
  gap: 0.3rem;
}

.app-rating i {
  color: #00bcd4;
  font-size: 1.2rem;
}

.app-glasses {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
}

.person-left {
  position: absolute;
  left: -50px;
  bottom: 50px;
  width: 150px;
  z-index: 1;
}

.person-right {
  position: absolute;
  right: -30px;
  bottom: 50px;
  width: 150px;
  z-index: 1;
}

.plant-decoration {
  position: absolute;
  right: 50px;
  bottom: 30px;
  width: 100px;
  z-index: 3;
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.icon-clock {
  position: absolute;
  top: 15%;
  left: -10%;
  width: 70px;
  animation: float 3s ease-in-out infinite;
}

.icon-megaphone {
  position: absolute;
  top: 10%;
  right: -8%;
  width: 90px;
  animation: float 4s ease-in-out infinite 1s;
}

.icon-lightbulb {
  position: absolute;
  top: 45%;
  right: -5%;
  width: 60px;
  animation: float 3.5s ease-in-out infinite 0.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 992px) {
  .registration-illustration {
    margin-top: 3rem;
    height: 500px;
  }

  .phone-mockup {
    width: 280px;
    height: 450px;
  }

  .person-left,
  .person-right {
    width: 100px;
  }
}

/* Calendar Section */
.calendar-section {
  background: linear-gradient(180deg, #c5e9ed 0%, #b8e5ea 100%);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}

.decorative-swirl.top-right {
  position: absolute;
  top: 5%;
  right: 10%;
  width: 300px;
  height: 400px;
}

/* Photo Collage */
.photo-collage {
  position: relative;
  height: 600px;
  padding: 2rem;
}

.photo-item {
  position: absolute;
  transition: transform 0.3s;
}

.photo-item:hover {
  transform: scale(1.05) rotate(0deg) !important;
  z-index: 10;
}

.photo-frame {
  background: white;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border-radius: 8px;
  transform: rotate(0deg);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.photo-1 {
  top: 10%;
  left: 5%;
  transform: rotate(-8deg);
}

.photo-1 .photo-frame {
  width: 320px;
  height: 220px;
}

.photo-2 {
  top: 40%;
  left: 15%;
  transform: rotate(5deg);
  z-index: 2;
}

.photo-2 .photo-frame {
  width: 350px;
  height: 240px;
}

.photo-3 {
  bottom: 10%;
  left: 10%;
  transform: rotate(-6deg);
}

.photo-3 .photo-frame {
  width: 300px;
  height: 200px;
}

/* Calendar Widget Container */
.calendar-widget-container {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-circle {
  width: 550px;
  height: 550px;
  background: linear-gradient(135deg, #00bcd4 0%, #00a5bb 100%);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,188,212,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-circle::before {
  content: '';
  position: absolute;
  top: -15px;
  right: 20%;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.15);
  border-radius: 50% 50% 0 50%;
  transform: rotate(-30deg);
}

.calendar-circle-inner {
  width: 95%;
  height: 95%;
  position: relative;
}

.calendar-widget-title {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 2px;
  z-index: 2;
}

.calendar-tabs {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
  z-index: 2;
}

.calendar-tab {
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,0.4);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
}

.calendar-tab.active {
  background: white;
  width: 80px;
}

.calendar-widget {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  width: 380px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.calendar-header-month {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.month-name {
  font-size: 2rem;
  font-weight: 700;
  color: #00bcd4;
  margin-bottom: 0.3rem;
}

.month-subtitle {
  font-size: 0.9rem;
  color: #999;
  margin: 0;
}

.weather-icon {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 2.5rem;
  color: #00bcd4;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-weekday {
  height: 30px;
}

.calendar-date {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.calendar-date:hover:not(.empty) {
  background: #f0f9fa;
  transform: scale(1.1);
}

.calendar-date.empty {
  cursor: default;
}

.calendar-date.highlighted {
  background: #00bcd4;
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0,188,212,0.4);
  position: relative;
}

.calendar-date.highlighted::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 50%;
}

.decorative-leaves-cal {
  position: absolute;
  bottom: 5%;
  right: 8%;
  width: 150px;
  opacity: 0.6;
}

/* Event Tooltips */
.event-tooltip {
  position: absolute;
  background: #1e3a5f;
  border-radius: 15px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  z-index: 5;
  animation: float 3s ease-in-out infinite;
}

.tooltip-1 {
  top: 25%;
  left: -15%;
}

.tooltip-2 {
  top: 15%;
  right: -12%;
  animation-delay: 1s;
}

.tooltip-icon {
  background: rgba(255,255,255,0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.tooltip-content {
  color: white !important;
}

.tooltip-date {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 0.2rem 0;
  color: #ffffff;
}

.tooltip-text {
  font-size: 0.9rem;
  margin: 0;
  color: #ffffff;

}

.tooltip-check {
  background: #00bcd4;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  margin-left: 0.5rem;
}

/* Event Markers */
.event-marker {
  position: absolute;
  width: 40px;
  z-index: 4;
  animation: bounce 2s ease-in-out infinite;
}

.marker-1 {
  bottom: 20%;
  left: -8%;
}

.marker-2 {
  bottom: 25%;
  right: 5%;
  animation-delay: 0.5s;
}

/* Wave Divider */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 1;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

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

@media (max-width: 992px) {
  .photo-collage {
    height: 400px;
    margin-bottom: 3rem;
  }

  .photo-1 .photo-frame,
  .photo-2 .photo-frame,
  .photo-3 .photo-frame {
    width: 220px;
    height: 160px;
  }

  .calendar-circle {
    width: 450px;
    height: 450px;
  }

  .calendar-widget {
    width: 320px;
    padding: 1.5rem 1rem;
  }

  .event-tooltip {
    display: none;
  }
}


   /* News Section */
 .news-section {
   background: #2c4e6f;
   padding: 0 0 5rem;
   position: relative;
 }

.news-header-banner {
  background: linear-gradient(to right, #1e3a5f 0%, #1e3a5f 20%, transparent 20%);
  padding: 3rem 0;
  margin-bottom: 3rem;
  position: relative;
}

.news-header-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 25%;
  height: 100%;
  background: #1e3a5f;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
  border: 4px solid #00bcd4;
  border-right: none;
}

.news-main-title {
  color: white;
  font-size: 3.5rem;
  font-weight: 900;
  padding-left: 15%;
  margin: 0;
  position: relative;
  z-index: 2;
  letter-spacing: 3px;
}

/* News Tabs */
.news-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.news-tab {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 0.7rem 1.8rem;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.news-tab:hover,
.news-tab.active {
  background: #00bcd4;
  border-color: #00bcd4;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,188,212,0.3);
}

/* News List */
.news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  border: 2px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.news-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: #00bcd4;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,188,212,0.2);
}

.news-date-badge {
  flex-shrink: 0;
}

.date-circle {
  width: 80px;
  height: 80px;
  background: #00bcd4;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255,255,255,0.2);
  position: relative;
}

.date-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(0,188,212,0.3);
}

.date-day {
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.date-month {
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.news-content {
  flex: 1;
}

.news-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

/* Featured News Card */
.featured-news-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
  border: 4px solid rgba(255,255,255,0.2);
  position: sticky;
  top: 100px;
}

.featured-news-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

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

.featured-news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,58,95,0.7) 0%, rgba(30,58,95,0.95) 100%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-logos {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.featured-logos img {
  width: 110px;
  filter: brightness(0) invert(1);
}

.featured-news-title {
  color: white;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.featured-news-date {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.featured-news-date i {
  color: #ff5252;
  margin-right: 0.5rem;
}

.featured-news-location {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.featured-tmv-logo {
  width: 180px;
  margin-top: auto;
}

.featured-news-content {
  padding: 2rem;
}

.featured-content-title {
  color: #1e3a5f;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.featured-content-box {
  background: #f0f9fa;
  border: 2px solid #00bcd4;
  border-radius: 12px;
  padding: 1.5rem;
}

.featured-content-text {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 992px) {
  .news-main-title {
    font-size: 2.5rem;
    padding-left: 10%;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .featured-news-card {
    margin-top: 3rem;
    position: static;
  }

  .news-header-banner::before {
    width: 35%;
  }
}

@media (max-width: 768px) {
  .news-tabs {
    gap: 0.5rem;
  }

  .news-tab {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .date-circle {
    width: 65px;
    height: 65px;
  }

  .date-day {
    font-size: 1.5rem;
  }

  .date-month {
    font-size: 0.65rem;
  }

  .news-title {
    font-size: 1rem;
  }
}

   /* World Maarif Section - NEW */
 .world-maarif-section-new {
   background: linear-gradient(180deg, #2c4e6f 0%, #1e3a5f 100%);
   padding: 5rem 0;
   position: relative;
 }

/* World Stats Header */
.world-stats-header {
  text-align: center;
  margin-bottom: 3rem;
}

.header-border-box {
  display: inline-block;
  border: 4px solid #00bcd4;
  padding: 1.5rem 4rem;
  border-radius: 15px;
  background: rgba(0,188,212,0.1);
  box-shadow: 0 0 30px rgba(0,188,212,0.3);
  margin-bottom: 120px;
}

.world-main-title {
  color: white;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 4px;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

/* Stats Circles Row */
.stats-circles-row {
  position: relative;
  margin-bottom: 4rem;
}

.wave-background {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
}

.wave-background svg {
  width: 100%;
  height: 100%;
}

.stats-circles-container {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  padding: 0 5%;
  position: relative;
  z-index: 2;
}

.stat-circle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-out;
}

.stat-circle-wrapper:nth-child(1) { animation-delay: 0.1s; }
.stat-circle-wrapper:nth-child(2) { animation-delay: 0.2s; }
.stat-circle-wrapper:nth-child(3) { animation-delay: 0.3s; }
.stat-circle-wrapper:nth-child(4) { animation-delay: 0.4s; }
.stat-circle-wrapper:nth-child(5) { animation-delay: 0.5s; }

.stat-circle-outer {
  position: relative;
  animation: float 4s ease-in-out infinite;
}

.stat-circle-outer:nth-child(odd) {
  animation-delay: 1s;
}

.stat-icon-circle {
  width: 110px;
  height: 110px;
  background: #1e3a5f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #00bcd4;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4),
  0 0 0 10px rgba(0,188,212,0.2),
  0 0 0 20px rgba(0,188,212,0.1);
  transition: all 0.3s;
}

.stat-icon-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 50px rgba(0,188,212,0.6),
  0 0 0 15px rgba(0,188,212,0.3);
}

.icon-svg {
  width: 60px;
  height: 60px;
}

.stat-number-display {
  font-size: 3rem;
  font-weight: 900;
  color: #00bcd4;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  line-height: 1;
}

.stat-label-display {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e3a5f;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: #b8e5ea;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
}

/* World Map Section */
.world-map-section {
  background: #b8e5ea;
  padding: 4rem 0;
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.world-map-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.95) contrast(1.1);
}

.map-overlay-markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.country-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}

.marker-pulse {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,188,212,0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s ease-out infinite;
}

.marker-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #00bcd4;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

.country-marker:hover .marker-dot {
  transform: translate(-50%, -50%) scale(1.3);
  box-shadow: 0 5px 20px rgba(0,188,212,0.6);
}

/* Turkey Marker - Special */
.turkey-marker .turkey-pulse {
  background: rgba(255,82,82,0.4);
  animation: pulse 1.5s ease-out infinite;
}

.turkey-marker .turkey-dot {
  background: #ff5252;
  width: 20px;
  height: 20px;
}

.turkey-marker:hover .turkey-dot {
  transform: translate(-50%, -50%) scale(1.4);
  box-shadow: 0 5px 20px rgba(255,82,82,0.8);
}

/* Map Tooltip */
.map-tooltip {
  position: absolute;
  background: #1e3a5f;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 1000;
  border: 3px solid #00bcd4;
  min-width: 150px;
}

.map-tooltip.active {
  opacity: 1;
  transform: translateY(0);
}

.tooltip-country-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #00bcd4;
}

.tooltip-schools-info {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@media (max-width: 1200px) {
  .stats-circles-container {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .stat-circle-wrapper {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .world-main-title {
    font-size: 2rem;
  }

  .stat-icon-circle {
    width: 80px;
    height: 80px;
  }

  .icon-svg {
    width: 45px;
    height: 45px;
  }

  .stat-number-display {
    font-size: 2rem;
  }

  .country-marker {
    transform: scale(0.8) translate(-50%, -50%);
  }
}

   /* Speakers Section */
 .speakers-section {
   background: linear-gradient(180deg, #b8e5ea 0%, #2d3e82 20%);
   position: relative;
   overflow: hidden;
   padding-bottom: 5rem;
 }

/* Audience Silhouettes */
.audience-silhouettes {
  padding: 2rem 0;
  background: linear-gradient(180deg, #b8e5ea 0%, #7c8fb8 50%, #4a5a9e 100%);
}

.silhouette-row {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: -15px;
}

.silhouette {
  width: 50px;
  height: 60px;
  position: relative;
}

.silhouette::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: #2d3e82;
  border-radius: 50%;
}

.silhouette::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  background: #2d3e82;
  border-radius: 50% 50% 0 0;
}

.row-1 .silhouette::before,
.row-1 .silhouette::after {
  background: rgba(45, 62, 130, 0.3);
}

.row-2 .silhouette::before,
.row-2 .silhouette::after {
  background: rgba(45, 62, 130, 0.5);
}

.row-3 .silhouette::before,
.row-3 .silhouette::after {
  background: rgba(45, 62, 130, 0.8);
}

/* Speakers Content */
.speakers-content {
  background: #2d3e82;
  padding: 3rem 0;
  position: relative;
}

/* Decorative Elements */
.decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.deco-item {
  position: absolute;
  color: rgba(255,255,255,0.1);
  font-size: 2rem;
}

.deco-1 {
  top: 15%;
  left: 8%;
  transform: rotate(45deg);
  animation: float 4s ease-in-out infinite;
}

.deco-2 {
  top: 25%;
  left: 12%;
  font-size: 1.5rem;
  animation: float 5s ease-in-out infinite 1s;
}

.deco-3 {
  top: 45%;
  left: 5%;
  font-size: 2.5rem;
  animation: float 6s ease-in-out infinite 0.5s;
}

.deco-4 {
  top: 45%;
  right: 5%;
  font-size: 2.5rem;
  animation: float 5.5s ease-in-out infinite 1.5s;
}

.deco-5 {
  top: 30%;
  right: 15%;
  font-size: 1.8rem;
  animation: float 4.5s ease-in-out infinite 0.8s;
}

.deco-6 {
  top: 60%;
  right: 10%;
  transform: rotate(45deg);
  font-size: 2rem;
  animation: float 5s ease-in-out infinite 2s;
}

.deco-7 {
  bottom: 15%;
  left: 15%;
  font-size: 1.5rem;
  animation: float 4s ease-in-out infinite 1.2s;
}

/* Speakers Header Banner */
.speakers-header-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
  position: relative;
}

.banner-ribbon {
  background: white;
  padding: 1.5rem 5rem;
  clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
}

.banner-ribbon::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(to right, #00bcd4 0%, #00bcd4 100%);
  clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
}

.speakers-title {
  color: #2d3e82;
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0;
  letter-spacing: 3px;
}

.microphone-bubble {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 5px solid #00bcd4;
}

.microphone-bubble::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 30%;
  width: 30px;
  height: 30px;
  background: white;
  border-right: 5px solid #00bcd4;
  border-bottom: 5px solid #00bcd4;
  border-radius: 0 0 20px 0;
  transform: skewX(-10deg);
}

.microphone-bubble i {
  font-size: 3rem;
  color: #2d3e82;
}

/* Speakers Slider */
.speakers-slider {
  display: flex;
  gap: 3rem;
  padding: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.speakers-slider::-webkit-scrollbar {
  display: none;
}

.speaker-card-wrapper {
  flex: 0 0 350px;
  position: relative;
}

.speaker-card {
  background: rgba(20,30,70,0.8);
  border-radius: 25px;
  padding: 2rem;
  position: relative;
  border: 3px solid rgba(0,188,212,0.3);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transition: all 0.3s;
}

.speaker-card:hover {
  transform: translateY(-10px);
  border-color: #00bcd4;
  box-shadow: 0 15px 50px rgba(0,188,212,0.4);
}

.quote-icon-top {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 3rem;
  color: #00bcd4;
  opacity: 0.3;
}

.speaker-photo-container {
  margin: 2rem 0 1.5rem;
  display: flex;
  justify-content: center;
}

.photo-frame {
  width: 150px;
  height: 180px;
  background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
  padding: 8px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,188,212,0.4);
}

.photo-frame::before {
  content: '';
  position: absolute;
  inset: -5px;
  background: linear-gradient(135deg, #00bcd4, transparent);
  border-radius: 15px;
  z-index: -1;
  opacity: 0.5;
}

.speaker-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.speaker-info-badge {
  text-align: center;
  margin-bottom: 1.5rem;
}

.speaker-name-badge {
  background: #00bcd4;
  color: white;
  padding: 0.6rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0,188,212,0.4);
}

.speaker-quote {
  background: rgba(255,255,255,0.05);
  border-left: 4px solid #00bcd4;
  padding: 1.5rem;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}

.speaker-quote p {
  color: white;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

/* Connection Lines */
.connection-line {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, #00bcd4, transparent);
}

.icon-connector {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: rgba(20,30,70,0.9);
  border: 3px solid #00bcd4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00bcd4;
  font-size: 1.5rem;
  box-shadow: 0 5px 20px rgba(0,188,212,0.3);
}

/* Slider Arrow */
.slider-arrow {
  position: absolute;
  bottom: 5rem;
  right: 3rem;
  width: 60px;
  height: 60px;
  background: #00bcd4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,188,212,0.4);
  transition: all 0.3s;
  z-index: 10;
}

.slider-arrow:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0,188,212,0.6);
}

.slider-arrow i {
  color: white;
  font-size: 1.5rem;
  margin-left: -5px;
}

.slider-arrow i:last-child {
  margin-left: -15px;
}

@media (max-width: 992px) {
  .speakers-title {
    font-size: 1.8rem;
  }

  .microphone-bubble {
    width: 80px;
    height: 80px;
    right: -30px;
  }

  .microphone-bubble i {
    font-size: 2rem;
  }

  .speakers-slider {
    gap: 1.5rem;
  }

  .speaker-card-wrapper {
    flex: 0 0 280px;
  }

  .silhouette {
    width: 35px;
    height: 45px;
  }

  .silhouette::before {
    width: 22px;
    height: 22px;
  }

  .silhouette::after {
    width: 25px;
    height: 25px;
  }
}



   /* Student Leaders Section */
 .student-leaders-section {
   background: #2d3e82;
   padding: 5rem 0;
   position: relative;
 }

/* Leaders Header Banner */
.leaders-header-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
  position: relative;
}

.banner-ribbon-leaders {
  background: white;
  padding: 1.5rem 5rem;
  clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
}

.banner-ribbon-leaders::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(to right, #00bcd4 0%, #00bcd4 100%);
  clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
}

.leaders-title {
  color: #2d3e82;
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0;
  letter-spacing: 3px;
}

.book-bubble {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 5px solid #00bcd4;
}

.book-bubble::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 30%;
  width: 30px;
  height: 30px;
  background: white;
  border-right: 5px solid #00bcd4;
  border-bottom: 5px solid #00bcd4;
  border-radius: 0 0 20px 0;
  transform: skewX(-10deg);
}

.book-icon {
  width: 70px;
  height: 70px;
}

/* Leaders Container */
.leaders-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.leaders-card {
  background: rgba(20,30,70,0.6);
  border-radius: 40px;
  padding: 4rem 3rem 3rem;
  position: relative;
  border: 3px solid rgba(0,188,212,0.3);
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

/* Connection Wave */
.connection-wave {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 150px;
  pointer-events: none;
}

.wave-connector {
  width: 100%;
  height: 100%;
}

.wave-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(20,30,70,0.9);
  border: 3px solid #00bcd4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00bcd4;
  font-size: 1.2rem;
  animation: float 3s ease-in-out infinite;
}

.wave-icon:nth-child(odd) {
  animation-delay: 0.5s;
}

.icon-rocket {
  transform: translateY(-50%) rotate(-45deg);
}

.icon-rocket i {
  transform: rotate(45deg);
}

.icon-rocket-2 {
  transform: translateY(-50%) rotate(-45deg);
}

.icon-rocket-2 i {
  transform: rotate(45deg);
}

/* Leaders Grid */
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  padding: 4rem 2rem 2rem;
  position: relative;
}

.leader-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s;
}

.leader-item:hover {
  transform: translateY(-10px);
}

.leader-photo-wrapper {
  position: relative;
}

.leader-photo-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
  box-shadow: 0 10px 40px rgba(0,188,212,0.4);
  position: relative;
}

.leader-photo-ring::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00bcd4, transparent);
  opacity: 0.3;
  z-index: -1;
}

.leader-photo-ring::after {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 3px solid rgba(0,188,212,0.3);
}

.leader-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
}

.leader-name-badge {
  background: #00bcd4;
  padding: 0.7rem 2.5rem;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0,188,212,0.4);
}

.leader-name {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
}

.leader-city-badge {
  background: transparent;
  border: 2px solid white;
  padding: 0.5rem 2rem;
  border-radius: 25px;
}

.leader-city {
  color: white;
  font-size: 1rem;
  font-weight: 600;
}

/* Leaders Arrow */
.leaders-arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #00bcd4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,188,212,0.4);
  transition: all 0.3s;
}

.leaders-arrow:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0,188,212,0.6);
}

.leaders-arrow i {
  color: white;
  font-size: 1.5rem;
  margin-left: -5px;
}

.leaders-arrow i:last-child {
  margin-left: -15px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(-65px);
  }
}

@media (max-width: 992px) {
  .leaders-title {
    font-size: 1.8rem;
  }

  .book-bubble {
    width: 80px;
    height: 80px;
    right: -30px;
  }

  .book-icon {
    width: 50px;
    height: 50px;
  }

  .leaders-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1rem 2rem;
  }

  .leader-photo-ring {
    width: 150px;
    height: 150px;
  }

  .connection-wave {
    display: none;
  }
}

@media (max-width: 768px) {
  .banner-ribbon-leaders {
    padding: 1rem 2rem;
  }

  .leaders-card {
    padding: 3rem 1.5rem 2rem;
    border-radius: 25px;
  }
}

   /* Newsletter Section */
 .newsletter-section {
   background: #2d3e82;
   padding: 5rem 0;
   position: relative;
 }

.newsletter-box {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #3d4e9f 0%, #2d3e82 100%);
  border-radius: 80px;
  padding: 4rem;
  text-align: center;
  border: 6px solid #b8e5ea;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(184, 229, 234, 0.1);
  border-radius: 50%;
}

.newsletter-box::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(184, 229, 234, 0.08);
  border-radius: 50%;
}

.newsletter-title {
  color: #b8e5ea;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.newsletter-subtitle {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  position: relative;
  z-index: 2;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.newsletter-email-input {
  flex: 1;
  padding: 1.2rem 2rem;
  border-radius: 50px;
  border: 3px solid #b8e5ea;
  font-size: 1rem;
  outline: none;
  background: white;
  color: #2d3e82;
  font-weight: 600;
  transition: all 0.3s;
}

.newsletter-email-input::placeholder {
  color: #8899bb;
}

.newsletter-email-input:focus {
  border-color: #00bcd4;
  box-shadow: 0 0 0 5px rgba(0,188,212,0.2);
}

.newsletter-submit-btn {
  background: #b8e5ea;
  color: #2d3e82;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 5px 20px rgba(184, 229, 234, 0.3);
}

.newsletter-submit-btn:hover {
  background: #00bcd4;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,188,212,0.5);
}

/* Footer Section */
.footer-section {
  background: #b8e5ea;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo-section {
  flex: 0 0 250px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-svg {
  width: 80px;
  height: 80px;
}

.logo-text-footer {
  display: flex;
  flex-direction: column;
}

.logo-maarif {
  font-size: 1.3rem;
  font-weight: 800;
  color: #2d3e82;
  letter-spacing: 1px;
}

.logo-mezun {
  font-size: 1.5rem;
  font-weight: 900;
  color: #d4a574;
  letter-spacing: 1px;
}

.footer-columns {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column-title {
  color: #2d3e82;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-link {
  color: #2d3e82;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link:hover {
  color: #00bcd4;
  transform: translateX(5px);
}

.footer-link i {
  font-size: 1.1rem;
}

.footer-address {
  color: #2d3e82;
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 600;
}

.footer-phone {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.footer-phone i {
  font-size: 1.2rem;
  color: #00bcd4;
}

.footer-bottom {
  border-top: 2px solid rgba(45, 62, 130, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #2d3e82;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-logo-section {
    flex: none;
  }

  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .newsletter-box {
    border-radius: 40px;
    padding: 2.5rem 1.5rem;
  }

  .newsletter-title {
    font-size: 2rem;
  }

  .newsletter-subtitle {
    font-size: 0.95rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-submit-btn {
    width: 100%;
  }

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

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

   /* KÖK: değiştirilebilir temalar */
 :root{
   --wood1:#8b5e3c;
   --wood2:#a8744f;
   --wood3:#6f4b2f;
   --edge:#513522;
   --bolt:#e9e1d2;
   --shadow:rgba(0,0,0,.28);
   --accent:#00bcd4; /* yazı vurgusu */
 }

/* SARMALAYICI */
.camp-sign-wrap{
  position:relative;
  display:inline-block;
  padding: 32px 16px 18px;
}

/* DİREK */
.camp-post{
  position:absolute;
  left:24px;
  bottom:0;
  width:18px;
  height:140px;
  border-radius:6px;
  background:
          linear-gradient(180deg,var(--wood2),var(--wood1));
  box-shadow: inset 0 0 0 2px var(--edge), 0 8px 20px var(--shadow);
}
.camp-post::after{
  content:"";
  position:absolute;
  top:-10px; left:-4px;
  width:26px; height:10px;
  border-radius:6px 6px 2px 2px;
  background:linear-gradient(180deg,var(--wood3),var(--wood2));
  box-shadow: inset 0 0 0 2px var(--edge);
}

/* OK TABELA (link) */
.camp-sign{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:280px;
  padding:16px 56px 16px 32px;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.3px;
  text-transform:none;
  filter: drop-shadow(0 10px 24px var(--shadow));
  transform-origin: 28px 50%;
  /* hafif rüzgar */
  animation: campSway 4.6s ease-in-out infinite alternate;
}

/* Ahşap doku + ok şekli */
.camp-sign::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:10px;
  background:
          linear-gradient(180deg,rgba(255,255,255,.06),transparent 40%),
          repeating-linear-gradient( -10deg, rgba(0,0,0,.05) 0 6px, rgba(255,255,255,.05) 6px 12px),
          linear-gradient(180deg,var(--wood2),var(--wood1) 55%, var(--wood3));
  /* ok ucu */
  -webkit-clip-path: polygon(0% 0%, calc(100% - 40px) 0%, 100% 50%, calc(100% - 40px) 100%, 0% 100%);
  clip-path: polygon(0% 0%, calc(100% - 40px) 0%, 100% 50%, calc(100% - 40px) 100%, 0% 100%);
  box-shadow:
          inset 0 0 0 3px var(--edge),
          inset 0 -8px 20px rgba(0,0,0,.15);
  z-index:-1;
}

/* Cıvatalar */
.camp-sign::after{
  content:"";
  position:absolute;
  left:18px; right:72px; top:50%;
  height:0;
  border-top:2px dashed rgba(0,0,0,.2);
}
.camp-sign .camp-sign__label{
  position:relative;
  z-index:1;
  text-shadow:0 1px 0 rgba(0,0,0,.25);
  /* küçük bir parıltı */
  background: linear-gradient(90deg,#fff,#fff 40%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color:transparent;
}

/* Ok ucunda metal çerçeve */
.camp-sign .camp-sign__label::after{
  content:"";
  position:absolute;
  right:-36px; top:50%;
  transform:translateY(-50%);
  width:18px; height:18px;
  border-radius:50%;
  background: radial-gradient(circle at 35% 35%, #fff, var(--bolt) 50%, #bfb7a8);
  box-shadow: 0 0 0 2px rgba(0,0,0,.15);
}

/* ÇİM */
.camp-grass{
  position:absolute;
  left:0; right:0; bottom:-4px;
  height:16px;
  background:
          radial-gradient(12px 8px at 20% 0, #2b8f5e 0 50%, transparent 52%),
          radial-gradient(12px 8px at 40% 0, #2a7f56 0 50%, transparent 52%),
          radial-gradient(12px 8px at 60% 0, #2b8f5e 0 50%, transparent 52%),
          radial-gradient(12px 8px at 80% 0, #2a7f56 0 50%, transparent 52%);
  filter: blur(.2px);
  opacity:.9;
}

/* HAFİF PARLAMA GEÇİŞİ */
.camp-sign:hover .camp-sign__label{
  background: linear-gradient(90deg,#fff,#fff 20%, var(--accent), #fff 80%, #fff);
  background-size: 200% auto;
  animation: shine 1.6s linear infinite;
}

/* Hover’da ok hafif yukarı kalksın */
.camp-sign:hover{
  transform: translateY(-2px) rotate(-1deg);
  transition: transform .25s ease;
}

/* Odak görünürlüğü */
.camp-sign:focus-visible{
  outline: 3px dashed var(--accent);
  outline-offset: 6px;
}

/* Animasyonlar */
@keyframes campSway{
  0%   { transform: rotate(-1.2deg) }
  100% { transform: rotate(1.2deg) }
}
@keyframes shine{
  0%   { background-position: 0% 50% }
  100% { background-position: 200% 50% }
}

/* Hareketi azaltma tercihi */
@media (prefers-reduced-motion: reduce){
  .camp-sign, .camp-sign:hover .camp-sign__label{
    animation: none !important;
  }
}

/* Boyutlandırma ve kolay tema değişkenleri */
.tent-svg{
  width: 360px;      /* ihtiyacına göre: 300–420px güzel durur */
  max-width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* Bayrak dalgalanması (saf CSS) */
.flag{
  transform-origin: 0% 10%;
  animation: flagWave 2.8s ease-in-out infinite;
}
.flag-cloth{
  transform-origin: 0% 10%;
  animation: clothRipple 1.6s ease-in-out infinite;
}
.flag-stripe{
  transform-origin: 0% 10%;
  animation: shine 1.6s linear infinite;
  transform-box: fill-box;
}

/* Animasyonlar */
@keyframes flagWave{
  0%   { transform: rotate(-6deg) skewY(-2deg) translateY(0); }
  50%  { transform: rotate(4deg)  skewY(2deg)  translateY(-1px); }
  100% { transform: rotate(-6deg) skewY(-2deg) translateY(0); }
}
@keyframes clothRipple{
  0%   { transform: skewX(0deg) }
  50%  { transform: skewX(-4deg) }
  100% { transform: skewX(0deg) }
}
@keyframes shine{
  0%   { transform: translateX(0px) }
  100% { transform: translateX(10px) }
}

/* Hareket azaltma tercihi olan kullanıcılar için */
@media (prefers-reduced-motion: reduce){
  .flag, .flag-cloth, .flag-stripe{ animation: none !important; }
}



