/* ==================================================
MJD DISABILITY SERVICES
PREMIUM SERVICE PAGE CSS
================================================== */


/* ==================================================
1. GOOGLE FONT
================================================== */

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap");


/* ==================================================
2. ROOT COLOURS
================================================== */

:root{

    --primary:#0b8fd8;
    --primary-dark:#075f99;

    --green:#49c53a;
    --green-dark:#269b1a;

    --pink:#ed0f68;
    --pink-dark:#c90853;

    --navy:#081d33;
    --navy-light:#12385b;

    --white:#ffffff;

    --light:#f5f9fc;
    --light-blue:#edf7fd;

    --text:#5d6b78;
    --heading:#0b2138;

    --border:#e3ebf1;

    --shadow:0 20px 60px rgba(8,29,51,.10);
    --shadow-large:0 30px 80px rgba(8,29,51,.16);

    --radius:24px;

}


/* ==================================================
3. RESET
================================================== */

*{

    margin:0;
    padding:0;

    box-sizing:border-box;

}


html{

    scroll-behavior:smooth;

}


body{

    font-family:"Outfit",sans-serif;

    color:var(--text);

    background:#ffffff;

    overflow-x:hidden;

}


img{

    max-width:100%;

    display:block;

}


a{

    color:inherit;

    text-decoration:none;

}


button{

    font-family:inherit;

}


.service-container{

    width:min(1180px,calc(100% - 40px));

    margin:auto;

}


/* ==================================================
4. HEADER
================================================== */

.site-header{

    position:sticky;

    top:0;

    left:0;

    z-index:9999;

    width:100%;

    background:rgba(255,255,255,.96);

    border-bottom:1px solid rgba(10,35,56,.07);

    backdrop-filter:blur(18px);

}


.header-container{

    width:min(1400px,calc(100% - 40px));

    min-height:88px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;
    
    gap:25px;

}



.logo{

    flex-shrink:0;

}


.logo img{

    width:220px;

    max-height:110px;

    object-fit:contain;

}


.main-navigation{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:28px;


}



.main-navigation > a,

.services-toggle{

    color:var(--heading);

    font-size:16px;

    font-weight:600;

    background:none;

    border:0;

    cursor:pointer;

    transition:.25s;
    color:#49c53a";

}


.main-navigation1 > a,

.services-toggle{

    
    color:#49c53a;
    font-size:16px;

    font-weight:600;

    background:none;

    border:0;

    cursor:pointer;

    transition:.25s;

}


.main-navigation1 > a:hover,

.services-toggle:hover{

    color: green;

}


.services-menu{

    position:relative;

}


.services-toggle{

    display:flex;

    align-items:center;

    gap:7px;

}


.services-toggle i{

    font-size:12px;

    transition:.3s;
    

}


.services-menu.active .services-toggle i{

    transform:rotate(180deg);

}


/* ==================================================
SERVICES DROPDOWN
================================================== */

.services-dropdown{

    position:absolute;

    top:calc(100% + 25px);

    left:50%;

    transform:translateX(-50%) translateY(12px);

    width:650px;

    padding:22px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:10px;

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:22px;

    box-shadow:var(--shadow-large);

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transition:.3s;

}


.services-menu.active .services-dropdown{

    opacity:1;

    visibility:visible;

    pointer-events:auto;

    transform:translateX(-50%) translateY(0);

}


.services-dropdown a{

    min-height:65px;

    display:flex;

    align-items:center;

    gap:14px;

    padding:14px;

    border-radius:15px;

    color:var(--heading);

    font-weight:600;

    transition:.25s;

}


.services-dropdown a:hover{

    color:var(--primary);

    background:var(--light-blue);

}


.services-dropdown i{

    width:40px;

    height:40px;

    display:grid;

    place-items:center;

    flex-shrink:0;

    border-radius:12px;

    color:#ffffff;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--green)
    );

}


.header-button{

    display:flex;

    align-items:center;

    gap:10px;

    padding:13px 18px;

    border-radius:14px;

    color:#ffffff;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--green)
    );

    font-weight:700;

    white-space:nowrap;

    box-shadow:0 12px 25px rgba(11,143,216,.20);

    transition:.3s;

}


.header-button:hover{

    transform:translateY(-3px);

    box-shadow:0 17px 32px rgba(11,143,216,.28);

}


.header-button span{

    width:30px;

    height:30px;

    display:grid;

    place-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.18);

}


.mobile-menu-button{

    width:48px;

    height:48px;

    display:none;

    place-content:center;

    gap:5px;

    border:0;

    border-radius:13px;

    background:var(--navy);

    cursor:pointer;

}


.mobile-menu-button span{

    display:block;

    width:24px;

    height:2px;

    margin:auto;

    border-radius:5px;

    background:#ffffff;

    transition:.3s;

}


.mobile-contact-button{

    display:none;

}


/* ==================================================
5. HERO
================================================== */

.service-hero{

    position:relative;

    min-height:690px;

    display:flex;

    align-items:center;

    padding:110px 0;

    background-position:center;

    background-size:cover;

    overflow:hidden;

}


.service-hero-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        90deg,
        rgba(5,20,35,.94) 0%,
        rgba(5,20,35,.84) 47%,
        rgba(5,20,35,.30) 100%
    );

}


.service-hero-content{

    position:relative;

    z-index:2;

    width:min(1180px,calc(100% - 40px));

    margin:auto;

    color:#ffffff;

}


.breadcrumb{

    display:flex;

    flex-wrap:wrap;

    align-items:center;

    gap:9px;

    margin-bottom:30px;

    color:rgba(255,255,255,.72);

    font-size:14px;

}


.breadcrumb a:hover{

    color:var(--green);

}


.breadcrumb strong{

    color:#ffffff;

}


.hero-tag{

    width:max-content;

    max-width:100%;

    display:flex;

    align-items:center;

    gap:9px;

    padding:10px 16px;

    margin-bottom:22px;

    border:1px solid rgba(255,255,255,.20);

    border-radius:50px;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(10px);

    color:#ffffff;

    font-weight:600;

}


.hero-tag i{

    color:var(--green);

}


.service-hero h1{

    max-width:750px;

    margin-bottom:23px;

    font-size:clamp(48px,6vw,82px);

    line-height:1.02;

    letter-spacing:-2px;

}


.service-hero h1 span{

    color:var(--green);

}


.service-hero-content > p{

    max-width:650px;

    margin-bottom:35px;

    color:rgba(255,255,255,.82);

    font-size:20px;

    line-height:1.7;

}


.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

}


.primary-button,

.secondary-button{

    min-height:56px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 23px;

    border-radius:14px;

    font-weight:700;

    transition:.3s;

}


.primary-button{

    color:#ffffff;

    background:linear-gradient(
        135deg,
        var(--green),
        var(--primary)
    );

    box-shadow:0 15px 30px rgba(0,0,0,.20);

}


.primary-button:hover{

    transform:translateY(-4px);

}


.secondary-button{

    border:1px solid rgba(255,255,255,.35);

    background:rgba(255,255,255,.08);

    color:#ffffff;

    backdrop-filter:blur(10px);

}


.secondary-button:hover{

    background:#ffffff;

    color:var(--navy);

}


.hero-support-card{

    position:absolute;

    z-index:3;

    right:max(4%,calc((100% - 1320px)/2));

    bottom:55px;

    width:300px;

    padding:27px;

    border:1px solid rgba(255,255,255,.20);

    border-radius:24px;

    background:rgba(255,255,255,.12);

    color:#ffffff;

    backdrop-filter:blur(18px);

    box-shadow:var(--shadow-large);

}


.support-icon{

    width:55px;

    height:55px;

    display:grid;

    place-items:center;

    margin-bottom:18px;

    border-radius:17px;

    background:var(--green);

    font-size:22px;

}


.hero-support-card h3{

    margin-bottom:9px;

    font-size:21px;

}


