@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap');

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: capitalize;
  transition: all .2s linear;
  text-decoration: none;
}

html {
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
}

.header {
  background-color: #002e5f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  position: fixed;
}

.logo img {
  width: 60%;
  height: 36px;
  top: 0;
  left: 0;
}

.header .navbar ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.header .navbar ul li {
  margin: 0 1.5rem;
}

.header .navbar ul li a {
  font-size: 2rem;
  color: #ffffff;
}

.header .navbar ul li a:hover {
  color: #ffb056;
  text-decoration: none;
}

.header .logo i {
  padding: 0.5rem;
}

.heading {
  padding-top: 6rem;
  display: inline-block;
  font-size: 3.5rem;
  color: #002e5f;
  position: relative;
  letter-spacing: .2rem;
  margin: -2rem auto 2rem auto;
}

/* Mobile Specific Styles */
.header .fa-bars {
  color: #fff;
  cursor: pointer;
  font-size: 45px;
  display: none;
  margin-right: 15px;
  margin-top: 5px;
  margin-bottom: 5px;
}

/* About Section */
.about-section {
  text-align: center;
  padding: 50px 20px;
  margin-top: 80px;
}

.about-section h1 {
  font-size: 30px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
}

.about-section p {
  font-size: 20px;
  max-width: 1100px;
  margin: 0 auto;
  /* Center the paragraph */
  color: #555;
  line-height: 1.6;
  /* Maintain consistent spacing between lines */
  text-align: justify;
  /* Align text evenly on both sides */
}


/* stats Section */
.video-container {
  position: relative;
  overflow: hidden;
}

#video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  /* Ensure the video covers the width */
  min-height: 100%;
  /* Ensure the video covers the height */
  z-index: -1;
  /* Place the video behind the content */
  object-fit: cover;
  /* Maintain aspect ratio and cover the area */
}

.stats {
  position: relative;
  height: 300px;
  /* Full screen height */
  overflow: hidden;
  /* Hide overflowing video edges */
  font-family: 'Arial', sans-serif;
  color: white;
  /* Text color for visibility */
}

.companygrid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.annual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Individual Card Styling */
.thumb {
  border-radius: 10px;
  width: 240px;
  padding: 20px;
  text-align: center;
  margin-top: 55px;
}

/* Title Styling */
.thumb .title {
  font-size: 24px;
  font-weight: 600;
  color: #ff9100;
  margin-bottom: 10px;
  display: block;
}

/* Count Number */
.thumb .count {
  font-size: 32px;
  font-weight: 700;
  color: #0084ff;
  /* Corporate blue */
  margin-bottom: 10px;
}

/* Description */
.thumb .desc {
  font-size: 16px;
  color: #ff7d04;
  line-height: 1.5;
}



