.elementor-648 .elementor-element.elementor-element-81f9f55{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-8ad7d6d */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #111827;
    line-height: 1.6;
}

section {
    width: 100%;
}


/* =========================
   HERO
========================= */

.about-hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background:
        radial-gradient(circle at 20% 20%, #dbeafe, transparent 35%),
        radial-gradient(circle at 80% 80%, #e0f2fe, transparent 35%),
        #f8fbff;
}

.hero-content {
    max-width: 850px;
}

.small-title,
.section-label {
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin: 20px 0;
    font-weight: 800;
}

.hero-content h1 span,
h2 span {
    color: #2563eb;
}

.hero-content p {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    color: #64748b;
}

.hero-btn,
.cta-btn {
    display: inline-block;
    margin-top: 35px;
    padding: 15px 30px;
    border-radius: 8px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn:hover,
.cta-btn:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
}


/* =========================
   WHO WE ARE
========================= */

.who-section {
    max-width: 1200px;
    margin: auto;
    padding: 110px 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.who-image {
    display: flex;
    justify-content: center;
}

.image-box {
    width: 100%;
    max-width: 480px;
    height: 420px;
    border-radius: 25px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-box::before {
    content: "";
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    position: absolute;
    top: -70px;
    right: -50px;
}

.image-box::after {
    content: "";
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    position: absolute;
    bottom: -50px;
    left: -40px;
}

.image-text {
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
}

.image-text strong {
    display: block;
    font-size: 38px;
}

.image-text span {
    font-size: 20px;
    letter-spacing: 3px;
}

.who-content h2,
.approach-content h2,
.section-heading h2,
.cta-content h2 {
    font-size: 46px;
    line-height: 1.15;
    margin: 15px 0 25px;
}

.who-content p {
    color: #64748b;
    margin-bottom: 18px;
}


/* =========================
   SERVICES
========================= */

.services-section {
    padding: 110px 25px;
    background: #f8fafc;
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading p {
    color: #64748b;
}

.services-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.12);
}

.icon {
    color: #2563eb;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    color: #64748b;
}


/* =========================
   APPROACH
========================= */

.approach-section {
    padding: 110px 25px;
}

.approach-content {
    max-width: 1000px;
    margin: auto;
}

.approach-content > p {
    max-width: 750px;
    color: #64748b;
    margin-bottom: 50px;
}

.approach-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.approach-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 12px;
    background: #f8fafc;
}

.approach-item > span {
    font-size: 18px;
    font-weight: 800;
    color: #2563eb;
}

.approach-item h3 {
    margin-bottom: 5px;
}

.approach-item p {
    color: #64748b;
}


/* =========================
   WHY US
========================= */

.why-section {
    padding: 110px 25px;
    background: #f8fafc;
}

.why-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.why-card p {
    color: #64748b;
}


/* =========================
   CTA
========================= */

.cta-section {
    padding: 120px 25px;
    text-align: center;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.cta-content {
    max-width: 800px;
    margin: auto;
}

.cta-content p {
    color: #64748b;
    font-size: 17px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .hero-content h1 {
        font-size: 48px;
    }

    .who-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .who-content h2,
    .approach-content h2,
    .section-heading h2,
    .cta-content h2 {
        font-size: 38px;
    }
}


@media (max-width: 600px) {

    .about-hero {
        min-height: 550px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .services-grid,
    .approach-list,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .who-section,
    .services-section,
    .approach-section,
    .why-section {
        padding: 75px 20px;
    }

    .image-box {
        height: 320px;
    }

    .who-content h2,
    .approach-content h2,
    .section-heading h2,
    .cta-content h2 {
        font-size: 32px;
    }
}/* End custom CSS */