@import url("https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed: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&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}
body {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
}
body::-webkit-scrollbar-track
{

	border-radius: 10px;
	background-color: transparent;
}

body::-webkit-scrollbar
{
	width: 12px;
	background-color: transparent;
}

body::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background: linear-gradient(135deg, #14e8af, #5b57fb);
}
:root {
  --font-family: "Fira Sans Condensed", sans-serif;
}

/* Header */
nav {
  background-color: #222222;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 100px;
  position: relative;
}
.logo {
  width: 150px;
}
.logo img {
  width: 100%;
  height: 100%;
}
nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 20px;
}
ul li a {
  color: white;
  font-family: var(--font-family);
  text-decoration: none;
}
.burger {
  display: none;
}
.mystyle {
  left: 0%;
}

@media (max-width: 1196px) {
  nav {
    padding: 10px 50px;
  }
}
@media (max-width: 998px) {
  nav {
    padding: 10px;
  }
  nav ul {
    position: absolute;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 70%;
    height: 100vh;
    background-color: #222222;
    top: 100%;
    left: -100%;
    padding: 20px 20px;
    transition: all 0.5s linear;
  }
  nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.37);
    width: 100%;
  }
  nav ul li a {
    font-size: 25px;
  }
  .burger {
    display: block;
  }
}
/* Header End */
/* Bread Crubs */
.bread {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  background-color: #333;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;

}

.links {
  display: flex;
  align-items: center;
  font-size: 18px;
  gap: 8px;
  color: #bbb;
}

.links a {
  color: #00aaff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: var(--font-family);
}

.links a:hover {
  color: #00e1ff;
}

.head {
  margin-top: 10px;
}

.head h2 {
  font-size: 40px;
  margin-top: 5px;
  color: #fff;
  font-family: var(--font-family);
}

.link a,
.link p {
  font-size: 16px;
  font-family: var(--font-family);
  color: white;
}

.brimg {
  width: 150px;
}

.brimg img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    overflow: hidden;
}

@media (max-width: 768px) {
  .bread {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .brimg {
    display: none;
  }

  .links {
    font-size: 14px;
  }

  .head h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .head h2 {
    font-size: 18px;
  }

  .links a,
  .links p {
    font-size: 12px;
  }
}

/* Bread Crumbs end */
/* Content */
.main {
  padding: 20px 300px;
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}
.content {
  font-family: var(--font-family);
  width: 900px;
}
.content h1 {
  font-size: 30px;
  margin-bottom: 10px;
}
.conimg {
  width: 100%;
  margin-bottom: 20px;
}
.content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.sidebar {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  font-family: var(--font-family);
}
.sidebar a{
  text-decoration: none;
  color: white;
  transition: all ease 0.5s;
}
.sidebar a:hover{
  text-shadow: 2px 2px 5px black;
}


.ser {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.ser h2 {
  font-size: 24px;
  color: #333;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.serlinks {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.serlinks:last-child {
  border-bottom: none;
}

.serlinks a {
  text-decoration: none;
  color: #555;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
}

.serlinks a:hover {
  color: #007bff;
}

.contact {
  background: linear-gradient(135deg, #14e8af, #5b57fb);
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact h1 {
  font-size: 22px;
  margin-bottom: 10px;
}

.contact p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.contact h4 a {
  color: #fff;
  font-size: 18px;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contact h4 a:hover {
  color: #b3f5ff;
}

@media (max-width: 1666px) {
  .main {
    padding: 20px 200px;
  }
}
@media (max-width: 1458px) {
  .main {
    padding: 20px 100px;
  }
}
@media (max-width: 998px) {
  .main {
    padding: 20px;
    flex-direction: column;
  }
  .content {
    width: 100%;
  }
  .sidebar {
    width: 100%;
    margin-top: 20px;
  }
  .contact,
  .ser {
    width: 100%;
  }
}

@media (max-width: 684px) {
  .content h1,
  .ser h2 {
    font-size: 24px;
  }
  .content p,
  .serlinks a {
    font-size: 16px;
  }
}
/* Footer section */
footer {
  width: 100%;
  background-color: #222222;
  font-family: var(--font-family);
}
.footmain {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.zeeyad {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.zeeyad i {
  width: 100%;
  font-size: 50px;
}
/* Footer */
footer{
    background: #111;
    height: auto;
    width: 100vw;

    padding-top: 40px;
    color: #fff;
}
.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.footer-content h3{
    font-size: 2.1rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 3rem;
}
.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
    color: #cacdd2;
}
.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}
.socials li{
    margin: 0 10px;
}
.socials a{
    text-decoration: none;
    color: #fff;
    border: 2px solid white;
    padding: 10px;
    border-radius: 10px 0 10px 0;
}
.socials a i{
    font-size: 3rem;
    transition: all ease 0.3s;

}
.socials a:hover{
  background: linear-gradient(135deg, #14e8af, #5b57fb);
  color: black;
}

.footer-bottom{
    background: #000;
    width: 100vw;
    padding: 20px;
padding-bottom: 40px;
    text-align: center;
}
.footer-bottom p{
float: left;
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}
.footer-bottom p a{
  color:#44bae8;
  font-size: 16px;
  text-decoration: none;
}
.footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}
.footer-menu{
  float: right;

}
.footer-menu ul{
  display: flex;
}
.footer-menu ul li{
padding-right: 10px;
display: block;
}
.footer-menu ul li a{
  color: #cfd2d6;
  text-decoration: none;
}
.footer-menu ul li a:hover{
  color: #27bcda;
}

@media (max-width:500px) {
.footer-menu ul{
  display: flex;
  margin-top: 10px;
  margin-bottom: 20px;
}
}


p{
  line-height: 2rem;
}