.hero-support-card > p{

    color:rgba(255,255,255,.76);

    line-height:1.6;

}


.support-card-line{

    height:1px;

    margin:20px 0;

    background:rgba(255,255,255,.18);

}


.support-card-list{

    display:grid;

    gap:11px;

}


.support-card-list div{

    display:flex;

    align-items:center;

    gap:9px;

    font-size:14px;

}


.support-card-list i{

    color:var(--green);

}


/* ==================================================
6. TRUST BAR
================================================== */

.service-trust-bar{

    position:relative;

    z-index:5;

    margin-top:-35px;

}


.trust-container{

    width:min(1180px,calc(100% - 40px));

    min-height:120px;

    margin:auto;

    padding:25px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    border-radius:23px;

    background:#ffffff;

    box-shadow:var(--shadow);

}


.trust-item{

    display:flex;

    align-items:center;

    gap:14px;

    padding:8px 15px;

    border-right:1px solid var(--border);

}


.trust-item:last-child{

    border-right:0;

}


.trust-icon{

    width:50px;

    height:50px;

    display:grid;

    place-items:center;

    flex-shrink:0;

    border-radius:15px;

    color:var(--primary);

    background:var(--light-blue);

    font-size:20px;

}


.trust-item strong{

    display:block;

    margin-bottom:5px;

    color:var(--heading);

}


.trust-item span{

    font-size:13px;

}


/* ==================================================
7. COMMON SECTION
================================================== */

.service-about,

.who-benefits,

.service-help,

.choose-mjd,

.support-process,

.service-faq,

.service-testimonials{

    padding:120px 0;

}


.section-label{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-bottom:17px;

    color:var(--green-dark);

    font-size:13px;

    font-weight:800;

    letter-spacing:1.5px;

}


.section-label i{

    color:var(--pink);

}


.section-heading{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}


.section-heading h2,

.service-about-content h2,

.help-header h2,

.choose-content h2,

.faq-intro h2{

    color:var(--heading);

    font-size:clamp(35px,4vw,55px);

    line-height:1.12;

    letter-spacing:-1.5px;

}


.section-heading h2 span,

.service-about-content h2 span,

.help-header h2 span,

.faq-intro h2 span{

    color:var(--primary);

}


.section-heading > p{

    margin-top:18px;

    font-size:17px;

    line-height:1.75;

}


/* ==================================================
8. ABOUT
================================================== */

.service-about{

    background:#ffffff;

}


.service-about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:85px;

}


.service-image-wrap{

    position:relative;

}


.service-image{

    position:relative;

    z-index:2;

    overflow:hidden;

    border-radius:28px;

    box-shadow:var(--shadow-large);

}


.service-image img{

    width:100%;

    min-height:570px;

    object-fit:cover;

}


.image-decoration{

    position:absolute;

    border-radius:50%;

}


.decoration-one{

    top:-35px;

    left:-35px;

    width:130px;

    height:130px;

    background:var(--green);

}


.decoration-two{

    right:-30px;

    bottom:-30px;

    width:150px;

    height:150px;

    background:var(--pink);

}


.experience-badge{

    position:absolute;

    z-index:3;

    right:-30px;

    bottom:35px;

    width:270px;

    display:flex;

    align-items:center;

    gap:13px;

    padding:18px;

    border-radius:18px;

    background:#ffffff;

    box-shadow:var(--shadow);

}


.experience-number{

    width:50px;

    height:50px;

    display:grid;

    place-items:center;

    flex-shrink:0;

    border-radius:14px;

    color:#ffffff;

    background:linear-gradient(
        135deg,
        var(--pink),
        var(--primary)
    );

}


.experience-badge strong{

    display:block;

    color:var(--heading);

}


.experience-badge span{

    display:block;

    margin-top:4px;

    font-size:13px;

}


.service-about-content > p{

    margin-top:18px;

    line-height:1.8;

}


.service-feature-list{

    display:grid;

    gap:19px;

    margin:35px 0;

}


.service-feature{

    display:flex;

    align-items:flex-start;

    gap:16px;

}


.feature-icon{

    width:50px;

    height:50px;

    display:grid;

    place-items:center;

    flex-shrink:0;

    border-radius:15px;

    color:#ffffff;

    background:var(--green);

}


.feature-icon.blue{

    background:var(--primary);

}


.feature-icon.pink{

    background:var(--pink);

}


.service-feature h4{

    margin-bottom:5px;

    color:var(--heading);

    font-size:18px;

}


.service-feature p{

    font-size:14px;

    line-height:1.6;

}


.text-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:800;

}


.text-link:hover{

    color:var(--pink);

}


/* ==================================================
9. BENEFITS
================================================== */

.who-benefits{

    background:var(--light);

}


.benefit-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

}


.benefit-card{

    position:relative;

    min-height:310px;

    padding:32px;

    overflow:hidden;

    border:1px solid var(--border);

    border-radius:22px;

    background:#ffffff;

    transition:.35s;

}


.benefit-card:hover{

    transform:translateY(-10px);

    border-color:transparent;

    box-shadow:var(--shadow);

}


.benefit-number{

    position:absolute;

    top:18px;

    right:22px;

    color:#dfe8ee;

    font-size:30px;

    font-weight:800;

}


.benefit-icon{

    width:62px;

    height:62px;

    display:grid;

    place-items:center;

    margin-bottom:25px;

    border-radius:18px;

    color:#ffffff;

    background:var(--green);

    font-size:23px;

}


.benefit-icon.blue{

    background:var(--primary);

}


.benefit-icon.pink{

    background:var(--pink);

}


.benefit-icon.purple{

    background:#7b61d9;

}


.benefit-card h3{

    margin-bottom:13px;

    color:var(--heading);

    font-size:21px;

    line-height:1.3;

}


.benefit-card p{

    font-size:15px;

    line-height:1.7;

}


.card-arrow{

    position:absolute;

    right:25px;

    bottom:23px;

    color:var(--primary);

}


/* ==================================================
10. HOW WE HELP
================================================== */

.service-help{

    background:#ffffff;

}


.help-header{

    display:flex;

    justify-content:space-between;

    align-items:end;

    gap:40px;

    margin-bottom:55px;

}


.help-header > div{

    max-width:650px;

}


.help-header > p{

    max-width:390px;

    line-height:1.8;

}


.help-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:23px;

}


.help-card{

    padding:35px;

    border:1px solid var(--border);

    border-radius:22px;

    background:#ffffff;

    transition:.3s;

}


.help-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}


.help-icon{

    width:58px;

    height:58px;

    display:grid;

    place-items:center;

    margin-bottom:23px;

    border-radius:17px;

    color:#ffffff;

    background:var(--green);

    font-size:22px;

}


.help-icon.blue{

    background:var(--primary);

}


.help-icon.pink{

    background:var(--pink);

}


.help-icon.purple{

    background:#7b61d9;

}


.help-icon.orange{

    background:#f49a2f;

}


.help-card h3{

    margin-bottom:12px;

    color:var(--heading);

    font-size:21px;

}


.help-card p{

    line-height:1.7;

}


/* ==================================================
11. WHY CHOOSE MJD
================================================== */

.choose-mjd{

    background:var(--navy);

}


.choose-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}


.light-label{

    color:var(--green);

}


.choose-content h2{

    color:#ffffff;

    margin-bottom:22px;

}


.choose-content h2 span{

    color:var(--green);

}


.choose-content > p{

    color:rgba(255,255,255,.72);

    line-height:1.8;

}


.choose-list{

    display:grid;

    gap:21px;

    margin-top:35px;

}


.choose-item{

    display:flex;

    gap:14px;

}


.choose-check{

    width:35px;

    height:35px;

    display:grid;

    place-items:center;

    flex-shrink:0;

    border-radius:50%;

    color:#ffffff;

    background:var(--green);

    font-size:13px;

}


.choose-item h4{

    margin-bottom:5px;

    color:#ffffff;

}


