@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-transform: capitalize;
    text-decoration: none;
    outline: none;
    border: none;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}
section {
    padding: 3rem 9%;
}

#icon {
    width: 30px;
    cursor: pointer;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 3rem;
    background: #e9edfb;
    color: #224bcf;
    cursor: pointer;
    border-radius: .5rem;
    font-size: 1.7rem;
}

.btn:hover {
    color: #fff;
    background: #224bcf;
}
body, ul {
    margin: 0;
    padding: 0;
}

nav {
    background-color: white;
    padding: 16px 32px;
    display: flex;
    align-items: center;
}

.logo {
    margin-right: auto;
}

.logo img {
    width: 90px;
    height: auto;
}

ul {
    list-style-type: none;
    display: flex;
}

li {
    margin-right: 20px;
}

a {
    font-size: 1.8rem;
    text-decoration: none;
    color: black;
    transition: color 0.3s ease;
    font-family: Arial, sans-serif;
}

a:hover {
    color: blue;
}

.home {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
}
.image {
    border: 3px solid #224bcf;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #224bcf, red);
    z-index: -1;
    border-radius: 15px;
}

.image img {
    width: 100%;
    height: auto;
    display: block;
}


.home .image {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
    flex: 1 1 42rem;
}

.home .image img {
    width: 100%;
}

.home .content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
    flex: 1 1 42rem;
}

.home .content h3 {
  font-family: Arial, sans-serif;
  font-size: 24px;
  color: #302851;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  padding: 10px 0;
  margin-bottom: 20px;
  border-top: 2px solid #224bcf;
  border-bottom: 2px solid #224bcf;
}

.home .content p {
    font-size: 15px;
   text-align: justify;
    color: #666;
    padding: 1rem 0;
    line-height: 2.5;
}
#heading {
  font-family: Arial, sans-serif;
  font-size: 24px;
  color: #302851;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  padding: 10px 0;
  margin-bottom: 20px;
  border-top: 2px solid #224bcf;
  border-bottom: 2px solid #007bff;
}
.category {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 1.5rem;
}

.category .box {
    border-radius: 1rem;
    background: #f5f5f5;
    padding: 4rem 3rem;
    text-align: center;
}

.category .box img {
    height: 7rem;
    margin-bottom: 2rem;
}

.category .box h3 {
    font-size: 1.7rem;
    color: #302851;
}
.footer .credit {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    padding-top: 2.5rem;
    font-size: 18px;
    color: #666;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.footer .credit span {
    color: blue;
}