
/* Reset default margin & padding */
body{
    margin: 0px;
    padding: 0px;
    background-color: black;
    /* background-image: radial-gradient(circle at bottom ,rgb(159, 157, 157),rgb(58, 58, 58), rgb(0, 0, 0), rgb(30, 0, 255)); */
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
  
    /* font-variation-settings:"wdth" <width>; */
    
}



a{
  text-decoration: none;

}
p{
  text-align: justify;
}

.atag{
  color: white;
  background-color: rgb(76, 76, 255);
  padding: 10px;
  border-radius: 15px;
  border: 1px solid rgb(255, 255, 255);
  box-shadow: 0px 0px 5px rgb(0, 0, 0);
  margin-bottom: 10px;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-bottom: 1px solid white; */
    /* background: linear-gradient(to right,black,black,blue,#453ea5,black); */
    background-image: linear-gradient(to right,black,rgb(10, 10, 43),rgb(10, 10, 43),black);
    padding: 5px 10px;
    /* box-shadow: 0px 0px 10px red; */
}

/* Logo */

.logo{
 display: flex;
 /* justify-content: center; */
 align-items: center;
 color: blue;
 font-size: 1.5rem;
 /* font-family: Georgia, 'Times New Roman', Times, serif; */
 /* border: 1px solid blue; */
 padding: 8px;
 /* box-shadow: 0px 0px 10px blue; */
}

.logo img {
    height: 50px; /* Adjust logo size */
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    /* font-weight: bold; */
    color: white;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #1722f0;
}

/* Hamburger Menu */
.menu-icon {
    display: none;
    font-size: 20px;
    cursor:pointer;
    color: blue;

}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px;
        right: 0;
        /* background: #1c1f4f; */
        background-image:linear-gradient(black,black,rgb(52, 30, 129),blue);
        width: 200px;
        height: 100%;
        text-align: left;
        padding: 15px;
        box-shadow: -5px -2px 5px rgb(184, 148, 255);
        border-radius: 10px 0px 10px 10px;
        animation: spin 10s ease-in-out infinite;
        animation-direction:alternate;

       
    }
    @keyframes spin{
      0%{
          transform: rotate(0);
      }
      /* 50%{
          scale: 2;
          border-radius: 0%;
      } */
  
      100%{
          /* scale : 2; */
          transform: rotate(-15deg);
          border-radius: 0%;
      }
  }

    .nav-links.show {
      max-height: 768px; /* Adjust based on menu height */
  }

    .nav-links.show {
        display: flex;
    }

    .menu-icon {
        display: block;
        background-color: black;
        padding: 0px 5px ;
        border-radius: 10px;
        box-shadow: 0px 0px 10px #1722f0;
    }
}




footer{
  text-align: center;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px blue;
  background-color: black;
  color: white;
  border: 1px solid white;

}



.footer-link {
  
  color:white;
  align-items: center;
}
.logo1{
  /* border-radius: 100%; */
  margin-right: 10px;
  /* border: 1px solid blue; */
  /* border-radius: 100%; */

}

.web{
  /* margin: 0px 5px 20px 5px; */
  font-size: 1.2rem;
  color: white;
  /* padding: 0px 50px 20px 5px; */
}

.logos{
  display: flex;
  background-color: rgb(0, 0, 0);
  flex-wrap: wrap;
  padding: 0px 20px 20px 20px;
  justify-content: center;
  align-items: center;
}


.h1tag{
  font-size: 25px;
  color: aquamarine;
}
h2{
  font-size: 20px;
  color: aqua;
}
.img1{
  width: 75px;
  height: 75px;
  margin: 10px;
  /* background-color: rgb(255, 255, 255); */
  padding: 5px;
  /* border: 1px solid black; */
  /* box-shadow: 0px 0px 10px rgb(0, 38, 255); */
}
section{
  margin: 30px ;
  padding:0px;
}

