/* =========================================================
   MAJRAWI
   MAIN STYLE
========================================================= */

/* ===========================
   GLOBAL
=========================== */

body {

    font-family: "Cairo", sans-serif;

    background: var(--bg-color);

    color: var(--text-color);

    overflow-x: hidden;

    line-height: 1.8;

}

.container {

    width: min(1320px, calc(100% - 40px));

    margin-inline: auto;

}

section {

    position: relative;

    padding: 70px 0;

}

.section-title {

    max-width: 760px;

    margin: 0 auto 45px;

    text-align: center;

}

.section-title span {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 22px;

    border-radius: 999px;

    background: rgba(122, 23, 51, .08);

    color: var(--primary-color);

    font-size: .92rem;

    font-weight: 700;

    margin-bottom: 18px;

}

.section-title h2 {

    font-size: clamp(2rem, 4vw, 3.3rem);

    font-weight: 800;

    line-height: 1.25;

    margin-bottom: 18px;

    color: var(--heading-color);

}

.section-title p {

    font-size: 1.05rem;

    color: var(--text-light);

}

/* ===========================
   HEADER
=========================== */

.header {

    position: fixed;

    inset: 0 0 auto;

    z-index: 1000;

    transition: var(--transition);

    background: rgba(255,255,255,.65);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(0,0,0,.06);

}

.header.scrolled {

    background: rgba(255,255,255,.92);

    box-shadow: 0 14px 40px rgba(0,0,0,.06);

}

.navbar {

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}

.logo {

    display: flex;

    align-items: center;

    gap: 14px;

    text-decoration: none;

}

.logo img {

    width: 52px;

    height: 52px;

    object-fit: contain;

}

.logo span {

    font-size: 1.45rem;

    font-weight: 800;

    color: var(--heading-color);

}

.nav-links {

    display: flex;

    align-items: center;

    gap: 36px;

    list-style: none;

}

.nav-links a {

    position: relative;

    text-decoration: none;

    color: var(--text-color);

    font-weight: 700;

    transition: .3s;

}

.nav-links a:hover {

    color: var(--primary-color);

}

.nav-links a::after {

    content: "";

    position: absolute;

    right: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--primary-color);

    transition: .3s;

}

.nav-links a:hover::after {

    width: 100%;

}

.nav-links a.active{

    color:var(--primary-color);

}

.nav-links a.active::after{

    width:100%;

}

.nav-actions {

    display: flex;

    align-items: center;

    gap: 18px;

}

.menu-toggle {

    display: none;

    width: 52px;

    height: 52px;

    border: none;

    border-radius: 14px;

    background: rgba(122,23,51,.08);

    color: var(--primary-color);

    font-size: 1.6rem;

    cursor: pointer;

}

/* =====================================================
   HERO
===================================================== */

.hero{

    position:relative;

    overflow:hidden;

    padding:105px 0 55px;

    background:
    radial-gradient(circle at 10% 20%,rgba(122,23,51,.08),transparent 35%),
    radial-gradient(circle at 90% 10%,rgba(180,70,110,.08),transparent 35%),
    linear-gradient(
        180deg,
        #ffffff 0%,
        #fcf8fa 45%,
        #ffffff 100%
    );

}

.hero::before{

    content:"";

    position:absolute;

    width:480px;
    height:520px;

    border-radius:50%;

    background:rgba(122,23,51,.06);

    filter:blur(90px);

    top:-180px;
    right:-120px;

    pointer-events:none;

}


.hero .container{

    position:relative;

    z-index:2;

}

.hero-grid{

    display:grid;

    grid-template-columns:

        minmax(0,1fr)
        minmax(360px,470px);

    align-items:center;

    gap:45px;

}

.hero-content{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    z-index:2;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    margin-bottom:26px;

    border-radius:999px;

    background:rgba(122,23,51,.08);

    border:1px solid rgba(122,23,51,.10);

    color:var(--primary-color);

    font-size:.95rem;

    font-weight:700;

    letter-spacing:.3px;

}

.hero-badge::before{

    content:"";

    width:10px;

    height:10px;

    border-radius:50%;

    background:var(--primary-color);

    box-shadow:0 0 12px rgba(122,23,51,.45);

}

.hero h1{
    margin:0;
    max-width:650px;
    font-size:clamp(2rem,6vw,4.4rem);
    line-height:1.2;
    font-weight:800;
    color:#181818;
}

.hero h1 br{

    display:block;

}

