@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

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

.container {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

body {
  background-color: #fcfafa;
  color: #0118d8;

  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
}

.fonts {
  font-family: "Playfair Display", serif !important;
}
.foot-light {
  background-color: #cedafa;
}
.dark-blue {
  background-color: #0118d8;
}
.text-blue {
  color: #0118d8;
}

.footer,
.top-bar {
  background-color: #0118d8;
  color: #fff8f8;
}
.navbars {
  background-color: #c3c6cd !important;
}
.navbar a {
  color: #fff8f8;
}
.navbar a:hover {
  color: #1b56fd !important;
}
.section-alt {
  background-color: #e9dfc3;
}

.card {
  background-color: #f4eff9;
  border: 1px solid #e9dfc3;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 19px;
  /* padding: 20px 0px !important; */
}
.card-title {
  color: #0118d8;
}
.card button {
  background-color: #1854f8;
  color: #faf8ff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
}
.card button:hover {
  background-color: #0118d8;
}

h1,
h2 {
  color: #0118d8;
  font-size: 60px !important;
}
h3{
  color: #0118d8 !important;
  font-size: 40px;
}
p {
  color: #474858;
}
.text-muted {
  color: #e9dfc3;
}
.footer {
  /* background-color: #2a3bcd; */
  color: #fff8f8;
  a,
  h2,
  p {
    color: #fff8f8 !important;
  }
}

.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.cards {
  /* background-color: #5778d0; */
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  color: #faf8ff;
  border: none;
  /* padding: 8px 16px; */
  /* border-radius: 0; */
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  transition: all 0.6s ease;
  /* overflow: hidden; */
  a {
    background-color: #1854f8;
    width: 100%;
    border-radius: 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 10px 0px;
    color: #faf8ff;
  }
  a:hover {
    background-color: #0920e9;
    color: #faf8ff;
  }
}
.cards:hover {
  transform: translateY(-10px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.icon-box {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.icon-box:hover {
  transform: translateY(-5px);
}
.icon-box i {
  font-size: 40px;
  color: #0077b6;
  margin-bottom: 15px;
}





/* responsive  */


/* Mobile Responsive Fixes */
@media (max-width: 992px) {
  h1, h2 {
    font-size: 36px !important;
    text-align: center;
  }

  h3 {
    font-size: 26px !important;
    text-align: center;
  }

  p {
    font-size: 16px;
    text-align: justify;
  }

  .top-bar .row {
    flex-direction: column;
    text-align: center;
  }
  .top-bar .col-md-6 {
    justify-content: center !important;
    margin-bottom: 10px;
  }

  .navbar-nav {
    text-align: center;
    gap: 10px !important;
  }

  .footer .row {
    text-align: center;
  }
  .footer img {
    width: 200px !important;
    margin: 0 auto;
  }

  /* Form responsive */
  form {
    width: 100% !important;
  }

  /* Product cards */
  .cards {
    margin: 0 auto;
  }
  .cards img {
    width: 70% !important;
  }
}


/* Mobile pe top-bar hide */
@media (max-width: 992px) {
  .top-bar {
    display: none !important;
  }
}


/* Footer responsive padding */
@media (max-width: 992px) {
  .footer {
    padding-left: 20px !important;
    padding-right: 20px !important;
    text-align: center;   /* text center ho jaye mobile pe */
  }
  .footer .row {
    flex-direction: column;
    gap: 15px;
  }
}