/* Profile Section */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.profile-section {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.profile-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.profile-image img {
  width: 230px;
  height: 250px;
  border-radius: 8px;
  border: 2px solid #00bfff;
  margin-right: 20px;
}

.profile-content {
  flex: 1;
}

.profile-name {
  font-size: 26px;
  color: #292929;
  font-weight: bold;
  margin-left: 12px;
}

.profile-description {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  gap: 10px;
  margin-top: 10px;
}


/* Footer styling */
.footer {
  background-color: #002e5f;
  color: #fff;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  text-align: center;
}

.footer h4 {
  font-size: 27px;
  color: #f8f8f8;
  margin-bottom: 12px;
  font-weight: bold;
}

.footer p {
  font-size: 17px;
  line-height: 1.5;
  margin: 0 15px;
  text-align: left;
}

.footer a {
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.3s;
}

.footer a:hover {
  color: #ffa705;
  text-decoration: none;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 8px 0;
  /* Space between links and sections */
  display: flex;
  /* Enables Flexbox for alignment */
  flex-direction: column;
  /* Aligns items in a single column */
  align-items: center;
  /* Centers items horizontally */
  gap: 0px;
  /* Adds uniform spacing between items */
  text-align: center;/
}

.footer-links ul li {
  padding: 6px 0;
  /* Adds spacing within list items */
  font-size: 16px;
  width: 100%;
  /* Ensures uniform width for all items */
  max-width: 200px;
  /* Optional: Restricts the width to make alignment consistent */
  text-align: center;

}

.footer-links ul li i {
  margin-right: 8px;
  font-size: 19px;
  /* Slightly larger icons */
  vertical-align: middle;
}

.footer-contact {
  font-size: 1.1rem;
}

.footer-contact ul {
  margin: 0 auto;
  list-style-type: none;
  padding-left: 0;
  text-align: center;
}

.footer-contact li {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-contact a {
  color: #ffffff;
  font-size: 19px;
  font-family: 'century';
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.3s;
  text-transform: none;
}

.footer-contact .fa-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact .fa-li {
  position: relative;
  left: 0;
  font-size: 16px;
  color: #ffffff;
  width: 25px;
  text-align: center;
  line-height: 1.5;
  margin-right: 6px;
}

.footer-contact li:hover {
  color: #ffa705;
  text-decoration: none;
}

.footer-contact .fa-li:hover {
  color: #ffa705;
  text-decoration: none;
}

.social-links {
  margin-top: 10px;
  margin-bottom: 5px;
}

.social-links a {
  font-size: 24px;
  margin-right: 15px;
  margin: 0 12px;
  color: #fff;
}

.social-links a:hover {
  color: #ffcc00;
}

.footer-bottom {
  background: #111;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  margin-bottom: -60px;
}

.footer-bottom p {
  margin: 0;
  color: #fffcfc;
}

.back-to-top {
  position: fixed;
  display: none;
  background-color: #00bfff;
  color: #ffffff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 30px;
  right: 10px;
  bottom: 20px;
  border-radius: 10%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
  z-index: 999;
}


.back-to-top i {
  color: #ffffff;
}

.back-to-top i:hover {
  color: black;
}


@media (min-width: 310px) and (max-width: 395px) {
  .navbar {
    display: flex;
    align-items: center;
    margin-top: 10px;
  }

  .header .logo img {
    width: 40%;
    height: 34px;
    top: 0;
    left: 0;
    background-size: cover;
  }

  .navbar ul {
    display: flex;
    height: 100%;
    width: 100%;
    flex-flow: column;
    flex-direction: column;
  }

  .header .fa-bars {
    font-size: 38px;
    display: block;
    color: white;
    margin-right: 0px;
  }

  .header .fa-bars:hover {
    color: #00bfff;
  }

  .header .navbar {
    position: fixed;
    top: -120%;
    left: 0;
    height: auto;
    width: 100%;
    background-color: white;
    z-index: 1000;
    border-top: .1rem solid rgba(0, 0, 0, .3);
  }

  .header .navbar ul {
    height: 100%;
    width: 100%;
    gap: 0px;
    flex-flow: column;
  }

  .header .navbar ul li {
    margin: 0.6rem 0;
  }

  .header .navbar ul li a {
    color: grey;
    font-size: 1.4rem;
  }

  .header .fa-times {
    transform: rotate(90deg);
  }

  .header .nav-toggle {
    top: 5.8rem;
  }

  .about-section p {
    font-size: 18px;
    /* Slightly reduce font size for better fit */
    text-align: left;
    /* Change to left alignment for better readability */
    line-height: 1.5;
    /* Adjust line spacing */
    margin: 10px;
    /* Add some padding for a better layout */
  }

  #video-background {
    width: 100%;
    height: 18vh;
  }

  .stats {
    height: auto;
    /* Allow the stats section to adjust height */
    padding: 10px;
    /* Add padding for smaller screens */
    text-align: center;
    /* Center align text for smaller screens */
  }

  .companygrid {
    flex-direction: column;
    /* Stack items vertically */
    padding: 10px;
  }

  .annual {
    grid-template-columns: repeat(4, 1fr);
    /* Single column layout */
    gap: 1px;
    /* Reduce the gap between items */
  }

  .thumb {
    width: 100%;
    /* Use full width of the screen */
    padding: 10px;
    /* Reduce padding */
    margin-top: 15px;
    /* Adjust margin for better spacing */
  }

  .thumb .title {
    font-size: 15px;
    /* Reduce title size */
  }

  .thumb .count {
    font-size: 19px;
    /* Reduce count size */
  }

  .thumb .desc {
    font-size: 12px;
    /* Reduce description size */
    line-height: 1.2;
    /* Adjust line height */
  }

  .profile-section {
    flex-direction: column;
    align-items: center;
    /* Center content for small screens */
    text-align: center;
    padding: 15px;
  }

  .profile-image img {
    width: 180px;
    /* Adjust the image size for smaller screens */
    height: 200px;
    margin: 0 0 15px 0;
    /* Add margin below the image */
  }

  .profile-content {
    margin: 0;
    /* Reset margin for proper alignment */
  }

  .profile-name {
    font-size: 23px;
    /* Adjust font size for better fit */
    margin: 10px 0;
    /* Add spacing around the name */
  }

  .profile-description {
    font-size: 17px;
    /* Smaller font size for smaller screens */
    line-height: 1.5;
    gap: 8px;
    /* Reduce the gap between lines */
    margin-top: 10px;
    text-align: left;
  }

  .footer h4 {
    font-size: 30px;
    color: #f8f8f8;
    margin-bottom: 12px;
    text-align: center;
  }

  .footer p {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }

  .footer-links ul li {
    padding: 8px 0;
    text-align: center;
  }

  .footer-contact li {
    margin-bottom: 10px;
    font-size: 15px;
    text-align: center;
  }

  .social-links {
    margin-top: 6px;
    margin-bottom: 12px;
    text-align: center;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 30px;
    right: 10px;
    bottom: 30px;
  }
}

@media (min-width: 396px) and (max-width: 480px) {
  .navbar {
    display: flex;
    align-items: center;
    margin-top: 15px;
  }

  .header .logo img {
    width: 40%;
    height: 34px;
    top: 0;
    left: 0;
    background-size: cover;
  }

  .header .navbar {
    position: fixed;
    top: -120%;
    left: 0;
    height: auto;
    width: 100%;
    background-color: white;
    z-index: 1000;
    border-top: .1rem solid rgba(0, 0, 0, .3);
  }

  .navbar ul {
    display: flex;
    height: 100%;
    width: 100%;
    flex-flow: column;
    flex-direction: column;
  }

  .header .fa-bars {
    display: block;
    color: white;
    margin-right: 2px;
  }

  .header .fa-bars:hover {
    color: #00bfff;
  }

  .header .navbar ul li {
    margin: 0.6rem 0;
  }

  .header .navbar ul li a {
    color: grey;
    font-size: 1.6rem;
  }

  .header .fa-times {
    transform: rotate(90deg);
  }

  .header .nav-toggle {
    top: 5.8rem;
  }

  .about-section p {
    font-size: 18px;
    /* Slightly reduce font size for better fit */
    text-align: left;
    /* Change to left alignment for better readability */
    line-height: 1.5;
    /* Adjust line spacing */
    margin: 10px;
    /* Add some padding for a better layout */
  }

  #video-background {
    width: 100%;
    height: 18vh;
  }

  .stats {
    height: auto;
    /* Allow the stats section to adjust height */
    padding: 10px;
    /* Add padding for smaller screens */
    text-align: center;
    /* Center align text for smaller screens */
  }

  .companygrid {
    flex-direction: column;
    /* Stack items vertically */
    padding: 10px;
  }

  .annual {
    grid-template-columns: repeat(4, 1fr);
    /* Single column layout */
    gap: 1px;
    /* Reduce the gap between items */
  }

  .thumb {
    width: 100%;
    /* Use full width of the screen */
    padding: 10px;
    /* Reduce padding */
    margin-top: 15px;
    /* Adjust margin for better spacing */
  }

  .thumb .title {
    font-size: 15px;
    /* Reduce title size */
  }

  .thumb .count {
    font-size: 19px;
    /* Reduce count size */
  }

  .thumb .desc {
    font-size: 12px;
    /* Reduce description size */
    line-height: 1.2;
    /* Adjust line height */
  }

  .profile-section {
    flex-direction: column;
    align-items: center;
    /* Center content for small screens */
    text-align: center;
    padding: 15px;
  }

  .profile-image img {
    width: 180px;
    /* Adjust the image size for smaller screens */
    height: 200px;
    margin: 0 0 15px 0;
    /* Add margin below the image */
  }

  .profile-content {
    margin: 0;
    /* Reset margin for proper alignment */
  }

  .profile-name {
    font-size: 24px;
    /* Adjust font size for better fit */
    margin: 10px 0;
    /* Add spacing around the name */
  }

  .profile-description {
    font-size: 18px;
    /* Smaller font size for smaller screens */
    line-height: 1.5;
    gap: 8px;
    /* Reduce the gap between lines */
    margin-top: 10px;
    text-align: left;
  }

  .footer h4 {
    font-size: 30px;
    color: #f8f8f8;
    margin-bottom: 12px;
    text-align: center;
  }

  .footer p {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }

  .footer-links ul li {
    padding: 8px 0;
    text-align: center;
  }

  .footer-contact li {
    margin-bottom: 10px;
    font-size: 15px;
    text-align: center;
  }

  .social-links {
    margin-top: 6px;
    margin-bottom: 12px;
    text-align: center;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    font-size: 30px;
    right: 15px;
    bottom: 30px;
  }
}