.choose-item p{

    color:rgba(255,255,255,.62);

    font-size:14px;

}


.choose-visual{

    position:relative;

}


.choose-visual img{

    width:100%;

    min-height:590px;

    object-fit:cover;

    border-radius:28px;

}


.trust-card{

    position:absolute;

    left:-35px;

    bottom:35px;

    display:flex;

    align-items:center;

    gap:14px;

    padding:20px;

    border-radius:18px;

    background:#ffffff;

    box-shadow:var(--shadow);

}


.trust-card-icon{

    width:50px;

    height:50px;

    display:grid;

    place-items:center;

    border-radius:14px;

    color:#ffffff;

    background:var(--pink);

}


.trust-card strong{

    display:block;

    color:var(--heading);

}


.trust-card span{

    display:block;

    margin-top:4px;

    font-size:13px;

}


/* ==================================================
12. PROCESS
================================================== */

.support-process{

    background:var(--light);

}


.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

}


.process-card{

    position:relative;

    padding:38px 27px;

    text-align:center;

    border-radius:22px;

    background:#ffffff;

    box-shadow:0 12px 35px rgba(8,29,51,.05);

    transition:.3s;

}


.process-card:hover{

    transform:translateY(-9px);

}


.process-number{

    position:absolute;

    top:17px;

    right:20px;

    color:#dfe8ee;

    font-size:23px;

    font-weight:800;

}


.process-icon{

    width:65px;

    height:65px;

    display:grid;

    place-items:center;

    margin:0 auto 23px;

    border-radius:19px;

    color:#ffffff;

    background:var(--green);

    font-size:24px;

}


.process-icon.blue{

    background:var(--primary);

}


.process-icon.pink{

    background:var(--pink);

}


.process-icon.purple{

    background:#7b61d9;

}


.process-card h3{

    margin-bottom:12px;

    color:var(--heading);

}


.process-card p{

    font-size:14px;

    line-height:1.7;

}


/* ==================================================
13. FAQ
================================================== */

.service-faq{

    background:#ffffff;

}


.faq-grid{

    display:grid;

    grid-template-columns:.8fr 1.2fr;

    gap:75px;

    align-items:start;

}


.faq-intro{

    position:sticky;

    top:120px;

}


.faq-intro p{

    margin:20px 0 30px;

    line-height:1.8;

}


.faq-list{

    display:grid;

    gap:14px;

}


.faq-item{

    overflow:hidden;

    border:1px solid var(--border);

    border-radius:17px;

    background:#ffffff;

}


.faq-question{

    width:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    padding:23px;

    border:0;

    background:#ffffff;

    color:var(--heading);

    text-align:left;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

}


.faq-question i{

    width:34px;

    height:34px;

    display:grid;

    place-items:center;

    flex-shrink:0;

    border-radius:50%;

    color:#ffffff;

    background:var(--primary);

    transition:.3s;

}


.faq-item.active .faq-question i{

    transform:rotate(45deg);

    background:var(--pink);

}


.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}


.faq-answer p{

    padding:0 23px 23px;

    line-height:1.8;

}


/* ==================================================
14. TESTIMONIALS
================================================== */

.service-testimonials{

    background:var(--light);

}


.testimonial-slider{

    overflow:hidden;

}


.testimonial-track{

    display:flex;

    transition:transform .55s ease;

}


.service-testimonial{

    min-width:100%;

    padding:55px;

    border-radius:25px;

    background:#ffffff;

    box-shadow:var(--shadow);

}


.quote-mark{

    width:58px;

    height:58px;

    display:grid;

    place-items:center;

    margin-bottom:20px;

    border-radius:18px;

    color:#ffffff;

    background:var(--pink);

    font-size:23px;

}


.testimonial-stars{

    margin-bottom:20px;

    color:#f6ad27;

    letter-spacing:4px;

}


.service-testimonial > p{

    max-width:850px;

    color:var(--heading);

    font-size:clamp(21px,2.4vw,30px);

    line-height:1.55;

}


.testimonial-person{

    display:flex;

    align-items:center;

    gap:13px;

    margin-top:30px;

}


.person-avatar{

    width:52px;

    height:52px;

    display:grid;

    place-items:center;

    border-radius:50%;

    color:#ffffff;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--green)
    );

    font-weight:800;

}


.testimonial-person strong{

    display:block;

    color:var(--heading);

}


.testimonial-person span{

    display:block;

    margin-top:3px;

    font-size:13px;

}


.testimonial-controls{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    margin-top:30px;

}


.testimonial-button{

    width:48px;

    height:48px;

    border:1px solid var(--border);

    border-radius:50%;

    background:#ffffff;

    color:var(--heading);

    cursor:pointer;

}


.testimonial-button:hover{

    color:#ffffff;

    background:var(--primary);

}


.testimonial-dots{

    display:flex;

    gap:8px;

}


.testimonial-dot{

    width:9px;

    height:9px;

    padding:0;

    border:0;

    border-radius:50%;

    background:#c5d2da;

    cursor:pointer;

}


.testimonial-dot.active{

    width:28px;

    border-radius:20px;

    background:var(--primary);

}


/* ==================================================
15. CTA
================================================== */

.service-cta{

    position:relative;

    padding:110px 0;

    overflow:hidden;

    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--navy)
    );

}


.cta-shape{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.06);

}


.cta-shape-one{

    top:-150px;

    left:-120px;

    width:400px;

    height:400px;

}


.cta-shape-two{

    right:-120px;

    bottom:-180px;

    width:500px;

    height:500px;

}


.service-cta-box{

    position:relative;

    z-index:2;

    min-height:380px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

    padding:65px;

    border:1px solid rgba(255,255,255,.18);

    border-radius:30px;

    background:rgba(255,255,255,.08);

    color:#ffffff;

    backdrop-filter:blur(15px);

}


.cta-content{

    max-width:720px;

}


.cta-content > span{

    display:block;

    margin-bottom:17px;

    color:var(--green);

    font-size:13px;

    font-weight:800;

    letter-spacing:2px;

}


.cta-content h2{

    font-size:clamp(38px,5vw,65px);

    line-height:1.05;

}


.cta-content em{

    color:var(--green);

    font-style:normal;

}


.cta-content p{

    max-width:650px;

    margin:20px 0 30px;

    color:rgba(255,255,255,.76);

    font-size:18px;

    line-height:1.7;

}


.cta-actions{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}


.cta-primary,

.cta-phone{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-height:54px;

    padding:14px 20px;

    border-radius:14px;

    font-weight:800;

}


.cta-primary{

    color:var(--navy);

    background:#ffffff;

}


.cta-phone{

    border:1px solid rgba(255,255,255,.28);

}


.cta-badge{

    width:210px;

    padding:30px;

    flex-shrink:0;

    text-align:center;

    border-radius:22px;

    background:#ffffff;

    color:var(--heading);

}


.cta-badge-icon{

    width:65px;

    height:65px;

    display:grid;

    place-items:center;

    margin:0 auto 18px;

    border-radius:20px;

    color:#ffffff;

    background:var(--pink);

    font-size:25px;

}


.cta-badge strong{

    display:block;

    font-size:19px;

    line-height:1.3;

}


.cta-badge span{

    display:block;

    margin-top:8px;

    font-size:13px;

}


/* ==================================================
16. FOOTER
================================================== */

.site-footer{

    padding:85px 0 0;

    background:#061626;

    color:rgba(255,255,255,.67);

}


.footer-grid{

    display:grid;

    grid-template-columns:1.5fr 1fr 1fr 1.2fr;

    gap:50px;

    padding-bottom:60px;

}


.footer-logo img{

    width:155px;

    max-height:75px;

    object-fit:contain;

    margin-bottom:22px;

    background:#ffffff;

    border-radius:10px;

    padding:5px;

}


.footer-about > p{

    max-width:350px;

    line-height:1.8;

}


.footer-social{

    display:flex;

    gap:10px;

    margin-top:23px;

}


