.elementor-117 .elementor-element.elementor-element-9d744fc{--display:flex;--margin-top:2%;--margin-bottom:0%;--margin-left:0%;--margin-right:0%;}.elementor-117 .elementor-element.elementor-element-ab99541{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-117 .elementor-element.elementor-element-9d744fc{--min-height:100vh;}}/* Start custom CSS for html, class: .elementor-element-ab99541 */a {
    text-decoration: none !important;
}

.social-box i.fa-snapchat {
  text-shadow: 0 0 1px #fff; /* slight bold illusion */
}

/* ===== TITLES ===== */
.title {
    text-align: center;
    margin-bottom: 40px;
}
.title h2 {
    font-size: 46px;
    margin-bottom: 10px;
}

/* ===== MISSION ===== */
.mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}
.mission img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
}
.mission p {
    font-size: 18px;
    color: #444;
}

/* ===== FEATURES ===== */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}
.card {
    background: #fff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 5px 16px rgba(0,0,0,.08);
    transition: .3s;
}
.card:hover {
    transform: translateY(-6px);
}
.card h3 {
    color: #38433d;
    margin-bottom: 10px;
}

/* ===== AUTHOR ===== */
.team {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.member {
    text-align: center;
}
.member img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #f2d7df;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.member h4 {
    margin-top: 15px;
    font-size: 30px;
}
.member p {
    color: #38433d;
    font-weight: 600;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
    background: #38433d;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    margin-top: 60px;
}
.testimonial p {
    max-width: 750px;
    margin: auto;
    font-size: 20px;
}

/* ===== CTA ===== */
.cta {
    text-align: center;
    padding: 40px 20px;
}
.cta h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #38433d;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.cta-btn:hover, .insta-btn:hover{
    background: #000 !important;
    color: #fff !important;
}

/* ===== INSTAGRAM SECTION ===== */
.insta-section {
    padding: 60px 25px;
    background: linear-gradient(to right, #f8f8f8, #eef3f1);
}
.insta-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.insta-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.insta-text p {
    color: #666;
    margin-bottom: 15px;
}
.insta-stats {
    display: flex;
    gap: 25px;
    margin: 15px 0;
}
.insta-stats h3 {
    color: #38433d;
}
.insta-btn {
    background: #38433d;
    color: #fff;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 5px;
}
.insta-card {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.insta-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* ===== INSTAGRAM ICONS ===== */
.insta-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}
.insta-icons a {
    width: 38px;
    height: 38px;
    background: #38433d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}
.insta-icons a:hover {
    background: #000;
    transform: translateY(-3px);
}

/* ===== SOCIAL STATS (NEW) ===== */
.social-stats {
    display: flex;
    gap: 25px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.social-box {
    text-align: center;
}

.social-box a {
    width: 42px;
    height: 42px;
    background: #38433d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    margin: 0 auto 8px;
    transition: 0.3s;
}

.social-box a:hover {
    background: #000;
    transform: translateY(-3px);
}

.social-box h4 {
    margin: 0;
    font-size: 18px;
    color: #38433d;
}

.social-box span {
    font-size: 12px;
    color: #777;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .mission   { grid-template-columns: 1fr; }
    .features  { grid-template-columns: 1fr; }
    .title h2  { font-size: 34px; }
}

@media (max-width: 768px) {

    /* CTA */
    .cta          { padding: 30px 15px; }
    .cta h2       { font-size: 22px; line-height: 1.4; }
    .cta-btn      { width: 100%; max-width: 280px; display: block; margin: 0 auto; text-align: center; }

    /* Instagram section */
    .insta-section    { padding: 40px 15px; }
    .insta-container  { grid-template-columns: 1fr; gap: 25px; text-align: center; }
    .insta-text       { text-align: center; }
    .insta-text h2    { font-size: 24px; }
    .insta-text p     { font-size: 14px; line-height: 1.5; }
    .insta-stats      { justify-content: center; gap: 20px; margin-bottom: 15px; }
    .stat-box         { text-align: center; }
    .stat-box h3      { font-size: 20px; }
    .stat-box span    { font-size: 12px; }
    .insta-btn        { display: block; width: 100%; max-width: 260px; margin: 10px auto 0; font-size: 14px; padding: 10px; }
    .insta-card       { margin-top: 20px; padding: 18px; }
    .insta-card img   { width: 70px; height: 70px; }
    .insta-card h4    { font-size: 16px; }
    .insta-card p     { font-size: 13px; }

    /* Instagram icons */
    .insta-icons      { justify-content: center; gap: 10px; margin-bottom: 12px; }
    .insta-icons a    { width: 34px; height: 34px; font-size: 13px; }

    /* Social section */
    .social-section   { padding: 22px 10px; }
    .social-section h2 { font-size: 22px; margin-bottom: 14px; }
    .social-block     { margin-bottom: 14px; }
    .social-block h3  { font-size: 15px; }
    .social-icons     { gap: 10px; }
    .social-icons a   { width: 38px; height: 38px; font-size: 15px; }
     .social-stats {
        justify-content: center;
        gap: 20px;
    }

    .social-box a {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .social-box h4 {
        font-size: 16px;
    }

    .social-box span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .social-icons   { gap: 8px; }
    .social-icons a { width: 34px; height: 34px; font-size: 14px; }
    .social-stats {
        gap: 15px;
    }

    .social-box a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .social-box h4 {
        font-size: 15px;
    }

    .social-box span {
        font-size: 10px;
    }
}/* End custom CSS */