/* Startup Recognition Section Styling */
.ud-startup-recognition {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.ud-startup-recognition::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle at center, rgba(29, 59, 158, 0.02) 0%, transparent 60%);
    animation: rotateBackground 30s linear infinite;
}

@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ud-startup-recognition .ud-section-title {
    margin-bottom: 60px;
}

.ud-startup-recognition .ud-section-title span {
    /* smoother three-stop gradient using theme variables */
    background: linear-gradient(90deg, #6f42c1 20%, #6f42c1 100%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00D4AA;
    background-clip: text;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.ud-startup-recognition .ud-section-title span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6f42c1 0%, #6f42c1 50%, var(--accent-color) 100%);
    border-radius: 2px;

}

.ud-startup-recognition .ud-section-title h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ud-startup-recognition .ud-section-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

.ud-single-recognition {
    margin-bottom: 40px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.ud-recognition-image-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    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;
    border: 1px solid rgba(29, 59, 158, 0.1);
    height: 100%;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ud-recognition-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.05), transparent);
    transition: left 0.6s;
}

.ud-single-recognition:hover .ud-recognition-image-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(29, 59, 158, 0.15);
    border-color: rgba(0, 212, 170, 0.3);
}

.ud-single-recognition:hover .ud-recognition-image-wrapper::before {
    left: 100%;
}

.ud-recognition-badge {
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.ud-recognition-badge img {
    max-width: 180px;
    max-height: 90px;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
}

.ud-single-recognition:hover .ud-recognition-badge img {
    transform: scale(1.05);
}

.ud-recognition-content h5 {
    color: #1d3b9e;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.ud-recognition-content p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
}

.ud-single-recognition:hover .ud-recognition-content h5 {
    color: #00D4AA;
    transform: translateY(-2px);
}

.ud-single-recognition:hover .ud-recognition-content p {
    color: #475569;
}

/* Recognition Stats Section */
.ud-recognition-stats {
    margin-top: 80px;
    padding: 60px 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(29, 59, 158, 0.1);
}

.ud-single-stat {
    padding: 20px;
    transition: all 0.3s ease;
}

.ud-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #1d3b9e;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #1d3b9e, #00D4AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ud-stat-label {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ud-single-stat:hover .ud-stat-number {
    transform: scale(1.1);
}

.ud-single-stat:hover .ud-stat-label {
    color: #1d3b9e;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ud-startup-recognition {
        padding: 80px 0;
    }

    .ud-startup-recognition .ud-section-title h2 {
        font-size: 32px;
    }

    .ud-startup-recognition .ud-section-title p {
        font-size: 16px;
    }

    .ud-recognition-image-wrapper {
        padding: 30px 20px;
        min-height: 320px;
    }

    .ud-recognition-badge img {
        max-width: 160px;
        max-height: 80px;
    }

    .ud-recognition-content h5 {
        font-size: 20px;
    }

    .ud-recognition-content p {
        font-size: 14px;
    }

    .ud-stat-number {
        font-size: 36px;
    }

    .ud-stat-label {
        font-size: 14px;
    }

    .ud-recognition-stats {
        margin-top: 60px;
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .ud-startup-recognition {
        padding: 60px 0;
    }

    .ud-startup-recognition .ud-section-title h2 {
        font-size: 28px;
    }

    .ud-recognition-image-wrapper {
        padding: 25px 15px;
        min-height: 300px;
    }

    .ud-recognition-badge img {
        max-width: 140px;
        max-height: 70px;
    }

    .ud-stat-number {
        font-size: 32px;
    }

    .ud-single-stat {
        padding: 15px;
    }
}

/* Partnerships Section Styling */
.ud-partnerships {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    position: relative;
    overflow: hidden;
}

.ud-partnerships::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(29, 59, 158, 0.03) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.ud-partnerships .ud-section-title {
    margin-bottom: 60px;
}

.ud-partnerships .ud-section-title span {
    background: linear-gradient(135deg, #1d3b9e, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.ud-partnerships .ud-section-title span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #1d3b9e, #4f46e5);
    border-radius: 2px;
}

.ud-partnerships .ud-section-title h2 {
    color: #1a202c;
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ud-partnerships .ud-section-title p {
    color: #4a5568;
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.ud-single-partnership {
    margin-bottom: 40px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.ud-partnership-image-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    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;
    border: 1px solid rgba(29, 59, 158, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 300px;
}

.ud-partnership-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 59, 158, 0.05), transparent);
    transition: left 0.6s;
}

.ud-single-partnership:hover .ud-partnership-image-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(29, 59, 158, 0.15);
    border-color: rgba(29, 59, 158, 0.2);
}

.ud-single-partnership:hover .ud-partnership-image-wrapper::before {
    left: 100%;
}

.ud-partnership-logo {
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.ud-partnership-logo img {
    max-width: 140px;
    max-height: 80px;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
    filter: grayscale(0%) brightness(1);
}

.ud-single-partnership:hover .ud-partnership-logo img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1.1);
}

