/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
}
/* HEADER */
header {
    background: #7a0d0d;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.35);
    transition: all 0.3s ease;
}

/* CONTAINER */
.container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER CONTENT */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 70px;          /* Reduced but premium */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

/* Logo hover */
.logo img:hover {
    transform: scale(1.05);
}

/* NAVIGATION */
nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

/* NAV LINKS */
nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 4px;
    position: relative;
    transition: color 0.3s ease;
}

/* ICON COLOR */
nav ul li a i {
    color: #ffd700;
    transition: transform 0.3s ease;
}

/* UNDERLINE ANIMATION */
nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #fff1a8);
    transition: width 0.3s ease;
}

/* HOVER EFFECT */
nav ul li a:hover {
    color: #ffd700;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover i {
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 12px;
    }

    .logo img {
        height: 60px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }
}



/* HERO SLIDER */
.hero-slider {
    width: 100%;
    height: 65vh;
    position: relative;
    overflow: hidden;
}

.slides {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slides.active {
    opacity: 1;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* SLIDER TEXT */
.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.slider-content h1 {
    font-size: 52px;
    margin-bottom: 15px;
    font-weight: 700;
}

.slider-content p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #f1f1f1;
}

/* BUTTON */
.slider-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #c21807, #8b0000);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s ease;
}

.slider-btn:hover {
    background: #ffd700;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
    }

    .slider-content h1 {
        font-size: 34px;
    }

    .slider-content p {
        font-size: 16px;
    }
}

/* ABOUT SECTION */
.about-section {
    width: 100%;
    background: #fff3cd; /* creamish yellow */
    padding: 50px 0;
}

/* CONTAINER */
.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
}

/* IMAGE */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 590px;
    object-fit: cover;
    border-radius: 14px;
    border: 6px solid #8b0000;
    box-shadow: 0 18px 40px rgba(139, 0, 0, 0.3);
}

/* CONTENT */
.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 42px;
    color: #8b0000;
    margin-bottom: 12px;
    font-weight: 700;
}

/* DIVIDER */
.divider {
    width: 90px;
    height: 4px;
    background: #c21807;
    margin-bottom: 25px;
    border-radius: 5px;
}

/* TEXT */
.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #4a2c2a;
    margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .divider {
        margin: 15px auto 25px;
    }

    .about-image img {
        height: 320px;
    }

    .about-content h2 {
        font-size: 34px;
    }
}
/* READ MORE BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #8b0000, #c21807);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.about-btn:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
/* TAGLINE SECTION */
.tagline-section {
    width: 100%;
    background: #7a0d0d;
    padding: 60px 20px;
    text-align: center;
}

/* CONTENT */
.tagline-content {
    max-width: 1000px;
    margin: auto;
    color: #fff;
}

/* ICON */
.tagline-content i {
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 15px;
    display: block;
}

/* TEXT */
.tagline-content h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .tagline-content h2 {
        font-size: 26px;
    }
}

/* STATS SECTION */
.stats-section {
    width: 100%;
    background: linear-gradient(135deg, #2c2c2c, #3a3a3a);
    padding: 90px 20px;
}

/* CONTAINER */
.stats-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* STAT BOX */
.stat-box {
    text-align: center;
    color: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    transition: all 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

/* ICON */
.stat-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8b0000, #c21807);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.5);
}

.stat-icon i {
    font-size: 28px;
    color: #fff;
}

/* NUMBER */
.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
}

