* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}





a {
    text-decoration: none !important;
}



:root {
    --primary: #8ccc3c;
    --secondary: #F4B400;
    --accent: #E85D04;
    --light-green: #EAF7F0;
    --background: #F7FAF8;
    --white: #FFFFFF;
    --bg-color: #1e3a5f;
    --heading: #172B21;
    --text: #52635A;
    --border: #D9E5DE;
    --colors: black;
}



/* Top Header */
.top-headers {
    max-height: 150px;
    overflow: hidden;
    opacity: 1;
    transition:
        max-height 0.8s ease-in-out,
        opacity 0.8s ease-in-out;
}

/* Hide Top Header on Scroll */
.top-headers.header-hidden {
    max-height: 0;
    opacity: 0;
}


/* Navbar */
.navb {
    position: relative;
    width: 100%;
    z-index: 9999;
    transition:
        top 0.8s ease-in-out,
        box-shadow 0.8s ease-in-out;
}

/* Sticky Navbar */
.navb.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: navbarSlideDown 0.8s ease-in-out;
}


/* Smooth Navbar Entry */
@keyframes navbarSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}



section {
    overflow-x: hidden;
}


.top-headers {
    border-bottom: 1px solid var(--bg-color);
    background-color: var(--white);
    padding: 10px 0;
}

.weblogo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.weblogo>div {
    text-align: center;
}

