@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&display=swap');
body,html{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Navbar styling */
.navbar {
  background-color: #f8f8f8;
  margin-bottom: 20px;
}

/* Hero section styling */
.hero-section {
  	height: 650px;
    width: 90%;
    margin-left: 5%;
}
.image-container
{
	  background: linear-gradient(rgba(0, 0, 90, 0.7), rgba(0, 0, 90, 0.7)), url('images/contact-image.svg');
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    width: 100%;
    border-radius: 30px;
}
.content 
{
	max-width: 600px;
	margin-top: 50px;
}

.hero-section h4,
.hero-section h1,
.hero-section p {
  margin: 0;
}

.hero-section h4 {
  font-size: 1rem;
  font-weight: lighter;
}

.hero-section h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-section p {
  font-size: 1rem;
}

@media (max-width: 768px) {
    .hero-section {
        height: 301px;
        width: 90%;
        padding: 0 10px;
    }

    .hero-section h4 {
        font-size: 0.775rem;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .hero-section p {
        font-size: 0.475rem;
    }
}

/*contact form*/

.contact-form {
  background-color: #ffffff;
  border-radius: 15px 0 0 15px;
}

.contact-form h1 {
  font-size: 2.5rem;
}

.contact-form .text-primary {
  color: #6f42c1; 
}

.contact-info p {
  font-size: 1rem;
}

.contact-info a {
  color: #6f42c1;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .contact-form {
    border-radius: 15px 15px 0 0;
  }
  iframe{
    height: 200px;
    width: 100%;
  }
}


/*footer starts*/

.footer {
  background: #f8f8f8;
}

.footer h5 {
  color: #6f42c1; 
}

.footer a {
  color: #000;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer address {
  font-style: normal;
}

.footer .bi-arrow-right {
  font-size: 1rem;
  color: #6f42c1; 
}

.footer p {
  margin: 0;
}

.footer .container {
  max-width: 1200px;
}

@media (max-width: 768px) {
  .footer .col-md-3,
  .footer .col-md-2 {
   margin-bottom: 1.5rem;
  }
}