/* TITLE */
.stat-title {
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f1f1f1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}
/* GALLERY SECTION */
.gallery-section {
    width: 100%;
    padding: 30px 0;
    background: linear-gradient(135deg, #8b0000, #c21807);
}

/* HEADING */
.gallery-heading {
    text-align: center;
    font-size: 40px;
    color: #8b0000;
    margin-bottom: 50px;
    font-weight: 700;
}

/* SLIDER */
.gallery-slider {
    overflow: hidden;
    width: 100%;
}

/* TRACK */
.gallery-track {
    display: flex;
    gap: 25px;
    animation: scrollGallery 30s linear infinite;
}

/* PAUSE ON HOVER */
.gallery-slider:hover .gallery-track {
    animation-play-state: paused;
}

/* ITEM */
.gallery-item {
    min-width: 300px;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ANIMATION */
@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gallery-heading {
        font-size: 30px;
    }

    .gallery-item {
        min-width: 240px;
        height: 180px;
    }
}

/* SERVICES SECTION */
.services-section {
    width: 100%;
    padding: 30px 20px;
    background: #fff3cd; /* creamish yellow */
    text-align: center;
}

/* HEADING */
.services-heading {
    font-size: 42px;
    color: #8b0000;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 50px;
}

.services-subtitle {
    font-size: 17px;
    color: #5a3a2e;
    margin-bottom: 60px;
}

/* CONTAINER */
.services-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.service-card {
    background:linear-gradient(135deg, #8b0000, #c21807);
    padding: 45px 30px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(139, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(139, 0, 0, 0.25);
}

/* ICON */
.service-icon {
    width: 80px;
    height: 80px;
    background:  #fff3cd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 32px;
    color: linear-gradient(135deg, #8b0000, #c21807);
}

/* TITLE */
.service-card h3 {
    font-size: 24px;
    color:  #fff3cd;
    margin-bottom: 15px;
    font-weight: 600;
}

/* TEXT */
.service-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 25px;
}

/* LINK */
.service-card a {
    text-decoration: none;
    font-weight: 600;
    color:#000000;
    transition: color 0.3s ease;
}

.service-card a:hover {
    color: #8b0000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .services-heading {
        font-size: 34px;
    }
}
/* SECTION */
.testimonial-section {
    padding: 100px 20px;
    background: #fff3cd;
}

/* HEADER */
.testimonial-header {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.testimonial-header h2 {
    font-size: 38px;
    color: #7a0d0d;
    font-weight: 700;
}

.testimonial-header a {
    text-decoration: none;
    color: #7a0d0d;
    font-weight: 600;
    transition: 0.3s;
}

.testimonial-header a:hover {
    color: #ba1506;
}

/* WRAPPER */
.testimonial-wrapper {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
}

/* SLIDER */
.testimonial-slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

/* CARD */
.testimonial-card {
    min-width: 100%;
    background: #7a0d0d;
    padding: 55px 65px;
    border-radius: 24px;
    position: relative;
    box-sizing: border-box;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

/* QUOTES */
.quote-icon {
    font-size: 64px;
    color: #fff3cd;
    position: absolute;
    font-family: serif;
    opacity: 0.8;
}

/* OPEN QUOTE */
.quote-icon.open {
    top: 20px;
    left: 30px;
}

/* CLOSE QUOTE (FIXED POSITION) */
.quote-icon.close {
    bottom: 30px;
    right: 30px;
}

/* TEXT */
.testimonial-text {
    font-size: 20px;
    line-height: 1.9;
    color: #fff3cd;
    margin: 50px 0 40px;
}

/* USER */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-user img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff3cd;
}

.testimonial-user h4 {
    margin: 0;
    color: #fff3cd;
    font-size: 18px;
}

/* STARS */
.stars {
    color: #ffd700;
    margin-top: 6px;
    letter-spacing: 2px;
}

/* DOTS */
.testimonial-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(122,13,13,0.4);
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
    transition: 0.3s;
}

.dot:hover {
    transform: scale(1.2);
}

.dot.active {
    background: #7a0d0d;
    width: 16px;
    border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .testimonial-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .testimonial-card {
        padding: 40px 25px;
    }

    .testimonial-text {
        font-size: 17px;
    }

    .quote-icon {
        font-size: 50px;
    }
}

/* DARK BACKGROUND */
.premium-feature-section {
    background: linear-gradient(135deg, #2b2b2b, #3a3a3a);
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}

/* FLOATING CARD */
.premium-card {
    background: #fff6e5;
    max-width: 900px;
    width: 100%;
    padding: 70px 60px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    position: relative;
    animation: fadeUp 1s ease;
}

/* BADGE */
.premium-badge {
    background: linear-gradient(135deg, #ff9f1c, #ff7a00);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

/* HEADINGS */
.premium-card h2 {
    font-size: 42px;
    color: #7a0d0d;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

/* FEATURES */
.feature-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
    color: #333;
}

.feature-item i {
    color: #ff8c00;
    font-size: 20px;
}

/* BUTTONS */
.premium-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ff8c00, #ff6a00);
    color: #fff;
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255,140,0,0.4);
}

.btn-outline {
    border: 2px solid #333;
    padding: 14px 34px;
    border-radius: 30px;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #333;
    color: #fff;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .premium-card {
        padding: 50px 30px;
    }

    .premium-card h2 {
        font-size: 32px;
    }

    .feature-list {
        gap: 20px;
    }
}

.site-footer {
    background: #7a0d0d;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
}

/* BRAND */
.footer-col.brand h2 {
    color: #ff9f1c;
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-col.brand p {
    color: #fff3cd;
    line-height: 1.7;
    font-size: 15px;
}

/* HEADINGS */
.footer-col h3 {
    color: #ff9f1c;
    margin-bottom: 20px;
    font-size: 20px;
}

/* CONTACT */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 12px;
    color: #fff3cd;
    font-size: 15px;
}

.contact-list i {
    color: #ff9f1c;
    margin-right: 10px;
}

/* SOCIAL */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #7a0d0d;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff9f1c;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff3cd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff9f1c;
    padding-left: 5px;
}

/* NEWSLETTER */
.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background: #ff9f1c;
    border: none;
    padding: 12px 20px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #7a0d0d;
}