.hero p{
    max-width:620px;
    margin:16px 0 22px;
    font-size:15px;
    line-height:1.8;
    color:#5f6472;
}

.hero-buttons{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

}

.hero-buttons .btn-primary{

    min-width:210px;

    justify-content:center;

}

.hero-buttons .btn-secondary{

    min-width:180px;

    justify-content:center;

}


.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:2;

}

.hero-image::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(122,23,51,.16) 0%,
    rgba(122,23,51,.05) 45%,
    transparent 72%);

    filter:blur(10px);

    z-index:0;

}

.hero-image::after{

    content:"";

    position:absolute;

    inset:35px;

    border:1px solid rgba(122,23,51,.08);

    border-radius:40px;

    transform:rotate(-8deg);

    z-index:0;

}

.hero-image img{

    position:relative;

    z-index:2;

    width:100%;

    max-width:340px;

    height:auto;

    object-fit:contain;

    filter:
        drop-shadow(0 20px 45px rgba(0,0,0,.16));

    transition:
        transform .45s ease,
        filter .45s ease;

    animation:
        heroFloat 6s ease-in-out infinite;

}

.hero-image:hover img{

    transform:
        translateY(-8px)
        scale(1.02);

    filter:
        drop-shadow(0 36px 80px rgba(0,0,0,.22));

}

@keyframes heroFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

.hero-stats{

    display:grid;

    grid-template-columns:repeat(3,minmax(110px,1fr));

    gap:18px;

    margin-top:24px;

    width:100%;

    max-width:560px;

}

.hero-stat{

    position:relative;

    padding:18px 16px;

    text-align:center;

    border-radius:22px;

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(122,23,51,.08);

    box-shadow:

        0 10px 30px rgba(15,23,42,.06);

    transition:

        transform .35s ease,

        box-shadow .35s ease,

        border-color .35s ease;

}

.hero-stat:hover{

    transform:translateY(-6px);

    border-color:rgba(122,23,51,.20);

    box-shadow:

        0 18px 40px rgba(15,23,42,.10);

}

.hero-stat h3{

    margin:0 0 10px;

    font-size:1.7rem;

    font-weight:800;

    color:var(--primary-color);

    line-height:1;

}

.hero-stat span{

    display:block;

    color:#626b78;

    font-size:.92rem;

    line-height:1.7;

}

.hero *{

    position:relative;

}


@media (max-width:992px){

    .hero{

        padding:70px 0 60px;

    }

    .hero-grid{

        grid-template-columns:1fr;

        gap:45px;

        text-align:center;

    }

    .hero-content{

        align-items:center;

    }

    .hero p{

        margin-inline:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-stats{

        margin-inline:auto;

    }

}

@media (max-width:576px){

    .hero-stats{

        grid-template-columns:1fr;

    }

    .hero-image img{

        max-width:240px;

    }

}

/* ===========================
   COMPANY
=========================== */

.company{

    position:relative;

    overflow:hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fcfcfd 100%
        );

}

.company::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    top:-220px;

    left:-180px;

    border-radius:50%;

    background:

        radial-gradient(

            circle,

            rgba(122,23,51,.05),

            transparent 72%

        );

    filter:blur(40px);

    pointer-events:none;

}

.company-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:36px;

}

.company-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.company-image::before{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(122,23,51,.10),
    transparent 72%);

    filter:blur(20px);

    z-index:0;

}

.company-image img{

    position:relative;

    z-index:2;

    width:100%;

    max-width:480px;

    height:auto;

    object-fit:contain;

    filter:
        drop-shadow(0 22px 45px rgba(0,0,0,.12));

    transition:
        transform .35s ease,
        filter .35s ease;

}

.company-image:hover img{

    transform:translateY(-6px);

    filter:
        drop-shadow(0 28px 55px rgba(0,0,0,.16));

}

.company-content {

    display: flex;

    flex-direction: column;

    gap: 24px;

}

.company-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:22px;

    background:#fff;

    border:1px solid rgba(0,0,0,.05);

    border-right:4px solid var(--primary-color);

    border-radius:22px;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    box-shadow:
        0 8px 24px rgba(15,23,42,.04);

}

.company-item:hover{

    transform:translateY(-5px);

    box-shadow:
        0 16px 36px rgba(15,23,42,.08);

    border-color:
        rgba(122,23,51,.12);

}

.company-item i{

    width:56px;

    height:56px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    background:rgba(122,23,51,.08);

    color:var(--primary-color);

    font-size:1.45rem;

}