.ud-partnership-overlay {
    opacity: 1;
    transition: all 0.3s ease;
}

.ud-partnership-overlay h5 {
    color: #1d3b9e;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.ud-partnership-overlay p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
}

.ud-single-partnership:hover .ud-partnership-overlay h5 {
    color: #0f2a75;
    transform: translateY(-2px);
}

.ud-single-partnership:hover .ud-partnership-overlay p {
    color: #475569;
}

/* Partnership Categories with Icons */
.ud-partnership-image-wrapper[data-category="payment"]::after {
    content: '💳';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    opacity: 0.3;
}

.ud-partnership-image-wrapper[data-category="technology"]::after {
    content: '⚡';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    opacity: 0.3;
}

.ud-partnership-image-wrapper[data-category="content"]::after {
    content: '🎨';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    opacity: 0.3;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ud-partnerships {
        padding: 80px 0;
    }

    .ud-partnerships .ud-section-title h2 {
        font-size: 32px;
    }

    .ud-partnerships .ud-section-title p {
        font-size: 16px;
    }

    .ud-partnership-image-wrapper {
        padding: 30px 20px;
        min-height: 280px;
    }

    .ud-partnership-logo img {
        max-width: 120px;
        max-height: 70px;
    }

    .ud-partnership-overlay h5 {
        font-size: 18px;
    }

    .ud-partnership-overlay p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ud-partnerships {
        padding: 60px 0;
    }

    .ud-partnerships .ud-section-title h2 {
        font-size: 28px;
    }

    .ud-partnership-image-wrapper {
        padding: 25px 15px;
        min-height: 260px;
    }

    .ud-partnership-logo img {
        max-width: 100px;
        max-height: 60px;
    }
}

/* Testimonials Preview Section Styling */
.testimonials-preview {
    padding: 10px;
}