/* BOTTOM BAR */
.footer-bottom {
    background: #7a0d0d;
    color: #fff3cd;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        border-radius: 4px;
        margin-bottom: 10px;
    }
}
.team-section {
    padding: 100px 20px;
    background: #fef1cb;
    text-align: center;
}

.team-header .subtitle {
    color: #b61306;
    font-size: 22px;
    font-weight: 600;
}

.team-header h2 {
    font-size: 42px;
    margin-top: 10px;
    color: #222;
}

/* SLIDER */
.team-slider-wrapper {
    max-width: 1200px;
    margin: 60px auto 0;
    overflow: hidden;
}

.team-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: transform 0.6s ease;
}

/* CARD */
.team-card {
    width: 320px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    transform: scale(0.85);
    filter: blur(2px);
    opacity: 0.6;
    transition: all 0.5s ease;
}

/* ACTIVE (CENTER CARD) */
.team-card.active {
    transform: scale(1);
    filter: blur(0);
    opacity: 1;
}

/* IMAGE */
.team-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* INFO */
.team-info {
    background: #2b2b2b;
    padding: 20px;
}

.team-info h4 {
    color: #b61306;
    margin: 0;
    font-size: 18px;
}

.team-info p {
    margin-top: 6px;
    color: #fff;
    font-size: 14px;
}

/* RESPONSIVE */
/* RESPONSIVE: Vertical Stack for Mobile */
@media (max-width: 768px) {
    .team-slider-wrapper {
        overflow: visible; /* Allow stacked cards to show */
        margin-top: 40px;
    }

    .team-slider {
        flex-direction: column; /* Stack cards vertically */
        gap: 30px; /* Space between stacked cards */
        padding: 0 15px;
        transform: none !important; /* Disable slider horizontal movement */
    }

    .team-card {
        width: 100%; /* Stretch to container width */
        max-width: 350px; /* Prevent cards from getting too wide */
        transform: scale(1); /* Reset scale so all cards look equal */
        filter: blur(0); /* Remove blur */
        opacity: 1; /* Make all cards fully visible */
        margin: 0 auto;
    }

    .team-card.active {
        transform: scale(1); /* Match active state to normal state */
        box-shadow: 0 10px 20px rgba(0,0,0,0.1); /* Optional: slight lift for all */
    }

    .team-card img {
        height: 300px; /* Adjust height for a better vertical flow */
    }

    .team-header h2 {
        font-size: 32px;
    }
}
/* ======================================
   AUTH HERO SECTION (ISOLATED)
====================================== */
.auth-hero {
    background: #fff3cd;
    padding: 80px 0;
}