.company-item h3{

    margin:0 0 8px;

    font-size:1.3rem;

    font-weight:700;

    color:var(--heading-color);

}

.company-item p{

    margin:0;

    color:var(--text-light);

    line-height:1.8;

    font-size:.98rem;

}

/* ===========================
   SOLUTIONS
=========================== */

.solutions {

    background: linear-gradient(180deg,#fafafa 0%,#ffffff 100%);

}

.solutions-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));

    gap: 28px;

}

.solution-card{

    background:#fff;

    border:1px solid rgba(0,0,0,.05);

    border-radius:30px;

    overflow:hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    box-shadow:
        0 10px 28px rgba(15,23,42,.04);

}

.solution-card:hover{

    transform:translateY(-8px);

    border-color:rgba(122,23,51,.10);

    box-shadow:
        0 22px 48px rgba(15,23,42,.08);

}

.solution-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:30px 28px 18px;

    overflow:hidden;

    background:
        linear-gradient(
            180deg,
            rgba(122,23,51,.05),
            rgba(122,23,51,.015)
        );

}

.solution-image::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:

        radial-gradient(

            circle,

            rgba(255,255,255,.9),

            transparent 72%

        );

    z-index:0;

}

.solution-image img{

    position:relative;

    z-index:2;

}

.solution-card:hover .solution-image{

    background:

        linear-gradient(

            180deg,

            rgba(122,23,51,.08),

            rgba(122,23,51,.02)

        );

}

.solution-card:hover .solution-status{

    background:var(--primary-color);

    color:#fff;

    border-color:transparent;

}

.solution-image img{

    width:100%;

    max-width:240px;

    transition:
        transform .4s ease;

}

.solution-card:hover .solution-image img{

    transform:scale(1.05);

}

.solution-content{

    padding:24px;

}

.solution-status{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 16px;

    margin-bottom:20px;

    border-radius:999px;

    background:rgba(122,23,51,.08);

    border:1px solid rgba(122,23,51,.10);

    color:var(--primary-color);

    font-size:.82rem;

    font-weight:700;

    letter-spacing:.2px;

}

.solution-content h3{

    margin:0 0 16px;

    font-size:1.6rem;

    font-weight:800;

    color:var(--heading-color);

    line-height:1.3;

}

.solution-content p{

    margin:0;

    color:var(--text-light);

    line-height:1.9;

    font-size:1rem;

}

.solution-card.upcoming {

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

}

/* ===========================
   VISION
=========================== */

.vision {

    background: #ffffff;

}

.vision-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

}

.vision-card{

    position:relative;

    padding:30px 26px;

    background:#fff;

    border:1px solid rgba(0,0,0,.05);

    border-top:4px solid transparent;

    border-radius:28px;

    overflow:hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-top-color .35s ease;

    box-shadow:
        0 10px 28px rgba(15,23,42,.04);

}

.vision-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(
            180deg,
            rgba(122,23,51,.03),
            transparent 45%
        );

    opacity:1;

    pointer-events:none;

}

.vision-card::after{

    content:"";

    position:absolute;

    left:50%;

    top:118px;

    transform:translateX(-50%);

    width:42px;

    height:2px;

    border-radius:999px;

    background:rgba(122,23,51,.18);

    transition:
        width .35s ease,
        background .35s ease;

}

.vision-card:hover::after{

    width:72px;

    background:var(--primary-color);

}

.vision-card:hover{

    transform:translateY(-6px);

    border-top-color:var(--primary-color);

    box-shadow:
        0 20px 44px rgba(15,23,42,.08);

}

.vision-card:hover::before {

    opacity: 1;

}

.vision-card i{

    width:72px;

    height:72px;

    margin:0 auto 18px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            rgba(122,23,51,.12),
            rgba(122,23,51,.05)
        );

    color:var(--primary-color);

    font-size:1.8rem;

    transition:
        transform .35s ease,
        background .35s ease;

}

.vision-card:hover i{

    transform:scale(1.08);

    background:
        linear-gradient(
            135deg,
            rgba(122,23,51,.18),
            rgba(122,23,51,.08)
        );

}

.vision-card h3{

    margin-bottom:16px;

    font-size:1.5rem;

    font-weight:800;

    color:var(--heading-color);

    line-height:1.3;

}

.vision-card p{

    color:var(--text-light);

    line-height:1.9;

    font-size:1rem;

    margin:0;

}
/* ===========================
   WHY US
=========================== */

.why-us {

    background: linear-gradient(180deg,#fafafa,#ffffff);

}

.features-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 28px;

}