.weblogo>div span {
    display: block;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.weblogo>div p {
    color: var(--heading);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.weblogo a img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.navb {
    background-color: var(--heading);
    border-bottom: 4px solid var(--primary);
}

.navbar {
    padding: 0;
}

.nav-container {
    display: flex;
    justify-content: center !important;
    align-items: center;
    width: 100%;
}

.mobile-nav-header {
    display: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: var(--white);
}

.mobile-logo img {
    height: 45px;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    display: block;
    padding: 15px 20px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-links>li>a:hover {
    color: var(--secondary);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 250px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    z-index: 1000;
    margin: 0;
    border-top: 3px solid var(--primary);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    color: var(--accent);
    padding-left: 25px;
}

#self {
    font-size: 12px;
    font-weight: 500;
    padding: 10px 0px 0px 0px;
    color: var(--colors);
}

@media (max-width: 991px) {
    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .weblogo>a:first-child,
    .weblogo>a:last-child {
        display: none;
    }

    .weblogo {
        justify-content: center;
    }

    /* Mobile Navbar */
    .navb {
        background-color: #fff;
    }

    .nav-container {
        flex-direction: column;
        padding: 0;

    }

    .mobile-nav-header {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #0b1a29;
    }

    .nav-links>li>a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: #061220;
        border-top: none;
        padding: 0;
    }

    .dropdown-menu li a {
        color: #061220;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-menu li a:hover {
        padding-left: 45px;
        color: var(--secondary);
    }
}

@media (max-width: 767px) {
    .mobile-nav-header {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .dropdown-menu {
        top: -175px;
        right: 0;
        left: initial;
    }

    .navb {
        border-bottom: 1px solid var(--primary);
    }

}

.hero_section {
    background-color: var(--bg-color);
    padding: 0px 0 80px 0px;
    position: relative;
    overflow: hidden;
}

.hero-left-box-modern .badge-modern {
    display: inline-block;
    padding: 6px 15px;
    background-color: rgba(140, 204, 60, 0.15);
    color: var(--primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-left-box-modern h1 {
    color: var(--white);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-left-box-modern h1 span {
    color: var(--secondary);
}

.hero-left-box-modern p {
    color: #cbd5e1;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 90%;
}

.hero-buttons-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-hero-primary {
    background-color: var(--primary);
    color: var(--bg-color) !important;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(140, 204, 60, 0.4);
}

.btn-hero-primary:hover {
    background-color: #7ab532;
    transform: translateY(-3px);
}

.btn-hero-secondary {
    background-color: var(--secondary);
    color: var(--bg-color) !important;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 180, 0, 0.4);
}

.btn-hero-secondary:hover {
    background-color: #d99f00;
    transform: translateY(-3px);
}

.btn-hero-outline {
    background-color: transparent;
    color: var(--white) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-image-wrapper {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.hero-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    height: 433px;
    object-fit: cover;
    object-position: top;
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

.icon-play {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-color);
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(140, 204, 60, 0.4);
}

.floating-text h5 {
    color: var(--bg-color);
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 4px 0;
}

.floating-text span {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

/* Glowing Blobs */
.blob {
    position: absolute;
    filter: blur(70px);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.5;
}

.blob-1 {
    width: 250px;
    height: 250px;
    background-color: var(--primary);
    top: -50px;
    right: -20px;
}

.blob-2 {
    width: 200px;
    height: 200px;
    background-color: var(--secondary);
    bottom: 30px;
    left: 20px;
}

@media (max-width: 991px) {
    .hero-left-box-modern h1 {
        font-size: 34px;
    }

    .hero-image-wrapper {
        margin-top: 50px;
    }

    .floating-card {
        left: 10px;
        bottom: 10px;
    }

    .hero-buttons-modern {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-outline {
        text-align: center;
    }
}

.custom-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: var(--primary);
    color: var(--bg-color);
    border: 2px solid var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1050;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.custom-close-btn:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .custom-close-btn {
        top: -15px;
        right: 0px;
    }
}

.celebration-strip {
    background-color: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

.ticker-wrapper {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.ticker-content {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    animation: tickerScroll 40s linear infinite;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-content span {
    display: inline-block;
}

.highlight-gold {
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.separator {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero_page_about_section {
    background-color: var(--white);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.hero_page_about_section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--light-green) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-header-box {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-title {
    color: var(--bg-color);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.about-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.about-intro {
    color: var(--text);
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
}

.about-feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background-color: var(--background);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.about-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
    background-color: var(--white);
}

.about-feature-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: linear-gradient(135deg, var(--primary), var(--light-green));
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 20px rgba(140, 204, 60, 0.2);
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.about-feature-item:hover .about-feature-icon {
    transform: rotate(0deg) scale(1.1);
}

.about-feature-text .about-subtitle {
    color: var(--bg-color);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.about-feature-text p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

.about-img-box {
    position: relative;
    text-align: center;
    border: 3px solid var(--secondary);
    border-radius: 30px;
    z-index: 1;
    padding: 20px;
}


.about-img-box:hover::after {
    transform: translate(10px, 10px);
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.why_choose_us {
    background-color: var(--bg-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why_choose_us::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 180, 0, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.why_choose_us::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(140, 204, 60, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.why-header-box {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-title {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.why-title span {
    color: var(--secondary);
}

.why-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.7;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.why-card:hover {
    transform: translateY(-12px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(244, 180, 0, 0.15);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), #e69c00);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px auto;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(244, 180, 0, 0.3);
}

.why-card:hover .why-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.why-card-title {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-card-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.standard_procedure_section {
    background-color: var(--background);
    padding: 100px 0;
    position: relative;
}

.procedure-header-box {
    max-width: 700px;
    margin: 0 auto;
}

.procedure-title {
    color: var(--bg-color);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.procedure-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.procedure-intro {
    color: var(--text);
    font-size: 18px;
    line-height: 1.6;
}

.procedure-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.procedure-step {
    background-color: var(--white);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border-top: 5px solid var(--primary);
}

.procedure-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top-color: var(--secondary);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 40px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.procedure-step:hover .step-number {
    color: rgba(244, 180, 0, 0.2);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--light-green);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px auto;
    transition: all 0.4s ease;
}

.procedure-step:hover .step-icon {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

.step-title {
    color: var(--bg-color);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.step-desc {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .procedure-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .procedure-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .procedure-timeline {
        grid-template-columns: 1fr;
    }
}

.footer_section {
    background: linear-gradient(135deg, var(--bg-color) 0%, #112238 100%);
    color: var(--white);
    padding-top: 50px;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--primary);
}

.footer_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 0;
}

.footer-main {
    position: relative;
    z-index: 1;
}

.footer-col {
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 2px;
}

.footer-subheading {
    font-size: 16px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-text a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links li a::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    margin-right: 12px;
    color: var(--secondary);
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--white);
    transform: translateX(6px);
}

.footer-links li a:hover::before {
    color: var(--primary);
}

.footer-mission-title {
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.footer-mission-title span {
    color: var(--secondary);
}

.footer-slogan {
    font-size: 18px;
    color: var(--primary);
    font-style: italic;
    font-weight: 600;
    margin-bottom: 40px;
}

.payment-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.payment-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.payment-icons i {
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-icons i:hover {
    color: var(--secondary);
    transform: translateY(-4px) scale(1.15);
}

.footer-bottom {
    background-color: var(--primary);
    color: var(--heading);
    padding: 25px 0;
    position: relative;
    z-index: 1;
}

.copyright-text {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--heading);
    letter-spacing: 0.5px;
}

.disclaimer-text {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.7;
    color: var(--heading);
}

.disclaimer-text strong {
    font-weight: 700;
}

.disclaimer-text a {
    color: var(--heading);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    transition: all 0.3s ease;
    margin-left: 5px;
}

.disclaimer-text a:hover {
    color: var(--white);
    background-color: var(--bg-color);
    text-decoration: none;
    padding: 2px 5px;
    border-radius: 4px;
}

.registration_license_hero {
    position: relative;
}

.hero-top-content {
    background: linear-gradient(135deg, var(--bg-color) 0%, #112238 100%);
    padding: 60px 0 100px 0;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(140, 204, 60, 0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-main-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-main-title .highlight-text {
    color: var(--secondary);
    position: relative;
}

.hero-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
}

.urgent-form-wrapper {
    background: linear-gradient(90deg, var(--secondary) 0%, #e69c00 100%);
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.form-strip-header {
    flex-shrink: 0;
}

.urgent-title {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.urgent-form-flex {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    width: 100%;
}

.premium-input {
    height: 50px;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 0 15px;
    font-weight: 500;
    color: var(--text);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.premium-input:focus {
    border-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
    outline: none;
}

.premium-submit-btn {
    height: 50px;
    background-color: var(--bg-color) !important;
    color: var(--white) !important;
    font-weight: 800;
    border-radius: 8px !important;
    padding: 0 30px !important;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
}

.premium-submit-btn:hover {
    background-color: var(--heading);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Form 7 wraps the Urgent Form in an extra <div class="wpcf7">;
   make it stretch to fill the flex row like the original <form> did. */
.urgent-form-wrapper .wpcf7 {
    flex: 1 1 auto;
    min-width: 0;
}

.urgent-form-wrapper .wpcf7-form.urgent-form-flex p {
    margin: 0;
}

/* The parent Astra theme's own CF7 compatibility stylesheet
   (contact-form-7-main.min.css) adds margin-bottom to every field wrapper
   and its own padding to every input/select — both fight our design's
   spacing here, so override them with higher-specificity rules. */
.urgent-form-wrapper .wpcf7 form > div,
.cr-body .wpcf7 form > div {
    margin-bottom: 0;
}

.urgent-form-wrapper .wpcf7 input:not([type="submit"]),
.urgent-form-wrapper .wpcf7 select {
    padding: 0 15px;
}

.cr-body .wpcf7 input:not([type="submit"]),
.cr-body .wpcf7 textarea {
    padding: 12px 15px;
}

/* The CF7 "spinner" is invisible until the form is submitting, but it
   still occupies layout space (24px + 24px margin) right after the submit
   button — hide it until it's actually needed. */
.urgent-form-wrapper .wpcf7-spinner,
.cr-body .wpcf7-spinner {
    display: none;
}

.urgent-form-wrapper form.submitting .wpcf7-spinner,
.cr-body form.submitting .wpcf7-spinner {
    display: inline-block;
}

/* On a failed submit, CF7 injects a "Please fill out this field." tip
   (normal block element) inside each field, and an error-summary box as
   another child of the form. Both are flex items of .urgent-form-flex by
   default and squeeze/wrap the row — take them out of flow so validation
   errors float below the row instead of breaking its layout. */
.urgent-form-wrapper .wpcf7-form-control-wrap {
    position: relative;
    display: block;
    width: 100%;
}

.urgent-form-wrapper .wpcf7-not-valid-tip {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.3;
    z-index: 20;
}

.urgent-form-wrapper .wpcf7-form.urgent-form-flex {
    position: relative;
}

.urgent-form-wrapper .wpcf7-form.urgent-form-flex .wpcf7-response-output {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin: 10px 0 0;
    background: var(--white);
    z-index: 30;
}

@media (max-width: 1199px) {
    .urgent-form-wrapper {
        flex-direction: column;
        align-items: stretch;
        padding: 30px;
        margin-top: -80px;
    }

    .urgent-title {
        justify-content: center;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .hero-main-title {
        font-size: 36px;
    }

    .urgent-form-flex {
        flex-direction: column;
    }

    .urgent-form-wrapper {
        margin-top: -40px;
    }
}

.food_license_section {
    background-color: var(--background);
    position: relative;
}

.section-header-box {
    margin: 0 auto;
}

.section-main-title {
    color: var(--bg-color);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0 auto;
    border-radius: 2px;
}

.premium-form-card,
.premium-instructions-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.card-header-custom {
    padding: 20px 25px;
    color: var(--white);
    display: flex;
    align-items: center;
}

.card-header-custom h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bg-dark-theme {
    background-color: var(--bg-color);
}

.bg-secondary-theme {
    background-color: var(--heading);
}

.card-body-custom {
    padding: 20px;
}

.premium-form-input {
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0 15px;
    font-size: 15px;
    color: var(--text);
    transition: all 0.3s ease;
}

.premium-form-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(244, 180, 0, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 8px;
    font-size: 14px;
}

.details-link {
    color: var(--primary);
    font-size: 13px;
    text-decoration: underline !important;
    margin-left: 5px;
}

.form-section-title {
    color: var(--bg-color);
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.disclaimer-checkbox-box {
    background-color: var(--background);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.custom-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    margin: 0;
}

.custom-checkbox-wrapper input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    min-width: 24px;
    height: 24px;
    background-color: var(--white);
    border: 2px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.custom-checkbox-wrapper input:checked~.checkmark {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.checkmark .check-icon {
    color: white;
    font-size: 13px;
    display: none;
}

.custom-checkbox-wrapper input:checked~.checkmark .check-icon {
    display: block;
}

.disclaimer-text-small {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
}

.terms-link {
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline !important;
}

.disclaimer-checkbox-box .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.disclaimer-checkbox-box .wpcf7-acceptance label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    margin: 0;
}

.disclaimer-checkbox-box .wpcf7-acceptance input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: var(--secondary);
    cursor: pointer;
}

.disclaimer-checkbox-box .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text);
}

.btn-submit-large {
    background-color: var(--bg-color) !important;
    color: var(--white) !important;
    font-weight: 800;
    font-size: 16px;
    padding: 15px 40px;
    border-radius: 8px;
    border: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-submit-large:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(244, 180, 0, 0.3);
}

/* Instructions List */
.instructions-list {
    padding-left: 20px;
    margin: 0;
}

.instructions-list li {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
    padding-left: 10px;
}

.instructions-list li::marker {
    color: var(--secondary);
    font-weight: 700;
    font-size: 16px;
}

.instructions-list li strong {
    color: var(--heading);
    font-weight: 700;
}

.hindi-text {
    display: block;
    color: var(--bg-color);
    font-weight: 500;
    margin-top: 4px;
    font-size: 14px;
}

@media (max-width: 991px) {
    .premium-form-card {
        margin-bottom: 30px;
    }
}

.bg-light-green {
    background-color: var(--light-green);
}

.premium-accordion .accordion-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.premium-accordion .accordion-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.premium-accordion .accordion-header {
    margin: 0;
}

.premium-accordion .accordion-button {
    font-weight: 700;
    font-size: 16px;
    color: var(--heading);
    background-color: var(--white);
    padding: 20px 25px;
    box-shadow: none;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-accordion .accordion-button::after {
    display: none !important;
}

.premium-accordion .accordion-button:not(.collapsed) {
    color: var(--bg-color);
    background-color: rgba(140, 204, 60, 0.1);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.premium-accordion .accordion-icon {
    width: 34px;
    height: 34px;
    background-color: var(--bg-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.premium-accordion .accordion-button .icon-minus {
    display: none;
}

.premium-accordion .accordion-button:not(.collapsed) .icon-plus {
    display: none;
}

.premium-accordion .accordion-button:not(.collapsed) .icon-minus {
    display: inline-block;
}

.premium-accordion .accordion-button:not(.collapsed) .accordion-icon {
    background-color: var(--secondary);
    transform: rotate(180deg);
}

.premium-accordion .accordion-body {
    padding: 20px 25px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    background-color: var(--white);
    border-top: 1px solid var(--border);
}

.procedure-specialist-section {
    background-color: var(--bg-color);
    padding: 70px 0;
    color: var(--white);
}

.procedure-specialist-section .section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    color: var(--white);
}

.procedure-step {
    text-align: center;
    padding: 0 15px;
    height: 100%;
}

.procedure-icon-wrapper {
    width: 110px;
    height: 110px;
    background-color: var(--secondary);
    border: 4px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 45px;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.procedure-step:hover .procedure-icon-wrapper {
    transform: translateY(-8px) scale(1.05);
    background-color: var(--accent);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.procedure-text {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--primary);
    margin: 0;
}

/* ==================================================
   About Us Page Styles
================================================== */

.about-wrapper {
    background-color: var(--white);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto;
}

.about-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

.about-feature-card {
    background: var(--bg-color);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.about-feature-card:hover::before {
    transform: scaleX(1);
}

.about-feature-card .about-icon {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-feature-card .about-icon i {
    font-size: 30px;
    color: var(--primary);
}

.about-feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-feature-card p {
    color: var(--white);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.transparency-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transparency-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background: var(--bg-color);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.transparency-list li i {
    font-size: 24px;
    color: var(--primary);
    margin-right: 15px;
    margin-top: 3px;
}

.transparency-list li span {
    font-size: 16px;
    color: var(--white);
    line-height: 1.6;
}

.transparency-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 15px 30px rgba(28, 30, 135, 0.2);
}

.t-card-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.t-card-icon i {
    font-size: 35px;
    color: var(--white);
}

.transparency-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.transparency-card p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.9;
}

.about-contact-banner {
    background-color: var(--bg-color);
    border-radius: 12px;
    padding: 40px;
    border: 1px dashed var(--border);
}

.about-contact-banner h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-contact-banner p {
    color: var(--white);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 25px;
}

.about-contact-btn {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.about-contact-btn:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-wrapper {
        padding: 30px 20px;
    }

    .transparency-image-wrapper {
        margin-top: 30px;
    }
}

/* ==================================================
   Contact Us Redesign
================================================== */
.contact-page-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: var(--background);
}

.contact-card-container {
    background: var(--white);
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-main-heading {
    color: var(--bg-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-intro-text {
    font-size: 16px;
    color: var(--text);
    max-width: 800px;
    line-height: 1.6;
}

.contact-divider {
    border-color: var(--border);
    opacity: 1;
    max-width: 600px;
    margin: 0 auto;
}

.contact-details-row {
    padding-top: 20px;
}

.contact-details-row .c-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-details-row h5 {
    font-size: 18px;
    color: var(--bg-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-details-row p {
    color: var(--text);
    font-size: 15px;
}

.contact-details-row a {
    color: var(--text);
    text-decoration: none;
}

.contact-details-row a:hover {
    color: var(--primary);
}

.busy-line-box {
    background-color: var(--light-green);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    font-size: 14px;
    color: var(--heading);
    line-height: 1.5;
}

.call-request-btn {
    background-color: var(--bg-color) !important;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 6px;
    color: var(--white) !important;
}

.call-request-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Call Request Form View */
.call-request-container {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    max-width: 650px;
    margin: 0 auto;
    overflow: hidden;
}

.cr-header {
    background-color: var(--bg-color);
    color: var(--white);
    padding: 40px 30px;
    position: relative;
}

.cr-icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--white);
}

.cr-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cr-header p {
    font-size: 14px;
    opacity: 0.9;
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.5;
}

.cr-body {
    padding: 40px 50px;
}

.cr-input {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 15px;
}

.cr-input:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.cr-body .form-label {
    font-weight: 500;
    color: var(--heading);
    font-size: 14px;
    margin-bottom: 8px;
}

.cr-body .wpcf7-form p {
    margin: 0;
}

.cr-submit-btn {
    background-color: var(--secondary) !important;
    color: var(--white) !important;
    font-weight: 600;
    font-size: 16px;
    padding: 14px;
    border: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.cr-submit-btn:hover {
    background-color: var(--accent);
    color: var(--white);
}

.cr-security-notice {
    background-color: var(--background);
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text);
}

.cr-back-btn {
    background: none;
    border: none;
    color: var(--bg-color) !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.cr-back-btn:hover {
    color: var(--primary);
}


.terms_and_conditions_hero {
    background-color: var(--secondary);


}

.terms_and_conditions_hero .urgent-form-wrapper {
    margin-top: 0px;
    box-shadow: none;
    background: transparent;
}

@media (max-width: 768px) {
    .contact-card-container {
        padding: 30px 20px;
    }

    .cr-body {
        padding: 30px 20px;
    }
}


.terms_and_conditions_conteant {
    background-color: var(--background);
}

.tc-sidebar {
    background: var(--white);
    border-radius: 12px;
    padding: 25px 0;
    position: sticky;
    top: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tc-sidebar-title {
    font-size: 16px;
    color: var(--text);
    font-weight: 600;
    padding: 0 25px 15px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 15px;
}

.tc-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tc-nav-list li a {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tc-nav-list li a i {
    width: 25px;
    font-size: 16px;
    color: var(--bg-color);
}

.tc-nav-list li a:hover,
.tc-nav-list li a.active {
    background-color: var(--background);
    color: var(--bg-color);
    font-weight: 600;
}

.tc-main-content {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tc-main-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 30px;
}

.tc-notice-card {
    border-radius: 8px;
    padding: 25px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
}

.tc-notice-card.warning-card {
    background-color: var(--background);
    border: 1px solid var(--secondary);
    border-left: 4px solid var(--secondary);
}

.tc-notice-card.info-card {
    background-color: var(--light-green);
    border: 1px solid var(--primary);
    border-left: 4px solid var(--primary);
    color: var(--text);
}

.tc-notice-card p {
    margin-bottom: 0;
}

.tc-notice-card .notice-top h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading);
}

.tc-notice-card .dashed-divider {
    border-top: 1px dashed var(--secondary);
    opacity: 0.5;
    margin: 20px 0;
}

.tc-notice-card .notice-bottom h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 15px;
}

.tc-bullet-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 0;
}

.tc-bullet-list li {
    position: relative;
    padding-left: 0px;
    margin-bottom: 10px;
}


.tc-additional-content p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.tc-section-title {
    color: var(--primary);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.tc-step-title {
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.tc-sub-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 15px;
}

.tc-main-heading-md {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 20px;
}

.tc-main-heading-uppercase {
    text-transform: uppercase;
}

.tc-privacy-heading {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 15px;
}

.privacy-detail-box {
    background-color: var(--light-green);
    border-left: 6px solid var(--primary);
    border-radius: 8px;
    padding: 24px;
    margin-top: 24px;
    text-align: center;
}

.privacy-detail-box h5 {
    color: var(--bg-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.privacy-detail-box .btn-privacy {
    background-color: var(--primary) !important;
    border: none;
    padding: 10px 35px;
    font-weight: 600;
    border-radius: 6px;
    color: var(--white) !important;
}

.tc-contact-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tc-contact-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.disclaimer-list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.disclaimer-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.disclaimer-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--text);
    font-size: 16px;
    opacity: 0.7;
}

/* Policy Pages */
.tc-policy-title {
    font-size: 32px;
    text-transform: capitalize;
}

.tc-policy-title-md {
    font-size: 28px;
    text-transform: capitalize;
}

.privacy-section-title {
    color: var(--primary);
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 20px;
}

.privacy-text {
    color: var(--text);
    line-height: 1.7;
}

.warning-card-light {
    background-color: rgba(244, 180, 0, 0.1);
}

.warning-card-title {
    font-size: 18px;
    color: var(--heading);
}

.tc-bullet-list {
    padding-left: 20px;
    color: var(--text);
    font-size: 14px;
}

.tc-bullet-list li {
    margin-bottom: 8px;
    line-height: 1.7;
    list-style: disc;
}

/* The Privacy Policy page now comes from the page editor (the_content())
   instead of hand-coded markup, so style its plain h3/h4/p/ul/a output to
   match the .privacy-section-title / .privacy-text / .tc-bullet-list /
   .tc-contact-link look the static version used. Scoped to this exact page
   (body.page-id-3) — NOT .privacy_policy_section, which the Refund Policy
   page also uses with its own already-classed markup; scoping to the
   section class would leak these rules onto Refund Policy too. */
body.page-id-3 .tc-main-content > *:first-child {
    margin-top: 0;
}

body.page-id-3 .tc-main-content h2,
body.page-id-3 .tc-main-content h3,
body.page-id-3 .tc-main-content h4 {
    color: var(--primary);
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 20px;
}

body.page-id-3 .tc-main-content p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 15px;
}

body.page-id-3 .tc-main-content ul {
    padding-left: 20px;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 15px;
}

body.page-id-3 .tc-main-content ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    list-style: disc;
}

body.page-id-3 .tc-main-content a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

body.page-id-3 .tc-main-content a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.refund-list {
    list-style: none !important;
    padding-left: 0;
}

.refund-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}

.refund-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 16px;
}

.grievance-contact-box {
    background-color: var(--background);
    border-left: 4px solid var(--primary);
    border-radius: 4px;
}

.grievance-contact-icon {
    font-size: 28px;
    color: var(--primary);
}

.grievance-contact-title {
    color: var(--bg-color);
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 15px;
}

.grievance-contact-link {
    font-weight: 600;
    font-size: 18px;
    color: var(--bg-color);
    text-decoration: none;
}

.grievance-contact-link:hover {
    color: var(--primary);
}

.grievance-section-title {
    color: var(--bg-color);
    border-bottom: none;
}

/* Join Expert Page - Premium Design */
/* Join Expert Page - Premium Design */
.join_expert_section {
    padding: 40px 0;
    background-color: var(--background);
    position: relative;
}

/* Optional: Add a subtle background decoration */
.join_expert_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, #eaf7f080, transparent);
    z-index: 0;
}

.join-expert-wrapper {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-top: 10px;
    margin-bottom: 10px;
}

.join-expert-heading {
    color: var(--bg-color);
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
    margin-bottom: 25px !important;
    position: relative;
}

.join-expert-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin: 12px auto 0;
    border-radius: 2px;
}

.expert-info-header {
    background: linear-gradient(135deg, var(--bg-color), #214069);
    color: var(--white);
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.expert-form {
    padding: 30px 40px;
}

.expert-label {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expert-input {
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    color: var(--heading);
    background-color: var(--white);
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.expert-input:focus {
    border-color: var(--primary);
    background-color: var(--white);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(140, 204, 60, 0.15);
}

.expert-submit-btn {
    background: var(--bg-color) !important;
    color: var(--white) !important;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    min-width: 200px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    margin-top: 10px;
}

.expert-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
    background: var(--primary) !important;
    color: var(--white);
}

/* Expert List Page */
.expert_list_section {
    padding: 50px 0;
    background-color: var(--background);
    min-height: 60vh;
}

.expert-list-heading {
    color: var(--bg-color);
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.expert-list-subheading {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 40px;
}

.expert-card {
    background-color: var(--heading);
    border-radius: 20px;
    padding: 18px 25px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.expert-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.2);
    background: linear-gradient(135deg, var(--bg-color), #1a3250);
}

.expert-name {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.expert-state {
    color: #cbd5e1;
    font-size: 13px;
    margin-bottom: 0;
}


.privacy_policy_section ul.wp-block-list,.privacy_policy_section ul,.disclaimer-list{
   margin: 0;
}


@media (max-width: 768px) {
    .expert-form {
        padding: 25px 20px;
    }

    .join-expert-heading {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .tc-main-content {
        padding: 25px;
    }
}

/* Registration Plans page */
.plan-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 8px;
}

.plan-tagline {
    color: var(--text);
    font-size: 13px;
    margin-bottom: 20px;
    min-height: 36px;
}

.plan-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.plan-price-currency {
    font-size: 20px;
    font-weight: 700;
    vertical-align: top;
    margin-right: 2px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
    flex-grow: 1;
}

.plan-features li {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.plan-features li i {
    color: var(--primary);
    margin-right: 8px;
}

.plan-choose-btn {
    background-color: var(--bg-color);
    color: var(--white) !important;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
}

.plan-choose-btn:hover:not(:disabled) {
    background-color: var(--primary);
    color: var(--bg-color) !important;
}

.plan-choose-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.fl-payment-message {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.fl-payment-message.fl-payment-error {
    color: #dc3232;
}

/* Eligibility Tatkal Section */
.eligibility-tatkal_section {
    padding: 50px 0;
    background-color: var(--background);
}

.tatkal-dropdown-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tatkal-select {
    padding: 12px 45px 12px 25px;
    border: 2px solid var(--primary);
    background-color: var(--white);
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    min-width: 250px;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%238ccc3c%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    max-width: 400px;
    height: 50px;
}

.tatkal-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(244, 180, 0, 0.2);
}

.tatkal-fields-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tatkal-field-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--text);
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.tatkal-field-item:hover {
    background-color: var(--light-green);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(140, 204, 60, 0.15);
}

.tatkal-field-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.tatkal-field-text {
    font-size: 15px;
    font-weight: 500;
}

.tatkal-field-item input:checked~.tatkal-field-text {
    font-weight: 700;
}

.tatkal-field-item:has(input:checked) {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--bg-color);
    box-shadow: 0 5px 15px rgba(140, 204, 60, 0.3);
}

/* Nutritional Form Specific Styles */
.nutritional-label {
    font-weight: 600;
    font-size: 16px;
}

.nutritional-sublabel {
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
}

.nutritional-section-title {
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.nutritional-upload-box {
    background: var(--white);
    height: 100%;
}

.nutritional-upload-box p {
    font-weight: 600;
    color: var(--heading);
    height: 100px;
}

.nutritional-submit-btn {
    border-radius: 0;
    font-size: 18px;
    font-weight: 700;
    background-color: var(--white);
    color: var(--heading);
    border: 2px solid var(--heading);
    box-shadow: none;
    transition: all 0.3s ease;
}

.nutritional-submit-btn:hover {
    background-color: var(--heading);
    color: var(--white);
}

/* Pricing Cards for Payment Page */
.pricing-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 20px 10px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

/* Payment Page Custom CSS */
.payment-page-section {
    background-color: var(--background);
}

.payment-main-heading {
    color: var(--heading);
}

.payment-sub-heading {
    color: var(--text);
    font-size: 20px;
}

.payment-details-box {
    max-width: 800px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.payment-label {
    color: var(--text);
    font-size: 14px;
}

.payment-value {
    color: var(--heading);
    font-size: 15px;
}

.payment-edit-btn {
    background-color: var(--bg-color) !important;
    color: var(--white) !important;
    border-radius: 8px;
}

.payment-edit-btn:hover {
    background-color: var(--heading);
    color: var(--white);
}

.pricing-title {
    font-size: 14px;
    color: var(--heading);
}

.btn-pay-now {
    background-color: var(--secondary) !important;
    color: var(--heading) !important;
    border: 1px solid var(--accent) !important;
    border-radius: 4px;
}

.btn-pay-now:hover {
    background-color: var(--accent);
    color: var(--white);
}

.payment-warning-title {
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}

.payment-warning-text {
    color: var(--text);
    font-size: 13px;
}