.footer-social a{

    width:40px;

    height:40px;

    display:grid;

    place-items:center;

    border-radius:12px;

    background:rgba(255,255,255,.08);

    color:#ffffff;

}


.footer-social a:hover{

    background:var(--primary);

}


.footer-column h3{

    margin-bottom:22px;

    color:#ffffff;

    font-size:19px;

}


.footer-column > a{

    display:block;

    margin-bottom:13px;

}


.footer-column > a:hover,

.footer-contact a:hover{

    color:var(--green);

}


.footer-contact p{

    display:flex;

    align-items:flex-start;

    gap:10px;

    margin-bottom:15px;

    line-height:1.6;

}


.footer-contact i{

    margin-top:4px;

    color:var(--green);

}


.footer-bottom{

    min-height:75px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    border-top:1px solid rgba(255,255,255,.08);

}


.footer-bottom div{

    display:flex;

    gap:20px;

}


.footer-bottom a:hover{

    color:var(--green);

}


/* ==================================================
17. TABLET
================================================== */

@media(max-width:1100px){

    .main-navigation{

        gap:17px;

    }

    .main-navigation > a,

    .services-toggle{

        font-size:14px;

    }

    .header-button{

        font-size:13px;

    }

    .hero-support-card{

        display:none;

    }

    .service-about-grid,

    .choose-grid{

        gap:50px;

    }

    .benefit-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .process-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }

}


/* ==================================================
18. MOBILE MENU
================================================== */

@media(max-width:900px){

    .header-container{

        min-height:76px;

    }

    .logo img{

        width:125px;

    }

    .mobile-menu-button{

        display:grid;

    }

    .header-button{

        display:none;

    }

    .main-navigation{

        position:fixed;

        top:76px;

        left:0;

        width:100%;

        max-height:calc(100vh - 76px);

        display:flex;

        flex-direction:column;

        align-items:stretch;

        justify-content:flex-start;

        gap:0;

        padding:18px 20px 30px;

        overflow-y:auto;

        background:#ffffff;

        border-top:1px solid var(--border);

        box-shadow:0 25px 50px rgba(0,0,0,.13);

        opacity:0;

        visibility:hidden;

        pointer-events:none;

        transform:translateY(-15px);

        transition:.3s;

    }

    .main-navigation.mobile-open{

        opacity:1;

        visibility:visible;

        pointer-events:auto;

        transform:translateY(0);

    }

    .main-navigation > a,

    .services-toggle{

        width:100%;

        display:flex;

        align-items:center;

        justify-content:space-between;

        padding:17px 4px;

        border-bottom:1px solid var(--border);

        font-size:17px;
     

    }

    .services-menu{

        width:100%;

    }

    .services-dropdown{

        position:static;

        width:100%;

        max-height:0;

        padding:0;

        display:block;

        overflow:hidden;

        border:0;

        border-radius:0;

        box-shadow:none;

        opacity:1;

        visibility:visible;

        pointer-events:auto;

        transform:none;

        background:var(--light);

        transition:max-height .4s ease;

    }

    .services-menu.active .services-dropdown{

        max-height:1000px;

        padding:10px;

        transform:none;

    }

    .services-dropdown a{

        min-height:54px;

        padding:10px;

        font-size:14px;

    }

    .services-dropdown i{

        width:35px;

        height:35px;

    }

    .mobile-contact-button{

        display:flex !important;

        justify-content:center !important;

        margin-top:20px;

        padding:16px !important;

        border:0 !important;

        border-radius:13px;

        background:linear-gradient(
            135deg,
            var(--primary),
            var(--green)
        );

        color:#ffffff !important;

    }

    .mobile-menu-button.active span:nth-child(1){

        transform:translateY(7px) rotate(45deg);

    }

    .mobile-menu-button.active span:nth-child(2){

        opacity:0;

    }

    .mobile-menu-button.active span:nth-child(3){

        transform:translateY(-7px) rotate(-45deg);

    }

    .service-about-grid,

    .choose-grid,

    .faq-grid{

        grid-template-columns:1fr;

    }

    .service-about-content{

        order:-1;

    }

    .help-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .faq-intro{

        position:static;

    }

}


/* ==================================================
19. SMALL MOBILE
================================================== */

@media(max-width:650px){

    .service-container,

    .header-container{

        width:min(100% - 28px,1180px);

    }

    .service-hero{

        min-height:670px;

        padding:100px 0 80px;

        background-position:65% center;

    }

    .service-hero-overlay{

        background:rgba(5,20,35,.86);

    }

    .service-hero h1{

        font-size:46px;

        letter-spacing:-1px;

    }

    .service-hero-content > p{

        font-size:17px;

    }

    .breadcrumb{

        font-size:12px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .primary-button,

    .secondary-button{

        width:100%;

    }

    .service-trust-bar{

        margin-top:-20px;

    }

    .trust-container{

        grid-template-columns:1fr 1fr;

        gap:10px;

        padding:15px;

        border-radius:18px;

    }

    .trust-item{

        padding:10px 5px;

        border-right:0;

    }

    .trust-icon{

        width:42px;

        height:42px;

        font-size:16px;

    }

    .trust-item strong{

        font-size:13px;

    }

    .trust-item span{

        font-size:11px;

    }

    .service-about,

    .who-benefits,

    .service-help,

    .choose-mjd,

    .support-process,

    .service-faq,

    .service-testimonials{

        padding:75px 0;

    }

    .section-heading{

        margin-bottom:38px;

    }

    .section-heading h2,

    .service-about-content h2,

    .help-header h2,

    .choose-content h2,

    .faq-intro h2{

        font-size:34px;

    }

    .service-image img{

        min-height:390px;

    }

    .experience-badge{

        right:12px;

        bottom:15px;

        width:calc(100% - 24px);

    }

    .decoration-one,

    .decoration-two{

        display:none;

    }

    .benefit-grid,

    .help-grid,

    .process-grid{

        grid-template-columns:1fr;

    }

    .benefit-card{

        min-height:275px;

    }

    .help-header{

        display:block;

        margin-bottom:35px;

    }

    .help-header > p{

        margin-top:18px;

    }

    .choose-visual{

        margin-top:15px;

    }

    .choose-visual img{

        min-height:420px;

    }

    .trust-card{

        left:15px;

        bottom:15px;

        max-width:calc(100% - 30px);

    }

    .service-testimonial{

        padding:30px 22px;

    }

    .service-testimonial > p{

        font-size:21px;

    }

    .service-cta{

        padding:70px 0;

    }

    .service-cta-box{

        display:block;

        padding:35px 23px;

    }

    .cta-badge{

        width:100%;

        margin-top:30px;

    }

    .cta-actions{

        flex-direction:column;

    }

    .cta-primary,

    .cta-phone{

        width:100%;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:35px;

    }

    .footer-bottom{

        min-height:auto;

        flex-direction:column;

        align-items:flex-start;

        padding:25px 0;

    }

}
/* =====================================================
PREMIUM CONTACT PAGE
===================================================== */

html {
    scroll-behavior: smooth;
}


/* CONTACT HERO */

.contact-hero {
    min-height: 680px;
}


.contact-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.18;
}


.contact-hero .shape-one {
    width: 420px;
    height: 420px;
    right: 5%;
    top: 10%;
    background: #69c76f;
}


.contact-hero .shape-two {
    width: 220px;
    height: 220px;
    right: 25%;
    bottom: -70px;
    background: #ff7ab8;
}


/* QUICK CONTACT */

.contact-quick-section {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    padding-bottom: 40px;
}


.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


.contact-quick-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 145px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(87, 57, 142, 0.09);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(45, 30, 80, 0.11);
    text-decoration: none;
    color: #25203a;
    transition: 0.35s ease;
}


.contact-quick-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(45, 30, 80, 0.17);
}


.quick-icon {
    width: 62px;
    min-width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-size: 23px;
}