@media (min-width: 481px) and (max-width: 739px) {
  .navbar {
    display: flex;
    align-items: center;
    margin-top: 18px;
  }

  .header .logo img {
    width: 40%;
    height: 34px;
    top: 0;
    left: 0;
    background-size: cover;
  }

  .header .navbar {
    position: fixed;
    top: -120%;
    left: 0;
    height: auto;
    width: 100%;
    background-color: white;
    z-index: 1000;
    border-top: .1rem solid rgba(0, 0, 0, .3);
  }

  .navbar ul {
    display: flex;
    height: 100%;
    width: 100%;
    flex-flow: column;
    flex-direction: column;
  }

  .header .fa-bars {
    display: block;
    color: white;
    margin-right: 3px;
  }

  .header .fa-bars:hover {
    color: #00bfff;
  }

  .header .navbar ul li {
    margin: 0.4rem 0;
  }

  .header .navbar ul li a {
    color: grey;
    font-size: 1.8rem;
  }

  .header .fa-times {
    transform: rotate(90deg);
  }

  .header .nav-toggle {
    top: 5.8rem;
  }

  .about-section h1 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 10px;
  }

  #video-background {
    width: 100%;
    height: 18vh;
  }

  .stats {
    height: auto;
    /* Allow the stats section to adjust height */
    padding: 10px;
    /* Add padding for smaller screens */
    text-align: center;
    /* Center align text for smaller screens */
  }

  .companygrid {
    flex-direction: column;
    /* Stack items vertically */
    padding: 10px;
  }

  .annual {
    grid-template-columns: repeat(4, 1fr);
    /* Single column layout */
    gap: 1px;
    /* Reduce the gap between items */
  }

  .thumb {
    width: 100%;
    /* Use full width of the screen */
    padding: 10px;
    /* Reduce padding */
    margin-top: 15px;
    /* Adjust margin for better spacing */
  }

  .thumb .title {
    font-size: 17px;
    /* Reduce title size */
  }

  .thumb .count {
    font-size: 21px;
    /* Reduce count size */
  }

  .thumb .desc {
    font-size: 13px;
    /* Reduce description size */
    line-height: 1.2;
    /* Adjust line height */
  }

  .profile-section {
    flex-direction: column;
    align-items: center;
    /* Center content for small screens */
    text-align: center;
    padding: 15px;
  }

  .profile-image img {
    width: 180px;
    /* Adjust the image size for smaller screens */
    height: 200px;
    margin: 0 0 15px 0;
    /* Add margin below the image */
  }

  .profile-content {
    margin: 0;
    /* Reset margin for proper alignment */
  }

  .profile-name {
    font-size: 24px;
    /* Adjust font size for better fit */
    margin: 10px 0;
    /* Add spacing around the name */
  }

  .profile-description {
    font-size: 18px;
    /* Smaller font size for smaller screens */
    gap: 8px;
    /* Reduce the gap between lines */
    margin-top: 10px;
    text-align: justify;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    font-size: 30px;
    right: 12px;
    bottom: 30px;
  }
}

