/* @import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap"); */

:root {
  --primary-color: #ffd700;
  --danger-color: #d22b2b;
  --secondary-color: #1b3764;
  --text-color: #333;
  --text-white: #fff;
  --light-bg: #f5f5f5;
  --light-gray: #4a4a4a;
}

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

body {
  font-family: "Lexend", serif;
  font-optical-sizing: auto;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
}

/* Header */
header {
  background-color: var(--secondary-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* position: fixed; */
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  width: 300px;
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 68%;
}

.slider img {
  width: 100%;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social_link a {
  color: var(--text-white);
  text-decoration: none;
  margin-right: 10px;
  font-size: 20px;
  transition: 0.2s all ease-in-out;
}

.social_link a:hover {
  color: var(--primary-color);
}

.social_link {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.footer-section .phone {
  font-size: 16px;
  display: flex;
}

.footer-section .phone i,
.footer-section .address i {
  margin-right: 10px;
  font-size: 20px;
}

.footer-section .address {
  font-size: 14px;
}

.first_footer_sec img {
  width: 60%;
}

.first_footer_sec p {
  font-size: 14px;
  text-align: justify;
}

.text-danger {
  color: #d22b2b;
}

.company_name {
  color: var(--primary-color);
}

.contact_sec {
  background-color: var(--primary-color);
}

.contact_sec .heading_box {
  padding: 60px 0px;
}

.contact_sec .sub_heading {
  font-size: 50px;
  font-weight: 400;
}

.contact_sec .heading {
  font-size: 50px;
  font-weight: 700;
}

.count .sub_text {
  display: flex;
  justify-content: center;
  align-items: center;
}

.count .bold_text {
  display: flex;
  font-size: 59px;
  font-weight: 700;
  margin: 0px;
  align-items: center;
  justify-content: center;
}

.text-box hr {
  border: none;
  height: 3px;
  width: 300px;
  margin-top: 10px;
  margin-bottom: 20px;
  background-color: var(--primary-color);
}

.text-box .heading {
  font-size: 30px;
  font-weight: 700;
}

.text-box .sub_text {
  font-size: 14px;
  width: 414px;
}

.text-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: baseline;
  justify-content: center;
  width: 77%;
}

.passionate_section {
  background-color: var(--text-white);
}

.passionate_section img {
  width: 100%;
}

.subject_card p {
  color: var(--light-gray);
  text-align: justify;
  font-size: 14px;
}

.subject_card hr {
  border: none;
  height: 3px;
  width: 50px;
  background-color: var(--danger-color);
}

.subject_card img {
  width: 70px;
}

.subject_card {
  padding: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
  background-color: var(--text-white);
  border-radius: 10px;
}

.notification_area li {
  font-size: 14px;
}

.notification_area {
  padding-left: 30px;
  padding-right: 10px;
  background-color: var(--text-white);

  overflow: hidden;
  overflow-y: scroll;
  height: 210px;

  &::-webkit-scrollbar {
    width: 10px;
  }

  &::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  &::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
  }

  &::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
  }
}

.notification_box {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  border-radius: 10px;
  min-height: 259px;
  max-height: 300px;
  overflow: hidden;
}

.notification_header {
  text-align: center;
  background: var(--secondary-color);
  color: var(--text-white);
}

.bg-yellow {
  background-color: var(--primary-color);
}

.top_container-fluid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top_container {
  padding: 10px 0px;
  display: flex;
  width: 80%;
  justify-content: space-between;
}

.top_container div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top_container div p {
  font-weight: 600;
}

.top_container div i {
  font-size: 20px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  width: 410px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-white);
  font-weight: 500;
}

/* Services Section */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 5%;
  background-color: var(--light-bg);
}

.feature-card {
  text-align: center;
  padding: 2rem;
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 4rem 5%;
  background-color: white;
  text-align: center;
}

.stat-item h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
  background-color: var(--primary-color);
  padding: 4rem 5%;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-content h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.contact-info {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  display: inline-block;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 4rem 5% 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  display: flex;
  justify-content: center;
}

.footer-section h4 {
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.important_link a {
  color: var(--primary-color);
  text-decoration: none;
  line-height: 2;
  transition: 0.2s all ease-in-out;
}

.important_link a:hover {
  text-decoration: underline;
  margin-left: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid rgb(255 230 0);
}

/* ============================= About us ============================== */

.about_us {
  justify-content: center;
  display: flex;
  align-items: center;
}

.heading_box hr {
  border: none;
  height: 3px;
  width: 100px;
  margin-bottom: 10px;
  background-color: var(--primary-color);
}

.about_us .heading_box .sub_text {
  font-size: 14px;
}

.about_us .heading_box .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  font-size: 40px;
  font-weight: 700;
  color: var(--secondary-color);
}

.about_img img {
  width: 80%;
  text-align: center;
}

.desktop-img{
  width: 100%;
  display: inline-block;
}

.mobile-img{
  display: none;
}


.about_img {
  display: flex;
  align-items: center;
  justify-content: center;
}


.why_choose_us .heading{
font-size: 40px;
font-weight: 700;
color: var(--secondary-color);
}

/* ======== contact us =================== */

.contact_us .big_heading{
  font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: var(--secondary-color);
}

.contact_us .sub_heading{
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 20px;
}


.contact_card{
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  padding: 49px;
  border-radius: 10px;
  background-color: var(--text-white);
}

.contact_card .icon{
  font-size: 25px;
  background-color: var(--primary-color);
  border-radius: 13px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}


.contact_card .heading{
  font-size: 25px;
  font-weight: 600;
  color: var(--secondary-color);
}


.contact_card .message{
  font-size: 14px;
  font-weight: 400;
} 


.contact_card .hero_text{
  font-size: 20px;
  font-weight: 700;
}

.contact_card .hero_text a{
  text-decoration: none;
  color: var(--secondary-color);
}