.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 );}.elementor-11562 .elementor-element.elementor-element-d79e55e{width:100%;max-width:100%;align-self:center;}.elementor-11562 .elementor-element.elementor-element-69eb6df{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;grid-column:span 12;align-self:center;}/* Start custom CSS for shortcode, class: .elementor-element-d79e55e */.my-class {
    width: 100%;
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.my-class:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.my-class h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.my-class input, 
.my-class textarea, 
.my-class select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    outline: none;
}

/* ✅ Glow Effect When Typing */
.my-class input:focus, 
.my-class textarea:focus, 
.my-class select:focus {
    border-color: #007bff;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
    background: rgba(0, 123, 255, 0.05);
    transform: scale(1.02);
}

.my-class button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.my-class button:hover {
    background: linear-gradient(135deg, #0056b3, #0094d9);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
}

.my-class button:active {
    transform: scale(0.98);
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-69eb6df */.my-class-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
}

.my-class-2 .post-card {
    width: 100%;
    max-width: 350px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 3D Hover Effect */
.my-class-2 .post-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 165, 0, 0.5);
}

/* Glowing Border Effect */
.my-class-2 .post-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.7), rgba(255, 69, 0, 0.5));
    z-index: -1;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.my-class-2 .post-card:hover::before {
    opacity: 1;
}

/* Post Image */
.my-class-2 .post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Post Title */
.my-class-2 .post-card h3 {
    font-size: 22px;
    margin: 15px 0;
    color: #333;
}

/* Post Content */
.my-class-2 .post-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Read More Button */
.my-class-2 .post-card a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #ff8000, #ff4500);
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.my-class-2 .post-card a:hover {
    background: linear-gradient(135deg, #e65c00, #c13200);
    transform: scale(1.08);
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.8);
}/* End custom CSS */