.elementor-3877 .elementor-element.elementor-element-f479709{--display:flex;}.elementor-3877 .elementor-element.elementor-element-2b999e5{--display:flex;}.elementor-3877 .elementor-element.elementor-element-34f8fd1{--display:flex;}/* Start custom CSS for html, class: .elementor-element-d793bdb *//* --- Global Styles --- */
.mgu-services-section {
    padding: 80px 20px;
    background-color: #080808; 
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

.mgu-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Header & Typography --- */
.mgu-header {
    text-align: center;
    margin-bottom: 50px;
}

.mgu-badge {
    background: rgba(255, 101, 62, 0.1);
    color: #ff653e;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 101, 62, 0.3);
    text-transform: uppercase;
}

.mgu-title {
    font-size: clamp(26px, 5vw, 42px); /* মোবাইলে অটোমেটিক ছোট হবে */
    font-weight: 800;
    margin-top: 15px;
    line-height: 1.2;
}

.mgu-title span { color: #ff653e; }

.mgu-subtitle {
    font-size: 15px;
    color: #aaaaaa;
    margin-top: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Grid Layout --- */
.mgu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop */
    gap: 25px;
}

/* --- Card Styles --- */
.mgu-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* --- Icon & Pulse Effect --- */
.mgu-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    color: #ff653e;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 101, 62, 0.2);
}

/* Hover/Touch Active */
.mgu-card:hover {
    transform: translateY(-8px);
    border-color: #ff653e;
    background: rgba(255, 255, 255, 0.06);
}

.mgu-card:hover .mgu-icon-wrapper {
    background: #ff653e;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 101, 62, 0.5);
}

/* Pulse Animation */
.mgu-card:hover .mgu-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #ff653e;
    animation: mgu-pulse 1.5s infinite;
}

@keyframes mgu-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.mgu-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mgu-card p {
    font-size: 14px;
    color: #bbbbbb;
    line-height: 1.6;
}

/* --- Tablet Responsive (1024px) --- */
@media (max-width: 1024px) {
    .mgu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Mobile Responsive (767px) --- */
@media (max-width: 767px) {
    .mgu-services-section {
        padding: 50px 15px;
    }
    
    .mgu-grid {
        grid-template-columns: 1fr; /* এক কলামে একটি বক্স */
        gap: 20px;
    }

    .mgu-card {
        padding: 35px 20px;
    }

    .mgu-title {
        font-size: 28px;
    }

    .mgu-subtitle {
        font-size: 14px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e7bc7c4 *//* --- Global Contact Styles --- */
.mgu-contact-section {
    padding: 80px 20px;
    background-color: #080808; /* Pure Dark Background */
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

.mgu-contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* --- Left Side: Form --- */
.mgu-contact-form-area {
    flex: 1.2;
}

.mgu-contact-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.mgu-contact-title span { color: #ff653e; }

.mgu-contact-subtitle {
    font-size: 15px;
    color: #aaaaaa;
    margin-bottom: 35px;
}

.mgu-custom-form .input-group {
    margin-bottom: 20px;
}

.mgu-custom-form input, 
.mgu-custom-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.mgu-custom-form input:focus, 
.mgu-custom-form textarea:focus {
    border-color: #ff653e;
    background: rgba(255, 101, 62, 0.05);
    box-shadow: 0 0 15px rgba(255, 101, 62, 0.1);
}

.mgu-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(90deg, #ff653e, #dc1010);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.mgu-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 101, 62, 0.3);
}

/* --- Right Side: Info Cards --- */
.mgu-contact-info-area {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-main-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: #ffffff;
}

.info-item-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: 0.4s;
}

.info-item-card:hover {
    border-color: #ff653e;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.info-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 101, 62, 0.1);
    color: #ff653e;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 101, 62, 0.2);
}

.info-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #ffffff;
}

.info-text p {
    font-size: 14px;
    color: #bbbbbb;
}

/* --- Responsive (Mobile Friendly) --- */
@media (max-width: 991px) {
    .mgu-contact-container {
        flex-direction: column;
        gap: 60px;
    }
}

@media (max-width: 767px) {
    .mgu-contact-section { padding: 50px 15px; }
    .mgu-contact-title { font-size: 28px; text-align: center; }
    .mgu-contact-subtitle { text-align: center; }
    
    .info-item-card {
        padding: 20px;
    }
    
    .info-item-card:hover {
        transform: translateY(-5px); /* মোবাইলে সাইড মুভমেন্টের চেয়ে আপ মুভমেন্ট ভালো লাগে */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5c5bdb4 *//* FAQ Section Styling */
.mgu-faq-section {
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

/* Header Styling */
.mgu-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-title span {
    color: #ff653e; /* Branding color */
}

.faq-subtitle {
    font-size: 16px;
    color: #cccccc;
    font-weight: 400;
}

/* Container & Cards */
.mgu-faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mgu-faq-card {
    background: rgba(255, 255, 255, 0.03); /* Glass style */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mgu-faq-card:hover {
    border-color: #ff653e;
    box-shadow: 0 0 15px rgba(255, 101, 62, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

/* Hide Checkbox */
.mgu-faq-card input[type="checkbox"] {
    display: none;
}

/* Question Styling */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
}

.mgu-faq-card input:checked + .faq-question {
    color: #ff653e;
    background: rgba(255, 101, 62, 0.05);
}

/* Plus Icon Animation */
.plus-icon {
    position: relative;
    width: 18px;
    height: 18px;
}

.plus-icon::before, .plus-icon::after {
    content: "";
    position: absolute;
    background: #ffffff;
    transition: 0.3s ease;
}

/* Horizontal line */
.plus-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

/* Vertical line */
.plus-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* When Active - Transform Plus to Minus */
.mgu-faq-card input:checked + .faq-question .plus-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.mgu-faq-card input:checked + .faq-question .plus-icon::before {
    background: #ff653e;
}

/* Answer Styling */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 25px;
}

.mgu-faq-card input:checked ~ .faq-answer {
    max-height: 300px;
    padding-bottom: 25px;
    transition: max-height 0.4s ease-in;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #bbbbbb;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-title { font-size: 28px; }
    .faq-question { font-size: 16px; padding: 18px 20px; }
}/* End custom CSS */