.feature-card{

    isolation:isolate;

    overflow:hidden;

    position:relative;

    padding:30px 26px;

    text-align:center;

    background:#fff;

    border-radius:30px;

    border:1px solid rgba(0,0,0,.04);

    overflow:hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    box-shadow:
        0 8px 24px rgba(15,23,42,.04);

}

.feature-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        radial-gradient(

            circle at top,

            rgba(122,23,51,.04),

            transparent 65%

        );

    opacity:0;

    transition:opacity .35s ease;

}

.feature-card::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:22px;

    transform:translateX(-50%);

    width:36px;

    height:3px;

    border-radius:999px;

    background:rgba(122,23,51,.18);

    transition:
        width .35s ease,
        background .35s ease;

}

.feature-card:hover::after{

    width:72px;

    background:var(--primary-color);

}

.feature-card:hover{

    transform:translateY(-6px);

    border-color:rgba(122,23,51,.08);

    box-shadow:
        0 20px 42px rgba(15,23,42,.08);

}

.feature-card:hover::before{

    opacity:1;

}

.feature-card img{

    width:84px;

    height:84px;

    object-fit:contain;

    margin:0 auto 18px;

    padding:16px;

    border-radius:22px;

    background:rgba(122,23,51,.08);

    transition:
        transform .35s ease,
        background .35s ease;

}

.feature-card:hover img{

    transform:scale(1.08) rotate(-3deg);

    background:rgba(122,23,51,.14);

}

.feature-card h3{

    margin:0 0 16px;

    font-size:1.45rem;

    font-weight:800;

    color:var(--heading-color);

    line-height:1.3;

}

.feature-card p{

    margin:0;

    font-size:1rem;

    line-height:1.9;

    color:var(--text-light);

}

/* ===========================
   STATISTICS
=========================== */

.statistics{

    position:relative;

    overflow:hidden;

    background:

        linear-gradient(
            135deg,
            #6b1838 0%,
            var(--primary-color) 55%,
            #922245 100%
        );

    color:#fff;

}

.statistics::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    top:-220px;

    left:-180px;

    border-radius:50%;

    background:

        radial-gradient(

            circle,

            rgba(255,255,255,.10),

            transparent 72%

        );

    filter:blur(30px);

    pointer-events:none;

}

.statistics::after{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    bottom:-180px;

    right:-140px;

    border-radius:50%;

    background:

        radial-gradient(

            circle,

            rgba(255,255,255,.08),

            transparent 72%

        );

    filter:blur(25px);

    pointer-events:none;

}

.statistics-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

.stat-item{

    position:relative;

    overflow:hidden;

    isolation:isolate;

    padding:30px 20px;

    text-align:center;

    border-radius:28px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.12);

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}

.stat-item::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:rgba(255,255,255,.18);

    transition:

        background .35s ease,

        height .35s ease;

}

.stat-item:hover::before{

    height:6px;

    background:#ffffff;

}

.stat-item:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.12);

    border-color:rgba(255,255,255,.20);

    box-shadow:
        0 20px 45px rgba(0,0,0,.18);

}

.stat-item h3{

    margin:0 0 14px;

    font-size:clamp(2.8rem,5vw,4.3rem);

    font-weight:900;

    line-height:1;

    color:#fff;

}

.stat-item p{

    margin:0;

    color:rgba(255,255,255,.82);

    font-size:1rem;

    line-height:1.8;

}

/* ===========================
   TESTIMONIALS
=========================== */

.testimonials {

    background: #ffffff;

}

.testimonials-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));

    gap: 30px;

}

.testimonial-card{

    position:relative;

    isolation:isolate;

    padding:55px 28px 28px;

    border-radius:30px;

    background:#fff;

    border:1px solid rgba(0,0,0,.05);

    overflow:visible;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    box-shadow:
        0 10px 28px rgba(15,23,42,.05);

}

.testimonial-card::before{

    content:"“";

    position:absolute;

    top:18px;

    right:26px;

    font-size:5.5rem;

    line-height:1;

    font-family:Georgia, serif;

    color:rgba(122,23,51,.08);

    pointer-events:none;

}

.testimonial-card::after{

    content:"";

    position:absolute;

    left:34px;

    right:34px;

    bottom:0;

    height:4px;

    border-radius:999px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(122,23,51,.18),
        transparent
    );

    transition:
        height .35s ease,
        background .35s ease;

}

.testimonial-card:hover::after{

    height:6px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );

}

