/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.9.1780511740
Updated: 2026-06-03 18:35:40

*/

section#hero {
   padding: 90px 0 80px;
    background: linear-gradient(180deg, #f7fbf3 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

#hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

div#founder-frame {
    position: relative;
    width: 360px;
    height: 360px;
}

/* === FULL GREEN SPINNING DASHED CIRCLE === */
#founder-frame::before {
    content: '';
    position: absolute;
    inset: -22px;
    border: 4px dashed #10b981;       /* Full circle dashed */
    border-radius: 50%;
    opacity: 0.9;
    animation: spin 12s linear infinite; /* Slightly slower for a nice effect */
    z-index: 2;
}

/* === GLOWING GRADIENT RING === */
#founder-frame::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: linear-gradient(135deg, green, #0061ff, green);
    /* filter: blur(12px); */
    opacity: 0.65;
    /* z-index: -1; */
    animation: glow-pulse 2.8s ease-in-out infinite;
}

/* === IMAGE === */
#founder-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 10px solid white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

/* === ANIMATIONS === */
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.65; }
    50%      { opacity: 0.35; }
}

/* === HOVER EFFECTS === */
#founder-frame:hover::before {
    animation-duration: 4s;  /* Spins faster on hover */
    opacity: 1;
}

#founder-frame:hover img {
    transform: scale(1.03);
    transition: transform 0.5s ease;
}


div#achievement-card {
    background: white;
    border: 2px solid green;
    border-radius: 12px;
    padding: 32px 26px;
    transition: all 0.3s;
    height: 300px;
}

div#achievement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(124, 179, 66, 0.18);
}


blockquote.elementor-blockquote {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 14px;
    padding: 36px !important;
    position: relative;
}

ul#menu-primary-menu a {
    color: #2c3e44;
    font-size: 17px;
    font-weight: 700;
}

.current-menu-item a{
    color: #2196a8 !important;
}

@media(max-width:767px){
	.site-logo.show {
		width: 100%;
		max-width: 180px;
	}
	
	div#founder-frame{
		height:auto !important;
		width:auto !important;
	}
}

div#info-links .elementor-icon-box-icon {
   top: 7px;
    padding: 8px;
    font-size: 7px;
    position: relative;
    left: 7px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

div#info-links svg {
    font-size: 13px;
}

p.site-description.show {
    display: none;
}