/* Aarohii layout canvas — forked from legacy strategy sheet; colours & type differ from QuickVikalp */

/* General Utilities */
body.site-aarohii {
    color: #475569;
    /* Match existing app body color */
}

.text-brand-primary {
    color: #1E3A8A;
}

.text-brand-secondary {
    color: #14B8A6;
}

.bg-light-gray {
    background-color: #fcfcfc;
    /* Match app.css light background */
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5 {
    font-family: "Syne", sans-serif;
    color: #333;
    /* Default heading color from app.css */
}

h2 {
    font-weight: 700;
    margin-bottom: 50px;
}

p {
    font-size: 16px;
    /* Match standard paragraph size */
    line-height: 1.6;
}

/* About Section */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.approach-item {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    /* Match app.css card radius */
    box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.08);
    /* Exact match to app.css box-shadow */
    transition: transform 0.3s ease;
    border-top: 5px solid #14B8A6;
    /* Thicker accent to match style */
}

.approach-item:hover {
    transform: translateY(-5px);
}

.approach-item h4 {
    color: #1E3A8A;
    /* Keep branding */
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 20px;
}

/* Client Segments */
.client-segments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.segment {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid #14B8A6;
    box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.08);
    /* Consistent shadow */
}

.segment h4 {
    color: #1E3A8A;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.segment ul {
    padding-left: 1.2rem;
    color: #666;
}

/* Stats */
.track-record-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin: 100px 0;
    /* Consistent Section Spacing */
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1E3A8A 0%, #1565C0 100%);
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(26, 35, 126, 0.3);
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #14B8A6;
    margin-bottom: 0.5rem;
}

.stat .label {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Syne", sans-serif;
}

/* Founder Quote */
.founder-quote {
    border-left: 5px solid #14B8A6;
    padding-left: 2.5rem;
    margin: 80px 0;
    font-style: italic;
    font-size: 1.4rem;
    color: #555;
    background: #f8f9fa;
    /* Slightly darker than card bg for contrast */
    padding: 3rem;
    border-radius: 0 20px 20px 0;
}

.founder-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-weight: 700;
    font-style: normal;
    color: #1E3A8A;
    font-size: 1.1rem;
}

/* Services Detailed */
.service-detailed {
    background: #fff;
    border-radius: 20px;
    /* Consistent radius */
    padding: 4rem;
    margin-bottom: 80px;
    box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.08);
    /* Consistent shadow */
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    position: relative;
    /* Added for absolute positioning of badges */
}

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

.service-detailed.featured {
    border: 3px solid #14B8A6;
    background: linear-gradient(to bottom, #f0fbfe, #fff);
    /* Matches existing theme subtly */
}

.service-detailed>.badge {
    position: absolute;
    top: -15px;
    right: 3rem;
    background: #14B8A6;
    color: #1E3A8A;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(1, 230, 248, 0.3);
    font-size: 0.85rem;
    z-index: 10;
}

.service-detailed .badge.badge-launch {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.15);
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.service-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    color: #1E3A8A;
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.tagline {
    color: #666;
    font-size: 1.3rem;
    font-weight: 300;
    font-style: italic;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
    /* Center align for better balance */
}

.tech-tag {
    background: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 1rem;
    color: #1E3A8A;
    border: 1px solid #14B8A6;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.service-outcomes {
    background: #e3f2fd;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2.5rem 0;
}

.service-outcomes h4 {
    color: #1565c0;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.service-outcomes li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 500;
    color: #444;
}


.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

/* Removed hover effect - badges now always visible */

.compliance-badges .badge {
    background: #fff;
    border: 1px solid #eee;
    color: #555;
    padding: 1.5rem;
    border-radius: 15px;
    flex: 1 1 140px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

/* Case Studies Section */
#case-studies {
    padding: 100px 0;
    /* Standard section spacing */
    background: #fbfbfb;
    /* Very light gray to distinguish from white sections */
}

.case-study {
    background: #fff;
    border-radius: 30px;
    /* Slightly larger for the "big card" feel */
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    border: none;
}

.case-study-header {
    background: #1E3A8A;
    padding: 4rem;
    color: #fff;
    position: relative;
    background-image: linear-gradient(135deg, #1E3A8A 0%, #1565C0 100%);
}

.case-study-header h3 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
}

.case-study-content {
    padding: 5rem 4rem;
}

.result-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    border-bottom: 6px solid #14B8A6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.result-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #1E3A8A;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.case-studies-cta {
    text-align: center;
    margin-top: 80px;
    background: #1E3A8A;
    padding: 5rem 2rem;
    border-radius: 30px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(26, 35, 126, 0.25);
}

