/* Project Type Selection Styles */
.project-type-wrapper {
    margin: 30px auto;
    max-width: 800px;
    font-family: 'Inter', sans-serif;
}

.project-type-header {
    display: flex;
    /* align-items: center;
    justify-content: center; */
    gap: 10px;
    margin-bottom: 25px;
    color: #007acc;
    font-size: 1.2rem;
    font-weight: 600;
}

.project-type-header i {
    font-size: 1.4rem;
}

.project-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.project-card {
    position: relative;
}

/* Hide default radio */
.project-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.project-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    background: #fff;
    border: 2px solid #e1e4e8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.project-card-inner:hover {
    border-color: #a0cfff;
    box-shadow: 0 10px 20px rgba(0, 122, 204, 0.1);
    transform: translateY(-2px);
}

/* Checked State */
.project-card input[type="radio"]:checked+.project-card-inner,
.project-card-inner[data-checked="true"] {
    /* Fallback if js sets a class, but CSS :checked sibling selector is better if structure allows. 
       Wait, the input is OUTSIDE the inner div in the HTML structure:
       <input type="radio" ...>
       <div class="project-card-inner" ...> 
    */
    border-color: #007acc;
    background-color: #f0f7ff;
    box-shadow: 0 0 0 4px rgba(0, 122, 204, 0.1);
}

.project-card input[type="radio"]:checked+.project-card-inner .project-radio::after {
    transform: scale(1);
}

.project-card input[type="radio"]:checked+.project-card-inner .project-radio {
    border-color: #007acc;
}

.project-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

/* Custom Radio Circle */
.project-radio {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
    margin-top: 3px;
}

.project-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background-color: #007acc;
    border-radius: 50%;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.4;
}

.project-card-desc {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    padding-left: 32px;
    /* Align with title text, bypassing radio */
}