.quick-icon.green {
    color: #228d4b;
    background: rgba(67, 190, 106, 0.14);
}


.quick-icon.pink {
    color: #d64c91;
    background: rgba(245, 91, 166, 0.13);
}


.quick-icon.blue {
    color: #3778d3;
    background: rgba(58, 126, 220, 0.13);
}


.contact-quick-card span {
    display: block;
    margin-bottom: 6px;
    color: #8c879b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


.contact-quick-card h3 {
    margin: 0 0 5px;
    font-size: 19px;
    color: #30264a;
}


.contact-quick-card p {
    margin: 0;
    color: #777183;
    font-size: 14px;
}


.quick-arrow {
    margin-left: auto;
    color: #7050a8;
    transition: 0.3s ease;
}


.contact-quick-card:hover .quick-arrow {
    transform: translateX(5px);
}


/* MAIN CONTACT SECTION */

.premium-contact-section {
    padding: 105px 0;
    background:
        linear-gradient(
            180deg,
            #f9f8fc 0%,
            #ffffff 100%
        );
}


.premium-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}


.contact-information {
    padding-top: 25px;
}


.contact-information h2 {
    margin: 20px 0;
    color: #2c2444;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.12;
}


.contact-information h2 span {
    display: block;
    color: #7651a9;
}


.contact-intro {
    max-width: 570px;
    color: #6f697a;
    font-size: 17px;
    line-height: 1.85;
}


.contact-benefit-list {
    margin-top: 40px;
    display: grid;
    gap: 25px;
}


.contact-benefit {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}


.contact-benefit-icon {
    width: 55px;
    min-width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    color: #268d4b;
    background: rgba(67, 190, 106, 0.13);
    border-radius: 17px;
    font-size: 20px;
}


.contact-benefit-icon.blue {
    color: #3678d0;
    background: rgba(58, 126, 220, 0.12);
}


.contact-benefit-icon.pink {
    color: #d74b91;
    background: rgba(245, 91, 166, 0.12);
}


.contact-benefit h4 {
    margin: 3px 0 7px;
    color: #30264a;
    font-size: 18px;
}


.contact-benefit p {
    margin: 0;
    color: #777182;
    line-height: 1.65;
}


.contact-promise {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 42px;
    padding: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(112, 80, 168, 0.09),
            rgba(245, 91, 166, 0.08)
        );
    border: 1px solid rgba(112, 80, 168, 0.12);
    border-radius: 20px;
}


.promise-icon {
    width: 55px;
    min-width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #7651a9,
            #e85a9e
        );
    border-radius: 50%;
}


.contact-promise strong {
    color: #31274b;
    font-size: 17px;
}


.contact-promise p {
    margin: 5px 0 0;
    color: #777182;
    font-size: 14px;
}


/* FORM CARD */

.premium-form-card {
    padding: 42px;
    background: #ffffff;
    border: 1px solid rgba(91, 61, 145, 0.1);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(48, 31, 82, 0.13);
}


.form-top {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eeeaf4;
}


.form-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #7651a9,
            #e85a9e
        );
    border-radius: 19px;
    font-size: 23px;
}


.form-top span {
    display: block;
    margin-bottom: 5px;
    color: #8b8497;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
}


.form-top h3 {
    margin: 0;
    color: #30264a;
    font-size: 25px;
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}


.form-group {
    margin-bottom: 21px;
}


.form-group > label {
    display: block;
    margin-bottom: 9px;
    color: #4a425d;
    font-size: 13px;
    font-weight: 750;
}


.form-group sup {
    color: #e34f90;
    font-size: 13px;
}


.input-wrap,
.textarea-wrap {
    position: relative;
}


.input-wrap > i,
.textarea-wrap > i {
    position: absolute;
    left: 17px;
    top: 50%;
    z-index: 2;
    color: #9b94a6;
    transform: translateY(-50%);
    font-size: 14px;
}


.textarea-wrap > i {
    top: 20px;
    transform: none;
}


.input-wrap input,
.input-wrap select,
.textarea-wrap textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #e5e0eb;
    outline: none;
    background: #fbfaff;
    color: #332b47;
    font-family: inherit;
    font-size: 14px;
    transition: 0.3s ease;
}


.input-wrap input,
.input-wrap select {
    height: 54px;
    padding: 0 16px 0 46px;
    border-radius: 14px;
}


.textarea-wrap textarea {
    min-height: 130px;
    padding: 18px 18px 18px 46px;
    border-radius: 14px;
    resize: vertical;
}


.input-wrap input:focus,
.input-wrap select:focus,
.textarea-wrap textarea:focus {
    border-color: #7b57ac;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(123, 87, 172, 0.09);
}


.input-wrap input::placeholder,
.textarea-wrap textarea::placeholder {
    color: #aaa4b2;
}


.select-wrap select {
    appearance: none;
    cursor: pointer;
}


.select-wrap::after {
    content: "\f078";
    position: absolute;
    top: 50%;
    right: 17px;
    color: #8e8798;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transform: translateY(-50%);
    pointer-events: none;
}


/* RADIO OPTIONS */

.radio-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}


.radio-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    min-height: 90px;
    padding: 14px 8px;
    color: #696174;
    background: #fbfaff;
    border: 1px solid #e5e0eb;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 650;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
}


.radio-card input {
    position: absolute;
    opacity: 0;
}


.radio-icon {
    color: #7651a9;
    font-size: 19px;
}


.radio-card:hover {
    border-color: #9c7bc8;
    background: #ffffff;
}


.radio-card:has(input:checked) {
    color: #69459c;
    background: rgba(112, 80, 168, 0.08);
    border-color: #7651a9;
}


/* CONSENT */

.consent-box {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 4px 0 24px;
    color: #777080;
    font-size: 12px;
    line-height: 1.6;
    cursor: pointer;
}


.consent-box input {
    position: absolute;
    opacity: 0;
}


.custom-check {
    width: 19px;
    min-width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    margin-top: 1px;
    color: transparent;
    border: 1px solid #cfc8d8;
    border-radius: 5px;
    transition: 0.25s ease;
}


.consent-box input:checked + .custom-check {
    color: #ffffff;
    background: #7651a9;
    border-color: #7651a9;
}


.custom-check i {
    font-size: 10px;
}


/* SUBMIT */

.contact-submit-button {
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: none;
    color: #ffffff;
    background:
        linear-gradient(
            100deg,
            #6d4aa0,
            #8c5db7,
            #dd579b
        );
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(111, 72, 158, 0.25);
    font-family: inherit;
    font-size: 15px;
    font-weight: 750;
    cursor: pointer;
    transition: 0.35s ease;
}


.contact-submit-button span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #754fa7;
    background: #ffffff;
    border-radius: 50%;
}


.contact-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(111, 72, 158, 0.35);
}


.form-note {
    margin: 17px 0 0;
    color: #96909d;
    font-size: 11px;
    text-align: center;
}


.form-note i {
    margin-right: 5px;
    color: #65a56e;
}


/* RESPONSIVE */

@media screen and (max-width: 1050px) {

    .premium-contact-grid {
        gap: 45px;
    }

    .contact-quick-grid {
        gap: 15px;
    }

    .contact-quick-card {
        padding: 22px;
    }

}


@media screen and (max-width: 850px) {

    .contact-quick-section {
        margin-top: -45px;
    }

    .contact-quick-grid {
        grid-template-columns: 1fr;
    }

    .premium-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-information {
        padding-top: 0;
    }

    .contact-intro {
        max-width: 100%;
    }

}