html {
    scroll-behavior: smooth;
}

/* Buttons - Align with existing button feels */
.btn-primary,
.btn-brand {
    background-color: #1E3A8A;
    color: #fff !important;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.3s;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #1E3A8A;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.2);
}

.btn-primary:hover,
.btn-brand:hover {
    background-color: transparent;
    color: #1E3A8A !important;
    border-color: #1E3A8A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #1E3A8A !important;
    border: 2px solid #1E3A8A;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none !important;
    display: inline-block;
    margin-left: 1.5rem;
    transition: all 0.3s;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-secondary:hover {
    background-color: #1E3A8A;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.2);
}

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

    .service-detailed,
    .case-study-content,
    .case-study-header {
        padding: 2rem;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
        width: 100%;
        text-align: center;
    }

    .btn-primary {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   21. Launch Partner Program
   ========================================================================== */

#launch-partner-program {
    background: #f0f4f8;
    padding: 100px 0;
}

.program-hero {
    text-align: center;
    margin-bottom: 60px;
}

.program-hero .badge {
    background: #ff5252;
    color: white;
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.3);
}

.program-content {
    background: white;
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.value-exchange {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 40px 0;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
}

.partner-benefits h4,
.our-benefits h4 {
    color: #1E3A8A;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pricing-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pricing-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid #14B8A6;
    box-shadow: 0 10px 40px rgba(1, 230, 248, 0.1);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #14B8A6;
    color: #1E3A8A;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
}

.standard-price {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.launch-price {
    color: #1E3A8A;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.savings {
    color: #00c853;
    font-weight: 600;
    background: #e8f5e9;
    display: inline-block;
    padding: 0.2rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.availability {
    background: #1E3A8A;
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
}

.spots-visual {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.spots-visual span {
    font-size: 1.5rem;
}

.spots-visual .filled {
    color: #ff5252;
}

.spots-visual .open {
    color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   22. New About & Team Sections
   ========================================================================== */

.founder-story {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    margin: 30px 0;
    border-left: 5px solid #1E3A8A;
}

.our-difference {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.difference-point {
    background: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaefff;
}

.difference-point h4 {
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.team-stats .stat {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid #14B8A6;
}

.team-stats .stat strong {
    display: block;
    font-size: 2.5rem;
    color: #1E3A8A;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.project-preview {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 20px;
    border: 1px solid #eee;
    position: relative;
    transition: transform 0.3s ease;
}

.project-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.project-preview .tag {
    background: #e3f2fd;
    color: #1565c0;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.project-preview .status {
    margin-top: 1rem;
    font-weight: 600;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.what-we-are-not {
    background: #263238;
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 60px;
}

.what-we-are-not h3 {
    color: white;
}

.what-we-are-not ul {
    list-style: none;
    padding: 0;
}

.what-we-are-not li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.honest-message {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    font-style: italic;
}

/* Team Section Styles */
.team-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    text-align: center;
    margin: 15px;
}

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

.team-card img {
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid #f0f9ff;
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.team-card h5 {
    color: #1E3A8A;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-card h5 span {
    color: #14B8A6;
    font-size: 0.9em;
    font-weight: 600;
}

/* Testimonial Section Styles */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    text-align: center;
    margin: 15px;
    position: relative;
    height: 100%;
}

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

.testimonial-card img {
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid #f0f9ff;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.testimonial-card .card-text {
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-card .fa-star,
.testimonial-card .fa-star-half-alt {
    color: #ffc107;
}

/* Team Section Styles */
.team-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    text-align: center;
    margin: 15px;
}

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

.team-card img {
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid #f0f9ff;
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.team-card h5 {
    color: #1E3A8A;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-card h5 span {
    color: #14B8A6;
    font-size: 0.9em;
    font-weight: 600;
}

/* Testimonial Section Styles */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    text-align: center;
    margin: 15px;
    position: relative;
    height: 100%;
}

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

.testimonial-card img {
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid #f0f9ff;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.testimonial-card .card-text {
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-card .fa-star {
    color: #ffc107;
}