.testimonial-card:hover img{

    transform:scale(1.05);

}

.testimonial-card:hover{

    transform:translateY(-8px);

    border-color:rgba(122,23,51,.10);

    box-shadow:
        0 22px 48px rgba(15,23,42,.09);

}

.testimonial-card img{

    transition:
    transform .35s ease;

    width:94px;

    height:94px;

    margin:-95px auto 18px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid #fff;

    box-shadow:
        0 12px 28px rgba(15,23,42,.12);

    background:#fff;

}

.testimonial-card h3{

    margin:0 0 8px;

    font-size:1.4rem;

    font-weight:800;

    color:var(--heading-color);

}

.testimonial-card span{

    display:block;

    margin-bottom:20px;

    font-size:.9rem;

    font-weight:700;

    color:var(--primary-color);

    opacity:.85;

}

.testimonial-card p{

    margin:0;

    font-size:1rem;

    line-height:1.95;

    color:var(--text-light);

    font-style:italic;

}

/* ===========================
   FAQ
=========================== */

.faq {

    background: #fafafa;

}

.faq-list {

    max-width: 900px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.faq-item{

    background:#fff;

    border:1px solid rgba(0,0,0,.05);

    border-right:4px solid transparent;

    border-radius:24px;

    overflow:hidden;

    transition:
        border-color .35s ease,
        box-shadow .35s ease,
        transform .35s ease;

}

.faq-item:hover{

    transform:translateY(-3px);

    border-right-color:rgba(122,23,51,.30);

    box-shadow:
        0 12px 30px rgba(15,23,42,.06);

}

.faq-question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 24px;

    background:transparent;

    border:none;

    cursor:pointer;

    text-align:right;

    font-family:inherit;

    font-size:1.08rem;

    font-weight:700;

    color:var(--heading-color);

}

.faq-question::after{

    content:"+";

    width:38px;

    height:38px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    border-radius:50%;

    background:rgba(122,23,51,.08);

    color:var(--primary-color);

    font-size:1.25rem;

    font-weight:700;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;

}

.faq-item.active .faq-question::after{

    transform:rotate(45deg);

    background:var(--primary-color);

    color:#fff;

}

.faq-item.active{

    border-right-color:var(--primary-color);

    box-shadow:
        0 18px 36px rgba(15,23,42,.08);

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        rgba(122,23,51,.02),
        transparent
    );

    transition:
        max-height .45s ease,
        padding .35s ease;

}

.faq-item.active .faq-answer{

    max-height:320px;

    padding:0 24px 20px;

}

.faq-answer p{

    margin:0;

    padding-top:22px;

    border-top:1px solid rgba(0,0,0,.06);

    font-size:1rem;

    line-height:1.9;

    color:var(--text-light);

}

/* ===========================
   CTA
=========================== */


.cta-section::before{

    content:"";

    position:absolute;

    inset:auto;

    width:380px;

    height:380px;

    top:-140px;

    left:-120px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    filter:blur(12px);

    z-index:-1;

}

.cta-section::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    bottom:-120px;

    right:-90px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    filter:blur(16px);

    z-index:-1;

}


.cta {

     position:relative;

    isolation:isolate;

    overflow:hidden;

    padding:55px 0;

    background:
        linear-gradient(
            135deg,
            rgba(124, 25, 53, 0.96),
            rgba(152, 37, 70, 0.98)
        );
}

.cta-box {

    position:relative;

    z-index:2;

    max-width:760px;

    margin:0 auto;

    text-align:center;

}

.cta-box h2 {

    font-size: clamp(2.2rem,4vw,3.5rem);

    margin-bottom: 20px;

    color: #ffffff;

}

.cta-box p {

    max-width: 700px;

    margin: 0 auto 40px;

    color: rgba(255,255,255,.85);

    line-height: 2;

}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;

}



.cta-content h2{

    margin:0 0 22px;

    font-size:clamp(2.2rem,4vw,3.2rem);

    font-weight:800;

    line-height:1.25;

    color:#fff;

}

.cta-content p{

    margin:0 auto 38px;

    max-width:620px;

    font-size:1.08rem;

    line-height:1.9;

    color:rgba(255,255,255,.88);

}

.cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}

.cta-buttons .btn{

    min-width:190px;

    padding:15px 34px;

    border-radius:999px;

    font-weight:700;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        color .3s ease;

}

.cta-buttons .btn:hover{

    transform:translateY(-3px);

}

