/*
#1d2e4a (dark blu)
#52667e (grey blu)
#c2ccdb (light blu)
#1a2636 (anotha dark blu)
#d2cfca (peach)
#ffffff
*/

body {
  cursor: url('assets/Cursor/queen.png'), auto;
}

a, button, [role="button"] {
  cursor: url('assets/Cursor/queen.png'), pointer;
}

section#about,
section#mentors,
section#learn,
section#testinmonials,
section#impact,
section#gallery,
section#contact {
  scroll-margin-top: 80px;
}

body {
  background-color: white;
  font-weight: 600;
}

.logo-gap {
  margin-right: 10px;
}

.shadow {
  box-shadow: inset;
}

.book-btn-1 {
  padding: 10px 20px;
  font-weight: 600;
  color: white;
  border-radius: 25px;
  border: none;
  background-image: linear-gradient(to right, #1d2e4a, #52667e);
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

.book-btn-1:hover {
  transform: scale(1.1);
}

.brand-text {
  line-height: 1.1;
}

.chessboard-text {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 1px;
  font-family: 'Segoe UI', sans-serif;
  color: #000000;
  border: 1px solid transparent; /* simulate outline if needed */
}

/* Optional if your navbar background is dark */
.navbar .navbar-brand .chessboard-text {
  color: #000000; /* soft gray for contrast */
}

.navbar .navbar-brand span {
  color: rgb(0, 0, 0);
}









/* Hero Carousel */
header.carousel {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: transform 0.3s ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  z-index: 2;
  padding: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin: 10px 0 20px 0;
}











.about-cont {
  height: 150px;
  width: 250px;
  background-color: #1d2e4a;
  min-height: 150px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-cont:hover {
  transform: scale(1.03);
}

@media (max-width: 767.98px) {
  .about-cont {
    min-height: auto;
  }
}

@media (max-width: 991px) {
  .sidebar {
    backdrop-filter: blur(10px);
  }
}

.pad-top-25 {
  padding-top: 25px;
}







.mentor-section {
  background-color: #c2ccdb;
}

.mentor-subtitle {
  color: #1d2e4a;
  font-size: 1.1rem;
}

.mentor-card {
  width: 300px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.mentor-card:hover {
  transform: translateY(-5px);
}

.mentor-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin: 20px auto 0 auto;
  border: 3px solid #ffffff;
  background-color: #ffffff;
}

.card-body {
  padding-top: 15px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a2636;
}

.mentor-role {
  margin: 0;
  color: #52667e;
  font-size: 0.95rem;
}

.mentor-exp {
  color: #1a2636;
  font-size: 0.9rem;
}






/*
.learn-card-color {
  background-color: #52667e;
  color: white;
}
*/







.testimonial-section {
  background: url('assets/Backgrounds/Test-Bg.png') no-repeat center center/cover;
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.testimonial-section > * {
  position: relative;
  z-index: 1;
}

.testimonial-slider {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
  padding: 0 100px;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  margin: 0 15px;
  color: #1d2e4a;
  text-align: center;
  transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
  width: 450px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
}


.testimonial-slider .slick-current,
.testimonial-slider .slick-active,
.testimonial-slider .slick-center {
  opacity: 0.9;
  pointer-events: auto;
}

.testimonial-slider .slick-center {
  opacity: 1;
  transform: scale(1.2);
  z-index: 10;
}

.name {
  color: #52667e;
  font-weight: 600;
  font-size: medium;
  margin-top: 20px;
  margin-bottom: 0;
}

.age {
  color: #c2ccdb;
  margin-top: 5px;
  font-size: small;
}

.slick-prev,
.slick-next {
  background: none;
  width: 50px;
  height: 50px;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
}

.slick-prev::before,
.slick-next::before {
  color: rgba(255, 255, 255, 0.5);
  font-size: 35px;
  transition: opacity 0.2s ease;
}

.slick-prev:hover::before,
.slick-next:hover::before {
  opacity: 0.7;
}

.slick-prev {
  left: -60px;
}

.slick-next {
  right: -60px;
}

@media (max-width: 992px) {
  .testimonial-card {
    max-width: 90%;
    margin: 0 auto;
  }

  .slick-prev {
    left: -30px;
  }

  .slick-next {
    right: -30px;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    transform: scale(1);
  }

  .testimonial-card.slick-center {
    transform: scale(1.05);
  }
}

.slick-list {
  overflow: visible !important;
}

@media (max-width: 480px) {
  .testimonial-card {
    width: 90%; /* Keeps it responsive */
    height: auto; /* Optional: auto height on small screens */
  }
}








.initiatives-section {
  background-color: white;
  color: #1d2e4a;
}

.achievement-item {
  background-color: #c2ccdb50;
  color: #1d2e4a;
  padding: 20px;
  border-radius: 15px;
  height: 250px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* 🟦 soft outer shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* 💨 smooth hover */
}

.achievement-item:hover {
  transform: scale(1.05); /* 🔍 slight zoom */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25); /* ☁️ deeper shadow on hover */
}


.achievement-icon span {
  font-size: 72px;
  color: #1d2e4a;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .achievement-item {
    height: 250px;
    width: 280px;
  }
}







/* ========== Contact Form Styles ========== */

.text-1d2e4a { color: #1d2e4a !important; }
.text-1a2636 { color: #1a2636 !important; }
.bg-1d2e4a { background-color: #1d2e4a !important; }

.material-icons {
  font-size: 36px !important;
}

.icon-box {
  font-size: 36px;
  width: auto;
  height: 70px;
}


/* Inputs */
form .form-control,
form .form-select {
  border: 1px solid #c2ccdb !important;
  transition: border-color 0.3s;
}

form .form-control:focus,
form .form-select:focus {
  border-color: #1a2636 !important;
  box-shadow: none;
}

form .form-control:hover,
form .form-select:hover {
  border-color: #52667e !important;
}

/* Submit Button */
.book-btn-1 {
  padding: 10px 20px;
  font-weight: 600;
  color: white;
  border-radius: 25px;
  border: none;
  background-image: linear-gradient(to right, #1d2e4a, #52667e);
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}
.book-btn-1:hover {
  transform: scale(1.1);
}

/* ========== Overlay ========== */
#form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(194, 204, 219, 0.85);
  z-index: 10;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  backdrop-filter: blur(3px);
}

#form-overlay h4 {
  color: #1d2e4a;
  font-weight: 700;
}

/* ✅ ADD THIS */
.contact-form-wrapper {
  position: relative;
  z-index: 1;
}







@media (max-width: 767.98px) {
  section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  #hero {
    padding-left: 0rem;
    padding-right: 0rem;
  }
}














/* ✅ Footer Styling */
.custom-footer {
  background: url('assets/Backgrounds/Foot-Bg.png') no-repeat center center / cover;
}

.footer-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-link:hover {
  color: #c2ccdb;
}

/* Optional: Style for footer social icons */
.custom-footer i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.custom-footer i:hover {
  transform: scale(1.1);
  color: #c2ccdb;
}

.chessboard-text-ft {
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 1px;
  font-family: 'Segoe UI', sans-serif;
  color: #ffffff;
  border: 1px solid transparent; /* simulate outline if needed */
}

/* Center text and elements on small screens */
@media (max-width: 767.98px) {
  .custom-footer {
    text-align: center;
  }

  .custom-footer .row > div {
    margin-left: auto;
    margin-right: auto;
  }

  .custom-footer .d-flex {
    justify-content: center !important;
  }

  .custom-footer ul {
    padding-left: 0;
  }

  .custom-footer ul li {
    list-style: none;
  }
}







.gallery-section {
  position: relative;
  background-color: #52667e;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/Backgrounds/Gal-Bg.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2; /* Adjust the dimness here */
  filter: grayscale(100%);
  z-index: 0;
}

.gallery-section > * {
  position: relative;
  z-index: 1;
}


.bento-grid {
  display: grid;
  grid-template-areas:
    "seven seven seven two two two"
    "one one six six three three"
    "one one eight eight three three"
    "five five four four four four";
  gap: 1rem;
  grid-template-columns: repeat(6, 1fr);
}

.bento-item {
  max-height: 1000px; /* or whatever looks best */
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease-in-out;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.bento-item:hover img {
  transform: scale(1.05);
}

/* Grid area assignments */
.item-1 { grid-area: one; }
.item-2 { grid-area: two; }
.item-3 { grid-area: three; }
.item-4 { grid-area: four; }
.item-5 { grid-area: five; }
.item-6 { grid-area: six; }
.item-7 { grid-area: seven; }
.item-8 { grid-area: eight; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .bento-grid {
    grid-template-areas:
      "one"
      "two"
      "three"
      "four"
      "five"
      "six"
      "seven"
      "eight";
    grid-template-columns: 1fr;
  }
}

/* Button Style */
.custom-btn {
  border-radius: 25px;
  padding: 10px 25px;
  color: #1d2e4a;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  text-decoration: none;
}

.material-icons {
  font-size: 20px;
}








.learn-chess-section {
  background-color: #ffffff;
}

.text-primary-custom {
  color: #1d2e4a;
}

.text-muted-custom {
  color: #52667e;
}

.card.feature-card,
.card.pricing-card {
  background-color: #f7f9fc;
  border: none;
  padding: 20px;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.icant-card {
  height: 300px;
}

.card:hover {
  transform: scale(1.03);
}

.card .material-icons-outlined {
  color: #1d2e4a;
}

.btn-primary-custom {
  background-color: #1d2e4a;
  color: white;
  border: none;
}

.btn-primary-custom:hover {
  background-color: #142136;
}

.most-popular {
  border: 2px solid #1d2e4a !important;
}

.badge.bg-primary-custom {
  background-color: #1d2e4a;
  color: white;
  border-radius: 20px;
  font-size: 0.85rem;
}

.subtext {
  max-width: 1000px;
  color: #52667e;
}

.most-pop {
  background-color: #1d2e4a;
  font-weight: 600;
}

.consult {
  text-decoration: none;
  color: #1d2e4a;
  border: 1px solid #1d2e4a;
  padding: 10px 20px;
  border-radius: 25px;
  transition: background-color 0.3s, color 0.3s;
}
.consult:hover {
  border: none;
  background-image: linear-gradient(to right, #1d2e4a, #52667e);
  color: white;
}

.billing-toggle {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(29, 46, 74, 0.2); /* subtle dark-blue glow */
}

.billing-btn {
  background: #c2ccdb; /* light blu for inactive */
  color: #1a2636; /* dark blu text */
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover */
.billing-btn:hover {
  background: #52667e; /* grey blu */
  color: #ffffff;
}

/* Active */
.billing-btn.active {
  background: #1d2e4a; /* dark blu */
  color: #ffffff;
  box-shadow: 0 0 12px rgba(210, 207, 202, 0.7); /* peach glow */
  transform: scale(1.05);
  z-index: 1;
}