.auth-hero h1 {
    text-align: center;
    font-size: 42px;
    color: #8b0000;
    margin-bottom: 10px;
}

.auth-hero p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #555;
}

/* ======================================
   TOGGLE BUTTONS
====================================== */
.auth-hero .auth-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.auth-hero .auth-toggle button {
    padding: 12px 40px;
    border-radius: 30px;
    border: 2px solid #8b0000;
    background: transparent;
    color: #8b0000;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.auth-hero .auth-toggle button.active {
    background: #8b0000;
    color: #fff;
}

/* ======================================
   MULTI STEP CONTAINER
====================================== */
.auth-hero .multi-step-container {
    max-width: 1100px;
    margin: 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.auth-hero .hidden {
    display: none;
}

/* ======================================
   FORM CONTAINER
====================================== */
.auth-hero .form-container {
    padding: 40px;
}

.auth-hero .step-title {
    font-size: 26px;
    color: #8b0000;
    margin-bottom: 25px;
}

/* ======================================
   FORM GRID
====================================== */
.auth-hero .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.auth-hero .form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.auth-hero .form-group label.required::after {
    content: " *";
    color: red;
}

/* INPUTS */
.auth-hero input,
.auth-hero select,
.auth-hero textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.auth-hero textarea {
    resize: none;
}

/* ======================================
   FILE UPLOAD
====================================== */
.auth-hero .file-upload {
    border: 2px dashed #8b0000;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    background: #fff5f0;
}

.auth-hero .file-upload i {
    font-size: 30px;
    color: #8b0000;
    margin-bottom: 10px;
}

/* ======================================
   RADIO GROUP
====================================== */
.auth-hero .radio-group {
    display: flex;
    gap: 20px;
}

.auth-hero .radio-option {
    font-size: 14px;
}

/* ======================================
   PROGRESS STEPS
====================================== */
.auth-hero .progress-steps {
    display: flex;
    justify-content: space-between;
    padding: 25px 40px;
    background: #fff0e8;
    border-bottom: 1px solid #eee;
}

.auth-hero .step {
    text-align: center;
    flex: 1;
    opacity: 0.5;
}

.auth-hero .step.active {
    opacity: 1;
}

.auth-hero .step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ccc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-weight: bold;
}

.auth-hero .step.active .step-circle {
    background: #8b0000;
}

.auth-hero .step-label {
    font-size: 12px;
    margin-top: 6px;
}

/* ======================================
   FORM STEPS
====================================== */
.auth-hero .form-step {
    display: none;
}

.auth-hero .form-step.active {
    display: block;
}

/* ======================================
   BUTTONS
====================================== */
.auth-hero .button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.auth-hero .btn {
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.auth-hero .btn-next,
.auth-hero .btn-submit {
    background: linear-gradient(to right, #8b0000, #c21807);
    color: #fff;
}

.auth-hero .btn-prev {
    background: #ddd;
}

/* ======================================
   LOADING
====================================== */
.auth-hero .loading {
    display: none;
    text-align: center;
    margin-top: 20px;
}

.auth-hero .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top: 4px solid #8b0000;
    border-radius: 50%;
    margin: auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}



/* Profile For Grid */
.profile-for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.profile-for-option {
    cursor: pointer;
}

.profile-for-option input {
    display: none;
}

.profile-for-box {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 20px 10px;
    text-align: center;
    transition: all 0.3s ease;
    background: white;
    height: 100%;
}

.profile-for-box i {
    font-size: 24px;
    color: #d32f2f;
    margin-bottom: 10px;
    display: block;
}

.profile-for-box span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.profile-for-option input:checked + .profile-for-box {
    border-color: #d32f2f;
    background-color: rgba(211, 47, 47, 0.1);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.2);
}

