:root {
  --brand: #01b5fb;
  --sub: #6ac754;
  --body: #516171;
  --border: rgba(0,0,0,0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);

.contact-section{
  padding:80px 0;
  background:#f8f9fa;
}

.contact-card{
  background:white;
  padding:40px 25px;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.3s;
}

.contact-card:hover{
  transform:translateY(-8px);
}

.contact-icon{
  font-size:40px;
  color:var(--brand);
  margin-bottom:15px;
}





.ms-contact-hero{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    color:#fff;
}

/* Image Background */
.hero-bg{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    object-fit:cover;
    z-index:0;
}

/* Dark overlay */
.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:rgba(0,0,0,0.55);
    z-index:1;
}

/* Content */
.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    margin:auto;
}

  
  /* HERO SECTION */
.ms-contact-hero{
    background: linear-gradient(135deg,#0b2775,#1e40af,#3b82f6);
    color:#fff;
    padding:90px 0;
    text-align:center;
}

.ms-contact-hero h1{
    font-size:46px;
    font-weight:700;
    margin-bottom:90px;
    letter-spacing:1px;
}

.ms-contact-hero p{
    font-size:18px;
    opacity:0.9;
}

.hero-tag{
    display:inline-block;
    background:rgba(255,255,255,0.15);
    padding:6px 18px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:15px;
    letter-spacing:1px;
    backdrop-filter: blur(5px);
}

/* CONTACT SECTION */
.contact-section{
    padding:70px 0;
    background:#f8fafc;
}

/* CONTACT BOX */
.ms-contact-box{
    background:#fff;
    border-radius:18px;
    padding:40px 25px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,0.07);
    transition:all 0.35s ease;
    position:relative;
    overflow:hidden;
    margin-top: 40px;
}

/* Hover effect */
.ms-contact-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* Top gradient border animation */
.ms-contact-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#0b2775,#3b82f6);
    transform:scaleX(0);
    transition:0.4s;
}

.ms-contact-box:hover::before{
    transform:scaleX(1);
}

/* ICON CIRCLE */
.icon-circle{
    width:72px;
    height:72px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#0b2775,#1d4ed8);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    transition:0.4s;
}

/* Icon animation */
.ms-contact-box:hover .icon-circle{
    transform:rotateY(180deg) scale(1.05);
}

.icon-circle i{
    color:#fff;
    font-size:26px;
}

/* TEXT */
.ms-contact-box h5{
    font-weight:600;
    margin-bottom:10px;
    font-size:20px;
    color:#111827;
}

.ms-contact-box p{
    font-size:15px;
    color:#6b7280;
    line-height:1.6;
}

/* BOTTOM LINE EFFECT */
.box-line{
    width:45px;
    height:3px;
    background:#1d4ed8;
    display:block;
    margin:18px auto 0;
    transition:all 0.35s;
    border-radius:5px;
}

.ms-contact-box:hover .box-line{
    width:85px;
}

/* Responsive */
@media (max-width:768px){

.ms-contact-hero h1{
    font-size:34px;
}

.ms-contact-box{
    padding:30px 20px;
}

}




.map-wrapper{
    border-radius:12px;
    overflow:hidden;
}

.map-margin{
    margin-top:20px;
}

.map-frame{
    border:0;
}
}
.faq-section {
    background: #ffffff;
}

.faq-title {
    font-size: 2rem;
    font-family: "Lato", sans-serif;
    text-align: center;
    color: var(--brand) !important;
    font-weight: 700;
    color: #000;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.accordion-button {
    font-weight: 600;
    font-size: 16px;
    padding: 15px 18px;
}

.accordion-button:not(.collapsed) {
    background-color: #f5f5f5;
    color: var(--brand);
    box-shadow: none;
}

.accordion-body {
    background: #fff;
    color: #555;
    padding: 15px 18px;
    font-size: 15px;
    line-height: 1.6;
}





