:root{
    --heading-color: #1f2f31;
    --accent-color: #099aa7;
    --default-color: #363f40;
    --heading-color: #1f2f31;
    --surface-color: #ffffff; 
    --contrast-color: #ffffff; 
}

@font-face {
    font-family: "poppins";
    src: url("{% static 'fonts/Poppins-Regular.ttf' %}");
}

/* navbar */
/* Default (transparent dark) */
/* ================= NAVBAR ================= */
.custom-navbar {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.custom-navbar.scrolled {
    background: #0d1b2a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ================= NAV LINKS ================= */
.navbar-nav {
    position: relative;
}

.nav-link {
    color: #f1f3f5 !important;
    margin: 0 12px;
    font-weight: 500;
    position: relative;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

/* Hover */
.nav-link:hover {
    color: #0d6efd !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #0d6efd;
    left: 0;
    bottom: -4px;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link.active::after {
    width: 100%;
}

/* ACTIVE */
.nav-link.active {
    color: #0d6efd !important;
}

/* ================= DASHED UNDERLINE (DESKTOP) ================= */


/* OPTIONAL: subtle glow (premium feel) */


/* ================= DROPDOWN ================= */
.dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.dropdown-item:hover {
    background-color: #f1f3f5;
}



.main-content{
    width: 100%;
}




.hero-section {
    min-height: 100vh;
       display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    animation: heroLift 1s ease-out forwards;
    opacity: 0; /* start invisible */
    transform: translateY(30px);
    
}
@keyframes heroLift {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* body {
    overflow-y: scroll;
} */

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); 
}

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

.hero-heading {
    letter-spacing: 2px;
    line-height: 1.2;
    font-family: poppins, sans-serif;
    position: relative;
    animation: fadeInUp 1s ease forwards;
}

.hero-subtext {
    max-width: 700px;
    font-family: inter, sans-serif;
    color: var(--surface-color)!important;
    opacity: 0.85;
     font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
     animation: fadeInUp 1.2s ease forwards;
}
.hero-cta {
    transition: all 0.3s ease;
    font-weight: 500;
    border-radius: 50px;
    /* padding: 0.75rem 1.75rem; */
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    text-decoration: none;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.landcon{
    color: #fff;
    text-decoration: none;
}
.bi-google{
    color: #fff;
    margin-right: 10px;
}

/* about */


h2, h5 {
    font-family: 'Poppins', sans-serif;
}
h2{
    color:#0d6dfda4;
}
p, .lead {
    font-family: 'Inter', sans-serif;
}
.lead{
    margin-top: 20px!important;
       color: color-mix(in srgb, var(--default-color), transparent 25%);
}
i {
    color: var(--accent-color); 
    font-size: 20px!important;
    margin-bottom: 30px!important;
}
.about-section{
    margin-top: 50px;
    opacity: 0;
    transform: translateX(50px); /* start off to the right */
    animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Optional: stagger animation for cards */
#about .row.text-center .col-md-3 {
    opacity: 0;
    transform: translateX(50px);
    animation: cardSlideIn 0.8s ease-out forwards;
}
#about .row.text-center .col-md-3:nth-child(1) { animation-delay: 0.2s; }
#about .row.text-center .col-md-3:nth-child(2) { animation-delay: 0.4s; }
#about .row.text-center .col-md-3:nth-child(3) { animation-delay: 0.6s; }
#about .row.text-center .col-md-3:nth-child(4) { animation-delay: 0.8s; }

@keyframes cardSlideIn {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.abouthead{
    background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    font-family: poppins, sans-serif;
}
.about-img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
}
.cardplay{
    color: var(--default-color);
    font-size: 16px;
    margin-top: 10px;
    font-family: inter, sans-serif;
}


/* howitworks */


.p-3.border.rounded.shadow-sm {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-3.border.rounded.shadow-sm:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgb(0, 0, 0.6);
}



#how-it-works .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#how-it-works .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.card-title{
    font-size: 16px;
    margin-top: 8px;
    font-family: poppins, sans-serif;
}
.card-text{
    color: var(--default-color);
    font-weight: 300;
    font-family: inter, sans-serif;
}



/* features */
.features-section {
    background: linear-gradient(to bottom, #f1f3f5, #ffffff);
}

/* Title */
.features-title {
    font-size: 2.2rem;
    letter-spacing: 0.5px;
}

.features-subtitle {
    max-width: 600px;
}

/* Card Style */
.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
}

/* Hover effect (premium feel) */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Icon box */
.icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1); /* Bootstrap primary soft */
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 1.5rem;
    color: #0d6efd;
}

/* Text */
.featcard {
    margin-top: 10px;
}

.featp {
    color: #6c757d;
    font-size: 0.9rem;
}


/* footer */
.servicefoot{
    font-size: 15px;
    font-family: "poppins", sans-serif;
    /* margin: 30px 20px; */
    color: #099aa7;
}
.foots{
    font-size: 13px!important;
}
.contactse{
    /* margin-right: 30px; */
    /* margin: 30px 20px; */
    color: #099aa7;
}
/* Quick Links Styling */
.quicklinks {
    font-size: 15px;
    font-family: "Poppins", sans-serif;
}

/* Footer Links */
.footer-link {
    text-decoration: none;
    color: #d1d5db; /* soft grey */
    display: inline-block;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover effect (premium underline slide) */
.footer-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #0d6efd;
    left: 0;
    bottom: -3px;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link:hover::after {
    width: 100%;
}



/* Accordion Item */

.custom-accordion .accordion-item {
    background-color: #1f2933; /* dark but not black */
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Button */
.custom-accordion .accordion-button {
    background-color: #1f2933;
    color: #f1f3f5;
    font-weight: 500;
    border: none;
    box-shadow: none;
    padding: 18px 20px;
}

/* Remove Bootstrap blue glow COMPLETELY */
.custom-accordion .accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* When opened */
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #26323d;
    color: #ffffff;
}

/* Body */
.custom-accordion .accordion-body {
    background-color: #26323d;
    color: #ced4da;
    font-size: 0.95rem;
}

/* Remove default arrow color (optional tweak) */
.custom-accordion .accordion-button::after {
    filter: brightness(0) invert(1); /* makes arrow white */
}

/* Hover */
.custom-accordion .accordion-button:hover {
    background-color: #2c3a47;
}


/* support css */
.support{
    margin-top: 60px;
}

/* Card styles */
.support-info,
.support-form {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-info:hover,
.support-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Support items */
.support-item i {
    color: #0d6efd;
}

/* Inputs */
.support-input {
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.support-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13,110,253,0.15);
}

/* Button */
.support-btn {
    border-radius: 50px;
    padding: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.email:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(234, 67, 53, 0.3);
    background: #fce8e6;
}

.phone:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(52, 168, 83, 0.3);
    background: #e6f4ea;
}
/* .links{
    background:#f1f3f5;
    width: 35px;
    height: 35px;
    border-radius:50%;
    text-align: center;
    justify-content: center;
    margin-right: 10px;
    
}
.icon{
    margin: auto;
    padding: auto;
    text-align: center;
    justify-content: center;
    margin-right: 10px;
} */

.success-message {
    animation: slideFade 0.6s ease;
    border-radius: 10px;
    font-weight: 500;
}

@keyframes slideFade {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}








/* ================= MOBILE STYLE ================= */
@media (max-width: 991px) {

    /* Hide dashed line */
    .nav-indicator {
        display: none;
    }

    .navbar-nav {
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .nav-link {
        margin: 6px 0;
        padding: 10px 14px;
        border-radius: 8px;
    }
     .nav-link::after {
        display: none;
    }

    .nav-link.active {
        background: rgba(13, 110, 253, 0.15);
        border-radius: 6px;
        color: #0d6efd !important;
    }
    /* Better button stacking */

    .login-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
        width: 100%;
        margin-bottom: 20px
        
    }

  
    .navbar-collapse {
        max-height: 90vh;
        overflow-y: auto;
        padding-bottom: 40px;
    }


    .hero-section{
        margin-top: 30px;
    }
}