@import url('https://fonts.googleapis.com/css?family=Varela+Round');

:root {
  --box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0.1);
}

*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'raleway', sans-serif;
  text-decoration: none;
}

body {
  min-height: 100vh;
  background: url('https://wallpaperset.com/w/full/a/a/a/344403.jpg') no-repeat;
  background-size: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

/*html,
body {
  overflow-x: hidden;
  height: 100%;
}*/

/*---------------------------------Header-----------------------------------*/
/*Base Header*/
.header {
  background: #1B2030 url(https://miro.medium.com/v2/resize:fit:1000/1*x56SKfTy6K_mC51x4GWXyQ.jpeg) 50% 0 no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  height: 70vw;
  min-height: 400px;
  max-height: 750px;
  min-width: 300px;
  color: #eee;
  border-radius: 0 0 20px 20px;
  text-shadow: 0 2px 6px #000a;
  z-index: 98;
  transition: background-image 0.4s ease-in-out;
}
/*Gives color shade*/
.header:after{
  content:"";
  width:100%;
  height:100%;
  position:absolute;
  bottom:0;
  left:0;
  z-index:-1;
 background: linear-gradient(to bottom, rgba(0,0,0,0.12) 40%,rgba(27,32,48,1) 100%);
}
/*Header Image*/
.header:before {
  display: none;
}
/*Proper Header Creation*/
.fix{
  display: flex; width: 100%; padding: 30px; position: fixed; background-color: black; height: 15%; z-index: 99;
}
/*Pie Logo*/
.header .logo {
  font-size: 2.5rem;
  font-weight: bolder;
  color: white;
}

.header .logo i {
  color: lightblue;
  padding: 0 1rem;
}
/*Navbar links*/
.header .navbar {
  margin-left: 270px;
  transition: .4s linear;
}

.navbar a {
  position: relative;
  display: inline-block;
  font-size: 1.3rem;
  margin: 0 1rem;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: aqua;
  transition: width 0.3s ease;
}

.navbar a:hover {
  color: aqua;
}

.navbar a:hover::after {
  width: 100%;
}

/*User and menu Icons*/
.header .icons div {
  border: 0px solid;
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  border-radius: .5rem;
  background: #eee;
  color: black;
  font-size: 2rem;
  margin-right: .3rem;
  text-align: center;
  cursor: pointer;
  margin-top: -10px;
  transition: all 0.4s ease-in-out;
}

.header .icons div:hover {
  background: #7AD7F0;
  color: rgb(147, 145, 145);
}
/*Hides menu in desktop*/
#menu-btn {
  display: none;
}

nav {
  -webkit-box-flex: auto;
  -webkit-flex: auto;
  -ms-flex: auto;
  flex: auto;
  position: relative;
  padding: .6125rem .6152rem 1.6125rem;
}

.bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  transition: opacity 0.5s ease-in-out;
}

/*--------------------------------------Banner---------------------------------------*/

.info {
  width: 100%;
  padding: 10% 8% 5% 8%;
  text-align: center;
  margin-top: 180px;
}

.info h4 {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.info h4 a {
  text-decoration: none;
  color: inherit;
}

.info h4:hover {
  color: #4FC3F7;
}

.info h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1px;
}

.info .meta {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  line-height: 1.6;
}

