   @import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600;700;900&family=Rajdhani:wght@400;500;600;700&display=swap');


@font-face { font-family: 'public'; src: url(fonts/public/publicsans-bold-webfont.woff) format("woff"), url(fonts/public/PublicSans-Regular.otf) format("truetype"); font-weight: 800; } 
:root {
  --blue: #1a3a8f;
  --blue-light: #2556c8;
  --blue-pale: #e8eeff;
  --magenta: #c0176f;
  --magenta-light: #e91e8c;
  --orange: #f47920;
  --orange-light: #ff9a3c;
  --white: #ffffff;
  --off-white: #f5f7ff;
  --light-gray: #eef1f8;
  --mid-gray: #c8d0e7;
  --text-dark: #1a1f36;
  --text-mid: #3d4468;
  --text-light: #6b748e;
  --shadow: 0 8px 32px rgba(26,58,143,0.12);
  --shadow-hover: 0 16px 48px rgba(26,58,143,0.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

.section { padding: 65px 0; }
.section-alt { background: var(--off-white); }

.section-label {
  font-family: 'public';
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
	color: #ff5c00;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  background: linear-gradient(90deg, #0037c8, #f5007f);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.section-title span {
  background: linear-gradient(90deg, var(--blue), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--magenta), var(--orange));
  border-radius: 2px;
  margin: 16px 0 24px;
}

/* ─── CONTACT FORM ─── */
.contact-form-wrap {
  background: white;
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--blue), var(--magenta), var(--orange)) 1;
}
.form-control-custom {
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: all 0.3s;
  width: 100%;
  margin-bottom: 20px;
}
.form-control-custom:focus {
  outline: none;
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(26,58,143,0.08);
}
.btn-primary-custom {
  background: linear-gradient(90deg, var(--blue), var(--magenta));
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(26,58,143,0.3);
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(26,58,143,0.4);
}

/* ─── CONTACT INFO CARD ─── */
.contact-info-card {
 background: linear-gradient(135deg, #0d36a1, #c00064);
  border-radius: 20px;
  padding: 40px 36px;
  color: white;
  height: 100%;
}
.contact-info-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  margin-bottom: 8px;
}
.contact-info-card p { color: rgba(255,255,255,0.75); margin-bottom: 32px; font-size: 0.95rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgb(9 30 150 / 60%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-family: 'Exo 2', sans-serif; font-weight: 700; margin-bottom: 2px;color: #ffd100; }
.contact-detail span { color: rgb(255 255 255);font-size: 16px;text-align: justify;} }



.service-card {
  background: white;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--magenta), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.icon-blue { background: #e9efff; color: #009f01; }
.icon-magenta { background: #fce8f3; color: var(--magenta); }
.icon-orange { background: #fff3e8; color: var(--orange); }

.service-card h5 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.service-card p {
    color: #444444;
    font-size: 15px;
    line-height: 25px;
}
	 
.map-placeholder {
      width: 100%; height: 360px;
      border-radius: 0px;
      overflow: hidden;
      background: var(--light-gray);
      border: 2px solid var(--mid-gray);
      position: relative;
    }
    .map-placeholder iframe { width: 100%; height: 100%; border: none; }

    .faq-item {
      border: 1px solid var(--light-gray);
      border-radius: 12px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: box-shadow 0.3s;
    }
    .faq-item:hover { box-shadow: var(--shadow); }
    .faq-q {
      background: var(--off-white);
      padding: 18px 24px;
      cursor: pointer;
      font-family: 'Exo 2', sans-serif;
      font-weight: 600;
      color: var(--text-dark);
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.97rem;
      transition: background 0.3s;
    }
    .faq-q.open { background: var(--blue-pale); color: var(--blue); }
    .faq-q .faq-icon { transition: transform 0.3s; font-size: 14px; }
    .faq-q.open .faq-icon { transform: rotate(180deg); }
    .faq-a {
      display: none;
      padding: 16px 24px 20px;
      color: #0a0a0a;
      font-size: 0.92rem;
      line-height: 1.7;
      background: white;
    }

    .success-msg {
      display: none;
      background: linear-gradient(135deg, var(--blue-pale), #d0f0d0);
      border: 2px solid #4caf50;
      border-radius: 12px;
      padding: 24px;
      text-align: center;
      margin-top: 20px;
    }
    .success-msg i { font-size: 2.5rem; color: #4caf50; margin-bottom: 10px; }
    .success-msg h5 { font-family: 'Exo 2', sans-serif; font-weight: 700; color: var(--text-dark); }
		


/* Pulse Animation */
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,0.6);}
  70%{box-shadow:0 0 0 15px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}



@media (max-width: 575px) {
    .bgcontact{
       margin-top: 80px;
    }		
		
		.contact-form-wrap{
	  	padding: 35px;
		}
}		

		