@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Passions+Conflict&display=swap");

@font-face {
  font-family: "Poppins-Regular";
  src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
  font-family: "Poppins-Bold";
  src: url(../fonts/Poppins-Bold.ttf);
}

@font-face {
  font-family: "Poppins-SemiBold";
  src: url(../fonts/Poppins-SemiBold.ttf);
}

@font-face {
  font-family: "Poppins-Black";
  src: url(../fonts/Poppins-Black.ttf);
}

@font-face {
  font-family: "Poppins-Medium";
  src: url(../fonts/Poppins-Medium.ttf);
}

@font-face {
  font-family: "Poppins-Italic";
  src: url(../fonts/Poppins-Italic.ttf);
}

@font-face {
  font-family: "Adobe Handwriting-Ernie";
  src: url(../fonts/AdobeHandwriting-Ernie.ttf);
}

html {
  scroll-behavior: smooth;
}

input:focus {
  outline: none;
  border: none;
}

.text-primary {
  color: #383e42;
}

:root {
  --tab-color: #f6f7fb;
  --color-primary-dark: #e6b410;
  --color-interaction: #ffc709;
  --color-light-1: #f3f6f6;
  --color-dark: #2f4037;
  --color-dark-1: #2a332e;
  --text-18: 18px;
  --text-16: 16px;
  --text-color: #4285f4;
}

/* Styles for Fade-In */
section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 1s ease;
  will-change: opacity, transform;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

.mx-7 {
  margin-left: 6rem;
  margin-right: 6rem;
}

@media (max-width: 992px) {
  .mx-7 {
    margin: 0 !important;
  }
}

@media (max-width: 1200px) {
  .mx-7 {
    margin: 0 !important;
  }
}

/* ===========================================contactUs Hero section ================================== */

.contactUs-section {
  padding: 40px 0 95px;
}

/* Form Styling */
.form-card {
  padding: 20px;
  background-color: #fff !important;
  box-shadow: 0px 4px 24px #0f3e6c29;
  border: 1px solid #d5dbe5 !important;
  border-radius: 20px !important;
}

/* Headings */
.card-body h2 {
  font-size: 28px;
  font-family: "Poppins-SemiBold";
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: -0.42px;
  color: #383e42;
}
.card-body h2 span {
  color: #007bff; 
  position: relative;
  display: inline-block;
}

.ask-underline-svg {
  position: absolute;
  bottom: -3px;
  left: -2px;
  width: 100%;
  height: 8px;
}

.card-body p {
  font-size: 14px;
  text-align: left;
  letter-spacing: -0.16px;
  /* color: #6c757d; */
  color: rgba(108, 117, 125, 0.68);
  font-family: "Poppins-Regular";
  margin-bottom: 5px;
}

/* Form Inputs */
.form-control {
  border-radius: 8px;
}

/* Input Group Icons */
.input-group-text {
  /* background-color: #f8f9fa;
  border: none; */
  border-right: none !important;
  background: transparent !important;
  padding-right: 0 !important;
}

.input-group input {
  border-left: none !important;
}

.input-group-text img {
  color: #1f1a17;
  width: 22px;
  height: 27px;
}

.input-group .contact-placeholder::placeholder {
  letter-spacing: -0.15px;
  color: #1f1a17;
  opacity: 0.4;
  font-size: 15px;
  font-family: "Poppins-Regular";
}

/* Message Box */
.message-box {
  height: 100px;
  resize: none;
}

.captcha-placeholder.message-box::placeholder {
  letter-spacing: -0.15px;
  color: #1f1a17;
  opacity: 0.4;
  font-size: 15px;
  font-family: "Poppins-Regular";
  padding: 0;
}

/* Captcha Styling */
.captcha-text {
  font-size: 18px;
  font-weight: bold;
  margin-left: 10px;
  background-color: #f8f9fa;
  padding: 8px 12px;
  border-radius: 6px;
}
.refresh-captcha {
  border: none;
  background: transparent;
  font-size: 18px;
  margin-left: 10px;
  cursor: pointer;
  color: #6c757d;
}

