
/* CONTACT PAGE WRAPPER */
.contact1-page{
width:100%;
overflow:hidden;
}

.contact1-page *{
box-sizing:border-box;
}

/* HEADER */
.contact1-header{
background:#fbe7ff;
text-align:center;
padding:30px 20px;
}

.contact1-header h1{
font-size:38px;
margin:0;
}

.contact1-header p{
margin-top:8px;
font-size:15px;
color:#444;
}

/* CONTAINER */
.contact1-container{
width:100%;
max-width:1200px;
margin:40px auto;
padding:20px;
}

/* CARD GRID */
.card1-wrapper{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

/* CARD */
.contact1-card1{
background:#fff;
border-radius:15px;
padding:25px;
box-shadow:0 8px 25px rgba(0,0,0,0.1);
text-align:center;
position:relative;
transition:0.3s;
}

.contact1-card1::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:#a02e98;
}

.contact1-card1:hover{
transform:translateY(-8px);
}

/* PROFILE IMAGE */
.profile-pic{
width:120px;
height:120px;
border-radius:50%;
overflow:hidden;
margin:15px auto;
}

.profile-pic img{
width:100%;
height:100%;
object-fit:cover;
}

/* TEXT */
.contact1-card1 h3{
color:#a02e98;
margin-bottom:10px;
}

.contact1-card1 p{
font-size:14px;
margin:6px 0;
color:#333;
}

/* SOCIAL ICONS */
.card1-socials{
display:flex;
justify-content:center;
gap:15px;
margin-top:10px;
}

.card1-socials a{
color:#000;
font-size:16px;
transition:0.3s;
}

.card1-socials a:hover{
color:#a02e98;
transform:scale(1.2);
}

/* FORM */
.contact1-form{
background:#fff;
margin-top:40px;
padding:30px;
border-radius:15px;
box-shadow:0 8px 25px rgba(0,0,0,0.1);
}

.contact1-form h2{
text-align:center;
color:#a02e98;
margin-bottom:20px;
}

.form-group{
margin-bottom:15px;
}

input,
textarea{
width:100%;
padding:12px;
border-radius:8px;
border:1px solid #ccc;
font-family:'Poppins',sans-serif;
}

textarea{
resize:none;
}

/* BUTTON */
button{
background:#2a5298;
color:#fff;
border:none;
padding:12px 30px;
border-radius:25px;
cursor:pointer;
display:block;
margin:auto;
font-size:15px;
}

button:hover{
background:#a02e98;
}

/* MAP */
.map{
margin-top:40px;
border-radius:15px;
overflow:hidden;
}

/* FOOTER LOGO ROW FIX */
.footer-logo-row{
display:flex;
justify-content:center;
align-items:center;
gap:60px;
width:100%;
margin-top:60px;
margin-bottom:-50px;
position:relative;
z-index:10;
flex-wrap:wrap;
}

/* LOGO CIRCLE */
.logo-circle-item{
width:120px;
height:120px;
background:#ffffff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
border:4px solid #fff;
transition:all 0.4s ease-in-out;
flex-shrink:0;
cursor:pointer;
}

.logo-circle-item img{
width:70%;
height:auto;
object-fit:contain;
filter:grayscale(100%);
opacity:0.7;
transition:all 0.4s ease;
}

.logo-circle-item:hover{
transform:translateY(-10px) scale(1.1);
box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

.logo-circle-item:hover img{
filter:grayscale(0%);
opacity:1;
}

/* MOBILE RESPONSIVE */

@media(max-width:991px){

.footer-logo-row{
gap:25px;
margin-top:50px;
margin-bottom:-40px;
}

.logo-circle-item{
width:90px;
height:90px;
}

}

@media(max-width:768px){

.contact1-header h1{
font-size:26px;
}

.card1-wrapper{
grid-template-columns:1fr;
}

.profile-pic{
width:90px;
height:90px;
}

.contact1-container{
padding:15px;
}

}

@media(max-width:480px){

.footer-logo-row{
gap:15px;
padding:0 10px;
}

.logo-circle-item{
width:75px;
height:75px;
}

}