
/* ========== Base Reset ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* ========== Navigation ========== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  background-color: #363636;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav__header {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 50px;
}

.nav__menu__btn {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  margin-left: 20px;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav__links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
  
}

.nav__links li a:hover {
  color: #00bfff;
}

.nav__btns .btn {
  padding: 5px 20px;
  background-color: #00bfff;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav__btns .btn:hover {
  background-color: #009fdd;
}

/* ========== Header ========== */
header#home {
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.4)), url('img/banner1.jpeg') center/cover no-repeat;
  padding: 140px 40px;
  text-align: center;
  height: 100vh;
}

.header__content p {
  font-size: 20px;
  letter-spacing: 1px;
  color: #00bfff;
  margin-bottom: 15px;
}

.header__content h1 {
  font-size: 45px;
  margin-bottom: 25px;
  color: #fff;
padding: 0 100px;
}

.header__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.header__btns .btn {
  background-color: #00bfff;
  color: #000;
  padding: 12px 28px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.header__btns .btn:hover {
  background-color: #009fdd;
}

.header__btns a span i {
  font-size: 48px;
  color: #00bfff;
  transition: color 0.3s ease;
}

.header__btns a:hover span i {
  color: #009fdd;
}

/* ========== Responsive Nav ========== */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 70px;
    right: 40px;
    padding: 20px;
    border-radius: 8px;
    z-index: 999;
  }

  .nav__menu__btn {
    display: block;
  }

  .nav__links.active {
    display: flex;
  }

  .header__content h1 {
    font-size: 32px;
  }

  .header__btns {
    flex-direction: column;
  }
}

/* ========== Section Container ========== */
.section__container {
  padding: 60px 40px;
  background-color: #f8f9fa;
  color: #111;
  text-align: center;
}

.section__header {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #00bfff;
}

.section__description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

/* ========== Destination Grid ========== */
.destination__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.destination__card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.destination__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.destination__card__details {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.destination__card__details h4 {
  font-size: 18px;
  font-weight: 600;
  color: #00bfff;
}

.destination__card__details p {
  font-size: 14px;
  color: #777;
}

.destination__ratings {
  font-size: 14px;
  color: #ff9900;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ========== Journey Section ========== */
.journey__container {
  padding: 4rem 2rem;
  background-color: #fff;
}

.journey__container h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #111;
}

.journey__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.journey__card {
  position: relative;
  padding-top: 4rem;
  border-radius: 1rem;
  background-color: #f5f5f5;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.journey__card:hover {
  transform: translateY(-6px);
}

.journey__card__bg {
  padding: 2rem;
  background-color: #e9ecef;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.journey__card__bg span {
  font-size: 1.75rem;
  color: #00bfff;
  margin-bottom: 1rem;
}

.journey__card__bg h4 {
  font-size: 1.2rem;
  color: #222;
}

.journey__card__content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: #00bfff;
  border-radius: 0 0 1rem 1rem;
  transition: top 0.4s ease;
  z-index: 2;
}

.journey__card:hover .journey__card__content {
  top: 0;
}

.journey__card__content span {
  display: inline-block;
  font-size: 1rem;
  border: 2px solid #fff;
  color: #fff;
  padding: 8px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.journey__card__content h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.journey__card__content p {
  color: #fff;
  font-size: 14px;
}

/* ========== Responsive ========== */
@media (max-width: 576px) {
  .section__container {
    padding: 40px 20px;
  }

  .destination__card img {
    height: 180px;
  }

  .journey__container {
    padding: 3rem 1rem;
  }
}
/*  */

/* ========== Showcase Section ========== */
.showcase__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background-color: #f8f9fa;
  padding: 60px 40px;
  flex-wrap: wrap;
}

.showcase__image {
  flex: 1 1 400px;
}

.showcase__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.showcase__content {
  flex: 1 1 400px;
  color: #111;
}

.showcase__content h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.showcase__content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #444;
  line-height: 1.6;
}