@media (min-width: 740px) and (max-width: 815px) {
  .navbar {
    display: flex;
    align-items: center;
    margin-top: 27px;
  }

  .header .logo img {
    width: 55%;
    height: 4rem;
    top: 0;
    left: 0;
    background-size: cover;
  }

  .header .navbar {
    position: fixed;
    top: -120%;
    left: 0;
    height: auto;
    width: 100%;
    background-color: white;
    z-index: 1000;
    border-top: .1rem solid rgba(0, 0, 0, .3);
  }

  .navbar ul {
    display: flex;
    height: 100%;
    width: 100%;
    flex-flow: column;
    flex-direction: column;
  }

  .header .fa-bars {
    font-size: 53px;
    display: block;
    margin-right: 2px;
  }

  .header .fa-bars:hover {
    color: #00bfff;
  }

  .header .navbar ul li {
    margin: 0.6rem 0;
  }

  .header .navbar ul li a {
    color: grey;
    font-size: 2.4rem;
  }

  .header .fa-times {
    transform: rotate(90deg);
  }

  .header .nav-toggle {
    top: 5.8rem;
  }

  .about-section h1 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 10px;
  }

  #video-background {
    width: 100%;
    height: 18vh;
  }

  .stats {
    height: auto;
    /* Allow the stats section to adjust height */
    padding: 10px;
    /* Add padding for smaller screens */
    text-align: center;
    /* Center align text for smaller screens */
  }

  .companygrid {
    flex-direction: column;
    /* Stack items vertically */
    padding: 10px;
  }

  .annual {
    grid-template-columns: repeat(4, 1fr);
    /* Single column layout */
    gap: 1px;
    /* Reduce the gap between items */
  }

  .thumb {
    width: 100%;
    /* Use full width of the screen */
    padding: 10px;
    /* Reduce padding */
    margin-top: 15px;
    /* Adjust margin for better spacing */
  }

  .thumb .title {
    font-size: 22px;
    /* Reduce title size */
  }

  .thumb .count {
    font-size: 26px;
    /* Reduce count size */
  }

  .thumb .desc {
    font-size: 16px;
    /* Reduce description size */
    line-height: 1.2;
    /* Adjust line height */
  }

  .profile-section {
    flex-direction: row;
    /* Aligns image and content side by side */
    text-align: left;
  }

  .profile-image {
    margin-right: 24px;
  }

  .profile-content {
    align-items: flex-start;
    text-align: left;
  }

  .profile-name {
    font-size: 2.8rem;
  }

  .profile-description {
    font-size: 1.8rem;
  }

  .footer-contact {
    font-size: 1.1rem;
    margin-top: -80px;
  }

  .back-to-top {
    width: 55px;
    height: 55px;
    text-align: center;
    line-height: 55px;
    font-size: 30px;
    right: 15px;
    bottom: 40px;
  }
}

