/* Brand Color System */
:root {
    --brand-blue: #14283a;
    --brand-yellow: #fdd462;

    --primary-color: var(--brand-blue);
    --secondary-color: var(--brand-yellow);
    --white: #ffffff;

    --light-bg: #f9fafb;
    --light-grey: #e8eaed;
    --dark-grey: #6c757d;
}

.fs-small {
    font-size: 0.875rem;
}

.fs-medium {
    font-size: 1rem;
}

.fs-large {
    font-size: 1.25rem;
}

.text-brand-blue {
    color: var(--brand-blue);
}

.border-brand-blue {
    border-color: var(--brand-blue);
}

/* Global Soft Background */
.soft-bg {
    background-color: var(--brand-blue);
}

/* NAVBAR */
.bg-primary-custom {
    background-color: var(--primary-color);
}

/* .navbar-logo {
    height: 35px;
} */
.logo-conteiner {
    height: 45px;
    width: 45px;
}

.logo {
    height: 45px;
    width: 45px;
    transform: scale(1.50);
}


.nav-link:hover {
    color: var(--brand-yellow) !important;
}
.navbar-toggler {
    border-color: #14283a !important;
    color:#000 !important;
}



/* footer */
footer {
    background-color: var(--primary-color);
}


/* BUTTONS */
.btn-brand-yellow {
    background-color: var(--brand-yellow) !important;
    color: var(--white) !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.bg-brand-yellow {
     background-color:var(--brand-yellow);

    color: var(--white);    
     transition: all 0.3s ease;
}


.btn-brand-blue {
    background-color: var(--brand-blue) !important;
    color: var(--white) !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-brand-blue:hover {
    background-color: #1a2e54;
    /* lighten manually approx */
}

.btn-brand-secondary {
    background-color: var(--dark-grey) !important;
    color: var(--brand-blue) !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-brand-secondary:hover {
    background-color: var(--dark-grey);
    color: var(--white);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-profile {
    background-color: var(--brand-blue);
    color: var(--white);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-profile:hover {
    background-color: var(--brand-yellow);
}

.bg-brand-blue
{
    background-color: var(--brand-blue);}

.text-hover-yellow :hover
{
   color: var(--brand-yellow);
}

/* HERO SECTION */
.hero-bg {
    background-image: url('/images/hero.png');
    background-size: cover;
    background-position: center;
    height: 420px;
    border-radius: 1rem;
    position: relative;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 1rem;
}

/* SECTION LIGHT */
.section-light {
    background-color: var(--light-bg);
}

/* TUTOR CARDS */
.tutor-img-wrapper {
    height: 280px;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.tutor-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tutor-card {
    border-radius: 15px;
    overflow: hidden;
    background: var(--white);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.tutor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tutor-card:hover img {
    transform: scale(1.1);
}

.tutor-card .card-body {
    text-align: center;
    padding: 1rem;
}

.tutor-card .card-body p {
    color: #6c757d;
    font-size: 0.95rem;
    min-height: 50px;
    /* Keeps card height consistent */
}

.tutor-card .card-body .btn {
    padding: 0.45rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
}

/* FOOTER */
.footer-custom {
    background-color: var(--primary-color);
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--brand-yellow);
}


/* visitor-card */

.image-wrapper {
    position: relative;
    overflow: hidden;
    filter: blur(8px);

}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    /* pointer-events: none; */
}
/* my bookings */


/* profile canvas */

/* contact page */

.contact-bg {
    background-image: url('/images/contact-us.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Blur + dark overlay */
.contact-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(1px) brightness(0.3);
    transform: scale(1.1); 
    z-index: 1;
}

/* Keeps content above blur */
.contact-bg .content-layer {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* about us */

/* walls */
.blog-glass-card {
    position: relative;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.blog-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 24px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0));
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-desc {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 12px;
}

/* cms */
.top-image-logo {
    height: 200px;
    width: 200px;
    transform: scale(1.50);
}


.page-link {
    color: var(--brand-blue);
}

.page-item.active .page-link {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    color: white;
}


/* how it works  */
.tutor-container {
    max-width: 1100px;
    margin: auto;
    padding: 20px 20px;
    text-align: center;
}

.tutor-title {
    font-size: 34px;
    font-weight: 700;
    color: #0d3b66;
    margin-bottom: 20px;
}
.yb-underline {
  display: inline-block;
}

.yb-text {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
}

.yb-track {
  position: relative;
  display: block;
  width: 210px;
  height: 7px;
  margin-top: 5px;
  background:var(--brand-yellow);
  border-radius: 999px;
  overflow: hidden;
}

.yb-bar {
  position: absolute;
  height: 100%;
  width: 45%;
  left: -45%;
  background: linear-gradient(90deg, #facc15, #14283a);
  border-radius: 999px;
  filter: drop-shadow(0 0 6px rgba(37,99,235,0.5));
  animation: ybSlide 2.1s cubic-bezier(.4,0,.2,1) infinite;
}

@keyframes ybSlide {
  0%   { left: -45%; opacity: .6; }
  50%  { left: 55%;  opacity: 1;  }
  100% { left: 145%; opacity: .6; }
}


/* Progress */


/* Steps */
.tutor-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tutor-step-card {
    background: #fffbed;
    border: 1px solid  var(--brand-yellow) !important;

    /* border-radius: 22px; */
    /* padding: 30px 20px; */
    /* text-align: center; */
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); */
    transition: transform 0.3s ease;
}

.tutor-step-card:hover {
    transform: translateY(-6px);
}

.step-icon {
    background: var(--brand-yellow) !important;
    display: flex;
    align-items: center;
    justify-content: center;



}
.step-icon img {
    height: 100px;

}

.step-icon i {
    font-size: 40px;
    color: #0d3b66;
}

.tutor-step-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0d3b66;
    margin-bottom: 10px;
}

.tutor-step-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* Why section */
.tutor-why {
    margin-top: 40px;
}

.tutor-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tutor-why-card i {
    font-size: 50px;
    color:  var(--brand-yellow) !important;
    margin-bottom: 15px;
}

.tutor-why-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0d3b66;
}

.tutor-why-card p {
    font-size: 15px;
    color: #444;
}

/* Button */
.tutor-cta-btn {
    display: inline-block;
    padding: 16px 50px;
    background: var(--brand-yellow) !important;
    color: #0d3b66;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.tutor-cta-btn:hover {
    background: var(--brand-yellow) !important;
    color: #0d3b66;
}

.dropdown-item:hover {
    background-color: var(--brand-yellow) !important;
}
.yellow-shadow
{
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Mobile */
@media (max-width: 768px) {
    .tutor-title {
        font-size: 28px;
    }

    .tutor-cta-btn {
        width: 100%;
    }
}