.showcase__btn .btn {
  padding: 12px 24px;
  background-color: #00bfff;
  border: none;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.showcase__btn .btn:hover {
  background-color: #009fdd;
}

.showcase__btn i {
  font-size: 18px;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .showcase__container {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .showcase__content {
    padding-top: 20px;
  }

  .showcase__btn .btn {
    justify-content: center;
  }
}

/*  */

/* ========== Events Section ========== */
.events__container {
  background-color: #fff;
  color: #111;
  padding: 60px 40px;
  text-align: center;
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.event__card {
  display: flex;
  align-items: flex-start;
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.event__card:hover {
  transform: translateY(-6px);
}

.event__date {
  background-color: #00bfff;
  color: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  text-align: center;
  margin-right: 20px;
  min-width: 60px;
}

.event__date h3 {
  font-size: 24px;
  margin-bottom: 4px;
}

.event__date p {
  font-size: 14px;
  text-transform: uppercase;
}

.event__info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.event__info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.event__info span {
  font-size: 13px;
  color: #777;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ========== Responsive ========== */
@media (max-width: 576px) {
  .event__card {
    flex-direction: column;
    text-align: left;
  }

  .event__date {
    margin-right: 0;
    margin-bottom: 10px;
  }
}


/*  */

.press-grid-section .card {
  border: none;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.press-grid-section .card:hover {
  transform: translateY(-5px);
}

.press-grid-section .card h6 {
  font-size: 1rem;
}

/*  */

footer a:hover {
  color: #0d6efd;
  text-decoration: underline;
}



/* about page */


/* ===== About Section ===== */
.about-text {
  padding: 80px 20px;
  background: #fff;
  color: #333;
}

.about-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #002147; /* deep navy to match brand */
  position: relative;
  display: inline-block;
}

.about-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #00bfff; /* accent blue */
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #555;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .about-heading {
    font-size: 28px;
  }
  .about-text p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-heading {
    font-size: 24px;
  }
  .about-text p {
    font-size: 15px;
  }
}


/*  */

/* ===== Membership Cards Section ===== */
.membership-cards {
  background: #f8f9fa;
}

.membership-cards h2 {
  font-size: 36px;
  font-weight: 700;
  color: #002147;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.membership-cards h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #00bfff; /* accent underline */
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

/* Bootstrap card overrides */
.membership-cards .card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.membership-cards .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.membership-cards .card-img-top {
  height: 200px;
  object-fit: cover;
}

.membership-cards .card-body {
  padding: 20px 15px;
}

.membership-cards .card-body h5 {
  font-size: 18px;
  color: #111;
  margin-bottom: 12px;
}

.membership-cards .card-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .membership-cards h2 {
    font-size: 30px;
  }
  .membership-cards .card-img-top {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .membership-cards h2 {
    font-size: 26px;
  }
  .membership-cards .card-img-top {
    height: 160px;
  }
  .membership-cards .card-body h5 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .membership-cards h2 {
    font-size: 22px;
  }
  .membership-cards .card-img-top {
    height: 140px;
  }
  .membership-cards .card-body p {
    font-size: 13px;
  }
}

/*  */

.glance-section {
  background: #012a4a; /* Deep navy blue */
  padding: 60px 20px;
  color: #fff;
}

.glance-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}

.glance-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 800px;
}

.glance-list li {
  font-size: 17px;
  font-weight: 400;
  margin: 18px 0;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.glance-list .arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 12px;
  margin-top: 6px;
  background: linear-gradient(135deg, #00bfff, #0077ff);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  flex-shrink: 0;
}

/*  */
/* Vision & Mission Section */
.vision-mission {
  background: #f8fafc; /* light subtle background */
  padding: 60px 0;
}

.vision-mission h2 {
  font-size: 2.2rem;
  color: #012a4a;
  position: relative;
  display: inline-block;
}

.vision-mission h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0d6efd; /* blue underline */
  margin: 12px auto 0;
  border-radius: 2px;
}

.vision-mission .card-box {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.vision-mission .card-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.vision-mission i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.vision-mission h4 {
  color: #0d3b66;
  margin-bottom: 15px;
}

.vision-mission p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* what we do page */

/* What We Do Section */
.what-we-do {
  background: #f9fafc;
}

.what-we-do h2 {
  font-size: 2.2rem;
  color: #012a4a;
  position: relative;
  display: inline-block;
}

.what-we-do h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #0d6efd;
  margin: 12px auto 0;
  border-radius: 2px;
}

.service-card {
  transition: all 0.3s ease;
  background: #fff;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
}

.service-card h5 {
  color: #0d3b66;
  margin-bottom: 12px;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
}


.bg-overlay-section {
  position: relative;
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 60px 15px;
}

.bg-overlay-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.bg-overlay-section .container {
  position: relative;
  z-index: 2;
}

/* Specific Backgrounds */
.industry-support {
  background-image: url('./img/j.jpeg');
}

/* events */

.upcoming-events h2 { font-size: 2rem; }

.event-card {
  transition: transform .3s ease, box-shadow .3s ease;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
}

/* Make arrow tap targets a bit larger */
#eventCarousel .carousel-control-prev,
#eventCarousel .carousel-control-next {
  width: 3rem;
}

/* membership */





/* Section Wrapper */
.membership-section {
  background: #fff;
  padding: 60px 20px;
}

/* Intro Text */
.membership-intro {
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.highlight-text {
  font-weight: 600;
  font-size: 1.2rem;
  color: #0056d2; /* Royal blue */
  margin-bottom: 15px;
}

.normal-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Membership Cards */
.membership-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.member-card {
  position: relative;
  flex: 1 1 400px;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.member-card:hover {
  transform: translateY(-8px);
}

/* Overlay Text at Bottom */
.overlay-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  padding: 15px;
  text-align: center;
}

.overlay-text h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
}