.testimonials-preview blockquote {
    background: #fafafa;
    border-left: 3px solid #333;
    padding: 15px 20px;
    margin: 0 0 20px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.testimonials-preview cite {
    display: block;
    font-style: normal;
    font-weight: 500;
    margin-top: 10px;
    color: #555;
    font-size: 0.9em;
}

.testimonial-link {
    text-align: center;
    margin-top: 20px;
}

.testimonial-link a {
    display: inline-block;
    background: #212121;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.testimonial-link a:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Policy Pages Styling */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.policy-title {
    color: var(--primary-color, #1d3b9e);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.policy-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.policy-date {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.policy-section {
    margin-bottom: 35px;
    padding: 25px;
    background: #fafafa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color, #1d3b9e);
}

.policy-section h3 {
    color: var(--primary-color, #1d3b9e);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.policy-section h4 {
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    margin-top: 20px;
}

.policy-section p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-section li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.policy-section a {
    color: var(--primary-color, #1d3b9e);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.policy-section a:hover {
    color: #0f2a75;
    text-decoration: underline;
}

/* Refund Types Styling */
.refund-types {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.refund-type {
    background: white;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.refund-type h4 {
    color: var(--primary-color, #1d3b9e);
    margin-top: 0 !important;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.refund-type p {
    margin-bottom: 0;
    color: #666;
}

/* Refund Process Styling */
.refund-process {
    margin-top: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color, #1d3b9e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-right: 20px;
}

.step-content h4 {
    color: #333;
    margin-top: 0 !important;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step-content p {
    margin-bottom: 0;
    color: #666;
}

/* Contact Info Styling */
.contact-info {
    background: white;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Policy Footer Styling */
.policy-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
    background: #f9f9f9;
    border-radius: 6px;
    padding: 30px;
}

.policy-footer p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.company-info {
    font-weight: 500;
    color: #333 !important;
}

/* Note styling */
.note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 15px;
    margin-top: 15px;
    color: #856404 !important;
}

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

    .policy-section {
        padding: 20px 15px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .refund-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 10px 0;
    }

    .policy-section {
        margin-bottom: 25px;
        padding: 15px 10px;
    }

    .policy-title {
        font-size: 1.8rem;
    }
}

/* Fix navbar overlap issue at medium screen sizes (768px - 991px) */
/* At this breakpoint, both social icons and explore button show, causing overlap */
@media only screen and (min-width: 768px) and (max-width: 991px) {

    /* Hide social media icons at medium sizes where space is tight */
    .navbar-social {
        display: none !important;
    }

    /* Ensure explore button stays visible */
    .navbar-btn {
        display: inline-block !important;
    }
}

/* Alternative solution: Adjust spacing if you want to keep both elements */
@media only screen and (min-width: 768px) and (max-width: 850px) {

    /* For smaller medium screens, prioritize the explore button */
    .navbar-social {
        display: none !important;
    }
}

@media only screen and (min-width: 851px) and (max-width: 991px) {

    /* For larger medium screens, show both but adjust spacing */
    .navbar-social {
        margin-right: 15px !important;
    }

    .navbar-social .social-link {
        margin-right: 8px !important;
        font-size: 14px;
        padding: 6px;
    }

    .navbar-btn .ud-main-btn {
        padding: 8px 16px !important;
        font-size: 14px;
    }
}

/* Mobile Social Icons Styling - HIDE when hamburger menu is visible */
.navbar-social-mobile {
    display: none !important;
    /* Hide navbar social icons completely on all mobile/tablet sizes */
}

/* Ensure mobile social icons don't show at any screen size - only in hamburger menu */
@media only screen and (min-width: 768px) {
    .navbar-social-mobile {
        display: none !important;
    }
}

/* Fix navbar overlap for small tablet range (576px - 767px) */
/* Since navbar social icons are now hidden, we only need to manage the explore button */
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .navbar-btn .ud-main-btn {
        padding: 8px 16px !important;
        font-size: 14px !important;
        white-space: nowrap;
    }
}

/* Mobile Menu Social Icons Styling */
.mobile-menu-social {
    padding: 20px 15px 15px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    text-align: center;
}

.social-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.social-link-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: transparent;
    color: var(--primary-color, #1d3b9e);
    border-radius: 0;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-menu:hover {
    background: transparent;
    color: #00D4AA;
    transform: translateY(-3px);
    box-shadow: none;
}

.social-link-menu:focus {
    outline: 2px solid #00D4AA;
    outline-offset: 2px;
}

/* Specific hover colors for each platform */
.social-link-menu[title="Instagram"]:hover {
    color: #e6683c;
}

.social-link-menu[title="Facebook"]:hover {
    color: #1877F2;
}

.social-link-menu[title="WhatsApp"]:hover {
    color: #25D366;
}

/* Ensure mobile menu social only shows when hamburger menu is visible */
@media (min-width: 992px) {
    .mobile-menu-social {
        display: none !important;
    }
}

/* =========================
   FOOTER DOWNLOAD ENHANCEMENTS (Item 15)
   ========================= */

.download-widget-enhanced {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.download-widget-enhanced:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.download-widget-enhanced .ud-widget-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--footer-text) !important;
    margin-bottom: 12px !important;
    font-size: 1.1rem;
}

.download-widget-enhanced .ud-widget-title i {
    font-size: 1.2rem;
    color: #00D4AA;
}

.download-description {
    color: var(--footer-light-text);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Footer App Badges */
.footer-app-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-store-link {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.footer-store-link:hover {
    transform: translateX(5px) scale(1.02);
    filter: brightness(1.1);
}

.footer-store-badge {
    width: 140px;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.footer-store-badge:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Trust Elements */
.download-trust-elements {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    justify-content: space-between;
}

.trust-stat {
    text-align: center;
    flex: 1;
}

.trust-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00D4AA;
    line-height: 1.2;
}

.trust-text {
    display: block;
    font-size: 0.75rem;
    color: var(--footer-light-text);
    font-weight: 500;
    margin-top: 2px;
}

/* Security Badge */
.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(90deg, rgba(0, 212, 170, 0.1), rgba(29, 59, 158, 0.1));
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 12px;
    color: var(--footer-text);
    text-align: center;
}

.security-badge i {
    color: #00D4AA;
    font-size: 14px;
}

/* Responsive Footer Download */
@media (max-width: 1200px) {
    .footer-app-badges {
        align-items: flex-start;
    }

    .footer-store-badge {
        width: 130px;
    }
}

@media (max-width: 768px) {
    .download-widget-enhanced {
        padding: 20px 15px;
        text-align: center;
    }

    .footer-app-badges {
        align-items: center;
    }

    .footer-store-badge {
        width: 140px;
    }

    .download-trust-elements {
        justify-content: center;
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .footer-app-badges {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .footer-store-badge {
        width: 120px;
    }

    .download-trust-elements {
        gap: 20px;
    }
}

/* Mobile Testimonials Styling for 2-Column Layout */
@media (max-width: 575.98px) {
    .ud-single-testimonial {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .ud-single-testimonial .ud-testimonial-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .ud-single-testimonial .ud-testimonial-author .ud-author-info h5 {
        font-size: 14px;
    }

    .ud-single-testimonial .ud-testimonial-author .ud-author-info p {
        font-size: 11px;
    }

    .ud-single-testimonial .ud-author-image {
        width: 40px;
        height: 40px;
    }

    .ud-single-testimonial .ud-author-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ud-testimonial-stars {
        margin-bottom: 8px;
    }

    .ud-testimonial-stars i {
        font-size: 12px;
        margin-right: 2px;
    }
}

/* Hero Image Mobile Optimization */
@media (max-width: 767px) {
    .ud-hero-image {
        max-width: 80% !important;
    }

    .ud-hero-image img:first-child {
        max-width: 100% !important;
    }
}

@media (max-width: 575.98px) {
    .ud-hero-image {
        max-width: 90% !important;
    }

    .ud-hero-image img:first-child {
        max-width: 100% !important;
    }
}