/* <!-- CONTACT SECTION ************************************************** START --> */
   :root {
            --primary102: #115E3C;
            --primary102-dark: #0A4928;
            --primary102-light: rgba(17, 94, 60, 0.1);
            --secondary102: #213332;
            --accent102: #FF6B35;
            --accent102-light: #FF9E6D;
            --dark102: #121212;
            --light102: #f8f9fa;
            --white102: #ffffff;
            --glass102: rgba(255, 255, 255, 0.08);
            --glass102-border: rgba(255, 255, 255, 0.18);
            --transition102: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --transition102-smooth: all 0.5s ease;
            --shadow102: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow102-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
            --shadow102-primary: 0 10px 30px rgba(17, 94, 60, 0.2);
            --gradient-primary102: linear-gradient(135deg, #115E3C, #19B561);
            --gradient-accent102: linear-gradient(135deg, #FF6B35, #FF9E6D);
            --primary102efw-start: #00C897;
            --primary102efw-end: #009976;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .jhe102 {
            font-family: 'Montserrat', sans-serif;
            background: var(--light102);
            color: var(--secondary102);
            overflow-x: hidden;
            line-height: 1.6;
          padding-top: 200px;
        }

        .jhe102 h1,
        .jhe102 h2,
        .jhe102 h3,
        .jhe102 h4,
        .jhe102 h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        /* ================= TOP CTA ================= */
        .cta-strip102 {
            width: 100%;
            padding: 50px 5%;
            background: var(--gradient-primary102);
            display: flex;
            align-items: center;
            justify-content: flex-start;
            position: relative;
            overflow: hidden;
            /* border-radius: 0px 0px 350px 0px; */
            clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);

        }

        .cta-strip102::before {
            content: '';
            position: absolute;
            /* top: 0%; */
            left: 0;
            /* bottom: 0%; */
            width: 100%;
            height: 100%;
            background: linear-gradient(62deg, #4caf5000 50%, #FF9800 50%);
            background-size: cover;
            transform: rotate(90deg);
        }

        .cta-content102 {
            position: relative;
            z-index: 2;
            max-width: 680px;
        }

        .cta-strip102 h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(to right, #8cff90, #ffffff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .cta-strip102 p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            max-width: 100%;
            margin-bottom: 20px;
        }

        .cta-btn102 {
            background: var(--white102);
            color: var(--primary102);
            border: none;
            padding: 16px 42px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition102);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cta-btn102:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .cta-btn102 i {
            font-size: 1.1rem;
        }

        /* ================= MAIN SECTION ================= */
        .section102 {
            position: relative;
            background: var(--white102);
            padding: 100px 5% 120px;
            overflow: hidden;
        }

        /* LEFT DECORATION */
        .left-decoration102 {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 25%;
            height: 80%;
            background: var(--gradient-primary102);
            border-radius: 0 100px 100px 0;
            z-index: 1;
            opacity: 0.9;
        }

        /* CONTENT WRAP */
        .wrap102 {
            position: relative;
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            gap: 80px;
            align-items: center;
            z-index: 2;
        }

        /* ================= IMAGE SECTION ================= */
        .image-section102 {
            position: relative;
            width: 480px;
            height: 480px;
            flex-shrink: 0;
        }

        .image-frame102 {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            overflow: hidden;
            border: 20px solid var(--white102);
            box-shadow: var(--shadow102-lg);
            position: relative;
            transition: var(--transition102);
        }

        .image-frame102:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow102-primary);
        }

        .image-frame102 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition102-smooth);
        }

        .image-frame102:hover img {
            transform: scale(1.05);
        }

        .image-badge102102 {
            position: absolute;
            bottom: 40px;
            right: -20px;
            background: var(--gradient-accent102);
            color: var(--white102);
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: 700;
            box-shadow: var(--shadow102);
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* ================= CONTENT ================= */
        .content102 {
            max-width: 700px;
        }

        .badge102 {
            display: inline-block;
            background: var(--primary102-light);
            color: var(--primary102);
            padding: 10px 28px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 25px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .content102 h2 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 15px;
            color: var(--dark102);
        }

        .content102 h2 span {
            color: var(--primary102);
            position: relative;
        }

        .content102 h2 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(17, 94, 60, 0.2);
            z-index: -1;
        }

        .content102 p {
            margin: 25px 0;
            color: var(--secondary102);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* ================= CONTACT INFO ================= */
        .contact-info102 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin: 30px 0;
        }

        .contact-item102 {
            background: var(--primary102-light);
            padding: 25px;
            border-radius: 20px;
            transition: var(--transition102);
            border: 1px solid rgba(17, 94, 60, 0.1);
            box-shadow: 5px 5px 5px gray, inset 5px 5px 5px #ffffff;
        }

        .contact-item102:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow102);
            background: rgba(17, 94, 60, 0.15);
        }

        .contact-icon102 {
            background: var(--gradient-primary102);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            color: var(--white102);
            font-size: 1.2rem;
            border: 3px solid #ffffff;
            box-shadow: 0px 0px 0px 7px #FF9800;
        }

        .contact-item102 h4 {
            color: var(--primary102-dark);
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .contact-item102 p {
            margin: 0;
            color: var(--secondary102);
            font-size: 1rem;
        }

        /* ================= CONTACT FORM ================= */
        .form-container102 {
            margin-top: 40px;
            max-width: 600px;
            background: var(--white102);
            padding: 40px;
            border-radius: 25px;
            box-shadow: var(--shadow102);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .form-title102 {
            font-size: 1.5rem;
            color: var(--dark102);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .form-title102 i {
            color: var(--primary102);
        }

        .form-group102 {
            margin-bottom: 20px;
            position: relative;
        }

        .form-group102 label {
            display: block;
            margin-bottom: 8px;
            color: var(--secondary102);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-input102,
        .form-textarea102 {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: var(--transition102);
            background: #f9fafa;
        }

        .form-input102:focus,
        .form-textarea102:focus {
            outline: none;
            border-color: var(--primary102);
            background: var(--white102);
            box-shadow: 0 0 0 3px var(--primary102-light);
        }

        .form-textarea102 {
            height: 140px;
            resize: vertical;
        }

        .form-btn102 {
            background: var(--gradient-primary102);
            color: var(--white102);
            border: none;
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition102);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-top: 10px;
            box-shadow: 0 5px 15px rgba(17, 94, 60, 0.2);
        }

        .form-btn102:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(17, 94, 60, 0.3);
        }

        /* ================= RIGHT DECORATION ================= */
        .right-decoration102 {
            position: absolute;
            right: -120px;
            top: 200px;
            width: 350px;
            height: 350px;
            background: var(--gradient-accent102);
            border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
            z-index: 1;
            opacity: 0.8;
            animation: float102 6s ease-in-out infinite;
        }

        @keyframes float102 {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        /* ================= MISSION SECTION ================= */
        .mission-section102 {
            background: var(--gradient-primary102);
            padding: 80px 5%;
            color: var(--white102);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .mission-section102::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.05"><path d="M0,0 L100,0 L100,100 Z" fill="white"/></svg>');
            background-size: cover;
        }

        .mission-content102 {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            margin: 0 auto;
        }

        .mission-badge102 {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: var(--white102);
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .mission-title102 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .mission-text102 {
            font-size: 1.15rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        .mission-stats102 {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 50px;
        }

        .stat-item102 {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            min-width: 180px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stat-number102 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 5px;
            display: block;
        }

        .stat-label102 {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* ================= FOOTER ================= */
        .footer102 {
            background: var(--secondary102);
            color: var(--white102);
            padding: 60px 5% 30px;
            text-align: center;
        }
        .footer102::before {
            content: '';
            position: absolute;
            /* top: 0; */
            right: 0;
            width: 100%;
           
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.05"><path d="M0,0 L100,0 L100,100 Z" fill="white"/></svg>');
            background-size: cover;
        }

        .footer-logo102 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--white102);
        }

        .footer-logo102 span {
            color: var(--accent102-light);
        }

        .footer-text102 {
            opacity: 0.7;
            max-width: 600px;
            margin: 0 auto 40px;
            font-size: 0.95rem;
        }

        .footer-social102 {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .social-icon102 {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white102);
            font-size: 1.2rem;
            transition: var(--transition102);
        }

        .social-icon102:hover {
            background: var(--primary102);
            transform: translateY(-5px);
        }

        .section-tagfsw2 {
            display: inline-block !important;
            padding: 8px 20px !important;
            /* background: linear-gradient(135deg, #00C897, #009976) !important; */

            width: fit-content !important;
            --s: 1.8em !important;
            /* the ribbon size */
            --d: .8em !important;
            /* the depth */
            --c: .8em !important;
            /* the cutout part */

            padding: 0 var(--c) var(--d) calc(var(--s) + .5em) !important;
            line-height: 1.8 !important;
            background:
                conic-gradient(at left var(--s) bottom var(--d),
                    #ff9800 25%,
                    var(--primary102efw-start) 0 37.5%,
                    var(--primary102efw-end) 0);
            clip-path: polygon(calc(100% - var(--c)) 0, var(--s) 0, var(--s) var(--d), 0 var(--d), var(--c) calc(50% + var(--d)/2), 0 100%, calc(var(--s) + var(--d)) 100%, calc(var(--s) + var(--d)) calc(100% - var(--d)), calc(100% - var(--c)) calc(100% - var(--d)), 100% calc(50% - var(--d)/2)) !important;
            color: white !important;
            /* border-radius: 50px; */
            font-size: 1.5rem !important;
            font-weight: bold !important;
            letter-spacing: 1px !important;
            margin-bottom: 25px !important;
            box-shadow: 0 10px 20px rgba(0, 200, 151, 0.2) !important;
        }

        .copyright {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* ================= RESPONSIVE ================= */
        @media (max-width: 1200px) {
            .wrap102 {
                gap: 60px;
            }

            .image-section102 {
                width: 420px;
                height: 420px;
            }

            .content102 h2 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 992px) {
          .jhe102{
padding-top: 130px;
          }
            .wrap102 {
                flex-direction: column;
                text-align: center;
                gap: 60px;
            }

            .image-section102 {
                width: 350px;
                height: 350px;
            }

            .left-decoration102 {
                width: 100%;
                height: 300px;
                top: 0;
                transform: none;
                border-radius: 0 0 100px 100px;
            }

            .right-decoration102 {
                display: none;
            }

            .contact-info102 {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }

            .cta-strip102 {
                flex-direction: column;
                align-items: flex-start;
                gap: 25px;
                text-align: center;
            }

            .cta-strip102 h1 {
                font-size: 2.2rem;
            }

            .mission-title102 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
.jhe102 {
        padding-top: 10px;
    }
            .cta-strip102{
                clip-path: none;
            }
            .cta-strip102 h1 {
                font-size: 1.8rem;
            }
            .content102{
                padding-top: 50px;
            }

            .content102 h2 {
                font-size: 2.2rem;
            }

            .contact-item102 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

            .image-section102 {
                width: 280px;
                height: 280px;
            }

            .image-badge102102 {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 20px;
                justify-content: center;
            }

            .form-container102 {
                padding: 30px 25px;
            }

            .mission-stats102 {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .stat-item102 {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
    .jhe102 {
        padding-top: 22px;
    }
            .cta-strip102,
            .section,
            .mission-section102 {
                padding-left: 5%;
                padding-right: 5%;
            }

            .cta-strip102 h1 {
                font-size: 1.6rem;
            }

            .content102 h2 {
                font-size: 1.8rem;
            }

            .image-section102 {
                width: 250px;
                height: 250px;
            }

            .image-frame102 {
                border-width: 12px;
            }
        }
/* <!-- CONTACT SECTION ************************************************** END --> */