.info .meta a {
  color: #4FC3F7;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info .meta a:hover {
  color: #29B6F6;
}
/*All Texts*/
.heading {
  padding: 2rem 0;
  padding-bottom: 3rem;
  font-size: 1.5rem;
  color: black;
}
/*Control Width of white box*/
section {
  padding: 2rem 9%;
}
/*---------------------------------------About US--------------------------------------*/
/*About Section*/
.about {
  background-color: white;
  width: 95%;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.choosess{
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
}

.gradient-text {
  background: linear-gradient(90deg, #7928ca, #ff0080); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-box {
  background-color: #cceeff; /* sky blue */
  padding: 30px 50px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
  margin-bottom: -5px;
  margin-top: -30px;
}

.description{
  font-size: 1.2rem;
  text-align: justify;
}
/*---------------------------------------Projects--------------------------------------*/
/*Projects Section*/

.projects {
  margin-bottom: -60px;
}

.seol {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.heol {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.seol, .heol {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.seol img, .heol img {
  width: 100%;
  max-width: 840px;
  border: 4px dashed #3F5EFB;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.seol img:hover, .heol img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

/*---------------------------------------Approved Layouts--------------------------------------*/
.kala {
  font-size: 1.6rem;
  font-weight: bold;
  color: #003366;
  text-align: center;
  margin: 30px 0 20px;
  margin-top: -10px;
}

.wala {
  font-size: 1.6rem;
  font-weight: bold;
  color: #003366;
  text-align: center;
  margin: 30px 0 20px;
}

/*---------------------------------------Tables--------------------------------------*/
.containert {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, #3F5EFB, #00d2ff);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  overflow-x: auto;
}

.table {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.table-header {
  display: flex;
  background: #001f4d;
  padding: 15px 0;
}

.table-row {
  display: flex;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}

.table-row:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.table-row:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.1);
}

.table-data,
.header__item {
  flex: 1;
  padding: 15px;
  text-align: center;
  color: white;
  font-size: 1rem;
  line-height: 1.4;
}

.header__item {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.table-data a {
  color: #e0ffff;
  text-decoration: none;
  font-weight: 500;
}

.table-data a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.jk {
  font-weight: 500;
}

.filter__link {
  color: white;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-left: 24px;
  padding-right: 24px;
}

.filter__link::after {
  content: "";
  position: absolute;
  right: -18px;
  color: white;
  font-size: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.filter__link.desc::after {
  content: "(desc)";
}

.filter__link.asc::after {
  content: "(asc)";
}

/*---------------------------------------Services--------------------------------------*/
/*Service Section*/
.categories{
  margin-top: -65px;
}

.container {
  margin: 0 auto;
  width: 1000px;
}

.categories .container {
  max-width: 95%;
  margin-top: -30px;
}

li a {
  text-decoration: none;
  color: white;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  font-size: 1.3rem;
  border-radius: 10px;
}

ul:hover a {
  opacity: .8;
  -webkit-transform: scale(0.97);
  transform: scale(0.97);
}

.no-ls {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

ul a {
  display: block;
  position: relative;
  padding: 2rem 1rem 2rem 1rem;
  -webkit-transition: -webkit-transform .22s, box-shadow .22s;
  transition: transform .22s, box-shadow .22s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-shadow: 0 0 0 -.25rem rgba(0, 0, 0, .1);
}

ul a:focus,
ul a:hover {
  outline: 0;
  box-shadow: 0 .5rem 0 -.25rem rgba(0, 0, 0, .1);
  opacity: 1;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-transition: -webkit-transform .088s, box-shadow .088s;
  transition: transform .088s, box-shadow .088s;
  z-index: 1;
}

.menu li:nth-child(1) a {
  background: linear-gradient(to right, #3F5EFB, #7a8ef0);
}

.menu li:nth-child(2) a {
  background: linear-gradient(to left, #3F5EFB, #00d2ff);
}

.menu li:nth-child(3) a {
  background: linear-gradient(to right, #3F5EFB, #00d2ff);
}

.menu li:nth-child(4) a {
  background: linear-gradient(to left, #3F5EFB, #7a8ef0);
}

.menu li:nth-child(5) a {
  background: linear-gradient(to right, #3F5EFB, #00d2ff);
}

.menu li:nth-child(6) a {
  background: linear-gradient(to left, #3F5EFB, #00d2ff);
}

.menu li:hover a {
  cursor: pointer;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

/*---------------------------------------Footer--------------------------------------*/
/*Footer Section*/
.footer {
  background: linear-gradient(to right, #3F5EFB, #7AD7F0);
  color: white;
  padding: 4rem 2rem;
  font-family: 'Raleway', sans-serif;
}

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer .box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid white;
  padding-bottom: 0.5rem;
}

.footer .box a,
.footer .box p {
  color: white;
  display: block;
  margin: 0.5rem 0;
  font-size: 1rem;
  transition: 0.3s;
}

.footer .box a:hover {
  color: #000;
  transform: translateX(5px);
}

.footer .box a i {
  margin-right: 0.5rem;
}

.footer .box .share a {
  display: inline-block;
  margin: 0.5rem;
  height: 3rem;
  width: 3rem;
  line-height: 3rem;
  border-radius: 50%;
  background: white;
  color: #3F5EFB;
  text-align: center;
  font-size: 1.4rem;
  transition: 0.3s;
}

.footer .box .share a:hover {
  background: #000;
  color: #fff;
}

.footer iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

















@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  .header {
    padding: 2rem;
  }

  section {
    padding: 2rem;
  }
}

@media (max-width: 900px) {
  .seol img, .heol img {
    max-width: 95%;
  }
}

@media (max-width: 768px) {
  #menu-btn {
    display: inline-block;
  }

  .header {
    margin-top: -15px;
  }

  .fix {
    padding: 10px;
    gap: 80px;
    height: 60px;
    padding-top: 20px;
  }

  .info {
    margin-top: 45px;
  }

  .info h1 {
    font-size: 4rem;
  }

  .navbar {
    position: absolute;
    top: 67px;
    right: -110%;
    width: 30rem;
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    background: #fff;
  }

  .navbar.active {
    right: 1rem;
    transition: .4s linear;
  }

  .header .navbar a {
    font-size: 2rem;
    margin: 2rem 2.5rem;
    display: block;
    color: black;
  }

  .table-header div {
    font-size: 0.7rem;
    margin-right: -30px;
    margin-left: -25px;
  }

  .about-box {
    margin-top: 15px;
  }

  .jk {
    font-size: 1.2rem;
  }

  .footer .box-container .box a {
    font-size: 1.2rem;
  }

  .categories {
    margin-top: -40px;
  }

  .categories .container {
    max-width: 300px;
    margin-top: 10px;
  }

  .heading {
    font-size: 1.2rem;
    margin-bottom: 15px;
    margin-bottom: -30px;
  }

  .kala {
    margin-top: 0px;
  }

  .wala {
    margin-top: 15px;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .heading {
    font-size: 2rem;
    color: black;
  }
}