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

        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --dark: #2d3748;
            --light: #f7fafc;
            --bs-dropdown-link-hover-color: white;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.98) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 30px rgba(0,0,0,0.12);
        }

        .navbar-brand .logo {
            height: 45px;
            transition: transform 0.3s;
        }

        .navbar-brand:hover .logo {
            transform: scale(1.05);
        }

        .nav-link {
            font-weight: 500;
            color: var(--dark) !important;
            padding: 0.5rem 1rem !important;
            transition: all 0.3s;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            transition: width 0.3s;
        }

        .nav-link:hover::after {
            width: 80%;
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border-radius: 10px;
            padding: 0.5rem;
        }

        .dropdown-item {
            border-radius: 8px;
            padding: 0.7rem 1rem;
            transition: all 0.3s;
        }

        .dropdown-item:hover {
            background: var(--primary-gradient);
            color: white !important;
            transform: translateX(5px);
        }

        /* Remove default Bootstrap caret */
        .dropdown-right::after {
            display: none;
        }

        /* Arrow default */
        .dropdown-right {
            position: relative;
            padding-right: 22px !important;
        }

        .dropdown-right::before {
            content: "›";
            position: absolute;
            right: 6px;
            top: 50%;
            transform: translateY(-50%) rotate(0deg);
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        /* =========================
        DESKTOP (HOVER)
        ========================= */
        @media (hover: hover) {
            .dropdown-hover:hover > .dropdown-menu {
                display: block;
                margin-top: 0;
            }

            .dropdown-hover:hover > .dropdown-right::before {
                transform: translateY(-50%) rotate(90deg);
            }
        }

        /* =========================
        MOBILE (CLICK OPEN)
        ========================= */
        .dropdown-toggle.show::before {
            transform: translateY(-50%) rotate(90deg);
        }

        /* Improve touch spacing on mobile */
        @media (max-width: 576px) {
            .dropdown-menu {
                position: static;
                box-shadow: none;
                border-radius: 8px;
            }

            .dropdown-item {
                padding: 12px 16px;
            }
        }

        /* ============================
        BASE (MOBILE FIRST)
        ============================ */
        .login-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #667eea !important;
            font-weight: 600;
            border: 2px solid #667eea;
            border-radius: 999px;
            padding: 0.6rem 1.2rem !important;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        /* ============================
        HOVER / FOCUS (DESKTOP)
        ============================ */
        @media (hover: hover) {
            .login-btn:hover {
                background: var(--primary-gradient);
                color: #ffffff !important;
                border-color: transparent;
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
            }
        }

        /* ============================
        TABLET
        ============================ */
        @media (min-width: 768px) {
            .login-btn {
                font-size: 0.9rem;
                padding: 0.55rem 1.4rem !important;
            }
        }

        /* ============================
        DESKTOP
        ============================ */
        @media (min-width: 992px) {
            .login-btn {
                font-size: 1rem;
                padding: 0.5rem 1.5rem !important;
            }
        }

        /* ============================
        MOBILE NAVBAR FIX
        ============================ */
        @media (max-width: 576px) {
            .navbar .login-btn {
                width: 100%;
                margin-top: 10px;
                padding: 0.65rem !important;
                text-align: center;
            }
        }

        /* ============================
        BASE (MOBILE FIRST)
        ============================ */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-gradient) !important;
            border: none !important;
            border-radius: 999px;
            color: #f7fafc;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 0.6rem 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35);
            white-space: nowrap;
        }

        /* ============================
        HOVER / FOCUS (DESKTOP ONLY)
        ============================ */
        @media (hover: hover) {
            .btn-primary:hover,
            .btn-primary:focus {
                transform: translateY(-3px);
                box-shadow: 0 10px 25px rgba(102, 126, 234, 0.5);
            }
        }

        /* ============================
        TABLET
        ============================ */
        @media (min-width: 768px) {
            .btn-primary {
                font-size: 0.9rem;
                padding: 0.65rem 1.4rem;
            }
        }

        /* ============================
        DESKTOP
        ============================ */
        @media (min-width: 992px) {
            .btn-primary {
                font-size: 1rem;
                padding: 0.7rem 1.6rem;
                box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
            }
        }

        /* ============================
        MOBILE FULL-WIDTH FIX (NAV / FORMS)
        ============================ */
        @media (max-width: 576px) {
            .navbar .btn-primary,
            .contact-form-container .btn-primary {
                width: 100%;
                padding: 0.75rem;
                font-size: 0.9rem;
            }
        }

        .nav-btn {
            margin-left: 0.5rem;
            margin-right: 0.5rem;
        }

        .nav-btn::after {
            display: none;
        }

        @media (max-width: 576px) {
            .nav-btn {
                margin-left: 0 !important;
                margin-right: 0 !important;
                margin-top: 0.25rem; /* mt-1 */
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .nav-link::after {
                display: none;
            }
        }

        /* Hero Section */
        .hero-section {
            background: var(--primary-gradient);
            padding: 150px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }

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

        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            color: white;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s 0.2s ease backwards;
        }

        .hero-title-vector {
            animation: float 3s ease-in-out infinite;
        }

        .hero-logo-1 {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: fadeInRight 0.8s ease;
            transition: transform 0.3s;
        }

        .hero-logo-1:hover {
            transform: scale(1.05);
        }

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

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Therapy Cards Section */
        .therapy-cards-section {
            padding: 80px 0;
            background: var(--light);
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #718096;
            text-align: center;
            margin-bottom: 3rem;
        }

        .therapy-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            height: 100%;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .therapy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--primary-gradient); 
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .therapy-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .therapy-card:hover::before {
            transform: scaleX(1);
        }

        .therapy-icon {
            margin-bottom: 2rem;
        }

        .therapy-icon img {
            width: 80px;
            height: 80px;
            transition: transform 0.3s;
        }

        .therapy-card:hover .therapy-icon img {
            transform: scale(1.1) rotate(5deg);
        }

        .therapy-footer {
            margin-top: auto;
        }

        .therapy-footer h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .therapy-footer p {
            color: #718096;
            margin-bottom: 0;
        }

        .therapy-footer .btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--primary-gradient);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .therapy-footer .btn:hover {
            transform: scale(1.1) rotate(45deg);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .therapy-footer .btn a {
            color: white;
            text-decoration: none;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: white;
        }

        .stats-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .stat-card {
            background: var(--primary-gradient);
            padding: 2rem;
            border-radius: 20px;
            color: white;
            transition: all 0.3s;
        }

        .stat-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.95;
        }

        /* Transform Section */
        .transform-section-hero {
            padding: 60px 0;
            background: var(--light);
        }

        .transform-section-hero h2 {
            font-size: 2.8rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .transform-section {
            padding: 80px 0;
            background: white;
        }

        .feature-block {
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            background: var(--light);
            border-radius: 15px;
            border-left: 4px solid transparent;
            background-image: linear-gradient(white, white), var(--primary-gradient);
            background-origin: border-box;
            background-clip: padding-box, border-box;
            transition: all 0.3s;
        }

        .feature-block:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .feature-block h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .feature-block p {
            color: #718096;
            margin-bottom: 0;
        }

        .start-btn {
            background: var(--primary-gradient) !important;
            color: white;
            border: none;
            padding: 1rem 3rem;
            border-radius: 30px;
            font-weight: 700;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .start-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
        }

        /* Comparison Section */
        .comparison-section {
            padding: 80px 0;
            background: var(--light);
        }

        .comparison-table {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .table-header {
            background: var(--primary-gradient);
            color: white;
            padding: 1.5rem;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .mindly-header, .office-header {
            text-align: center;
        }

        .comparison-row {
            padding: 1.5rem;
            border-bottom: 1px solid #e2e8f0;
            transition: all 0.3s;
        }

        .comparison-row:hover {
            background: rgba(102, 126, 234, 0.05);
        }

        .comparison-row:last-child {
            border-bottom: none;
        }

        .comparison-feature {
            font-weight: 500;
            color: var(--dark);
        }

        .check-col {
            text-align: center;
            font-size: 1.5rem;
        }

        .mindly-col {
            color: white;
        }

        .fa-check {
            color: #10b981;
        }

        .fa-times {
            color: #ef4444;
        }

        /* Bottom Cards Section */
        .bottom-cards-section {
            padding: 80px 0;
            background: white;
        }

        .bottom-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s;
            display: flex;
            flex-direction: column;
        }

        .bottom-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .bottom-card img {
            border-radius: 15px;
            transition: transform 0.3s;
        }

        .bottom-card:hover img {
            transform: scale(1.05);
        }

        .bottom-card p {
            color: #718096;
            flex-grow: 1;
        }

        .bottom-card .btn {
            width: 45px;
            height: 45px;
            background: var(--primary-gradient);
            border: none;
            transition: all 0.3s;
        }

        .bottom-card .btn:hover {
            transform: scale(1.1) rotate(45deg);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: white;
            padding: 60px 0 30px;
        }

        .footer h5 {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer p {
            color: rgba(255,255,255,0.8);
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            margin-right: 0.5rem;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background: var(--primary-gradient);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

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

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s;
        }

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

        .footer-fields .form-control {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            border-radius: 10px;
            padding: 0.8rem;
            transition: all 0.3s;
        }

        .footer-fields .form-control:focus {
            background: rgba(255,255,255,0.15);
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
            color: white;
        }

        .footer-fields .form-control::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .footer-fields label {
            color: rgba(255,255,255,0.9);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 2rem;
            }
        }

        /* Scroll Animation */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
		
		
/*============================================== Login Page Css ================================*/

    .quote-contact-section {
        background-color: #03222D;
        padding: 80px 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .quote-contact-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 1000px;
        height: 1000px;
        background: radial-gradient(ellipse,
                rgba(128, 171, 250, 0.3) 0%,
                rgba(128, 171, 250, 0.1) 40%,
                transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
        z-index: 1;
        pointer-events: none;
    }

    .quote-contact-container {
        background-color: rgba(26, 58, 66, 0.8);
        border: 2px solid #f4c430;
        border-radius: 16px;
        padding: 60px;
        max-width: 900px;
        width: 100%;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        backdrop-filter: blur(10px);
    }

    .quote-content {
        display: flex;
        align-items: center;
        gap: 60px;
    }

    .quote-text {
        flex: 1;
    }

    .quote-text h2 {
        color: white;
        font-size: 2.8rem;
        font-weight: 400;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .quote-text .author {
        color: #a0b4b8;
        font-size: 1rem;
        font-weight: 400;
        margin: 0;
    }

    .signin-form {
        flex: 1;
        max-width: 350px;
    }

    .signin-form .form-control {
        text-align-last: center;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .quote-content {
            flex-direction: column;
            gap: 40px;
            text-align: center;
        }

        .quote-text h2 {
            font-size: 2.4rem;
        }

        .contact-form {
            max-width: 100%;
        }
    }

    @media (max-width: 768px) {
        .quote-contact-section {
            padding: 40px 20px;
        }

        .quote-contact-container {
            padding: 40px 30px;
        }

        .quote-text h2 {
            font-size: 2rem;
        }

        .quote-content {
            gap: 30px;
        }
    }

    @media (max-width: 480px) {
        .quote-contact-container {
            padding: 30px 20px; 
        }

        .quote-text h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .quote-text .author {
            font-size: 0.9rem;
        }
    }
	
	
/*========================================== Contact Page ===================================*/

.contact-us-section {
   /* background-color: #03222D; */
    background-color:#6d67ca;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-us-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;   
    background: radial-gradient(ellipse,
            rgba(128, 171, 250, 0.3) 0%,
            rgba(128, 171, 250, 0.1) 40%,
            transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

.contact-form-container {
    background-color: #063446;
    border: 2px solid var(--primary-orange);
    border-radius: 12px;
    padding: 40px;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.contact-form-container h2 {
    color: white;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.3;
}

.form-label {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 400;
    display: block;
}

.form-control {
    width: 100%;
    background-color: #2a4a52; 
    border: 1px solid #3a5a62;
    border-radius: 8px;
    padding: 12px 16px;
    color: #a0b4b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    background-color: rgba(42, 74, 82, 0.9);
    border-color: #f4c430;
    box-shadow: 0 0 0 0.2rem rgba(244, 196, 48, 0.25);
    color: white;
}

.form-control::placeholder {
    color: #7a8a8e;
    opacity: 1;
}

.submit-btn {
    border: none;
    color: #03222D;
    padding: 12px 20px;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #54c072;
}

/* ✅ Responsive adjustments */
@media (max-width: 1024px) {
    .contact-us-section {
        padding: 60px 20px;
    }

    .contact-form-container {
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    .contact-us-section {
        padding: 50px 15px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .contact-form-container h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .contact-form-container {
        padding: 25px 18px;
    }

    .contact-form-container h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .form-control {
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    .submit-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
}

@media (max-width: 400px) {
    .contact-form-container {
        padding: 20px 15px;
    }

    .contact-form-container h2 {
        font-size: 1.2rem;
    }

    .form-control {
        font-size: 0.8rem;
    }

    .submit-btn {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
}


/*============================================== Login Page Css ================================*/

    .quote-contact-section {
        background-color: #03222D;
        padding: 80px 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .quote-contact-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 1000px;
        height: 1000px;
        background: radial-gradient(ellipse,
                rgba(128, 171, 250, 0.3) 0%,
                rgba(128, 171, 250, 0.1) 40%,
                transparent 70%);
        border-radius: 50%;
        filter: blur(40px);
        z-index: 1;
        pointer-events: none;
    }

    .quote-contact-container {
        background-color: rgba(26, 58, 66, 0.8);
        border: 2px solid #f4c430;
        border-radius: 16px;
        padding: 60px;
        max-width: 900px;
        width: 100%;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        backdrop-filter: blur(10px);
    }

    .quote-content {
        display: flex;
        align-items: center;
        gap: 60px;
    }

    .quote-text {
        flex: 1;
    }

    .quote-text h2 {
        color: white;
        font-size: 2.8rem;
        font-weight: 400;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .quote-text .author {
        color: #a0b4b8;
        font-size: 1rem;
        font-weight: 400;
        margin: 0;
    }

    .signin-form {
        flex: 1;
        max-width: 350px;
    }

    .signin-form .form-control {
        text-align-last: center;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .quote-content {
            flex-direction: column;
            gap: 40px;
            text-align: center;
        }

        .quote-text h2 {
            font-size: 2.4rem;
        }

        .contact-form {
            max-width: 100%;
        }
    }

    @media (max-width: 768px) {
        .quote-contact-section {
            padding: 40px 20px;
        }

        .quote-contact-container {
            padding: 40px 30px;
        }

        .quote-text h2 {
            font-size: 2rem;
        }

        .quote-content {
            gap: 30px;
        }
    }

    @media (max-width: 480px) {
        .quote-contact-container {
            padding: 30px 20px;
        }

        .quote-text h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .quote-text .author {
            font-size: 0.9rem;
        }
    }
