﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

#Layout .container, #AdminLayout .container {
    padding: 10px 20px 10px 0px;
}

.footer-column ul li .not-active-link {
    color: #7f8385 !important;
    font-size: 14px;
    cursor: default;
}

    .footer-column ul li .not-active-link:hover {
        color: #7f8385 !important;
        text-decoration: none !important;
        transform: none !important;
        transition: none !important;
    }


/* Header Styles */
.header {
    background-color: #E8F0DB;
    padding: 5px 0px 5px 0px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .header .container .nav-wrapper .user-email {
        font-size: 12px;
        text-decoration: none !important;
    }

        .header .container .nav-wrapper .user-email:hover {
            font-size: 12px;
            text-decoration: none !important;
        }


.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.logo img {
    transition: transform 0.3s ease;
}

    .logo img:hover {
        /* transform: scale(1.05);*/
    }

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Guest navigation - center the main nav links */
.nav-menu-guest {
    flex: 1;
    justify-content: center;
}

.nav-center {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Authenticated nav menu - align to the right */
.nav-menu-authenticated {
    justify-content: flex-end;
    margin-left: auto;
}

/* Right side navigation for guest users */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hide mobile auth section on desktop by default */
.mobile-auth-section {
    display: none !important;
}

/* Large screen optimizations */
@media (min-width: 1200px) {
    .nav-wrapper {
        gap: 40px;
    }

    .nav-center {
        gap: 40px;
    }

    .nav-right {
        gap: 25px;
    }

    .nav-menu-authenticated {
        gap: 35px;
    }
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #3d5698;
        transition: width 0.3s ease;
    }

    .nav-link:hover {
        color: #3d5698;
    }

        .nav-link:hover::after {
            width: 100%;
        }

    .nav-link.active {
        color: #3d5698;
        background-color: rgba(91, 111, 199, 0.1);
        border-radius: 8px;
        padding: 10px 15px;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(91, 111, 199, 0.15);
    }

        .nav-link.active::after {
            width: 100%;
            background: linear-gradient(135deg, #3d5698 0%, #4A5AB3 100%);
            height: 3px;
            border-radius: 2px;
        }

.cta-button {
    background-color: #3d5698;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(91, 111, 199, 0.3);
}

    .cta-button:hover {
        background-color: #4A5AB3;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(91, 111, 199, 0.4);
    }

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 3px;
    }

/* Hero Section - How Do We Do It */
.hero-section {
    background: linear-gradient(135deg, #F5F9FF 0%, #E8F0FF 100%);
    padding: 60px 0px 0px 0px;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease;
}

.process-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    animation: fadeIn 1s ease;
}

.central-q-logo {
    width: 360px;
    height: 260px;
    object-fit: contain;
    border-radius: 280px;
    padding: 20px;
    transition: transform 0.3s ease;
}

    .central-q-logo:hover {
        /* transform: scale(1.05);*/
    }

.process-item {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 320px;
    animation: fadeInScale 0.8s ease;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
    padding: 16px 20px;
    border-radius: 45px 15px 45px 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .process-item:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

.process-number {
    background: linear-gradient(135deg, #3d5698 0%, #4A5AB3 100%);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 15px 4px 14px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(91, 111, 199, 0.3);
}

.process-2 .process-number {
    background: linear-gradient(135deg, #3d5698 0%, #7B8FE7 100%);
}

.process-3 .process-number {
    background: linear-gradient(135deg, #7BAF6F 0%, #5F9E4F 100%);
}

.process-4 .process-number {
    background: linear-gradient(135deg, #4A5AB3 0%, #3d5698 100%);
}

.process-5 .process-number {
    background: linear-gradient(135deg, #7BAF6F 0%, #6BA85F 100%);
}

.process-6 .process-number {
    background: linear-gradient(135deg, #3d5698 0%, #4A5AB3 100%);
}

.process-content h3 {
    font-size: 14px;
    color: #2C3E50;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.process-content p {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Hexagonal positioning - 6 points around the center - matching the image exactly */
.process-1 {
    top: 45%;
    left: 0%;
    animation-delay: 0.2s;
}

.process-2 {
    top: 24%;
    left: 10%;
    transform: translateX(-50%);
    animation-delay: 0.4s;
}

.process-3 {
    top: 24%;
    right: 7%;
    animation-delay: 0.6s;
}

.process-4 {
    top: 45%;
    left: 65%;
    animation-delay: 0.8s;
}

.process-5 {
    top: 65%;
    left: 62%;
    transform: translateX(-50%);
    animation-delay: 1.0s;
}

.process-6 {
    bottom: 23%;
    left: 3%;
    animation-delay: 1.2s;
}

/* Brand Section */
.brand-section {
    background-color: #ecf0e7;
    padding: 40px 0;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.brand-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand-text {
    flex: 1;
    animation: fadeInLeft 1s ease;
}

/* Brand Carousel Styles */
.brand-carousel {
    position: relative;
    overflow: hidden;
    min-height: 160px;
}

.carousel-slide {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

    .carousel-slide.active {
        opacity: 1;
        transform: translateX(0);
        position: relative;
        pointer-events: auto;
    }

    .carousel-slide h2 {
        font-size: 32px;
        font-weight: 700;
        color: #2C3E50;
        margin-bottom: 18px;
        line-height: 1.2;
        animation: slideInFromLeft 0.8s ease-out;
    }

    .carousel-slide p {
        font-size: 16px;
        color: #555;
        margin-bottom: 20px;
        line-height: 1.6;
        animation: slideInFromLeft 0.8s ease-out 0.2s both;
    }

/* Brand Image Container */
.brand-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.brand-cover-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    /*box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);*/
    transition: transform 0.3s ease;
    min-height: 300px;
    /*background: linear-gradient(135deg, #a3bd952b 0%, #F5F9FF 100%);*/
    object-fit: cover;
    height: 400px;
}

    .brand-cover-image:hover {
    }

/* Placeholder styling when image is not loaded */
.brand-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 450px;
    /*background: linear-gradient(135deg, #E8F0FF 0%, #F5F9FF 25%, #E8F0DB 50%, #F5F9FF 75%, #E8F0FF 100%);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);*/
    border-radius: 15px;
    z-index: -1;
    opacity: 0.8;
}

/* Slide animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.outline-button {
    background: transparent;
    border: 2px solid #3d5698;
    color: #3d5698;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .outline-button:hover {
        background-color: #3d5698;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(91, 111, 199, 0.3);
    }

.brand-visual {
    flex: 1;
    position: relative;
    height: 500px;
    animation: fadeInRight 1s ease;
}

.person-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
    background: linear-gradient(135deg, #E8F0FF 0%, #F5F9FF 100%);
}

    .person-circle img {
        width: 75%;
        height: 100%;
        object-fit: cover;
    }

.floating-card {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

    .floating-card:hover {
        transform: translateY(-5px);
    }

    .floating-card img {
        width: 80px;
        height: 60px;
        object-fit: cover;
        border-radius: 8px;
    }

    .floating-card span {
        font-size: 12px;
        font-weight: 600;
        color: #333;
    }

.strategists {
    bottom: 80px;
    left: 0;
    animation-delay: 0s;
}

.promoters {
    top: 80px;
    right: 0;
    animation-delay: 1.5s;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: float 2s ease-in-out infinite;
}

.icon-1 {
    top: 40px;
    left: 20px;
    animation-delay: 0.5s;
}

.icon-2 {
    top: 20px;
    right: 100px;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 20px;
    right: 20px;
    animation-delay: 2s;
}

/* Why Section */
.why-section {
    background: linear-gradient(135deg, #F9FBFF 0%, #FFFFFF 100%);
    padding: 60px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.why-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

    .why-card:nth-child(1) {
        animation-delay: 0.2s;
    }

    .why-card:nth-child(2) {
        animation-delay: 0.4s;
    }

    .why-card:nth-child(3) {
        animation-delay: 0.6s;
    }

    .why-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    }

.why-image {
    position: relative;
    height: 190px;
    overflow: hidden;
}

    .why-image img {
        width: 100%;
        height: 130%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.why-card:hover .why-image img {
    transform: scale(1.05);
}

.why-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    color: #2C3E50;
    letter-spacing: 1px;
    cursor: pointer;
}

.why-content {
    padding: 20px;
}

.why-main {
    font-size: 14px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 12px;
    line-height: 1.5;
}

.why-detail {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    background-color: #F0F5E8;
    padding: 60px 0;
}

.faq-intro {
    text-align: center;
    font-size: 15px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

    .faq-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .faq-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .faq-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .faq-item:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .faq-question:hover {
        background-color: #F9FBFF;
    }

.faq-number {
    background: linear-gradient(135deg, #3d5698 0%, #4A5AB3 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #2C3E50;
}

.faq-toggle {
    background: none;
    border: none;
    font-size: 28px;
    color: #3d5698;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.3s ease;
    font-weight: 300;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 25px;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: #4A5AB3;
}

.faq-toggle:hover {
    color: #4A5AB3;
    transform: scale(1.1);
}

.faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    padding-top: 10px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Styles */
/* Large Desktop and 4K Screens */
@media (min-width: 1440px) {
    .process-container {
        max-width: 1600px;
        height: 1000px;
    }

    .central-q-logo {
        width: 520px;
        height: 380px;
    }

    .process-item {
        max-width: 450px;
        padding: 8px 20px;
    }

    .process-content h3 {
        font-size: 17px;
    }

    .process-content p {
        font-size: 15px;
    }

    .process-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    #howdowedoit .container .section-title {
        margin-bottom: -160px;
    }

    .process-6 {
        bottom: 25%;
        left: 7%;
        animation-delay: 1.2s;
    }

    .process-5 {
        top: 65%;
        left: 59%;
        transform: translateX(-50%);
        animation-delay: 1.0s;
    }
}

.process-1 .process-number {
    background: linear-gradient(135deg, #7BAF6F 0%, #6BA85F 100%);
}

/* Desktop and Laptop Screens */
@media (max-width: 1439px) and (min-width: 1200px) {
    .process-container {
        max-width: 1100px;
        height: 720px;
    }

    .central-q-logo {
        width: 350px;
        height: 300px;
    }

    .process-item {
        max-width: 380px;
        padding: 7px 27px;
    }

    .process-content h3 {
        font-size: 14px;
    }

    .process-content p {
        font-size: 12px;
    }

    #howdowedoit .container .section-title {
        margin-bottom: -150px;
    }
}

/* Tablet and Small Laptop */
@media (max-width: 1199px) and (min-width: 1025px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-container {
        height: 900px;
        max-width: 1100px;
    }

    .central-q-logo {
        width: 195px;
        height: 270px;
    }

    .process-item {
        max-width: 340px;
        padding: 20px 25px;
    }

    .process-content h3 {
        font-size: 15px;
    }

    .process-content p {
        font-size: 13px;
    }

    .process-number {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    /* Adjust positioning for small laptops */
    .process-1 {
        top: 42%;
        left: 4%;
    }

    .process-2 {
        top: 17%;
        left: 9%;
    }

    .process-3 {
        top: 17%;
        right: 9%;
    }

    .process-4 {
        top: 42%;
        left: 63%;
    }

    .process-5 {
        top: 63%;
        left: 57%;
    }

    .process-6 {
        bottom: 25%;
        left: 10%;
    }

    #howdowedoit .container .section-title {
        margin-bottom: -130px;
    }
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-container {
        height: 850px;
        max-width: 900px;
    }

    .central-q-logo {
        width: 330px;
        height: 215px;
    }

    .process-item {
        max-width: 330px;
        padding: 18px 22px;
    }

    .process-content h3 {
        font-size: 14px;
    }

    .process-content p {
        font-size: 12px;
    }

    .process-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    /* Adjust positioning for tablets */
    .process-1 {
        top: 40%;
        left: -2%;
    }

    .process-2 {
        top: 20%;
        left: 7%;
    }

    .process-3 {
        top: 20%;
        right: 7%;
    }

    .process-4 {
        top: 40%;
        left: 64%;
    }

    .process-5 {
        top: 60%;
        left: 63%;
    }

    .process-6 {
        bottom: 28%;
        left: 1%;
    }

    #howdowedoit .container .section-title {
        margin-bottom: -120px;
    }

    /* Adjust navigation spacing for tablets */
    .nav-wrapper {
        gap: 20px;
    }

    .nav-center {
        gap: 20px;
    }

    .nav-right {
        gap: 15px;
    }
}

/* Large Tablet Portrait */
@media (max-width: 1024px) and (min-width: 769px) {
    .brand-content {
        gap: 40px;
    }

    .carousel-slide h2 {
        font-size: 32px;
    }

    .carousel-slide p {
        font-size: 16px;
    }

    .brand-carousel {
        min-height: 180px;
    }

    .brand-cover-image {
        height: 450px;
    }

    .section-title {
        font-size: 36px;
    }

    #howdowedoit .container .section-title {
        font-size: 36px;
    }
}

/* Large Desktop Devices */
@media (min-width: 1400px) {
    .section-title {
        font-size: 42px;
    }

    .carousel-slide h2 {
        font-size: 36px;
    }

    .carousel-slide p {
        font-size: 18px;
    }

    .central-q-logo {
        width: 325px;
        height: 315px;
        border-radius: 125px;
    }

    .process-item {
        max-width: 400px;
    }
}

/* Desktop Devices */
@media (min-width: 992px) and (max-width: 1399px) {
    .section-title {
        font-size: 38px;
    }

    .carousel-slide h2 {
        font-size: 34px;
    }

    .carousel-slide p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-wrapper {
        position: relative;
    }

    /* Hide nav-right on mobile - will be shown in mobile menu */
    .nav-right {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: #E8F0DB;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 0;
        z-index: 999;
    }

        .nav-menu.active {
            left: 0;
        }

    /* Mobile menu for guest users */
    .nav-menu-guest.active .nav-center {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    /* Mobile menu for authenticated users */
    .nav-menu-authenticated.active {
        justify-content: flex-start;
        margin-left: 0;
    }

    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        text-align: left;
    }

        .nav-link.active {
            background-color: rgba(91, 111, 199, 0.15);
            border-radius: 8px;
            padding: 15px 10px;
            margin: 0 -10px;
            transform: none;
            box-shadow: none;
        }

            .nav-link.active::after {
                display: none;
            }

    /* Show auth buttons and CTA in mobile menu for guest users */
    .nav-menu-guest.active::after {
        content: '';
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        margin: 15px 0;
    }

    /* Add mobile auth buttons to the mobile menu */
    .nav-menu-guest.active {
        position: relative;
    }

    /* Create mobile auth section */
    .mobile-auth-section {
        display: none;
        flex-direction: column;
        gap: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }

    .nav-menu-guest.active .mobile-auth-section {
        display: flex !important;
    }

    .mobile-auth-section .auth-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .mobile-auth-section .loginButton,
    .mobile-auth-section .registerButton {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }

    .mobile-auth-section .cta-button {
        width: 100%;
        margin-top: 10px;
    }

    .section-title {
        font-size: 28px;
    }

    #howdowedoit .container .section-title {
        font-size: 28px;
        margin-bottom: -60px;
    }

    .brand-content {
        flex-direction: column;
        gap: 25px;
    }

    /* Mobile carousel styles */
    .carousel-slide h2 {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .carousel-slide p {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .brand-carousel {
        min-height: 120px;
    }

    .brand-cover-image {
        height: 300px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-container {
        height: auto;
        flex-direction: column;
        gap: 15px;
        padding: 30px 0 15px;
        max-width: 100%;
    }

    .central-logo {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 20px;
        order: 1;
    }

    .central-q-logo {
        width: 240px;
        height: 170px;
    }

    .process-item {
        position: relative !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        max-width: 100%;
        margin: 0 auto 12px;
        order: 2;
        padding: 12px 16px;
    }

    .process-number {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .process-content h3 {
        font-size: 14px;
    }

    .process-content p {
        font-size: 12px;
    }

    .brand-visual {
        height: auto;
    }

    .person-circle {
        width: 280px;
        height: 280px;
    }

    /* FAQ responsive */
    .faq-item {
        margin-bottom: 10px;
    }

    .faq-question {
        padding: 16px;
    }

    .faq-text {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 13px;
        padding: 0 16px 16px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .brand-visual {
        height: auto;
        bottom: 230px;
    }

    .brand-text {
        position: relative;
        top: 350px;
    }

    .section-title {
        font-size: 22px;
        line-height: 1.2;
    }

    #howdowedoit .container .section-title {
        font-size: 22px;
        margin-bottom: -40px;
    }

    /* Small mobile carousel styles */
    .carousel-slide h2 {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .carousel-slide p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .brand-carousel {
        min-height: 100px;
    }

    .brand-cover-image {
        height: 250px;
    }

    .brand-content {
        gap: 20px;
    }

    .central-q-logo {
        width: 200px;
        height: 140px;
    }

    .process-item {
        padding: 10px 14px;
        gap: 10px;
        border-radius: 35px 12px 35px 8px;
    }

    .process-number {
        width: 26px;
        height: 26px;
        font-size: 12px;
        border-radius: 12px 3px 11px 3px;
    }

    .process-content h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .process-content p {
        font-size: 12px;
        line-height: 1.4;
    }

    .person-circle {
        width: 240px;
        height: 240px;
    }

    .floating-card {
        padding: 10px;
    }

        .floating-card img {
            width: 60px;
            height: 45px;
        }

    /* Why section mobile */
    .why-card {
        margin-bottom: 15px;
    }

    .why-main {
        font-size: 14px;
    }

    .why-detail {
        font-size: 13px;
    }

    /* FAQ mobile */
    .faq-question {
        padding: 15px;
        gap: 12px;
    }

    .faq-number {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .faq-text {
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 15px 5px;
    }

        .faq-answer p {
            font-size: 13px;
        }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Message box responsive - small mobile */
    .footer-message-box {
        margin-top: 18px;
    }

    .message-input-container {
        border-radius: 18px;
        padding: 2px;
    }

    .footer-message-input {
        font-size: 13px;
        padding: 8px 12px;
    }

    .footer-send-button {
        width: 32px;
        height: 32px;
        font-size: 12px;
        margin-left: 4px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    /* Mobile navigation adjustments for small screens */
    .nav-wrapper {
        gap: 15px;
        padding: 0 10px;
    }

    .logo img {
        height: 50px;
    }

    .nav-menu {
        padding: 15px;
    }

    .mobile-auth-section .loginButton,
    .mobile-auth-section .registerButton {
        padding: 10px 20px;
        font-size: 14px;
    }

    .mobile-auth-section .cta-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 22px;
    }

    #howdowedoit .container .section-title {
        font-size: 22px;
        margin-bottom: -50px;
    }

    .carousel-slide h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .carousel-slide p {
        font-size: 12px;
    }

    .brand-carousel {
        min-height: 100px;
    }

    .brand-cover-image {
        height: 250px;
    }

    .central-q-logo {
        width: 200px;
        height: 140px;
    }

    .process-item {
        padding: 10px 14px;
        gap: 10px;
    }

    .process-number {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .process-content h3 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .process-content p {
        font-size: 11px;
    }

    .faq-question {
        padding: 12px;
    }

    .faq-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .faq-text {
        font-size: 13px;
    }

    .faq-answer p {
        font-size: 12px;
    }
}

/* Zoom-in/Zoom-out Support */
@media (min-width: 1920px) {
    .process-container {
        max-width: 1800px;
        height: 1100px;
    }

    .central-q-logo {
        width: 340px;
        height: 390px;
    }

    .process-item {
        max-width: 430px;
        padding: 9px 20px;
    }

    .process-content h3 {
        font-size: 18px;
    }

    .process-content p {
        font-size: 16px;
    }

    .process-number {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    #howdowedoit .container .section-title {
        margin-bottom: -180px;
    }

    .process-2 {
        top: 24%;
        left: 10% 116px;
        transform: translateX(-50%);
        animation-delay: 0.4s;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: white;
    /*padding: 15px 0 15px;*/
    position: relative;
    overflow: hidden;
}

.footer-bottom-left img {
    position: relative;
    top: 8px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3d5698, #7BAF6F, #3d5698);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 20px;
}

    .footer-logo img {
        /*filter: brightness(0) invert(1);*/
        transition: transform 0.3s ease;
    }

    .footer-logo:hover img {
        /* transform: scale(1.05);*/
    }

/* Footer Message Box Styles */
.footer-message-box {
    margin-top: 0px;
    max-width: 400px;
    position: relative;
    bottom: 25px;
}

.message-input-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .message-input-container:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .message-input-container:focus-within {
        background: rgba(255, 255, 255, 0.2);
        border-color: #3d5698;
        box-shadow: 0 0 0 3px rgba(91, 111, 199, 0.2);
    }

.footer-message-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 18px;
    color: white;
    font-size: 14px;
    font-family: inherit;
    border-radius: 20px;
    min-width: 0;
}

    .footer-message-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
        font-style: italic;
    }

    .footer-message-input:focus::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

.footer-send-button {
    background: linear-gradient(135deg, #3d5698 0%, #4A5AB3 100%);
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 16px;
    margin-left: 8px;
    box-shadow: 0 4px 12px rgba(91, 111, 199, 0.3);
}

    .footer-send-button:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 20px rgba(91, 111, 199, 0.4);
        background: linear-gradient(135deg, #6B7FD7 0%, #5A6AC3 100%);
    }

    .footer-send-button:active {
        transform: translateY(0) scale(0.95);
        box-shadow: 0 2px 8px rgba(91, 111, 199, 0.3);
    }

    .footer-send-button i {
        transition: transform 0.3s ease;
    }

    .footer-send-button:hover i {
        transform: translateX(2px);
    }

.footer-tagline {
    font-size: 16px;
    color: #BDC3C7;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer .footer-content .footer-links .footer-column ul {
    padding-left: 0px !important;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    /*background: rgba(255, 255, 255, 0.1);*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .social-link:hover {
        background: #32465a;
        transform: translateY(-5px) rotate(360deg);
        box-shadow: 0 8px 20px rgb(46 92 137);
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

.footer-links {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

    .footer-column h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #3d5698, #a8c670);
        border-radius: 2px;
    }

.footer-column ul {
    list-style: none;
}

    .footer-column ul li {
        margin-bottom: 12px;
    }

        .footer-column ul li a {
            color: #BDC3C7;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }

            .footer-column ul li a::before {
                content: '';
                position: absolute;
                bottom: -2px;
                left: 0;
                width: 0;
                height: 2px;
                background: #3d5698;
                transition: width 0.3s ease;
            }

            .footer-column ul li a:hover {
                color: white;
                transform: translateX(5px);
            }

                .footer-column ul li a:hover::before {
                    width: 100%;
                }

.footer-bottom {
    /*border-top: 1px solid rgba(255, 255, 255, 0.1);*/
    /*padding-top: 20px;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

    .footer-bottom p, .footer-bottom p a {
        color: #e7eded;
        font-size: 14px;
        margin: 0;
    }

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .footer-bottom-left img {
        height: 60px;
        width: auto;
    }

    .footer-bottom-left p {
        color: #e7eded;
        font-size: 12px;
        margin: 0;
        position: relative;
        top: 3px;
        right: 15px;
    }

        .footer-bottom-left p a {
            color: #e7eded;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 12px;
        }

            .footer-bottom-left p a:hover {
                color: #fff;
            }

.footer-bottom-right {
    display: flex;
    align-items: center;
    position: relative;
    top: 2px;
}

    .footer-bottom-right p {
        color: #e7eded;
        font-size: 12px;
        margin: 0;
        display: flex;
        align-items: center;
    }

        .footer-bottom-right p img {
            vertical-align: middle;
            margin-left: 5px;
        }

        .footer-bottom-right p span:nth-child(1) {
            margin-right: 7px;
            cursor: default;
        }

        .footer-bottom-right p span:nth-child(2) {
            margin-right: 7px;
            cursor: default;
        }

        .footer-bottom-right p span:nth-child(3) {
            margin-right: 7px;
            cursor: default;
        }

        .footer-bottom-right p span:hover {
            color: #fff;
        }

        .footer-bottom-right p img {
            vertical-align: middle;
            margin-left: 5px;
            cursor: pointer;
        }

.footer-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .badge:hover {
        background: rgba(91, 111, 199, 0.2);
        border-color: #3d5698;
        color: white;
        transform: translateY(-2px);
    }

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Message box responsive - tablet */
    .footer-message-box {
        max-width: 350px;
    }

    .footer-message-input {
        font-size: 13px;
        padding: 10px 16px;
    }

    .footer-send-button {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .free-brand-valuation-button {
        width: 100% !important;
        position: relative;
        top: 15px;
    }

    .brand-visual {
        height: auto;
        bottom: 200px;
    }

    .brand-text {
        position: relative;
        top: 350px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-left {
        max-width: 100%;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Message box responsive - mobile */
    .footer-message-box {
        max-width: 100%;
        margin-top: 20px;
    }

    .message-input-container {
        border-radius: 20px;
        padding: 3px;
    }

    .footer-message-input {
        font-size: 14px;
        padding: 10px 15px;
    }

    .footer-send-button {
        width: 36px;
        height: 36px;
        font-size: 13px;
        margin-left: 6px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        width: 100%;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }

        .footer-bottom-left img {
            height: 40px;
        }

        .footer-bottom-right p {
            justify-content: center;
        }

    .footer-badges {
        justify-content: center;
    }
}

/* Auth buttons wrapper */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.loginButton {
    border: none;
    background: #3d5698;
    padding: 10px 24px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.registerButton {
    border: none;
    background: #3d5698;
    padding: 10px 24px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .loginButton:hover, .registerButton:hover {
        background-color: #3d5698;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(120, 166, 105, 0.4);
    }

/* Login CSS */
.login {
    background: linear-gradient(135deg, #F5F9FF 0%, #e7e9ec 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.login-container {
    background-color: white;
    border-radius: 12px;
    padding: 20px 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 8px;
}

.login-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 32px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 14px;
        color: #333;
        margin-bottom: 8px;
    }

    .form-group input {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 16px;
        box-sizing: border-box;
        background-color: #f9f9f9;
    }

        .form-group input:focus {
            outline: none;
            border-color: #4caf50;
            background-color: white;
        }

.password-group {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 68%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 22px;
    color: #666;
    user-select: none;
}

    .toggle-password:hover {
        color: #333;
    }

.form-options {
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    user-select: none;
}

.forgot-password-link {
    font-size: 13px;
    color: #3d5698;
    text-decoration: none;
    font-weight: 500;
}

    .forgot-password-link:hover {
        color: #2d4688;
        text-decoration: underline;
    }

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #4caf50;
    border-color: #4caf50;
}

    .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
        content: '✓';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 12px;
        font-weight: bold;
    }

.login-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(25deg, #3d5698, #a8c670);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s;
}

    .login-button:hover {
        opacity: 0.9;
    }

.create-account {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 0;
    padding-top: 10px;
}

.create-link {
    color: #3d5698;
    text-decoration: none;
    font-weight: bold;
}

    .create-link:hover {
        text-decoration: underline;
    }

/* Responsive Design */
@media (max-width: 480px) {
    .free-brand-valuation-button {
        width: 100% !important;
        position: relative;
        top: 15px;
    }

    .footer .container .footer-content .footer-links .footer-column:nth-child(1) {
        display: none;
    }

    .login {
        padding: 10px;
    }

    .login-container {
        padding: 24px;
        margin: 10px;
    }

    .login-title {
        font-size: 28px;
    }

    .login-subtitle {
        font-size: 14px;
    }

    .form-group input {
        padding: 10px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .toggle-password {
        right: 10px;
    }
}

@media (max-width: 320px) {
    .login-container {
        padding: 20px;
    }
}

.login .validation-summary-errors ul {
    list-style-type: none;
}

    .login .validation-summary-errors ul li {
        font-size: 15px;
        text-align: center;
        color: red;
    }

.login .toggle-password {
    top: 65%;
}
/* Login CSS */
/* Register CSS */
.registration {
    background: linear-gradient(135deg, #F5F9FF 0%, #e7e9ec 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px); /* Adjust for header/footer */
    padding: 20px;
}

.registration-container {
    max-width: 600px;
    width: 100%;
    background: linear-gradient(135deg, #F5F9FF 0%, #e7e9ec 100%);
}

.registration-header {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 15px;
}

    .registration-header h1 {
        font-size: 2rem;
        color: #000;
        margin-bottom: 5px;
    }

    .registration-header h2 {
        font-size: 1.5rem;
        color: #000;
        margin-bottom: 5px;
    }

    .registration-header p {
        font-size: 1rem;
        color: #6b7280;
    }

.form-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2C3E50;
    font-size: 28px;
}

#howdowedoit .container .section-title {
    margin-top: 70px;
    font-size: 39px;
}

#teams .container .section-title {
    font-size: 39px;
    margin-top: 70px;
}

#faqs .container .section-title {
    font-size: 39px;
    margin-top: 70px;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    color: #000;
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #fff;
}

    .form-control:focus {
        outline: none;
        border-color: #3d5698;
        box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
    }

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
}

    .radio-option input {
        margin-right: 5px;
    }

.form-row {
    display: flex;
    gap: 15px;
}

    .form-row .form-group {
        flex: 1;
    }

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.2rem;
    color: #3d5698;
    transition: color 0.3s ease;
}

    .toggle-password:hover {
        color: #1d4ed8;
    }

.password-rules-section {
    margin-top: 10px;
}

.password-rules-toggle {
    cursor: pointer;
    color: #3d5698;
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    transition: color 0.3s ease;
    position: relative;
    bottom: 15px;
    left: 5px;
}

    .password-rules-toggle:hover {
        color: #1d4ed8;
    }

.toggle-icon {
    font-size: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.password-rules-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
}

    .password-rules-content ul {
        list-style-type: disc;
        padding-left: 20px;
        color: #6b7280;
    }

    .password-rules-content li {
        margin-bottom: 5px;
        font-size: 12px;
    }

.terms-section {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    left: 5px;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .terms-checkbox label {
        font-size: 0.875rem;
        color: #000;
    }

.highlight {
    color: #3d5698;
}

.highlights-register {
    color: #3d5698;
    font-weight: 600;
    text-decoration: none !important;
    position: relative;
    left: 5px;
}

.submit-btn {
    width: 60%;
    padding: 12px;
    background: linear-gradient(to right, #3d5698, #a8c670);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.3s;
    font-weight: 700;
    position: relative;
    left: 115px;
}

    .submit-btn:hover {
        opacity: 0.9;
    }

.login-link {
    text-align: center;
    margin-top: 15px;
}

    .login-link a {
        color: #3d5698;
        text-decoration: none;
    }

.validation-message {
    display: block;
    font-size: 0.75rem;
    margin-top: 5px;
}

.text-danger {
    color: #ef4444;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer .container .footer-content .footer-links .footer-column:nth-child(1) {
        display: none;
    }

    .registration-container {
        padding: 0 15px;
    }

    .form-row {
        flex-direction: column;
    }

    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.1rem;
    }

    .form-control {
        font-size: 0.9rem;
    }

    .submit-btn {
        font-size: 0.9rem;
    }
}
/* Register CSS */

/* Register Confirmation */
.confirmation-container {
    background: linear-gradient(135deg, #F5F9FF 0%, #e7e9ec 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

    .confirmation-container .container {
        background-color: white;
        border-radius: 12px;
        padding: 40px;
        width: 100%;
        max-width: 600px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

.modern-login-btn {
    background-color: #3d5698;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(91, 111, 199, 0.3);
}

    .modern-login-btn:hover {
        background-color: #4A5AB3;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(91, 111, 199, 0.4);
    }
/* Register Confirmation */

.user-email-identity {
    position: relative;
    font-size: 12px;
    padding: 5px 5px;
    font-style: normal;
    font-weight: 600;
    color: #102744;
    cursor: default;
}

/* User Icon Dropdown Styling */
.user-icon-dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: rgb(211 224 191);
    position: relative;
    bottom: 0px;
    right: 10px;
}

    .user-icon-dropdown:hover {
        background-color: rgb(211 224 191);
        transform: scale(1.05);
    }

    .user-icon-dropdown i {
        font-size: 24px;
        color: #333333
    }

    .user-icon-dropdown:hover i {
        color: #4A5AB3;
    }

    /* Hide dropdown toggle arrow for user icon */
    .user-icon-dropdown::after {
        display: none !important;
    }

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

    .select-wrapper select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        padding-right: 45px !important;
        background-color: #fff;
        cursor: pointer;
    }

.select-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 14px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.select-wrapper:hover .select-icon {
    color: #3d5698;
}

.select-wrapper select:focus + .select-icon {
    color: #3d5698;
    transform: translateY(-50%) rotate(180deg);
}

/* User Profile Display Styles - Inside Dropdown */
.dropdown-header .user-profile-display {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(91, 111, 199, 0.05);
    border: 1px solid rgba(91, 111, 199, 0.1);
    margin: 8px;
    min-width: 220px;
    text-decoration: none !important;
}

    .dropdown-header .user-profile-display:hover {
        background: rgba(91, 111, 199, 0.08);
        border-color: rgba(91, 111, 199, 0.15);
    }

.user-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3d5698, #7BAF6F);
    border-radius: 50%;
    color: white;
    font-size: 20px;
}

.user-info {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* User Icon Dropdown Styles */
.user-icon-dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .user-icon-dropdown i {
        font-size: 24px;
        color: #2c3e50;
    }

    .user-icon-dropdown:hover i {
        color: #3d5698;
        transform: scale(1.1);
    }

    .user-icon-dropdown::after {
        display: none !important;
    }

/* Responsive adjustments for user profile in dropdown */
@media (max-width: 768px) {
    .dropdown-header .user-profile-display {
        min-width: 200px;
        gap: 10px;
        padding: 10px 12px;
        margin: 6px;
    }

    .user-avatar {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .user-name {
        font-size: 13px;
    }

    .user-email {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .dropdown-header .user-profile-display {
        min-width: 180px;
        gap: 8px;
        padding: 8px 10px;
        margin: 4px;
    }

    .user-avatar {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .user-name {
        font-size: 12px;
    }

    .user-email {
        font-size: 10px;
    }
}

/* Dark theme support for user profile */
@media (prefers-color-scheme: dark) {
    .dropdown-header .user-profile-display {
        background: rgba(91, 111, 199, 0.1);
        border-color: rgba(91, 111, 199, 0.2);
    }

        .dropdown-header .user-profile-display:hover {
            background: rgba(91, 111, 199, 0.15);
            border-color: rgba(91, 111, 199, 0.3);
        }

    .user-name {
        color: #ffffff;
    }

    .user-email {
        color: #b0b0b0;
    }
}

/* Privacy Page Styles */
.privacy-section {
    background: linear-gradient(135deg, #F5F9FF 0%, #E8F0FF 100%);
    padding: 60px 0 80px;
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease;
}

    .privacy-header .section-title {
        font-size: 42px;
        font-weight: 700;
        color: #2C3E50;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #3d5698 0%, #7BAF6F 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.privacy-date {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    background: white;
    /*padding: 30px;*/
    border-radius: 15px;
    margin-bottom: 30px;
    /*box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #3d5698;
    animation: fadeInUp 0.6s ease;*/
}

    .privacy-intro p {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        margin: 0;
    }

.privacy-section-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
    position: relative;
    overflow: hidden;
}

    .privacy-section-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(135deg, #3d5698 0%, #7BAF6F 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .privacy-section-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }

        .privacy-section-card:hover::before {
            opacity: 1;
        }

    .privacy-section-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .privacy-section-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .privacy-section-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .privacy-section-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .privacy-section-card:nth-child(5) {
        animation-delay: 0.5s;
    }

.privacy-section-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3d5698 0%, #4A5AB3 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(91, 111, 199, 0.3);
}

.privacy-section-content {
    flex: 1;
}

    .privacy-section-content h2 {
        font-size: 22px;
        font-weight: 700;
        color: #2C3E50;
        margin-bottom: 15px;
        margin-top: 0;
    }

    .privacy-section-content p {
        font-size: 15px;
        line-height: 1.7;
        color: #555;
        margin-bottom: 12px;
    }

    .privacy-section-content ul {
        margin: 15px 0;
        padding-left: 25px;
    }

    .privacy-section-content li {
        font-size: 15px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 10px;
    }

        .privacy-section-content li strong {
            color: #2C3E50;
        }

    .privacy-section-content a {
        color: #3d5698;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .privacy-section-content a:hover {
            color: #4A5AB3;
            text-decoration: underline;
        }

.privacy-who-we-are {
    margin: 5px auto;
    font-weight: 700;
    font-size: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

    .contact-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

        .contact-list li:last-child {
            border-bottom: none;
        }

        .contact-list li i {
            color: #3d5698;
            font-size: 18px;
            width: 25px;
        }

.privacy-footer-note {
    background: linear-gradient(135deg, #3d5698 0%, #7BAF6F 100%);
    color: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 8px 30px rgba(91, 111, 199, 0.3);
    animation: fadeInUp 0.8s ease;
}

    .privacy-footer-note p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

        .privacy-footer-note p i {
            font-size: 24px;
        }

.back-home-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #3d5698;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .back-home-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        color: #4A5AB3;
    }

    .back-home-button i {
        font-size: 18px;
    }

/* Privacy Page Responsive */
@media (max-width: 768px) {
    .privacy-section {
        padding: 40px 0 60px;
    }

    .privacy-header .section-title {
        font-size: 32px;
    }

    .privacy-date {
        font-size: 14px;
    }

    .privacy-intro {
        padding: 20px;
        margin-bottom: 20px;
    }

        .privacy-intro p {
            font-size: 14px;
        }

    .privacy-section-card {
        flex-direction: column;
        padding: 20px;
        margin-bottom: 20px;
        gap: 15px;
    }

    .privacy-section-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        border-radius: 10px;
    }

    .privacy-section-content h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .privacy-section-content p,
    .privacy-section-content li {
        font-size: 14px;
    }

    .privacy-footer-note {
        padding: 25px 20px;
        margin-top: 30px;
    }

        .privacy-footer-note p {
            font-size: 14px;
            flex-direction: column;
            gap: 8px;
        }

            .privacy-footer-note p i {
                font-size: 20px;
            }

    .back-home-button {
        padding: 10px 25px;
        font-size: 14px;
    }

    .contact-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .privacy-header .section-title {
        font-size: 26px;
    }

    .privacy-section-card {
        padding: 15px;
    }

    .privacy-section-number {
        width: 35px;
        height: 35px;
        font-size: 18px;
        border-radius: 8px;
    }

    .privacy-section-content h2 {
        font-size: 16px;
    }

    .privacy-section-content p,
    .privacy-section-content li {
        font-size: 13px;
    }
}

.no-bullets {
    list-style: none; /* removes bullets */
    padding-left: 0; /* removes left padding */
    margin-left: 0; /* removes left margin */
}

    .no-bullets li {
        padding-left: 0;
        margin-bottom: 0.5em; /* optional: keeps nice spacing between items */
    }