@media screen and (max-width: 600px) {

    .contact-hero {
        min-height: 620px;
    }

    .contact-quick-section {
        padding: 0 15px 25px;
    }

    .contact-quick-card {
        min-height: 115px;
        padding: 20px;
        border-radius: 18px;
    }

    .quick-icon {
        width: 53px;
        min-width: 53px;
        height: 53px;
        border-radius: 15px;
        font-size: 19px;
    }

    .contact-quick-card h3 {
        font-size: 16px;
    }

    .contact-quick-card p {
        font-size: 12px;
    }

    .premium-contact-section {
        padding: 70px 0;
    }

    .premium-contact-grid {
        gap: 45px;
    }

    .contact-information,
    .premium-form-card {
        margin-left: 15px;
        margin-right: 15px;
    }

    .contact-information h2 {
        font-size: 37px;
    }

    .contact-benefit {
        gap: 14px;
    }

    .contact-benefit-icon {
        width: 48px;
        min-width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 17px;
    }

    .contact-benefit h4 {
        font-size: 16px;
    }

    .contact-benefit p {
        font-size: 13px;
    }

    .premium-form-card {
        padding: 25px 18px;
        border-radius: 22px;
    }

    .form-top {
        gap: 12px;
    }

    .form-icon {
        width: 52px;
        min-width: 52px;
        height: 52px;
        border-radius: 15px;
        font-size: 18px;
    }

    .form-top h3 {
        font-size: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .radio-options {
        grid-template-columns: 1fr;
    }

    .radio-card {
        min-height: 60px;
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 18px;
    }

    .contact-promise {
        padding: 17px;
    }

}
/* =====================================================
MJD ABOUT US PAGE
===================================================== */


/* ABOUT HERO */

.about-hero {
    min-height: 690px;
}


.about-hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}


.about-hero .circle-one {
    width: 420px;
    height: 420px;
    top: 10%;
    right: 6%;
    background: #67c96f;
}


.about-hero .circle-two {
    width: 210px;
    height: 210px;
    bottom: -60px;
    right: 28%;
    background: #f15b9d;
}


/* ABOUT STORY */

.about-story-section {
    padding: 115px 0;
    background: #ffffff;
}


.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}


.about-story-image-wrap {
    position: relative;
    padding: 0 25px 25px 0;
}


.about-main-image {
    position: relative;
    overflow: hidden;
    height: 610px;
    border-radius: 30px;
    box-shadow:
        0 30px 70px
        rgba(46, 29, 79, 0.16);
}


.about-main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


.about-image-card {
    position: absolute;
    left: -35px;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 250px;
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow:
        0 20px 50px
        rgba(45, 29, 78, 0.17);
}


.about-card-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #7651a9,
            #e75a9e
        );
    border-radius: 17px;
    font-size: 20px;
}


.about-image-card strong {
    display: block;
    margin-bottom: 4px;
    color: #30264a;
    font-size: 17px;
}


.about-image-card span {
    color: #827b8c;
    font-size: 13px;
}


.about-dots {
    position: absolute;
    z-index: -1;
    width: 170px;
    height: 170px;
    top: -30px;
    right: -35px;
    background-image:
        radial-gradient(
            #70c477 2px,
            transparent 2px
        );
    background-size: 17px 17px;
}


.about-story-content h2 {
    margin: 20px 0;
    color: #30264a;
    font-size:
        clamp(
            38px,
            4vw,
            57px
        );
    line-height: 1.12;
}


.about-story-content h2 span {
    display: block;
    color: #7651a9;
}


.about-story-content > p {
    color: #706a79;
    font-size: 16px;
    line-height: 1.9;
}


.about-highlight {
    position: relative;
    margin: 30px 0;
    padding:
        22px
        25px
        22px
        65px;
    background:
        linear-gradient(
            135deg,
            rgba(
                112,
                80,
                168,
                0.09
            ),
            rgba(
                245,
                91,
                166,
                0.08
            )
        );
    border-left:
        4px solid
        #7651a9;
    border-radius: 0 17px 17px 0;
}


.about-highlight > i {
    position: absolute;
    top: 22px;
    left: 22px;
    color: #d75699;
    font-size: 23px;
}


.about-highlight p {
    margin: 0;
    color: #514760;
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
}


/* MISSION AND VISION */

.mission-vision-section {
    padding: 100px 0;
    background:
        linear-gradient(
            135deg,
            #f8f6fc,
            #ffffff
        );
}


.mission-vision-grid {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            1fr
        );
    gap: 30px;
}


.mission-card,
.vision-card {
    position: relative;
    overflow: hidden;
    min-height: 450px;
    padding: 55px;
    border-radius: 30px;
}


.mission-card {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #513778,
            #7651a9
        );
}


.vision-card {
    color: #30264a;
    background: #ffffff;
    border:
        1px solid
        rgba(
            93,
            63,
            143,
            0.1
        );
    box-shadow:
        0 20px 60px
        rgba(
            44,
            28,
            76,
            0.1
        );
}


.mission-card::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -120px;
    bottom: -150px;
    border:
        50px solid
        rgba(
            255,
            255,
            255,
            0.07
        );
    border-radius: 50%;
}


.vision-card::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -100px;
    bottom: -120px;
    background:
        rgba(
            91,
            195,
            110,
            0.08
        );
    border-radius: 50%;
}


.mission-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    color: #ffffff;
    background:
        rgba(
            255,
            255,
            255,
            0.14
        );
    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.2
        );
    border-radius: 21px;
    font-size: 27px;
}


.vision-icon {
    color: #2f8c4d;
    background:
        rgba(
            66,
            187,
            104,
            0.12
        );
    border: none;
}


.mission-card > span,
.vision-card > span {
    display: block;
    margin-bottom: 15px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}


.mission-card h2,
.vision-card h2 {
    margin: 0 0 20px;
    font-size:
        clamp(
            32px,
            3vw,
            47px
        );
    line-height: 1.16;
}


.mission-card h2 em {
    display: block;
    color: #8ce293;
}


.vision-card h2 em {
    display: block;
    color: #7651a9;
}


.mission-card > p,
.vision-card > p {
    max-width: 550px;
    line-height: 1.85;
}


.mission-card > p {
    color:
        rgba(
            255,
            255,
            255,
            0.82
        );
}


.vision-card > p {
    color: #716a7a;
}


.mission-line {
    width: 65px;
    height: 4px;
    margin: 28px 0 18px;
    border-radius: 10px;
    background: #81d88a;
}


.vision-card .mission-line {
    background: #7651a9;
}


.mission-small {
    font-size: 14px;
    font-weight: 650;
}


/* VALUES */

.about-values-section {
    padding: 115px 0;
    background: #ffffff;
}


.values-grid {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            1fr
        );
    gap: 24px;
    margin-top: 55px;
}


.value-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 32px;
    background: #ffffff;
    border:
        1px solid
        #eeeaf3;
    border-radius: 22px;
    box-shadow:
        0 15px 40px
        rgba(
            45,
            30,
            75,
            0.06
        );
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.value-card:hover {
    transform:
        translateY(-9px);
    box-shadow:
        0 24px 55px
        rgba(
            45,
            30,
            75,
            0.13
        );
}


.value-number {
    position: absolute;
    top: 20px;
    right: 25px;
    color:
        rgba(
            111,
            79,
            164,
            0.1
        );
    font-size: 42px;
    font-weight: 850;
}


.value-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 23px;
    border-radius: 19px;
    font-size: 23px;
}


.value-icon.green {
    color: #278e4d;
    background:
        rgba(
            65,
            188,
            104,
            0.13
        );
}


.value-icon.pink {
    color: #d75094;
    background:
        rgba(
            245,
            91,
            166,
            0.12
        );
}


.value-icon.blue {
    color: #3679d1;
    background:
        rgba(
            56,
            126,
            220,
            0.12
        );
}


.value-icon.purple {
    color: #7651a9;
    background:
        rgba(
            118,
            81,
            169,
            0.11
        );
}


.value-icon.orange {
    color: #db8a2f;
    background:
        rgba(
            242,
            164,
            64,
            0.13
        );
}


.value-card h3 {
    margin:
        0
        0
        12px;
    color: #30264a;
    font-size: 22px;
}


.value-card p {
    margin: 0;
    color: #777080;
    font-size: 14px;
    line-height: 1.75;
}


/* APPROACH */

