/*CSS FOR THE NAVIGATION BAR AT THE TOP OF WEBSITE*/


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 30px;
}


[class ^= "box-"] {
  display:grid;
  place-items: center;
  border: solid 5px #4716f9;
  padding: 10px;
  border-radius: 20px ;
  box-shadow: 0 0 5px rgba(0,0,0.1);
  color: #dad0d2;
}

body {
  background: linear-gradient(#03080c,#190d44, #130928);
  height: 252vh
  
}

.pro {
    height: 90vh;
    width: 90%;
    margin: 70px auto;
    
    display: grid;
    gap: 50px;

    grid-template-columns: repeat(12, 1fr);
    grid-template-areas: 
    
    "h h h h  h h h h  h h h h"
    "b b b b  m m m m  m m m m"
    "b b b b  m m m m  m m m m"
    "s s s s  s s s s  s s s s"
    "f f f f  f f f f  f f f f";
    
}

.pro .box-1 {
    grid-area: h;
    border: none;
    box-shadow: none;
}
.whoami {
  color: #dad0d2;
  font-size: 100px;
  font-family: "Andale Mono";
  font-style: oblique;
  font-weight: bolder;
  margin-bottom: 20px;
  
}

.pro .box-2 {
    grid-area: b;
    border: none;
    box-shadow: none;
}

.pro .box-2 .Pictureme{
    width: 400px; 
    height: 550px; 
    object-fit: cover; 
    
    border-radius: 20px
    
}
.pro .box-2 h4 {
font-weight: 900;


}
.pro .box-2 .textunderme {
    line-height: 1.5;
    text-align: center;
   margin:0;
  }

.pro .box-3 {
    grid-area: m;
    border: none;
    box-shadow: none;
}
.pro .box-3 h4 {
    font-size: 45px;
    font-weight: 900;
    margin: 5px;
    margin-bottom: 50px;
    
    }
.pro .box-3 .textunderme2 {
        line-height: 1.5;
        column-count: 2;
        text-align: center;
       
      }
 .pro .box-3 .Pictureme2{
    margin-top: 100px;
 }     
 .about-section {
    display: flex;
    gap: 20px; /* Adjust for space between the two columns */
}

.column {
    flex: 1;
    padding: 10px; /* Adjust for desired spacing */
}

.textunderme2 .about-section {
    column-count: 2;
}

.textunderme2 .about-section .column {
    display: block;
    width: 100%;
    padding: 0;
}

.pro .box-4 {
    grid-area: s;
    border: none;
    box-shadow: none;
    text-align: center;
}
.facts{
    font-weight: bolder;
    margin-bottom: 10px;
    margin-top: 100px;
}
.facts-list {
    list-style-type: none;
    padding-left: 0;
    
}
.facts-list li {
    padding-top: 10px;  /* Adjust this value as needed */
    padding-bottom: 10px;  /* Adjust this value as needed */
}

.facts-list li a {
    color: inherit; /* So that the link inherits the color of its parent, can be changed as per your design needs */
    text-decoration: underline; /* You can remove this if you don't want the link underlined */
   
}

.facts-list li a:hover {
    color: #4716f9; /* Change to any hover color you like */
}


.pro .box-5 {
    grid-area: f;
}


/*CSS FOR THE NAVIGATION BAR AT THE TOP OF WEBSITE*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
}

nav {
  position: fixed;
  z-index: 99;
  width: 100%;
  background: #242526;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  height: 70px;
}
/* CSS FOR THE NAVIGATION BAR AT THE TOP OF THE WEBSITE */
.nav-links input[type="checkbox"] {
  display: none; /* Hide the checkbox */
}

/* Style for the label which acts as a custom dropdown toggle button */
.nav-links label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding: 0 15px;
  font-size: 23px;
  color: #dad0d2;
  transition: all 0.3s ease;
}

.nav-links label::after {
  content: "▼"; /* Unicode down arrow */
  position: absolute;
  right: 0;
  transition: all 0.3s ease;
}

.nav-links label:hover {
  background: #3A3B3C;
}

.nav-links input[type="checkbox"]:checked+label::after {
  transform: rotate(180deg); /* Rotate the arrow when the checkbox is checked */
}


.wrapper {
  max-width: 1300px;
  padding: 0px 30px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo a {
  color: #dad0d2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links li a {
  color: #dad0d2;
  text-decoration: none;
  font-size: 23px;
  font-weight: 500;
  padding: 0 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  background: #3A3B3C;
}

.drop-menu{
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.nav-links li:hover .drop-menu{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}

.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}

.btn{
  color: #dad0d2;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
  
  @media screen and (max-width: 970px) {
    .btn{
      display: block;
    }
    
    .nav-links{
      position: fixed;
      height: 100vh;
      width: 100%;
      max-width: 350px;
      top: 0;
      left: -100%;
      background: #242526;
      display: block;
      padding: 50px 10px;
      line-height: 50px;
      overflow-y: auto;
      box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
      transition: all 0.3s ease;
    }
  
    #menu-btn:checked ~ .nav-links{
      left: 0%;
    }
  
    .nav-links li{
      margin: 15px 10px;
    }
  
    .drop-menu{
      position: static;
      opacity: 1;
      top: 65px;
      visibility: visible;
      padding-left: 20px;
      width: 100%;
      max-height: 0px;
      overflow: hidden;
      box-shadow: none;
      transition: all 0.3s ease;
    }
  
    .nav-links .desktop-item{
      display: none;
    }
  
    .nav-links .mobile-item{
      display: block;
      color: #f2f2f2;
      font-size: 20px;
      font-weight: 500;
      padding-left: 20px;
      cursor: pointer;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    
    .nav-links .mobile-item:hover{
      background: #3A3B3C;
    }
    
    .drop-menu li{
      margin: 0;
    }
  }
  
  nav input[type="radio"] {
    display: none;
}


  .nav-search {
    background-color: #242526;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
    margin-left: 10px;
}

.search-form {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-left: 10px;
}

.search-form input {
    border: none;
    padding: 9px 15px;
    font-size: 23px;
    background-color: #333436; 
    color: #dad0d2;
    border-radius: 5px 0 0 5px;
    transition: all 0.3s ease;
    
}

.search-form button {
    padding: 9px 15px;
    background-color: #242526;
    border: none;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    color: #dad0d2;
    font-size: 23px;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background-color: #3A3B3C;
}

.search-form input::placeholder {
    color: #dad0d2;
}

.search-form input:focus {
    outline: none;
}

.search-form button:focus {
    outline: none;
}

  /*FOOTER CSS*/

  .box-5 h4 {
    font-weight: bold;
    
  }
  
  .box-5 ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .box-5 ul li a {
    color: #dad0d2;
    text-decoration: none;
  }
  
  .box-5 ul li a:hover {
    text-decoration: underline;
  }
  .footer-section {
    display: inline-block;
    vertical-align: top;
    margin: 0 200px; 
  }
  
  .box-5 {
    margin-top: 50px;
    display: flex;
    justify-content: center;  
    align-items: center;      
  }

   /*BREADCRUMBS*/

   .breadcrumbs {
    font-size: 5px; 
    margin-top: 90px; 
    text-align: center;
 }

.breadcrumbs a {
  color: #dad0d2; 
  text-decoration: none;
  margin-right: 5px;
}

.breadcrumbs a:hover {
  color: #4716f9;
  text-decoration: underline;
}

.breadcrumbs span {
  color: #555; 
}
