.elementor-37 .elementor-element.elementor-element-998510a{--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;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-37 .elementor-element.elementor-element-0746018{text-align:center;}.elementor-37 .elementor-element.elementor-element-0746018 .elementor-heading-title{font-family:"Inter", Sans-serif;font-weight:700;color:#5D866C;}.elementor-37 .elementor-element.elementor-element-c3265aa{--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-5df693f */@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #f6f6f6;
    color: #222;
    line-height: 1.7;
    overflow-x: hidden;
}

/* -------------------------------- HERO -------------------------------- */
.hero {
    height: 45vh; /* smaller hero */
    min-height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #efefef);
    overflow: hidden;
    padding: 20px;
}

/* CENTERED LOGO */
.hero-logo {
    width: 220px;
    max-width: 60%;
    height: auto;
    margin-bottom: 10px;
    animation: fadeIn 1.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.75;
}

/* BACKGROUND BLUR SHAPES */
.bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    animation: float 12s infinite ease-in-out;
}

.el1 {
    width: 200px;
    height: 200px;
    background: #5d866c;
    top: -60px;
    left: -80px;
}

.el2 {
    width: 230px;
    height: 230px;
    background: #5d866c;
    bottom: -70px;
    right: -80px;
    animation-delay: 3s;
}

.el3 {
    width: 160px;
    height: 160px;
    background: #;
    top: 50%;
    left: 65%;
    animation-delay: 6s;
}

@keyframes float {
    0%,100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-25px) translateX(20px); }
}

/* -------------------------------- CONTAINER -------------------------------- */
.container {
    max-width: 900px;
    width: 90%;
    margin: auto;
    padding: 60px 0;
    text-align: center;
}

/* ABOUT TEXT */
.about p {
    margin-bottom: 20px;
    color: #545454;
    font-size: 1rem;
}

/* QUOTE BOX */
.quote {
    margin: 35px 0;
    padding: 20px;
    background: #ebebeb;
    border-left: 5px solid #545454;
    font-size: 1.3rem;
    font-weight: 700;
}

/* -------------------------------- CARDS -------------------------------- */
.cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.card {
    background: #fff;
    width: 260px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.card-icon {
    font-size: 2.4rem;
    margin-bottom: 15px;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Gradients */
.research-icon {
    background-image: linear-gradient(45deg, #3b82f6, #06b6d4);
}

.strategy-icon {
    background-image: linear-gradient(45deg, #facc15, #f59e0b);
}

.campaigns-icon {
    background-image: linear-gradient(45deg, #ef4444, #ec4899);
}

/* -------------------------------- CLOSING TEXT -------------------------------- */
.closing {
    margin-top: 40px;
    font-size: 1.4rem;
    font-weight: 600;
}

/* -------------------------------- RESPONSIVENESS -------------------------------- */
@media (max-width: 992px) {
    .hero {
        height: 40vh;
    }
    .hero-logo {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 38vh;
        min-height: 260px;
    }

    .hero-logo {
        width: 180px;
        max-width: 70%;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .el1, .el2, .el3 {
        width: 150px !important;
        height: 150px !important;
        filter: blur(45px);
    }

    .card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 35vh;
        min-height: 220px;
    }

    .hero-logo {
        width: 150px;
        max-width: 80%;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .el1, .el2, .el3 {
        width: 120px !important;
        height: 120px !important;
        filter: blur(40px);
    }

    .quote {
        font-size: 1.1rem;
    }
}/* End custom CSS */