/* ===========================
   GOOGLE FONTS
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Aclonica&family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#FAF5EF;
    font-family:'Poppins',sans-serif;
    color:#333;
}

/* ===========================
   TOP BAR
=========================== */

.top-bar{
    background:#9D231A;
    color:#fff;
    height:50px;
    padding:0 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.contact-info a{
    color:#fff;
    text-decoration:none;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    font-weight:400;
}

.social-circle{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#fff;
    color:#9D231A;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
}

/* ===========================
   LOGOS
=========================== */

.mjafi-logo,
.right-logo,
.logo-circle{
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    background:#fff;
    border-radius:50%;
}

.mjafi-logo,
.right-logo{
    width:45px;
    height:45px;
}

.logo-circle{
    width:70px;
    height:70px;
    border:2px solid #eee;
}

.mjafi-logo img,
.right-logo img,
.logo-circle img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:2px;
}
/* ===========================
   HEADER
=========================== */
.header-card{
    width: 100%;
    height: 100px;          /* 60px ऐवजी 80px */
    margin: 0 auto;
    padding: 0 25px;
    background: #fff;
    border-radius: 0 0 30px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
    min-width:220px;
}
.logo-text{
    display: flex;
    align-items: center;
}

.logo-text img{
    width: 240px;     /* 120px, 100px किंवा 80px करून पाहू शकता */
    height: auto;
    display: block;
}
.logo-circle{
    width:62px;
    height:62px;
    border:1px solid #ddd;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
}

.logo-circle img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:4px;
}

.logo-title{
    font-family:'Playfair Display',serif;
    font-size:27px;
    font-weight:700;
    line-height:1;
}

.logo-sub{
    font-family:'Playfair Display',serif;
    font-style:italic;
    font-size:15px;
    margin-top:4px;
}
.active-menu{
    color: #9D231A !important;
    font-weight: 600;
}

.menu{
    display:flex;
    align-items:center;
    gap:20px;
}

.menu a{
    font-family:'Aclonica',sans-serif;
    font-size:15px;
    text-decoration:none;
    color:#111;
}

.register-btn{
    background:#A12616;
    color:#fff;
    padding:12px 30px;
    border-radius:4px;
    text-decoration:none;
    font-weight:600;
}

.register-btn:hover{
    background:#81190f;
}


/* ===========================
   ABOUT SECTION
=========================== */

.about-section{
    max-width:1150px;
    margin:60px auto;
    text-align:center;
}

.main-about-title{
    font-family:'Aclonica',sans-serif;
    font-size:48px;
    font-weight:400;
    color:#111;
    margin-bottom:8px;
   
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.content-heading{
    font-family:'Aclonica',sans-serif;
    font-size:16px;
    font-weight:400;
    color:#DE7556;
    margin:10px 0 8px;
}

.content-paragraph{
    font-family:'Poppins',sans-serif;
    font-size:15px;
    line-height:1.8;
    color:#666;
    text-align:left;
}
.link-paragraph{
    text-align: left;
    margin-top: 10px;
    margin-bottom: 20px;
}

.info-link{
    color: #9D231A;
    text-decoration: none;
    font-weight: 500;
}

.info-link{
    color:#666;
    text-decoration:none;
}


/*====================================
FOOTER
====================================*/

.footer{
    background:#231a33;
    color:#fff;
    padding:80px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 0.8fr 0.9fr 1fr;
    gap:60px;
    align-items:flex-start;
}

.footer-col{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

/* Logo */
.footer-logo{
    width:240px;
    height:auto;
    display:block;
    margin:0 0 25px 0;
}

/* About */
.footer-col p{
    color:#d6d1dc;
    font-size:16px;
    line-height:1.9;
    margin-bottom:30px;
}

/* Heading */
.footer-col h3{
    font-size:22px;
    font-weight:700;
    color:#fff;
    margin-bottom:28px;
}

/* Links */
.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:16px;
}

.footer-col ul li a{
    color:#d6d1dc;
    text-decoration:none;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#fff;
}

/* Contact */
.footer-col ul li{
    color:#d6d1dc;
    line-height:1.8;
}

.footer-col ul li i{
    color:#ff7b52;
    width:22px;
    margin-right:10px;
}

/* Social */
.footer-social{
    display:flex;
    gap:16px;
}

.footer-social a{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#34254a;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.footer-social a:hover{
    background:#b52b1c;
}

.footer-form{
    width:100%;
}

.form-row{
    display:flex;
    gap:15px;
    margin-bottom:18px;
}

.form-row input{
    width:50%;
}

.footer-form input,
.footer-form textarea{
    width:100%;
    padding:15px 18px;
    border:none;
    border-radius:8px;
    background:#fff;
    outline:none;
    font-size:15px;
    margin-bottom:18px;
    box-sizing:border-box;
}

.footer-form textarea{
    resize:none;
    height:110px;
}

.submit-btn{
    background:#2f8cff;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

.submit-btn:hover{
    background:#1f73e6;
}

/* Bottom */
.footer-bottom{
    margin-top:70px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:25px 0;
}

.footer-bottom p{
    margin:0;
    color:#ddd;
}