@media (min-width: 816px) and (max-width: 950px) {
  .navbar {
    display: flex;
    align-items: center;
    margin-top: 36px;
  }

  .header .logo img {
    width: 60%;
    height: 4rem;
    top: 0;
    left: 0;
    background-size: cover;
  }

  .header .navbar {
    position: fixed;
    top: -120%;
    left: 0;
    height: auto;
    width: 100%;
    background-color: white;
    z-index: 1000;
    border-top: .1rem solid rgba(0, 0, 0, .3);
  }

  .navbar ul {
    display: flex;
    height: 100%;
    width: 100%;
    flex-flow: column;
    flex-direction: column;
  }

  .header .fa-bars {
    font-size: 65px;
    display: block;
    color: white;
  }

  .header .fa-bars:hover {
    color: #00bfff;
  }

  .header .navbar ul li {
    margin: 0.6rem 0;
  }

  .header .navbar ul li a {
    color: grey;
    font-size: 2.4rem;
  }

  .header .fa-times {
    transform: rotate(90deg);
  }

  .header .nav-toggle {
    top: 5.8rem;
  }

  .about-section h1 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 30px;
  }

  .about-section p {
    font-size: 21px;
  }

  #video-background {
    width: 100%;
    height: 18vh;
  }

  .stats {
    height: auto;
    /* Allow the stats section to adjust height */
    padding: 10px;
    /* Add padding for smaller screens */
    text-align: center;
    /* Center align text for smaller screens */
  }

  .companygrid {
    flex-direction: column;
    /* Stack items vertically */
    padding: 10px;
  }

  .annual {
    grid-template-columns: repeat(4, 1fr);
    /* Single column layout */
    gap: 1px;
    /* Reduce the gap between items */
  }

  .thumb {
    width: 100%;
    /* Use full width of the screen */
    padding: 10px;
    /* Reduce padding */
    margin-top: 15px;
    /* Adjust margin for better spacing */
  }

  .thumb .title {
    font-size: 24px;
    /* Reduce title size */
  }

  .thumb .count {
    font-size: 28px;
    /* Reduce count size */
  }

  .thumb .desc {
    font-size: 17px;
    /* Reduce description size */
    line-height: 1.2;
    /* Adjust line height */
  }

  .profile-section {
    flex-direction: row;
    /* Aligns image and content side by side */
    text-align: left;
  }

  .profile-image {
    margin-right: 24px;
  }

  .profile-content {
    align-items: flex-start;
    text-align: left;
  }

  .profile-name {
    font-size: 2.9rem;
  }

  .profile-description {
    font-size: 2.0rem;
  }

  .footer-contact {
    font-size: 1.1rem;
    margin-top: -70px;
  }

  .back-to-top {
    width: 55px;
    height: 55px;
    text-align: center;
    line-height: 55px;
    font-size: 30px;
    right: 20px;
    bottom: 40px;
  }
}