.cta-buttons .btn-primary{

    box-shadow:
        0 12px 28px rgba(0,0,0,.18);

}

.cta-buttons .btn-primary:hover{

    box-shadow:
        0 18px 36px rgba(0,0,0,.25);

}

.cta-buttons .btn-secondary{

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.22);

    color:#fff;

    backdrop-filter:blur(8px);

}

.cta-buttons .btn-secondary:hover{

    background:rgba(255,255,255,.2);

}

/* ===========================
   CONTACT
=========================== */

.contact {

    background: #ffffff;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:32px;

    margin-top:40px;

    align-items:stretch;

}

.contact-card{

    background:#fff;

    border:1px solid rgba(122,23,51,.08);

    border-radius:24px;

    padding:30px 24px;

    text-align:center;

    transition:all .35s ease;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    height:100%;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

}

.contact-card:hover{

    transform:translateY(-8px);

    border-color:rgba(122,23,51,.18);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.contact-card i{

    width:72px;

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 24px;

    border-radius:50%;

    font-size:30px;

    color:var(--primary-color);

    background:linear-gradient(
        135deg,
        rgba(122,23,51,.10),
        rgba(122,23,51,.04)
    );

    border:1px solid rgba(122,23,51,.10);

    transition:all .35s ease;

}

.contact-card:hover i{

    transform:scale(1.08);

    background:linear-gradient(
        135deg,
        rgba(122,23,51,.16),
        rgba(122,23,51,.08)
    );

}

.contact-card h3{

    margin-bottom:14px;

    font-size:1.35rem;

    font-weight:700;

    color:var(--heading-color);

    line-height:1.4;

}
.contact-card p{

    margin:0;

    color:var(--text-color);

    font-size:1rem;

    line-height:1.8;

    opacity:.9;

    word-break:break-word;

}

/* ===========================
   FOOTER
=========================== */

.footer{

    position:relative;

    overflow:hidden;

    background:
        linear-gradient(
            180deg,
            #1f1f23 0%,
            #18181c 100%
        );

    color:#fff;

    padding:55px 0 0;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at top right,
            rgba(152, 57, 84, 0.18),
            transparent 45%
        );

    pointer-events:none;

}

.footer-content{

    position:relative;

    z-index:1;

    display:grid;

    grid-template-columns:1.5fr 1fr 1fr .8fr;

    gap:40px;

    align-items:start;

    padding-bottom:40px;

}

.footer-logo img{

    width:72px;

    height:auto;

    display:block;

    margin-bottom:22px;

}

.footer-about p{

    color:rgba(255,255,255,.78);

    line-height:2;

    font-size:1rem;

    margin:0;

}

.footer h4 {

    color: #ffffff;

    margin-bottom: 14px;

    font-size: 1.2rem;

}

.footer-links {

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.footer-links a{

    display:inline-flex;

    align-items:center;

    color:rgba(255,255,255,.78);

    text-decoration:none;

    margin-bottom:16px;

    transition:
        color .3s ease,
        transform .3s ease;

}

.footer-links a:hover{

    color:#ffffff;

    transform:translateX(-6px);

}

.social-icons {

    display: flex;

    gap: 14px;

}

.footer-social .social-icons a{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.06);

    color:#fff;

    transition:all .35s ease;

}

.footer-social .social-icons a:hover{

    transform:translateY(-5px);

    background:rgba(122,23,51,.9);

    border-color:rgba(122,23,51,.9);

}

.footer-bottom{

    position:relative;

    z-index:1;

    margin-top:10px;

    padding:28px 0;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.72);

    font-size:.95rem;

}

/* ===========================
   BACK TO TOP
=========================== */

.back-to-top {

    position: fixed;

    left: 30px;

    bottom: 30px;

    width: 58px;

    height: 58px;

    border: none;

    border-radius: 18px;

    background: var(--primary-color);

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.35rem;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: var(--transition);

    z-index: 999;

    box-shadow: 0 20px 45px rgba(122,23,51,.35);

}

.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

.back-to-top:hover {

    transform: translateY(-6px);

}

/* ===========================
   PAGE LOADER
=========================== */

.page-loader {

    position: fixed;

    inset: 0;

    background: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 9999;

    transition: opacity .5s ease,
                visibility .5s ease;

}

.page-loader.hide {

    opacity: 0;

    visibility: hidden;

}

.loader-logo img {

    width: 90px;

    animation: loaderPulse 1.8s infinite ease-in-out;

}

