/* =========================================
   GLOBAL
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {

  --primary-color: #0d6efd;
  --secondary-color: #0b1f3a;
  --light-color: #f8f9fa;
  --dark-color: #111827;
  --text-color: #6b7280;
  --white-color: #ffffff;
  --border-radius: 20px;
  --transition: all 0.35s ease;

}

* {

  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

html {

  scroll-behavior: smooth;

}

body {

  font-family: 'Poppins', sans-serif;
  color: var(--dark-color);
  background: var(--white-color);
  overflow-x: hidden;

}

img {

  max-width: 100%;
  display: block;

}

a {

  text-decoration: none;
  transition: var(--transition);

}

ul {

  margin: 0;
  padding: 0;
  list-style: none;

}

.section-padding {

  padding: 100px 0;

}

.section-subtitle {

  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;

}

.section-title {

  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;

}

.text-muted {

  color: var(--text-color) !important;

}

/* =========================================
   HOME HERO SECTION
========================================= */

.hero-section {

  min-height: 100vh;

  background:
    linear-gradient(rgba(5, 15, 35, 0.75),
      rgba(5, 15, 35, 0.75)),
    url('../images/hero-bg.jpg') center/cover no-repeat;

  padding: 120px 0;

  position: relative;

}

/* =========================================
   TOPBAR
========================================= */

.topbar {

  font-size: 14px;

}

/* =========================================
   NAVBAR
========================================= */

.navbar {

  padding: 18px 0;
  transition: var(--transition);

}

.navbar-brand {

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

}

.navbar-nav .nav-link {

  color: var(--dark-color);
  font-weight: 500;
  margin-left: 15px;
  position: relative;

}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {

  color: var(--primary-color);

}

.navbar-nav .nav-link::after {

  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);

}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {

  width: 100%;

}

/* =========================================
   BUTTONS
========================================= */

.btn {

  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  transition: var(--transition);

}

.btn-primary {

  background: var(--primary-color);
  border-color: var(--primary-color);

}

.btn-primary:hover {

  background: #0056d6;
  border-color: #0056d6;
  transform: translateY(-3px);

}

.btn-outline-primary:hover {

  transform: translateY(-3px);

}

/* =========================================
   HERO
========================================= */

.page-hero {

  min-height: 450px;
  background:
    linear-gradient(rgba(5, 15, 35, 0.75),
      rgba(5, 15, 35, 0.75)),
    url('../images/hero-bg.jpg') center/cover no-repeat;

  padding: 120px 0;

}

.page-hero h1 {

  font-size: 60px;
  font-weight: 800;

}

.page-hero p {

  max-width: 750px;
  margin: auto;

}

/* HERO SLIDER */

.hero-slider .carousel-item {
  position: relative;
}

.hero-slide {
  min-height: 92vh;
}

.hero-slider .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 5%;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
  background-size: 70%;
}

@media (max-width: 768px) {

  .hero-slide {
    min-height: 80vh;
    text-align: center;
  }

  .hero-slide h1 {
    font-size: 2.3rem;
  }

}

/* =========================================
   CARDS
========================================= */

.card {

  border-radius: var(--border-radius);
  transition: var(--transition);

}

.card:hover {

  transform: translateY(-10px);

}

/* =========================================
   FEATURE ICONS
========================================= */

.feature-icon {

  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;

}

/* =========================================
   GALLERY
========================================= */

.gallery-card {

  position: relative;
  overflow: hidden;
  cursor: pointer;

}

.gallery-card img {

  transition: 0.5s ease;

}

.gallery-card:hover img {

  transform: scale(1.1);

}

.gallery-overlay {

  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);

}

.gallery-card:hover .gallery-overlay {

  opacity: 1;

}

/* =========================================
   VIDEO BUTTON
========================================= */

.video-btn-wrapper {

  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

}

.video-btn {

  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--white-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  animation: pulse 2s infinite;

}

@keyframes pulse {

  0% {

    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);

  }

  70% {

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

  }

  100% {

    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);

  }

}

/* =========================================
   EVENT DATE
========================================= */

.event-date {

  width: 80px;
  height: 80px;
  background: var(--light-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

/* =========================================
   COUNTER
========================================= */

.counter-section {

  background:
    linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)),
    url('../images/counter-bg.jpg') center/cover no-repeat;

  padding: 90px 0;

}

/* =========================================
   CTA
========================================= */

.cta-section {

  background:
    linear-gradient(rgba(13, 110, 253, 0.9),
      rgba(13, 110, 253, 0.9)),
    url('../images/cta-bg.jpg') center/cover no-repeat;

  padding: 100px 0;

}

.cta-section h2 {

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

}

/* =========================================
   FOOTER
========================================= */

.footer-section {

  background: #08111f;
  color: rgba(255, 255, 255, 0.7);
  padding: 90px 0 30px;

}

.footer-title {

  color: var(--white-color);
  margin-bottom: 25px;
  font-weight: 600;

}

.footer-links li {

  margin-bottom: 14px;

}

.footer-links a {

  color: rgba(255, 255, 255, 0.7);

}

.footer-links a:hover {

  color: var(--white-color);
  padding-left: 5px;

}

.social-link,
.social-link-sm {

  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;

}

.social-link:hover,
.social-link-sm:hover {

  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-3px);

}

/* =========================================
   FORMS
========================================= */

.form-control,
.form-select {

  border-radius: 14px;
  border: 1px solid #d1d5db;
  padding: 14px 18px;

}

.form-control:focus,
.form-select:focus {

  border-color: var(--primary-color);
  box-shadow: none;

}

/* =========================================
   TABLE
========================================= */

.table th,
.table td {

  padding: 18px;

}

/* =========================================
   WHATSAPP BUTTON
========================================= */

.whatsapp-btn {

  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

}

.whatsapp-btn:hover {

  transform: scale(1.1);
  color: var(--white-color);

}

/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar {

  width: 10px;

}

::-webkit-scrollbar-track {

  background: #f1f1f1;

}

::-webkit-scrollbar-thumb {

  background: var(--primary-color);
  border-radius: 10px;

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

  .section-padding {

    padding: 80px 0;

  }

  .section-title {

    font-size: 34px;

  }

  .page-hero h1 {

    font-size: 46px;

  }

  .navbar-nav {

    padding-top: 20px;

  }

  .navbar-nav .nav-link {

    margin-left: 0;
    margin-bottom: 10px;

  }

}

@media (max-width: 767px) {

  .section-title {

    font-size: 30px;

  }

  .page-hero {

    min-height: 380px;
    text-align: center;

  }

  .page-hero h1 {

    font-size: 38px;

  }

  .cta-section h2 {

    font-size: 38px;

  }

  .feature-icon {

    width: 60px;
    height: 60px;
    font-size: 24px;

  }

}

@media (max-width: 575px) {

  .section-padding {

    padding: 70px 0;

  }

  .page-hero h1 {

    font-size: 32px;

  }

  .btn {

    width: 100%;

  }

}