@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Fenix&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lora:ital,wght@0,400..700;1,400..700&family=Mirza:wght@400;500;600;700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nata+Sans:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* ================= GLOBAL ================= */
body {
  margin: 0px;
  padding: 0px;
  font-family: "Outfit", serif !important;
}
/* index page--------------------------------------------------------------------------------------- */
/* ================= NAVBAR ================= */
.nav-wrapper {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.custom-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 10px 30px;
}

.navbar-nav .nav-link {
  color: #222;
  font-weight: 500;
  margin: 0 12px;
  position: relative;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #1f2b6c !important;
}

/* Desktop underline */
@media (min-width: 992px) {
  .navbar-nav .nav-link.active::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #1f2b6c;
    color: #1f2b6c !important;
    position: absolute;
    bottom: -2px;
    left: 0;
  }
}

/* Mobile active style */
@media (max-width: 991px) {
  .navbar-nav .nav-link.active::after {
    display: none;
  }

   .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link.active {
    color: #1f2b6c !important;
    font-weight: 600;
  }
}

/* ================= HERO SECTION ================= */
.hero-section {
  height: 100vh;
  background: url("./assets/resources/index/hero-banner.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-content {
  max-width: 850px;
}

.subtitle {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
  opacity: 0.9;
}

.main-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.divider {
  width: 80px;
  height: 2px;
  background: #fff;
  margin: 20px auto;
  opacity: 0.6;
}

.tagline {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 35px;
}

.join-btn {
  background: #fff !important;
  color: #1f2b6c !important;
  padding: 15px 35px;
  border-radius: 50px !important;
  font-weight: 800;
  transition: 0.5s ease;
  font-size: 18px;
}

.join-btn:hover {
  background: #1f2b6c !important;
  color: #fff !important;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 992px) {

  .custom-navbar {
    border-radius: 20px;
    padding: 15px;
  }

  .navbar-nav {
    padding-top: 15px;
  }

  .navbar-nav .nav-link {
    margin: 10px 0;
  }

  .main-title {
    font-size: 32px;
  }

  .subtitle {
    font-size: 16px;
  }

  .tagline {
    font-size: 16px;
  }
}

@media (max-width: 576px) {

  .main-title {
    font-size: 26px;
  }

  .join-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}
/* ================= ABOUT SECTION ================= */

.cote-home-about-section {
  background: #f8f9fc;
}

.cote-home-section-title {
  font-weight: 700;
  color: #1f2b6c;
  position: relative;
}

.cote-home-title-divider {
  width: 60px;
  height: 2px;
  background: #1f2b6c;
  margin-top: 10px;
}

.cote-home-about-text {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.cote-home-about-img {
  border-radius: 6px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cote-home-read-btn {
  background: #1f2b6c !important;
  color: #fff !important;
  padding: 10px 28px;
  border-radius: 50px !important;
  font-weight: 500;
  transition: 0.3s ease;
}

.cote-home-read-btn:hover {
  background: #0b1642 !important;
  color: #fff !important;
}


/* ================= FOUNDER SECTION ================= */

.cote-home-founder-section {
  background: #ffffff;
}

.cote-home-founder-heading {
  font-weight: 700;
  color: #1f2b6c;
}

.cote-home-founder-card {
  background: #f4f6fb;
  padding: 35px;
  border-radius: 8px;
}

.cote-home-founder-name {
  font-weight: 700;
  color: #1f2b6c;
}

.cote-home-founder-text {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
}

.cote-home-founder-img-wrapper {
  position: relative;
  display: inline-block;
}

.cote-home-founder-img {
  border-radius: 6px;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .cote-home-about-text {
    font-size: 14px;
  }

  .cote-home-founder-card {
    padding: 25px;
  }

}

@media (max-width: 768px) {

  .cote-home-section-title,
  .cote-home-founder-heading {
    text-align: center;
  }

  .cote-home-title-divider {
    margin: 10px auto;
  }

  .cote-home-founder-card {
    text-align: center;
  }

}
/* ================= BENEFITS SECTION ================= */
.cote-home-benefits-section {
  position: relative;
  background: url("./assets/resources/index/benefits-bg.webp") center/cover no-repeat;
  padding: 100px 0;
}

.cote-home-benefits-title{
  color: #040267;
}

/* Carousel indicators styling */
.cote-home-benefits-section .carousel-indicators {
  bottom: -60px;
}

.cote-home-benefits-section .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #040267;
  opacity: 0.4;
}

.cote-home-benefits-section .carousel-indicators .active {
  opacity: 1;
}

/* Dark blue image frame */
.cote-home-benefits-img-wrapper {
  background: #040267;
  padding: 12px;
  border-radius: 8px;
}

.cote-home-benefits-img {
  border-radius: 6px;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

/* Mobile: Show 1 card per slide */
@media (max-width: 767px) {
  .carousel-item .row {
    display: block;
  }
}
/* ================= CHAPTER SECTION ================= */

.cote-home-chapter-section {
  background: #f8f9fc;
}

.cote-home-chapter-title {
  font-weight: 700;
  color: #1f2b6c;
}

.cote-home-chapter-divider {
  width: 60px;
  height: 2px;
  background: #1f2b6c;
}

.cote-home-chapter-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.cote-home-chapter-card img {
  border-radius: 8px;
  transition: 0.4s;
}

.cote-home-chapter-card:hover img {
  transform: scale(1.08);
}

.cote-home-chapter-overlay {
  position: absolute;
  bottom: 10px;
  left: 60px;
  color: #fff;
  font-weight: 600;
}

.cote-home-chapter-btn {
  background: #1f2b6c !important;
  color: #fff !important;
  border-radius: 30px !important;
  padding: 10px 30px;
}
.cote-home-chapter-btn:hover{
 background: #131c4b !important;
  color: #fff !important;
}

/* ================= JOIN US SECTION ================= */

.cote-home-join-section {
  background: #ffffff;
}

.cote-home-join-title {
  font-weight: 700;
  color: #1f2b6c;
}

.cote-home-join-divider {
  width: 60px;
  height: 2px;
  background: #1f2b6c;
}

.cote-home-join-box {
  background: #dbe3f7;
  padding: 30px 25px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: 0.3s ease;
}

.cote-home-join-box h6 {
  color: #040267;
  font-weight: 600;
  margin-top: 10px;
   font-size: 16px;
}

.cote-home-join-box p {
  font-size: 16px;
  color: #444;
  margin-bottom: 0;
}

.cote-home-join-icon {
  font-size: 32px;     /* ✅ proper size */
  color: #1f2b6c;
  margin-bottom: 12px;
}

/* Optional Hover Effect */
.cote-home-join-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.cote-home-video-wrapper {
  position: relative;
}

.cote-home-video-img {
  border-radius: 8px;
}

.cote-home-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1f2b6c;
  color: #fff;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.cote-home-join-box {
  background: #f4f6fb;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  flex: 1;
}

/* ================= VIDEO SECTION ================= */

.cote-home-video-section {
  position: relative;
  height: 400px;
  background: url("./assets/resources/index/video-bg.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.cote-home-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.cote-home-video-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.cote-home-video-play-btn {
  background: #ffffff;
  color: #1f2b6c;
  border: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 32px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.cote-home-video-play-btn:hover {
  transform: scale(1.1);
}

/* ================= WHY CHOOSE SECTION ================= */

.cote-home-choose-section {
  background: #f8f9fc;
}

.cote-home-choose-title {
  color: #1f2b6c;
  font-weight: 700;
}

.cote-home-choose-divider {
  width: 60px;
  height: 2px;
  background: #1f2b6c;
}

.cote-home-choose-list {
  list-style: none;
  padding-left: 0;
}

.cote-home-choose-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.cote-home-choose-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1f2b6c;
  font-weight: bold;
}

.cote-home-choose-img {
  border-radius: 8px;
}

/* ================= FAQ SECTION ================= */
/* Section */
.cote-faq-section {
  background: #f3f4f8;
}

/* Title */
.cote-faq-title {
  font-weight: 700;
  color: #1c1f6e;
}

.cote-faq-divider {
  width: 60px;
  height: 2px;
  background: #1c1f6e;
  margin-top: 10px;
  position: relative;
}

/* FAQ Card */
.cote-faq-item {
  border: none;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  border-left: 6px solid #1c1f6e;
  overflow: hidden;
}

/* Remove default arrow */
.accordion-button::after {
  display: none;
}

/* Custom Button Layout */
.custom-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;  /* TEXT LEFT, ICON RIGHT */
  background: #fff;
  padding: 22px 25px;
  font-weight: 600;
  color: #1c1f6e;
  box-shadow: none;
}

.custom-accordion-btn:focus {
  box-shadow: none;
}

/* Question text */
.faq-question {
  text-align: left;
  flex: 1;
}

/* Icon */
.faq-icon {
  font-size: 18px;
  transition: 0.3s ease;
}

/* Rotate icon when open */
.custom-accordion-btn:not(.collapsed) .faq-icon {
  transform: rotate(180deg);
}

/* Answer */
.accordion-body {
  padding: 0 25px 25px 25px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-accordion-btn {
    padding: 18px;
    font-size: 14px;
  }

  .accordion-body {
    font-size: 14px;
  }
}
/* -------------Footer Section------------------------------------------------------------------- */
.cote-footer {
  background: #161C2D;
  color: #dcdcdc;
  font-size: 14px;
}

/* Logo */
.footer-logo-wrapper {
  max-width: 140px;
}

.footer-logo-img {
  width: 100%;
  height: auto;
}

/* Text */
.footer-text {
  color: #ffffff;
  line-height: 1.7;
}

.footer-heading {
  font-weight: 600;
  color: #ffffff;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color:  #bfc4d3;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact li {
  margin-bottom: 15px;
  color: #bfc4d3;
}

.footer-contact i {
  margin-right: 8px;
  color: #ffffff;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  color: #bfc4d3;
  font-size: 16px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffffff;
}

.footer-divider {
  border-color: rgba(255,255,255,0.15);
}

.footer-bottom-links a {
  color: #bfc4d3;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-logo-wrapper {
    margin: 0 auto;
  }
}
/* -WhatsApp Floating Button----------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 99999 !important;

  /* Animation */
  animation: whatsapp-pulse 1.8s infinite ease-in-out;
}

/* Pulse effect */
@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Hover stops animation */
.whatsapp-float:hover {
  animation-play-state: paused;
  background-color: #05f866;
}
@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 50px;
  }
}
@keyframes whatsapp-bounce {
  0% { transform: translateY(100px); opacity: 0; }
  60% { transform: translateY(-10px); }
  80% { transform: translateY(5px); }
  100% { transform: translateY(0); opacity: 1; }
}

.whatsapp-float {
  animation:
    whatsapp-bounce 0.8s ease-out,
    whatsapp-pulse 1.8s infinite ease-in-out 0.8s;
}