/* Reset default styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Header styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
}

.logo h1 {
  font-weight: 700;
  text-transform: capitalize;
}

.logo h1 a {
  text-decoration: none;
  color: rgb(0, 102, 255);
}

.logo h1 span {
  color: red;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger .line {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px;
  transition: all 0.3s ease;
}

.burger.open .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.open .line:nth-child(2) {
  opacity: 0;
}

.burger.open .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #f9f9f9;
    z-index: 1000;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .nav-links.show {
    display: block;
  }

  .nav-links a {
    display: block;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    color: #333;
  }

  .nav-links a:hover {
    background-color: #ddd;
  }
}


 header a {
  text-decoration: none;
  color: #0a0a0a;
  padding: 10px;
  font-weight: 600;
}

header a:hover {
  color: white;
  background: black;
  border-radius: 10px;
  padding: 10px 10px;
  margin: 10px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

/* Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f9f9f9; 
}

.loader img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  animation: pulse 1s ease-in-out infinite; 
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Additional styles */
.content {
  background-color: #161516;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text {
  width: 150px;
  height: 80px;
  overflow: hidden;
  text-align: center;
  position: relative;
}

.text h2 {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: -100%;
  color: white;
  font-size: 2.5em;
}

/* Add your remaining styles here */

.WelCome{
  overflow: hidden;
  position: relative;
  height: 60vh;
}
.cover{
  position: absolute;
  background-color: white;
  height: 60%;
  width: 100%;
  top: -60%;
  z-index: 2;
}
.main_content{
  width: 60%;
  color: white;
  display: none;
}
.main_content h1,p{
  padding: 10px;
}

.btn-1 {
  align-items: center;
  appearance: none;
  background-color: #EEF2FF;
  border-radius: 50px;
  border-width: 2px;
  border-color: #536DFE;
  box-shadow: rgba(83, 109, 254, 0.2) 0 2px 4px, rgba(83, 109, 254, 0.15) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
  box-sizing: border-box;
  color: #536DFE;
  cursor: pointer;
  display: inline-flex;
  font-family: "JetBrains Mono", monospace;
  height: 56px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
  font-size: 20px;
}

.btn-1 a {
  text-decoration: none;
  color: #3c3d3d;
}

.btn-1:focus {
  outline: none;
  box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(83, 109, 254, 0.4) 0 2px 4px, rgba(83, 109, 254, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.btn-1:hover {
  box-shadow: rgb(0, 29, 12) 0 4px 8px, rgba(83, 109, 254, 0.2) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
  transform: translateY(-2px);
}

.btn-1:active {
  box-shadow: #D6D6E7 0 3px 7px inset;
  transform: translateY(2px);
}

.article {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #333;
  text-align: center;
  margin-bottom: 20px;
  font-family: italic;
  font-size: 40px;
}

p {
  color: #666;
  margin-bottom: 20px;
  font-weight: 600;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
}

li {
  color: #333;
  margin-bottom: 10px;
}

strong {
  font-weight: bold;
}

.article-skillTube .article ul li strong a .skill-2 {
  text-decoration: underline;
}

.services {
  background-color: rgb(15, 15, 15);
  padding: 50px 0;
}

.container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.card {
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
  margin: 20px;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.icon-1 {
  font-size: 55px;
}

.icon {
  font-size: 50px;
  color: #007bff;
}

.btn {
  border-radius: 20px;
  padding: 10px 20px;
}

.btn a {
  text-decoration: none;
  color: black;
}

h3 {
  margin-top: 20px;
  font-size: 24px;
  color: #1f1f1f;
}

p {
  color: #666;
  font-size: 16px;
  text-align: center;
}

.title {
  color: white;
  font-family: italic;
  font-weight: 600;
  font-size: 44px;
}

section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.skills-channels {
  text-align: center;
  font-weight: 600;
}

.title-skills {
  font-family: italic;
  font-size: 25px;
  color: #007bff;
}

.title-skills span {
  color: crimson;
}

.skills-channels a:hover {
  color: white;
  border-radius: 10px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}


.iconss {
  font-size: 30px;
  padding: 5px;
  color:  #7f9cf5;
}

.iconss a {
  padding: 5px;
  color:  #7f9cf5;
}

.iconss a:hover {
  color: aquamarine;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  transform: translateY(-50px);
}

.section-heading h4 {
  line-height: 40px;
  font-size: 28px;
  font-weight: 900;
  color: rgb(0, 102, 255);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.contact-us {
  background-color: #1f1f1f;
  height: 100vh;
}

.contact-info {
  background-color: #1f1f1f;
  height: 60vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-us .title-contact {
  font-family: italic;
  font-size: 30px;
  position: relative;
  top: 50px;
  color: white;
}

.contact-info{
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.card-1{
  position: relative;
  flex: 1;
  max-width: 300px;
  height: 140px;
  background-color: #ffffff;
  margin: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ic0n{
  font-size: 32px;
  color: #e91a16;
  transition: .3s linear;
}

.card-1:hover .ic0n{
  transform: scale(4);
  opacity: 0;
}

.card-content-1 h3,
.card-content-1 span{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  opacity: 0;
}

.card-content-1 h3{
  top: 20px;
  text-transform: uppercase;
  color: #0a0a0a;
}

.card-content-1 span{
  bottom: 20px;
  color: #fff;
  font-weight: 500;
}

.card-1:hover h3{
  opacity: 1;
  top: 46px;
  transition: .3s linear .3s;
}

.card-1:hover span{
  opacity: 1;
  bottom: 46px;
  transition: .3s linear .3s;
}


@media screen and (max-width:900px) {
  .card-1{
      flex: 100%;
      max-width: 500px;
  }
}

.site-footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .site-footer {
    padding: 10px;
  }
}


.footer-des {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px;
}

.footer-des h3 {
  color: white;
  font-size: 16px;
}

.footer-des p {
  margin-bottom: 10px;
}

.footer-des p a {
  text-decoration: underline;
  color: white;
  font-weight: 700;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  color: #fff;
  margin: 0 5px;
  font-size: 20px;
}

/* Style for box-icon */
footer .icon {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}

section .dropdown-1 {
  position: relative;
  display: inline-block;
}

.dropdown-content-1 {
  display: none;
  position: absolute;
  background-color: #f8f8f8;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content-1 a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content-1 a:hover {
  background-color: #010101;
}

.dropdown-1:hover .dropdown-content-1 {
  display: block;
}

.dropbtn-1 {
padding: 5px;
margin: 5px;
background: rgb(255, 255, 255);
}

.dropdown-1:hover .dropbtn-1 {
  background-color: #0a0a0a;
  color: rgb(189, 0, 0);
  padding: 10px 20px;
  border-radius: 10px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

section .dropdown-1 {
  position: relative;
  display: inline-block;
}

.dropdown-content-1 {
  display: none;
  position: absolute;
  background-color: #f8f8f8;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content-1 a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content-1 a:hover {
  background-color: #010101;
}

.dropdown-1:hover .dropdown-content-1 {
  display: block;
}

.dropbtn-1 {
padding: 5px;
margin: 5px;
background: rgb(255, 255, 255);
}

.dropdown-1:hover .dropbtn-1 {
  background-color: #0a0a0a;
  color: rgb(255, 58, 58);
  padding: 10px 20px;
  border-radius: 10px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

section .dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f8f8f8;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #010101;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropbtn {
padding: 5px;
margin: 5px;
background: rgb(255, 255, 255);
}

.dropdown:hover .dropbtn {
  background-color: #0a0a0a;
  color: rgb(42, 69, 246);
  padding: 10px 20px;
  border-radius: 10px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