.about-approach-section {
    overflow: hidden;
    padding: 115px 0;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #382653,
            #5d3d87
        );
}


.about-approach-grid {
    display: grid;
    grid-template-columns:
        1fr
        0.85fr;
    gap: 80px;
    align-items: center;
}


.approach-content h2 {
    margin: 20px 0;
    font-size:
        clamp(
            40px,
            4vw,
            58px
        );
    line-height: 1.1;
}


.approach-content h2 span {
    display: block;
    color: #8de095;
}


.approach-content > p {
    max-width: 620px;
    color:
        rgba(
            255,
            255,
            255,
            0.78
        );
    font-size: 16px;
    line-height: 1.85;
}


.approach-steps {
    display: grid;
    grid-template-columns:
        1fr
        1fr;
    gap: 25px;
    margin-top: 40px;
}


.approach-step {
    display: flex;
    gap: 15px;
}


.step-number {
    width: 45px;
    min-width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    color: #4a326d;
    background: #8ee195;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 850;
}


.approach-step h4 {
    margin:
        2px
        0
        7px;
    font-size: 17px;
}


.approach-step p {
    margin: 0;
    color:
        rgba(
            255,
            255,
            255,
            0.7
        );
    font-size: 13px;
    line-height: 1.65;
}


.approach-image-wrap {
    position: relative;
}


.approach-image-wrap > img {
    width: 100%;
    height: 650px;
    display: block;
    object-fit: cover;
    border-radius: 30px;
}


.approach-image-badge {
    position: absolute;
    left: -40px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    color: #30264a;
    background: #ffffff;
    border-radius: 19px;
    box-shadow:
        0 20px 50px
        rgba(
            0,
            0,
            0,
            0.2
        );
}


.approach-image-badge > i {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #7651a9,
            #e65a9d
        );
    border-radius: 50%;
}


.approach-image-badge strong {
    display: block;
    margin-bottom: 4px;
}


.approach-image-badge span {
    color: #837c8d;
    font-size: 12px;
}


/* WHY MJD */

.why-mjd-section {
    padding: 115px 0;
    background:
        linear-gradient(
            180deg,
            #faf9fd,
            #ffffff
        );
}


.why-mjd-grid {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            1fr
        );
    gap: 20px;
    margin-top: 50px;
}


.why-mjd-card {
    padding: 32px 24px;
    text-align: center;
    background: #ffffff;
    border:
        1px solid
        #eeeaf3;
    border-radius: 22px;
    transition: 0.3s ease;
}


.why-mjd-card:hover {
    transform:
        translateY(-7px);
    box-shadow:
        0 22px 50px
        rgba(
            45,
            30,
            75,
            0.12
        );
}


.why-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    margin:
        0
        auto
        22px;
    color: #278e4d;
    background:
        rgba(
            65,
            188,
            104,
            0.13
        );
    border-radius: 20px;
    font-size: 24px;
}


.why-icon.blue {
    color: #377bd3;
    background:
        rgba(
            56,
            126,
            220,
            0.12
        );
}


.why-icon.pink {
    color: #d75094;
    background:
        rgba(
            245,
            91,
            166,
            0.12
        );
}


.why-icon.purple {
    color: #7651a9;
    background:
        rgba(
            118,
            81,
            169,
            0.11
        );
}


.why-mjd-card h3 {
    margin:
        0
        0
        11px;
    color: #30264a;
    font-size: 19px;
}


.why-mjd-card p {
    margin: 0;
    color: #777080;
    font-size: 13px;
    line-height: 1.7;
}


/* TEAM */

.about-team-section {
    padding: 110px 0;
    background: #ffffff;
}


.team-grid {
    display: grid;
    grid-template-columns:
        0.9fr
        1fr;
    gap: 85px;
    align-items: center;
}


.team-image-wrap {
    position: relative;
    padding:
        0
        25px
        25px
        0;
}


.team-image-wrap img {
    width: 100%;
    height: 560px;
    display: block;
    object-fit: cover;
    border-radius: 28px;
}


.team-image-shape {
    position: absolute;
    z-index: -1;
    width: 80%;
    height: 80%;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(
            135deg,
            #78cc7e,
            #7651a9
        );
    border-radius: 28px;
}


.team-content h2 {
    margin: 20px 0;
    color: #30264a;
    font-size:
        clamp(
            38px,
            4vw,
            55px
        );
    line-height: 1.12;
}


.team-content h2 span {
    display: block;
    color: #7651a9;
}


.team-content > p {
    color: #716a7a;
    line-height: 1.85;
}


.team-points {
    display: grid;
    grid-template-columns:
        1fr
        1fr;
    gap: 15px;
    margin:
        30px
        0;
}


.team-points div {
    color: #4e465c;
    font-size: 14px;
    font-weight: 650;
}


.team-points i {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    margin-right: 6px;
    color: #ffffff;
    background: #58b969;
    border-radius: 50%;
    font-size: 9px;
}


/* RESPONSIVE */

@media screen and (max-width: 1050px) {

    .about-story-grid,
    .about-approach-grid,
    .team-grid {
        gap: 50px;
    }


    .why-mjd-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }


}


@media screen and (max-width: 850px) {

    .about-story-grid,
    .about-approach-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }


    .about-main-image {
        height: 500px;
    }


    .mission-vision-grid {
        grid-template-columns: 1fr;
    }


    .values-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }


    .approach-image-wrap {
        max-width: 650px;
    }


    .team-image-wrap {
        max-width: 650px;
    }


}


@media screen and (max-width: 600px) {

    .about-hero {
        min-height: 620px;
    }


    .about-story-section,
    .about-values-section,
    .about-approach-section,
    .why-mjd-section,
    .about-team-section {
        padding: 70px 0;
    }


    .about-story-grid,
    .mission-vision-grid,
    .about-approach-grid,
    .team-grid {
        gap: 40px;
    }


    .about-story-image-wrap {
        margin:
            0
            15px;
    }


    .about-main-image {
        height: 400px;
        border-radius: 22px;
    }


    .about-image-card {
        left: -5px;
        right: 15px;
        min-width: auto;
        padding: 15px;
        border-radius: 16px;
    }


    .about-card-icon {
        width: 47px;
        height: 47px;
        border-radius: 14px;
        font-size: 17px;
    }


    .about-story-content {
        padding:
            0
            15px;
    }


    .about-story-content h2 {
        font-size: 36px;
    }


    .mission-card,
    .vision-card {
        min-height: auto;
        padding: 35px 25px;
        border-radius: 22px;
    }


    .mission-card h2,
    .vision-card h2 {
        font-size: 34px;
    }


    .values-grid {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }


    .value-card {
        min-height: auto;
    }


    .approach-content {
        padding:
            0
            15px;
    }


    .approach-content h2 {
        font-size: 39px;
    }


    .approach-steps {
        grid-template-columns: 1fr;
    }


    .approach-image-wrap {
        margin:
            0
            15px;
    }


    .approach-image-wrap > img {
        height: 440px;
        border-radius: 22px;
    }


    .approach-image-badge {
        left: 10px;
        right: 10px;
        bottom: 15px;
        padding: 15px;
    }


    .why-mjd-grid {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }


    .team-image-wrap {
        margin:
            0
            15px;
    }


    .team-image-wrap img {
        height: 420px;
        border-radius: 22px;
    }


    .team-content {
        padding:
            0
            15px;
    }


    .team-content h2 {
        font-size: 37px;
    }


    .team-points {
        grid-template-columns: 1fr;
    }


}
/* =====================================================
MJD HOME SERVICES SECTION
===================================================== */

.mjd-services-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        linear-gradient(
            180deg,
            #f9f8fc 0%,
            #ffffff 100%
        );
}


/* BACKGROUND DECORATION */

.mjd-services-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -300px;
    right: -180px;
    border-radius: 50%;
    background:
        rgba(
            118,
            81,
            169,
            0.06
        );
}