/* Submit Button */
.submit-btn button {
  border-radius: 4px;
  padding: 8px 36px;
  color: #ffffff;
  font-size: 17px;
  font-family: "Poppins-SemiBold";
  background: #4285f4;
  cursor: pointer;
  transition: 0.3s;
}
.submit-btn button:hover {
  background: #0056b3;
  color: #ffffff;
}

/* Illustration */
.contactus-lottie-img {
  max-width: 100%;
  max-height: 100%;
  width: 491px;
  height: 446px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .contactUs-section {
    padding: 30px 0 75px;
  }

  .card-body h2 {
    font-size: 32px;
  }

  .card-body p {
    font-size: 15px;
  }

  .form-card {
    max-width: 100%;
  }

  .contactus-submit-btn button {
    font-size: 17px;
    padding: 10px 30px;
  }

  .contactus-animation {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contactUs-section {
    padding: 20px 0 45px;
  }

  .form-card {
    padding: 20px;
    max-width: 100%;
  }

  .card-body h2 {
    font-size: 28px;
  }

  .card-body p {
    font-size: 14px;
  }

  .contactus-submit-btn button {
    font-size: 16px;
    padding: 10px 25px;
  }

  .illustration img {
    max-width: 80%;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .contactUs-section {
    padding: 20px 0 0;
  }
  .form-card {
    padding: 15px;
    max-width: 100%;
  }

  .card-body h2 {
    font-size: 24px;
  }

  .card-body p {
    font-size: 13px;
  }

  .form-control {
    font-size: 14px;
  }

  .contactus-submit-btn button {
    font-size: 15px;
    padding: 10px 20px;
  }

  .illustration img {
    max-width: 80%;
  }
}

/* ----------contact us -infoo  section------------- */

/* Section Styling */
.contact-info-section {
  padding: 110px 0 0;
  background: linear-gradient(
      0deg,
      rgba(227, 237, 254, 0) 0%,
      rgba(227, 237, 254, 0.3) 100%
    )
    no-repeat padding-box;
}

/* Left Column */

.contact-details {
  max-width: 450px;
  /* margin-right: 50px;  */
}

@media (max-width: 992px) {
  .contact-details {
    max-width: 100%;
  }
}

.contact-heading {
  font-size: 40px;
  font-family: "Poppins-SemiBold";
  letter-spacing: -0.42px;
  color: #000000;
  position: relative;
  display: inline-block;
}

.contact-underline-svg {
  position: absolute;
  bottom: -1px;
  left: -32px;
  width: 100%;
  height: 18px;
}

.highlight {
  color: #4384f4;
}

.contact-details p {
  font-family: "Poppins-SemiBold";
  font-size: 20px;
  margin: 17px 0 22px;
}

.phone-link {
  color: #4384f4;
  text-decoration: none;
}

.contact-box {
  padding: 20px 0;
  border-top: 1px solid #cccfd2;
}

.contact-box p {
  letter-spacing: -0.2px;
  opacity: 0.5;
  color: #6c757d;
  font-family: "Poppins-Regular";
  font-size: 18px;
  padding-top: 6px;
  margin: 0;
}

.contact-box h5 {
  font-family: "Poppins-SemiBold";
  font-size: 19px;
  color: #1f1a17;
  margin-bottom: 12px;
}

.holiday-link {
  color: #4384f4;
}

@media (max-width: 992px) {
  .contact-underline-svg {
    bottom: -1px;
    left: -29px;
    width: 100%;
    height: 16px;
  }

  .contact-info-section {
    padding: 80px 0 0;
  }

  .contact-heading {
    font-size: 36px;
  }

  .contact-details p {
    font-size: 18px;
  }

  .contact-box p {
    font-size: 17px;
  }

  .contact-box h5 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .contact-underline-svg {
    bottom: -4px;
    left: -25px;
    width: 100%;
    height: 15px;
  }

  .contact-info-section {
    padding: 60px 0 0;
  }

  .contact-heading {
    font-size: 32px;
  }

  .contact-details p {
    font-size: 17px;
  }

  .contact-box p {
    font-size: 16px;
  }

  .contact-box h5 {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .contact-underline-svg {
    bottom: -4px;
    left: -22px;
    width: 100%;
    height: 13px;
  }

  .contact-info-section {
    padding: 40px 0 0;
  }

  .contact-heading {
    font-size: 28px;
  }

  .contact-details {
    padding: 0 8px 0;
  }

  .contact-details p {
    font-size: 16px;
  }

  .contact-box p {
    font-size: 15px;
  }

  .contact-box h5 {
    font-size: 16px;
  }
}

/* ------Right Column: Contact Cards----------------- */
.contact-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: all 0.3s ease;
  /* width: 100%;  */
  /* max-width: 320px;  */
  word-wrap: break-word;
}

.contact-card:hover {
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.contact-card .icon {
  width: 42px;
  height: 44px;
  margin-bottom: 22px;
}

.contact-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: -0.48px;
  color: #383e42;
  font-family: "Poppins-SemiBold";
}

.phone-link {
  color: #4384f4;
  font-size: 18px;
  text-decoration: none;
  margin-bottom: 5px;
  font-family: "Poppins-Medium";
}

.contact-card p {
  font-size: 16px;
  color: #383e42;
  margin-bottom: 10px;
  font-family: "Poppins-Regular";
  flex-grow: 1;
}

.email-link {
  color: #4384f4;
  text-decoration: none;
  font-size: 16px;
  font-family: "Poppins-Medium";
}

@media (max-width: 992px) {
  .contact-card {
    /* padding: 15px; */
    width: fit-content;
  }
  .contact-card h4 {
    font-size: 16px;
  }
  .contact-card p {
    font-size: 13px;
  }
  .phone-link,
  .email-link {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .contact-card {
    margin: auto;
  }
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 992px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .contact-cards-grid {
    padding: 40px 0;
  }
}

@media (min-width: 576px) and (max-width: 992px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    width: 100%;
  }
}

/* -------- visit us section ---------- */
.visit-us-section {
  background: transparent linear-gradient(205deg, #ffffff 0%, #ffffff00 100%) 0%
    0% no-repeat padding-box;
  padding: 80px 0;
}

.visit-title h3 {
  font-size: 36px;
  font-weight: bold;
  color: #4285f4;
  margin-bottom: 20px;
  font-family: "Poppins-SemiBold";
}

.visit-title h3 span {
  color: #383e42;
}

.ofiice-visit-block h4{
  font-family: "Poppins-Medium";
  color: #4285f4;
  font-size: 18px;
  margin: 0;
}

.ofiice-visit-block p{
  font-size: 16px;
  font-family: "Poppins-Regular";
  color: #383e42;
  max-width: 455px;
  margin-bottom: 0 !important;
}

.visit-block p {
  font-size: 16px;
  font-family: "Poppins-Regular";
  color: #707070 ;
  max-width: 455px;
  margin-bottom: 0 !important;
}


.visit-block p a {
  text-decoration: none;
  color: #4285F4;
  font-family: "Poppins-Regular";
  cursor:text;
}

.visit-block .blue-text {
  color: #4285F4;
}

.border-bottom {
  width: 100%;
  max-width: 500px;
  height: 1px;
  background-color: #cccfd2;
  margin: 10px 0 15px;
}


.visit-map-container {
  width: 100%;
  height: 425px;
  border-radius: 8px;
  overflow: hidden;
}

.visit-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .visit-us-section {
    padding: 60px 0;
  }

  .visit-content p {
    max-width: 100%;
  }

  .visit-map-container {
    height: 300px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .visit-title h3 {
    font-size: 28px;
  }

  .visit-content p {
    font-size: 14px;
  }

  .visit-map-container {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .visit-content {
    padding: 0 8px 0;
  }
  .visit-us-section {
    padding: 40px 0;
  }

  .visit-title h3 {
    font-size: 24px;
    padding: 0 8px 0;
  }

  .visit-map-container {
    height: 250px;
    padding: 0 8px 0;
  }
}

/* ------contactUs- common escalation matrix table------ */

.common-escalation-section {
  background: transparent linear-gradient(205deg, #ffffff 0%, #ffffff00 100%) 0%
    0% no-repeat padding-box;
  padding-bottom: 100px;
}
.comescheading h1 {
  letter-spacing: -0.42px;
  font-family: "Poppins-SemiBold";
  font-size: 42px;
  color: #4384f4;
  margin-bottom: 40px;
}
.comescheading h1 span {
  color: #383e42;
}

.escalation-table {
  width: 100%;
  background-color: #f5f8fc !important;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 18px 18px 0px 0px !important;
  border: 1px solid #a3a3a359 !important;
}

/* Table Header */
.escalation-thead {
  border: 1px solid #a3a3a359 !important;
  border-radius: 18px 18px 0px 0px !important;
  vertical-align: baseline !important;
  background-color: #f5f8fc !important;
}

.escalation-thead tr {
  border-top: 1px solid #ddd;
  letter-spacing: -0.22px;
  color: #1f1a17;
  font-family: "Poppins-Regular";
  font-size: 16px;
  border-left: none;
  border-right: none;
  background-color: #f5f8fc !important;
}

.escalation-tbody {
  border-bottom: 1px solid #ddd;
  border-radius: 18px 18px 0px 0px !important;
  border: 1px solid #a3a3a359 !important;
}

.escalation-tbody tr th td {
  letter-spacing: -0.22px;
  color: #1f1a17;
  font-family: "Poppins-Regular" !important;
  font-size: 18px;
}

.escalation-table th,
.escalation-table td {
  padding: 12px;
  text-align: left;
  font-family: "Poppins-Regular" ;
}

.table > :not(caption) > * > * {
  background-color: #f5f8fc !important;
}

.escalation-tbody tr:last-child td:first-child {
  border-bottom-left-radius: 18px;
}

.escalation-tbody tr:last-child td:last-child {
  border-bottom-right-radius: 18px;
}
/* Responsive Design */
@media (max-width: 992px) {
  .comescheading h1 {
    font-size: 36px;
  }

  .escalation-thead th {
    font-size: 16px;
    font-family: "Poppins-SemiBold";
  }

  .escalation-tbody td {
    font-size: 15px;
    padding: 10px;
    font-family: "Poppins-Regular";
  }
}

@media (max-width: 768px) {
  .comescheading h1 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .escalation-table {
    font-size: 14px;
  }

  .escalation-thead th {
    font-size: 14px;
    padding: 10px;
    font-family: "Poppins-SemiBold";
  }

  .escalation-tbody td {
    font-size: 13px;
    padding: 8px;
    font-family: "Poppins-Regular";
  }
}

@media (max-width: 576px) {
  .comescheading h1 {
    font-size: 26px;
    padding: 0 8px 0;
  }

  .table-responsive {
    overflow-x: auto;
  }

  .escalation-table {
    padding: 0 8px 0;
  }

  .escalation-thead th {
    font-size: 12px;
    padding: 8px;
    font-family: "Poppins-SemiBold";
  }

  .escalation-tbody td {
    font-size: 12px;
    padding: 6px;
    font-family: "Poppins-Regular";
  }
}

/* ------contact us - footer----------- */

.contactus-footer .footer-nav-links {
  padding-top: 100px;
}

@media (max-width: 992px) {
  .contactus-footer .footer-nav-links {
    padding-top: 70px;
  }
}

@media (max-width: 768px) {
  .contactus-footer .footer-nav-links {
    padding-top: 40px;
  }
}

@media (max-width: 576px) {
  .contactus-footer .footer-nav-links {
    padding-top: 20px;
  }
}