/* Suboptions (Web, Mobile, Both) */
.project-suboptions {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.project-suboption {
    position: relative;
    cursor: pointer;
}

.project-suboption input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.project-suboption span {
    display: inline-block;
    padding: 0px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    /* background-color: #f3f4f6; */
    color: #4b5563;
    border-radius: 20px;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.project-suboption:hover span {
    background-color: #e5e7eb;
}

.project-suboption input:checked+span {
    /* background-color: #007acc; */
    /* color: white;
    box-shadow: 0 2px 4px rgba(0, 122, 204, 0.2); */
}

/* Responsive */
@media (max-width: 768px) {
    .project-type-grid {
        grid-template-columns: 1fr;
    }

    .project-card-desc {
        padding-left: 0;
        margin-top: 10px;
    }

    .project-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-radio {
        display: none;
        /* Hide custom radio on mobile to save space/simplify? Or keep it? Let's keep it but adjust layout */
        display: block;
    }

    .project-card-header {
        flex-direction: row;
        /* Keep row */
    }
}

/* Footer Section Styles */
.footer-section {
    position: relative;
    background-color: #fff;
    margin-top: 150px;
    font-family: 'Inter', sans-serif;
}

.footer-cta-banner {
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 25%),
        linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #db2777 100%) !important;
    border-radius: 24px;
    padding: 80px 60px;
    position: relative;
    margin-top: -100px;
    z-index: 10;
    box-shadow: 0 30px 60px -12px rgba(79, 70, 229, 0.4);
    color: white !important;
    overflow: hidden;
    min-height: 300px;
}

.footer-cta-banner h2 {
    color: white !important;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer-cta-banner p {
    color: rgba(255, 255, 255, 1) !important;
    font-size: 1.15rem;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400;
}

.footer-cta-banner .btn-register {
    display: inline-block;
    background: #ffffff !important;
    color: #4f46e5 !important;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-top: 30px;
}

.footer-cta-banner .btn-register:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.floating-icon {
    position: absolute;
    animation: floatIcon 6s ease-in-out infinite;
    opacity: 1 !important;
    z-index: 20;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

@keyframes floatIcon {

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

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

.icon-bulb {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    font-size: 5rem;
    color: #fde047 !important;
}

.icon-dollar {
    opacity: 1 !important;
    font-size: 4rem;
    animation-delay: 2s;
    color: #86efac !important;
}

.icon-rocket {
    animation-delay: 1s;
    font-size: 6rem;
    color: #fca5a5 !important;
}

/* Main Footer Content */
.footer-main-content {
    padding-top: 80px;
}

.logo-icon-circle {
    width: 36px;
    height: 36px;
    background: #4f46e5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: #111827;
}

.footer-box p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-align: left;
}

.social-link a {
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 12px;
    color: #6b7280;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link a:hover {
    background: #2563eb;
    color: white;
}

.footer-links-box h5,
.footer-subscribe-box h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    text-align: left;
}

.footer-link li {
    margin-bottom: 12px;
    text-align: left;
}

.footer-link li a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-link li a:hover {
    color: #2563eb;
}

/* Newsletter */
.newsletter-form {
    position: relative;
    max-width: 300px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    padding-right: 50px;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px;
    background: #f9fafb !important;
    outline: none;
    height: 48px !important;
}

.newsletter-form button {
    position: absolute;
    right: 6px;
    top: 6px;
    height: 36px !important;
    width: 36px !important;
    background: #2563eb !important;
    color: white !important;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: #1d4ed8 !important;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #e5e7eb;
    margin-top: 60px;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom .right a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-bottom .right a:hover {
    color: #2563eb;
}

.back-to-top-btn {
    width: 36px;
    height: 36px;
    background: #2563eb;
    color: white !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 15px;
    transition: transform 0.3s;
    text-decoration: none;
}

.back-to-top-btn:hover {
    transform: translateY(-3px);
    background: #1d4ed8;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-cta-banner {
        padding: 40px 30px;
        text-align: center;
    }

    .footer-cta-banner .text-end {
        text-align: center !important;
        margin-top: 20px;
    }

    .footer-cta-banner .btn-register {
        display: inline-block;
        margin-top: 10px;
    }

    .footer-section {
        margin-top: 120px;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom .right {
        justify-content: center;
    }

    .footer-section {
        margin-top: 80px;
    }

    .footer-cta-banner {
        margin-top: -60px;
    }

}

/* Trusted Brands Section Styles */
.trusted-brands-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.brand-logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px;
    transition: all 0.3s ease;
}

.brand-logo-item:hover {
    color: #2563eb;
    transform: translateY(-2px);
}

.brand-logo-item i {
    font-size: 1.5rem;
}

/* Feature Cards Design for Carousel */
.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f3f4f6;
    text-align: left !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-box i {
    font-size: 24px;
}

.icon-box-green {
    background: #dcfce7;
    color: #16a34a;
}

.icon-box-orange {
    background: #ffedd5;
    color: #ea580c;
}

.icon-box-pink {
    background: #fce7f3;
    color: #db2777;
}

.icon-box-purple {
    background: #f3e8ff;
    color: #9333ea;
}

.icon-box-blue {
    background: #dbeafe;
    color: #2563eb;
}

.feature-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Override existing carousel item styles if needed */
.partner-carousel .single {
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.partner-carousel .single .feature-card {
    min-height: 240px;
}

.partner-carousel .item-inner {
    display: block !important;
}

/* Mobile Apps Section Styling */
.top-section {
    padding: 20px 0;
}

.top-section .head-icon {
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.25);
}

.top-section .head-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.top-section .sub-title1 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.top-section .title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.top-section > p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 500;
}

.top-section .list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.top-section .list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

.top-section .list-item span b {
    color: #1f2937;
    font-weight: 700;
}

.top-section .check {
    min-width: 24px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin-top: 2px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.2);
}

.top-section .check img {
    width: 12px;
    height: 12px;
    filter: brightness(0) invert(1);
}