@keyframes loaderPulse {

    0% {

        transform: scale(.9);

        opacity: .6;

    }

    50% {

        transform: scale(1);

        opacity: 1;

    }

    100% {

        transform: scale(.9);

        opacity: .6;

    }

}

/* ===========================
   UTILITIES
=========================== */

html {

    scroll-behavior: smooth;

}

::selection {

    background: var(--primary-color);

    color: #ffffff;

}

img {

    max-width: 100%;

    display: block;

}

button,
input,
textarea {

    font-family: inherit;

}

a {

    transition: .3s;

}

.text-center {

    text-align: center;

}

.mt-0 {

    margin-top: 0;

}

.mb-0 {

    margin-bottom: 0;

}


/*==============================
    Apps Gallery
==============================*/

.apps-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
    margin-top:40px;
}

.app-card{
    background:#fff;
    border:1px solid #edf1f5;
    border-radius:20px;
    overflow:hidden;

    display:flex;
    flex-direction:column;

    height:100%;

    transition:.35s;
    box-shadow:0 10px 25px rgba(15,23,42,.05);
}

.app-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(15,23,42,.10);
}

.app-card__icon{
    aspect-ratio:1/1;
    padding:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fafbfc;
    border-bottom:1px solid #edf1f5;
    overflow:hidden;
}
.app-card__icon img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.app-card__body{

    flex:1;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    padding:0;
}

.app-card__title{
    margin:12px;
    padding:0;
    font-size:16px;
    font-weight:800;
    line-height:1.4;
    text-align:center;
    color:#1d2433;

    display:flex;
    align-items:center;
    justify-content:center;

    min-height:auto;
}



.app-card__footer{

    margin-top:auto;

    padding:16px;

    text-align:center;

    font-size:15px;

    font-weight:700;

    color:var(--primary-color);

    border-top:1px solid #edf1f5;

    cursor:pointer;

    transition:.3s;
}

.app-card__footer i{

    display:none;
}

.app-card:hover .app-card__footer{

    background:var(--primary-color);

    color:#fff;
}

@media(min-width:768px){

    .apps-grid{

        grid-template-columns:repeat(3,1fr);
    }

}

@media(min-width:1200px){

    .apps-grid{

        grid-template-columns:repeat(4,1fr);
    }

}

/* ===========================
   Product Modal
=========================== */

.product-modal{

    position:fixed;

    inset:0;

    background:rgba(15,23,42,.65);

    display:flex;

    align-items:center;

    justify-content:center;

    padding:30px;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9999;

}

.product-modal.active{

    opacity:1;

    visibility:visible;

}

.product-modal__content{

    width:100%;

    max-width:900px;

    max-height:90vh;

    overflow-y:auto;

    background:#fff;

    border-radius:24px;

    padding:35px;

    position:relative;

    animation:modalUp .3s ease;

}

@keyframes modalUp{

    from{

        transform:translateY(25px);

        opacity:0;

    }

    to{

        transform:translateY(0);

        opacity:1;

    }

}

.product-modal__close{

    position:absolute;

    top:18px;

    left:18px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#f3f5f8;

    cursor:pointer;

    font-size:20px;

}

.product-modal__header{

    display:flex;

    gap:25px;

    align-items:center;

    margin-bottom:30px;

}

.product-modal__header img{

    width:120px;

    height:120px;

    object-fit:contain;

}

.product-modal__header h2{

    margin-bottom:12px;

    font-size:32px;

    font-weight:800;

}

.product-modal__header p{

    color:#667085;

    line-height:1.8;

}