@media (min-width: 951px) and (max-width: 1000px) {

  .navbar {
    display: flex;
    align-items: center;
    margin-top: 61px;
  }

  .header .logo img {
    width: 160%;
    height: 5rem;
    top: 0;
    left: 0;
    background-size: cover;
  }

  .header .navbar {
    position: fixed;
    top: -120%;
    left: 0;
    height: auto;
    width: 100%;
    background-color: white;
    z-index: 1000;
    border-top: .1rem solid rgba(0, 0, 0, .3);
  }

  .navbar ul {
    display: flex;
    height: 100%;
    width: 100%;
    flex-flow: column;
    flex-direction: column;
  }

  .header .fa-bars {
    font-size: 90px;
    display: block;
    color: white;
    margin-right: 10px;
  }

  .header .fa-bars:hover {
    color: #00bfff;
  }

  .header .navbar ul li {
    margin: 1rem 0;
  }

  .header .navbar ul li a {
    color: grey;
    font-size: 3.0rem;
  }

  .header .fa-times {
    transform: rotate(90deg);
  }

  .header .nav-toggle {
    top: 5.8rem;
  }

  .about-section {
    text-align: center;
    padding: 50px 20px;
    margin-top: 130px;
  }

  .container {
    max-width: 970px;
    margin: 0 auto;
    padding: 20px;
  }

  .footer p {
    font-size: 17px;
    text-align: center;
  }

  .logo img {
    max-width: 100px;
    max-height: 50px;

  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 980px;
    margin: 0 auto;
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    flex: 1;
    padding: 10px 20px;
  }

  .footer-left {
    text-align: left;
  }

  .footer-right {
    text-align: right;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
  }

  .footer-links ul li {
    margin-bottom: 8px;
  }

  .social-links {
    margin-top: 15px;
  }

  .footer-bottom {
    margin-top: 20px;
    background: #111;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
  }

  .footer-bottom p {
    margin: 0;
    color: #fffcfc;
  }

  .footer-left,
  .footer-right {
    flex: unset;
    padding: 10px 0;
  }

  .footer-right {
    text-align: center;
  }

  .footer-contact {
    font-size: 1.1rem;
    margin-top: -90px;
  }

  .footer-contact a {
    font-size: 22px;
  }

  .footer h4 {
    font-size: 32px;
    color: #f8f8f8;
    margin-bottom: 12px;
    font-weight: bold;
  }

  .footer p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0 15px;
  }

  .footer a {
    color: #ffffff;
    font-size: 19px;
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.3s;
  }

  .back-to-top {
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    font-size: 30px;
    right: 20px;
    bottom: 40px;
  }
}