/* Gender Options */
.gender-options {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.gender-option {
    cursor: pointer;
    flex: 1;
}

.gender-option input {
    display: none;
}

.gender-box {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    background: white;
}

.gender-box i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.gender-box i.fa-mars {
    color: #2196F3;
}

.gender-box i.fa-venus {
    color: #E91E63;
}

.gender-box span {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.gender-option input:checked + .gender-box {
    border-color: #d32f2f;
    background-color: rgba(211, 47, 47, 0.1);
}

/* Age and Height Range */
.age-range, .height-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
}

/* Full Width Form Group */
.form-group.full-width {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-for-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gender-options {
        flex-direction: column;
    }
    
    .age-range, .height-range {
        flex-direction: column;
        gap: 10px;
    }
    
    .age-range select,
    .height-range select {
        width: 100% !important;
    }
}

/* Height Input Group */
.height-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Radio Group Styling */
.radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 12px 15px;
    border-radius: 8px;
    background: #f9f9f9;
    transition: all 0.3s ease;
    min-width: 150px;
    border: 2px solid #f0f0f0;
}

.radio-option:hover {
    background: #f0f0f0;
    border-color: #ddd;
}

.radio-option input[type="radio"] {
    margin: 0;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.radio-option span {
    font-weight: 500;
    color: #333;
}

.radio-option input[type="radio"]:checked + span {
    color: #d32f2f;
    font-weight: 600;
}

/* Gender Section */
.gender-section {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Time Input */
input[type="time"] {
    padding: 12px 15px;
}

/* Number Input */
input[type="number"] {
    padding: 12px 15px;
}

/* Responsive Radio Groups */
@media (max-width: 768px) {
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .radio-option {
        width: 100%;
        justify-content: flex-start;
    }
    
    .height-input-group {
        flex-direction: column;
    }
    
    .height-input-group select {
        width: 100% !important;
    }
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 768px) {
    .auth-hero h1 {
        font-size: 30px;
    }

    .auth-hero .progress-steps {
        overflow-x: auto;
        gap: 20px;
    }
}


.profile-for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.profile-for-option {
    cursor: pointer;
}

.profile-for-option input {
    display: none;
}

.profile-for-box {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 20px 10px;
    text-align: center;
    transition: all 0.3s ease;
    background: white;
    height: 100%;
}

.profile-for-box i {
    font-size: 24px;
    color: #d32f2f;
    margin-bottom: 10px;
    display: block;
}

.profile-for-box span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.profile-for-option input:checked + .profile-for-box {
    border-color: #d32f2f;
    background-color: rgba(211, 47, 47, 0.1);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.2);
}

/* Gender Options */
.gender-options {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.gender-option {
    cursor: pointer;
    flex: 1;
}

.gender-option input {
    display: none;
}

.gender-box {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    background: white;
}

.gender-box i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.gender-box i.fa-mars {
    color: #2196F3;
}

.gender-box i.fa-venus {
    color: #E91E63;
}

.gender-box span {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.gender-option input:checked + .gender-box {
    border-color: #d32f2f;
    background-color: rgba(211, 47, 47, 0.1);
}

/* Candidate Info Header */
.candidate-info-header {
    background: rgba(211, 47, 47, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #d32f2f;
    display: flex;
    align-items: center;
    gap: 12px;
}

.candidate-info-header i {
    color: #d32f2f;
    font-size: 1.2rem;
}

.candidate-info-header span {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

/* Field Hints */
.field-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

/* Contact Person Section */
.contact-person-section {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid #eee;
}

.your-account-section {
    display: block;
}

/* Height Input Group */
.height-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.height-input-group select {
    flex: 1;
}

/* Radio Group Styling */
.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 8px;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.radio-option:hover {
    background: #f0f0f0;
}

.radio-option input[type="radio"] {
    margin: 0;
    cursor: pointer;
}

/* Read-only input styling */
input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
    border-color: #ddd;
}

input[readonly]:focus {
    border-color: #ddd;
    box-shadow: none;
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: #f0f0f0;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: #333;
}

.checkbox-label a {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Custom styling for step sections */
.form-step h3 {
    color: #d32f2f;
    font-size: 1.3rem;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .profile-for-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gender-options {
        flex-direction: column;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .height-input-group {
        flex-direction: column;
    }
    
    .height-input-group select {
        width: 100% !important;
    }
    
    .candidate-info-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 15px;
    }
    
    .contact-person-section {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .profile-for-grid {
        grid-template-columns: 1fr;
    }
    
    .candidate-info-header span {
        font-size: 1rem;
    }
}

/* Form step display */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* Gender section */
.gender-section {
    display: none;
}

.gender-section.show {
    display: block;
}

/* Your account section */
.your-account-section {
    display: none;
}

.your-account-section.show {
    display: block;
}

/* Contact person section */
.contact-person-section {
    display: none;
}

.contact-person-section.show {
    display: block;
}
/* ======================================
   POPUP ALERTS
====================================== */
.alert-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    max-width: 400px;
    animation: slideIn 0.3s ease;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    position: relative;
    border-left: 5px solid #d32f2f;
}

.alert-success .popup-content {
    border-left-color: #4CAF50;
}

.alert-error .popup-content {
    border-left-color: #d32f2f;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
    color: #666;
}

.popup-close:hover {
    color: #333;
}

.popup-content p {
    margin: 0;
    padding-right: 20px;
    color: #333;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Remove old alert container styling */
#alert-container {
    display: none;
}

.terms-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff6e5, #fff);
    font-family: 'Poppins', sans-serif;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #222;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #ba1506;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* CARD STYLE */
.terms-card {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.terms-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #ba1506;
    border-left: 5px solid #ba1506;
    padding-left: 15px;
}

.terms-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    text-align: justify;
}

/* Hindi slight font tweak */
.terms-card.hindi {
    background: #fffdf8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }

    .terms-card {
        padding: 25px;
    }

    .terms-card h3 {
        font-size: 22px;
    }

    .terms-card p {
        font-size: 15px;
    }
}

/* =======================
   CALL REQUEST SECTION
======================= */

.call-request {
    background: linear-gradient(135deg, #800000, #b61306);
    padding: 80px 20px;
    text-align: center;
    color: #fff6e5;
}

.call-request h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.call-request p {
    font-size: 16px;
    margin-bottom: 30px;
}

.call-request form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.call-request input {
    padding: 14px;
    border-radius: 6px;
    border: none;
    font-size: 15px;
    outline: none;
}

.call-request button {
    padding: 14px;
    background: #fff6e5;
    color: #800000;
    border: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.call-request button:hover {
    background: #ffdca8;
}

/* =======================
   POPUP OVERLAY
======================= */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

/* =======================
   POPUP BOX
======================= */

.popup-box {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 14px;
    text-align: center;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    animation: popupScale 0.35s ease forwards;
}

.popup-box h3 {
    color: #800000;
    font-size: 22px;
    margin-bottom: 10px;
}

.popup-box p {
    color: #444;
    font-size: 15px;
    margin-bottom: 20px;
}

/* =======================
   POPUP BUTTON
======================= */

.popup-box button {
    padding: 12px 28px;
    background: #800000;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.popup-box button:hover {
    background: #b61306;
}

/* =======================
   POPUP ANIMATION
======================= */

@keyframes popupScale {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


.photo-upload-container {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.photo-upload-container:hover {
    border-color: #d32f2f;
    background: #fff5f5;
}

.photo-preview {
    margin-bottom: 20px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.photo-preview i {
    font-size: 80px;
    color: #ccc;
    margin-bottom: 10px;
}

.photo-preview img {
    max-width: 150px;
    max-height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d32f2f;
}

.photo-preview span {
    color: #666;
    font-size: 14px;
}

.upload-options {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

.upload-btn, .remove-btn {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.upload-btn {
    background: #d32f2f;
    color: white;
}

.upload-btn:hover {
    background: #b71c1c;
}

.remove-btn {
    background: #f44336;
    color: white;
}

.remove-btn:hover {
    background: #d32f2f;
}

.photo-hint {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 10px;
}

.photo-hint i {
    margin-right: 5px;
}

.account-security-section, .profile-photo-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

      /* Packages Section */
    .packages-section {
        font-family: 'Segoe UI', sans-serif;
        background:  #fff3cd;
        padding: 50px 20px;
        text-align: center;
    }

    .packages-section h1 {
        margin-bottom: 40px;
        color: rgb(180 18 5);
        font-size: 2.2rem;
    }

    .packages-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: auto;
    }

    .package-card {
        background: #fff3cd;
        border-radius: 12px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        flex: 1 1 250px;
        transition: transform 0.3s, box-shadow 0.3s;
        display: flex;
        flex-direction: column;
    }

    .package-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .package-card h2 {
        font-size: 2rem;
        margin-bottom: 5px;
        color: rgb(180 18 5);
    }

    .package-card p {
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: #666;
    }

    /* Feature list specific to packages */
    .package-features {
        text-align: left;
        margin-bottom: 25px;
        flex-grow: 1;
        list-style: none; /* remove bullets */
        padding: 0;
    }

    .package-features li {
        margin: 12px 0;
        font-size: 1rem;
        color: #555;
        display: flex;
        align-items: center;
    }

    .package-features li::before {
        content: "✓";
        color: rgb(180 18 5);
        margin-right: 10px;
        font-weight: bold;
    }

    .package-card button {
        padding: 12px 30px;
        border: none;
        border-radius: 8px;
        background: rgb(180 18 5);
        color: #fff;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.3s;
    }

    .package-card button:hover {
        background: rgb(180 18 5);
    }

    /* Highlight preferred card */
    .package-card.popular {
        border: 2px solid rgb(180 18 5);
        background: rgb(255 226 224);
        transform: scale(1.05);
    }

    .package-card.popular h2 {
        color: rgb(180 18 5);
    }
    .ribbon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(
        135deg,
        #d4af37 0%,
        #ffeb8a 30%,
        #ffd700 50%,
        #ffeb8a 70%,
        #b8962e 100%
    );
    color: #000; /* black text */
    font-weight: 700;
    padding: 6px 14px;
    font-size: 0.9rem;
    border: 2px solid #000; /* black border */
    border-radius: 8px;
    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.6),
        0 3px 8px rgba(0,0,0,0.25);

    text-transform: uppercase;
    letter-spacing: 0.5px;
}


    @media (max-width: 768px) {
        .packages-container {
            flex-direction: column;
            align-items: center;
        }
        .package-card {
            max-width: 350px;
        }
    }
    
    
    .popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.popup-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.terms-section {
    padding: 60px 10%;
    background: #fef2cc;
}
/* ===============================
   SECTION
=================================*/
.terms-section {
    padding: 60px 8%;
    background: #fef2cc;
}

/* ===============================
   TITLE
=================================*/
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: rgb(122, 13, 13);
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: rgb(122, 13, 13);
    display: block;
    margin: 12px auto 0;
    border-radius: 10px;
}

/* ===============================
   GRID
=================================*/
.planner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .planner-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   CARD
=================================*/

.planner-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(122, 13, 13, 0.08);
    transition: 0.3s ease;
    border-top: 6px solid rgb(122, 13, 13);
    position: relative;
    overflow: hidden;

    min-height: 400px;
    display: flex;
    flex-direction: column;
}

/* ===============================
   IMAGE
=================================*/
.planner-card img {
    width: 100%;
    height: 50%;
    object-fit: contain;
    margin-bottom: 15px;
}

.card-buttons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.card-buttons .btn {
    flex: 1;
}

/* Soft highlight effect */
.planner-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: rgb(255, 243, 205);
    border-radius: 50%;
    opacity: 0.6;
}

/* Hover effect */
.planner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(122, 13, 13, 0.15);
}


/* ===============================
   TEXT
=================================*/
.planner-card h3 {
    color: rgb(122, 13, 13);
    margin-bottom: 10px;
    font-size: 20px;
}

.planner-card p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
    line-height: 1.5;
}

.planner-card strong {
    color: rgb(122, 13, 13);
}
.vendor-btn {
    background: rgb(122, 13, 13);
    color: #fff;
    padding: 10px 22px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.vendor-btn:hover {
    background: #8f1515;
}