.product-modal__gallery{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.gallery-main{

    width:100%;

    border-radius:22px;

    overflow:hidden;

    background:#f8fafc;

    border:1px solid #eceff3;

}

.gallery-main img{

    width:100%;

    height:auto;

    display:block;

    object-fit:contain;

}

.gallery-thumbs{

    display:flex;

    justify-content:center;

    gap:12px;

    flex-wrap:wrap;

}

.gallery-thumb{

    width:80px;

    height:160px;

    object-fit:cover;

    border-radius:14px;

    cursor:pointer;

    border:2px solid transparent;

    transition:.25s;

}

.gallery-thumb:hover{

    transform:translateY(-4px);

}

.gallery-thumb.active{

    border-color:var(--primary-color);

}
.product-modal__features h3{

    margin-bottom:15px;

}

.product-modal__features ul{

    list-style:none;

    margin:20px 0 0;

    padding:0;

    display:flex;

    flex-direction:column;

    gap:14px;

}

.product-modal__features li{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px 16px;

    background:#f8fafc;

    border:1px solid #eceff3;

    border-radius:14px;

    font-weight:600;

}

.product-modal__features li::before{

    content:"✓";

    width:28px;

    height:28px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    border-radius:50%;

    background:#16a34a;

    color:#fff;

    font-size:14px;

    font-weight:700;

}

.product-modal__actions{

    display:flex;

    gap:15px;

    margin-top:35px;

    flex-wrap:wrap;

}

.product-modal__actions a{

    padding:12px 24px;

    border-radius:12px;

    background:#0d6efd;

    color:#fff;

    text-decoration:none;

    font-weight:700;

}

/* ===========================
   Product Modal Layout
=========================== */

/* ==========================================
   PRODUCT MODAL NEW LAYOUT
========================================== */

.product-modal__content{

    width:min(1200px,95vw);

    max-height:92vh;

    overflow-y:auto;

    background:#fff;

    border-radius:28px;

    padding:35px;

    position:relative;

}

.product-modal__hero{

    display:grid;

    grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);

    gap:40px;

    align-items:start;

}

.product-modal__gallery{

    width:100%;

    min-width:0;

}

.product-modal__info{

    min-width:0;

}

.product-modal__info{

    display:flex;

    flex-direction:column;

    height:100%;

}

.product-modal__info img{

    width:90px;

    height:90px;

    object-fit:contain;

    margin-bottom:20px;

}

.product-modal__info h2{

    margin:0 0 10px;

    font-size:clamp(24px,2.6vw,30px);

    font-weight:800;

    line-height:1.3;

    color:#1d2433;

}

.product-modal__info p{

    margin:0 0 24px;

    font-size:15px;

    line-height:1.9;

    color:#667085;

    max-width:650px;

}

.product-modal__features{

    margin-top:auto;

}

.product-modal__features h3{

    margin-bottom:18px;

    font-size:22px;

}

.product-modal__features ul{

    display:flex;

    flex-direction:column;

    gap:14px;

    list-style:none;

    padding:0;

    margin:0;

}

.product-modal__features li{

    padding:14px 18px;

    border-radius:14px;

    background:#f8fafc;

    border:1px solid #eceff3;

}

.product-modal__actions{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-top:35px;

}

.product-modal__actions a{

    flex:1;

    min-width:160px;

    text-align:center;

    padding:14px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    background:var(--primary-color);

    color:#fff;

    transition:.3s;

}

.product-modal__actions a:hover{

    transform:translateY(-3px);

}

.gallery-main img{
    width:100%;
    max-width:360px;
    max-height:650px;
    object-fit:contain;
    border-radius:24px;
    border:1px solid #e5e7eb;
    background:#fff;
    padding:10px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.product-modal__actions{

    margin-top:0;

}

/* ===== Product Gallery ===== */

.gallery-main{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;
}

.gallery-main img{
    width:100%;
    max-width:360px;
    max-height:650px;
    object-fit:contain;
    border-radius:24px;
    border:1px solid #e5e7eb;
    background:#fff;
    padding:10px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    transition:.35s;
}

.gallery-thumbs{

    display:flex;

    gap:12px;

    overflow-x:auto;

    overflow-y:hidden;

    flex-wrap:nowrap;

    justify-content:flex-start;

    padding-bottom:8px;

    scrollbar-width:none;

}

.gallery-thumbs::-webkit-scrollbar{

    display:none;

}
.gallery-thumb{
    width:60px;
    height:110px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    border:2px solid transparent;
    opacity:.7;
    transition:.3s;
}

.gallery-thumb:hover{
    opacity:1;
    transform:translateY(-3px);
}

.gallery-thumb.active{
    border-color:#7A1733;
    opacity:1;
}

/*==================================================
  Mobile Typography System
==================================================*/

@media (max-width:768px){

    body{
        font-size:16px;
        line-height:1.7;
    }

    section{
        padding:45px 0;
    }

    .container{
        width:min(100%,calc(100% - 24px));
    }

    .section-title{
        margin-bottom:28px;
    }

    .section-title span{
        font-size:13px;
        padding:7px 16px;
        margin-bottom:12px;
    }

    .section-title h2{
        font-size:26px;
        line-height:1.35;
        margin-bottom:12px;
    }

    .section-title p{
        font-size:15px;
        line-height:1.8;
    }

}

@media(max-width:992px){

    .product-modal__hero{

        grid-template-columns:1fr;

        gap:30px;

    }

    .product-modal__info{

        order:2;

    }

}