@media (min-width: 1001px) and (max-width: 1190px) {
  .navbar {
    display: flex;
    align-items: center;
    margin-top: 38px;
  }

  .header .logo img {
    width: 180%;
    height: 4.5rem;
    top: 0;
    left: 0;
    background-size: cover;
  }

  .header .navbar {
    position: fixed;
    top: -120%;
    left: 0;
    height: auto;
    width: 100%;
    background-color: white;
    z-index: 1000;
    border-top: .1rem solid rgba(0, 0, 0, .3);
  }

  .navbar ul {
    display: flex;
    height: 100%;
    width: 100%;
    flex-flow: column;
    flex-direction: column;
  }

  .header .fa-bars {
    font-size: 70px;
    display: block;
    color: white;
  }

  .header .fa-bars:hover {
    color: #00bfff;
  }

  .header .navbar ul li {
    margin: 1rem 0;
  }

  .header .navbar ul li a {
    color: grey;
    font-size: 2.8rem;
  }

  .header .fa-times {
    transform: rotate(90deg);
  }

  .header .nav-toggle {
    top: 5.8rem;
  }

  .about-section {
    text-align: center;
    padding: 50px 20px;
    margin-top: 90px;
  }

  .container {
    max-width: 970px;
    margin: 0 auto;
    padding: 20px;
  }

  .logo img {
    max-width: 100px;
    max-height: 50px;

  }

  .profile-name {
    font-size: 3.3rem;
  }

  .profile-description {
    font-size: 2.6rem;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .footer p {
    font-size: 18px;
    text-align: justify-left
  }

  .footer h4 {
    font-size: 24px;
    font-weight: bold;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
  }

  .footer-links ul li {
    margin-bottom: 8px;
  }

  .social-links {
    margin-top: 15px;
  }

  .footer-bottom {
    margin-top: 20px;
    background: #111;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
  }

  .footer-bottom p {
    margin: 0;
    color: #fffcfc;
  }

  .footer-contact {
    font-size: 1.1rem;

  }

  .footer a {
    color: #ffffff;
    font-size: 19px;
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.3s;
  }

  .back-to-top {
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 35px;
    right: 20px;
    bottom: 40px;
  }
}