.mjd-services-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -170px;
    left: -120px;
    border-radius: 50%;
    background:
        rgba(
            84,
            193,
            105,
            0.07
        );
}


/* CONTAINER */

.mjd-services-section .home-container {
    position: relative;
    z-index: 2;
}


/* HEADING */

.mjd-services-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}


.mjd-heading-content {
    max-width: 720px;
}


.mjd-heading-content h2 {
    margin:
        18px
        0;
    color: #30264a;
    font-size:
        clamp(
            40px,
            5vw,
            62px
        );
    line-height: 1.08;
}


.mjd-heading-content h2 span {
    display: block;
    color: #7651a9;
}


.mjd-heading-content p {
    max-width: 650px;
    margin: 0;
    color: #716b7a;
    font-size: 16px;
    line-height: 1.85;
}


/* VIEW ALL BUTTON */

.services-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 185px;
    padding:
        17px
        25px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #7651a9,
            #5d3d87
        );
    border-radius: 14px;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    box-shadow:
        0 14px 35px
        rgba(
            92,
            62,
            137,
            0.25
        );
    transition: 0.3s ease;
}


.services-view-all:hover {
    transform:
        translateY(-4px);
    background:
        linear-gradient(
            135deg,
            #67bd70,
            #3c9d56
        );
    box-shadow:
        0 18px 40px
        rgba(
            60,
            157,
            86,
            0.25
        );
}


.services-view-all i {
    transition: 0.3s ease;
}


.services-view-all:hover i {
    transform:
        translateX(5px);
}


/* SERVICES GRID */

.mjd-services-grid {
    display: grid;
    grid-template-columns:
        repeat(
            4,
            1fr
        );
    gap: 24px;
}


/* SERVICE CARD */

.mjd-service-card {
    overflow: hidden;
    background: #ffffff;
    border:
        1px solid
        rgba(
            91,
            67,
            130,
            0.09
        );
    border-radius: 22px;
    box-shadow:
        0 15px 45px
        rgba(
            45,
            28,
            77,
            0.07
        );
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.mjd-service-card:hover {
    transform:
        translateY(-10px);
    box-shadow:
        0 27px 60px
        rgba(
            45,
            28,
            77,
            0.15
        );
}


/* IMAGE */

.mjd-service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}


.mjd-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.7s ease;
}


.mjd-service-card:hover
.mjd-service-image img {
    transform:
        scale(1.09);
}


/* IMAGE OVERLAY */

.service-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(
                43,
                27,
                69,
                0.3
            )
        );
}


/* SERVICE NUMBER */

.service-number {
    position: absolute;
    top: 17px;
    right: 17px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background:
        rgba(
            48,
            35,
            71,
            0.72
        );
    backdrop-filter:
        blur(8px);
    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.25
        );
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
}


/* CONTENT */

.mjd-service-content {
    position: relative;
    padding:
        34px
        25px
        27px;
}


.mjd-service-icon {
    position: absolute;
    top: -31px;
    left: 24px;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border:
        5px solid
        #ffffff;
    border-radius: 18px;
    font-size: 21px;
}


.mjd-service-icon.green {
    color: #258b49;
    background:
        #dff5e3;
}


.mjd-service-icon.pink {
    color: #d34c91;
    background:
        #ffe4f0;
}


.mjd-service-icon.blue {
    color: #3578d0;
    background:
        #e3efff;
}


.mjd-service-icon.purple {
    color: #7651a9;
    background:
        #eee6fa;
}


.mjd-service-icon.orange {
    color: #d47d25;
    background:
        #fff0db;
}


.mjd-service-content h3 {
    min-height: 55px;
    margin:
        7px
        0
        12px;
    color: #30264a;
    font-size: 20px;
    line-height: 1.3;
}


.mjd-service-content p {
    min-height: 78px;
    margin:
        0
        0
        21px;
    color: #777080;
    font-size: 13.5px;
    line-height: 1.75;
}


/* LEARN MORE */

.service-learn-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #624494;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}


.service-learn-more > span {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: #7651a9;
    border-radius: 11px;
    transition: 0.3s ease;
}


.mjd-service-card:hover
.service-learn-more > span {
    background: #56b968;
    transform:
        translateX(4px);
}


/* VIEW ALL CARD */

.mjd-all-services-card {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 38px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #5a3c82,
            #7651a9 58%,
            #ca5594
        );
    border-radius: 22px;
    text-decoration: none;
    box-shadow:
        0 20px 55px
        rgba(
            91,
            58,
            139,
            0.25
        );
    transition: 0.35s ease;
}


.mjd-all-services-card::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    top: -170px;
    right: -150px;
    border:
        45px solid
        rgba(
            255,
            255,
            255,
            0.08
        );
    border-radius: 50%;
}


.mjd-all-services-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: -100px;
    left: -70px;
    background:
        rgba(
            90,
            210,
            110,
            0.17
        );
    border-radius: 50%;
}


.mjd-all-services-card:hover {
    transform:
        translateY(-10px);
    box-shadow:
        0 28px 65px
        rgba(
            91,
            58,
            139,
            0.35
        );
}


.all-services-icon {
    position: relative;
    z-index: 2;
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    background:
        rgba(
            255,
            255,
            255,
            0.15
        );
    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.22
        );
    border-radius: 20px;
    font-size: 25px;
}


.mjd-all-services-card > span {
    position: relative;
    z-index: 2;
    color: #a5eba9;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}


.mjd-all-services-card h3 {
    position: relative;
    z-index: 2;
    margin:
        15px
        0;
    font-size: 34px;
    line-height: 1.1;
}


.mjd-all-services-card h3 strong {
    display: block;
    color: #ffffff;
}


.mjd-all-services-card p {
    position: relative;
    z-index: 2;
    max-width: 240px;
    margin: 0;
    color:
        rgba(
            255,
            255,
            255,
            0.75
        );
    font-size: 14px;
    line-height: 1.7;
}


.all-services-arrow {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-top: 27px;
    color: #5d3d87;
    background: #ffffff;
    border-radius: 50%;
    transition: 0.3s ease;
}


.mjd-all-services-card:hover
.all-services-arrow {
    color: #ffffff;
    background: #55b967;
    transform:
        translateX(7px);
}


/* BOTTOM CTA */

.services-bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 55px;
    padding: 25px;
    text-align: center;
    background:
        rgba(
            255,
            255,
            255,
            0.8
        );
    border:
        1px solid
        #ece7f2;
    border-radius: 18px;
}


.services-bottom-content p {
    margin: 0;
    color: #716b7a;
    font-size: 14px;
}


.services-bottom-content strong {
    color: #4e386f;
}


.services-bottom-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding:
        13px
        20px;
    color: #5d3d87;
    background:
        #eee7f8;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s ease;
}


.services-bottom-content a:hover {
    color: #ffffff;
    background: #5ebd6a;
}


/* TABLET */

@media screen and (max-width: 1100px) {

    .mjd-services-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }


    .mjd-all-services-card {
        min-height: 400px;
    }

}


/* MOBILE */

@media screen and (max-width: 700px) {

    .mjd-services-section {
        padding: 75px 0;
    }


    .mjd-services-heading {
        display: block;
        margin-bottom: 40px;
    }


    .mjd-heading-content h2 {
        font-size: 39px;
    }


    .mjd-heading-content p {
        font-size: 14px;
    }


    .services-view-all {
        margin-top: 25px;
    }


    .mjd-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .mjd-service-image {
        height: 240px;
    }


    .mjd-service-content {
        padding:
            36px
            23px
            25px;
    }


    .mjd-service-content h3 {
        min-height: auto;
    }


    .mjd-service-content p {
        min-height: auto;
    }


    .mjd-all-services-card {
        min-height: 390px;
        padding: 32px;
    }


    .services-bottom-content {
        display: block;
        margin-top: 35px;
        padding: 23px 18px;
    }


    .services-bottom-content a {
        margin-top: 18px;
    }

}