* {
  padding:0;
  margin:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
 
  
}
 /*------------WEB-----------*/

 
.header{

  min-height: 100vh;
  width:100%;
  background-image:url("pexels-rpnickson-2478248.jpg");
  background-position: center;
  background-size:cover;
}
  

nav{
  
  display:flex;
  padding:2% 6%;
  justify-content: space-between;
  align-items:center;

}

nav img{
  width:250px;
}
.nav-links{
  flex:1;
  text-align:right;
}

.nav-links ul li{
  list-style:none;
  display:inline-block;
  padding: 8px 12px;
  position:relative;
}
 
.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}
  .nav-links ul li::after{
    content: '';
    width:0%;
    height: 2px;
    background: rgba(208, 154, 15, 0.812);
    display: block;
    margin: auto;
    transition: 0.5s;
  }

  .nav-links ul li:hover::after{
    width:100%;
  }
  .text-box{
    width:90%;
    color: rgba(208, 154, 15, 0.812);
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-20%);
    text-align: center;

  }
  
  .course{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    
 
  }
  .course h3{
      color: rgba(208, 154, 15, 0.812);
  }
  .row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
  }

  h1{
    font-size: 60px;
    font-weight: 600;
  }
  p{
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    padding:10px;
  }
  .course-col{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
  }
  h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
  }
  .course-col:hover{
    box-shadow: 0 0 20px 0px;
  }
  .text-box h1{
    font-size: 55px;
  }
  .text-box p{
    margin: 10px 0 40px;
    font-size: 15px;
    color: #fff;
  }

  .web-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
  }


   .temp-header h1{
    text-align: center;
    color: #fff;
    font-size: 62px;
    font-weight: 600;
    padding: 2% 5%;
  }

  nav .fa{
    display: none;
  }

  
                                    /*-----SERVICES-----*/

.sub-header{
  min-height: 40vh;
  width:100%;

  background-position: center;
  background-size:cover;
  background-color: grey;
  
}
.sub-header h1{
text-align: center;
color: #fff;
font-size: 62px;
font-weight: 600;
padding:2% 5%;

  
}
.services h1{
  text-align: center;
  
}



/* Create three equal columns that floats next to each other */




.services p{
  text-align: center;
  font-size: 20px;
}
.service-row{
  margin-top: 5%;
  margin:7%;
  display: flex;
  justify-content: space-between;
 
}
.service-row .service-col img{
  width: 70vh;
 }
 .service-col{
  flex-basis: 33%;
  background: #f8d8d8;
  border-radius: 35px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing:border-box;
  transition: 0.5s;


}
.service-row2{
  margin-top: 5%;
  margin:7%;
  display: flex;
  justify-content: space-between;
}
.service-row2 .service-col2 img{
  width: 70vh;
 }
 .service-col2{
  flex-basis: 33%;
  background: #f8d8d8;
  border-radius: 35px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing:border-box;
  transition: 0.5s;

}

.service-row3{
  margin-top: 5%;
  margin:7%;
  display: flex;
  justify-content: space-between;
}
.service-row3 .service-col3 img{
  width: 70vh;
 }
 .service-col3{
  flex-basis: 33%;
  background: #f8d8d8;
  border-radius: 35px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing:border-box;
  transition: 0.5s;
}
.service-col:hover{
  box-shadow: 0 0 20px 0px;
}

.service-col2:hover{
  box-shadow:0 0 20px 0px ;
}
.service-col3:hover{
  box-shadow:0 0 20px 0px ;
}




  /*------ FOR THE PHONE---------*/

@media(max-width:700px){
  .nav-links ul li{
    display:block;
  }
  .nav-links{
    position: absolute;
    background:rgba(208, 154, 15, 0.812);
    height:100vh;
    width:200px;
    top: 0;
    right:-200px;
    text-align: left;
    z-index: 1;
    transition:1s ;
  }
  nav .fa{
    display: block;
    color: white;
    margin:10px;
  font-size: 12px;
  cursor: pointer;
  }
  .nav-links ul{
    padding: 30px;
  }
}

@media(max-width:700px){
  .row{
    flex-direction: column;
  }
  @media (max-width: 768px) {
    .footer {
      position: relative;
      bottom: 0;
      left: 0;
      transform: none;
      width: 100%;
      border-radius: 0;
    }
  }
}   

 /* From Uiverse.io by gharsh11032000 */ 
.menu {
  font-size: 13px;
  line-height: 1.6;
  color: white;
  width: fit-content;
  display:inline-block;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: inherit;
  font-family:'Poppins',sans-serif;
  font-size: 13px;
  line-height: inherit;
}

.menu .link {
  position: relative;
  display: flex;
 display:flex;
  padding:2% 6%;
  justify-content: space-between;
  align-items:center;

  justify-content: center;
  gap: 12px;
  padding: 12px 36px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu .link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a3cff;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu .link svg {
  width: 13px;
  height: 13px;
  fill: white;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu .item {
  position: relative;
}

.menu .item .submenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 100%;
  border-radius: 0 0 16px 16px;
  left: 0;
  width: 100%;
  overflow: hidden;
  border: 1px solid #cccccc;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
  pointer-events: none;
  list-style: none;
}

.menu .item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  border-top: transparent;
  border-color: rgba(208, 154, 15, 0.812);
}

.menu .item:hover .link {
  color: #ffffff;
  border-radius: 16px 16px 0 0;
}

.menu .item:hover .link::after {
  transform: scaleX(1);
  transform-origin: right;
}

.menu .item:hover .link svg {
  fill: #ffffff;
  transform: rotate(-180deg);
}

.submenu .submenu-item {
  width: 100%;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-link {
  display: block;
  padding: 12px 24px;
  width: 100%;
  position: relative;
  text-align: center;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-item:last-child .submenu-link {
  border-bottom: none;
}

.submenu .submenu-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  width: 100%;
  height: 100%;
  background-color: #0a3cff;
  z-index: -1;
  transform-origin: left;
  transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.submenu .submenu-link:hover:before {
  transform: scaleX(1);
  transform-origin: right;
}

.submenu .submenu-link:hover {
  color: #ffffff;
}








/*-----_FOOTER-------*/

/**----SOCIAL MEDIA-----*/
/* From Uiverse.io by david-mohseni */ 



/*----SERVICES FOOTER----*/



.contact-info h3{
  color: #fff;
}

.temp-header{
  min-height: 20vh;
  width:100%;
  background-color: grey;
  background-position: center;
  background-size:cover;
}
.temp-row{
  margin-top: 2%;
  margin:2%;
  display: flex;
  justify-content:space-evenly;
 
}

 .temp-col{
  flex-basis: 23%;
  background: #f8d8d8;
  border-radius: 25px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing:border-box;
  transition: 0.5s;


}



@media screen and (max-width:1150px){
  .footer{
    height: 50vh;

  }
  
}
@media screen and (max-width:1150px){
  .footer{
    padding-top: 2rem;

  }
  
}
@media screen and (max-width:720px){
  .footer-3{
    display:none;

  }
  
}

.contact-left{
  --s: 200px; /* control the size */
  --c1: #1d1d1d;
  --c2: #4e4f51;
  --c3: #3c3c3c;

  background: repeating-conic-gradient(
        from 30deg,
        #0000 0 120deg,
        var(--c3) 0 180deg
      )
      calc(0.5 * var(--s)) calc(0.5 * var(--s) * 0.577),
    repeating-conic-gradient(
      from 30deg,
      var(--c1) 0 60deg,
      var(--c2) 0 120deg,
      var(--c3) 0 180deg
    );
  background-size: var(--s) calc(var(--s) * 0.577);
}

.contact-container{
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;

}

.contact-left{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.contact-left-title h2{
  font-weight: 600;
  color:#a363aa ;
  font-size: 40px;
  margin-bottom: 5px;
}

.contact-left-title hr{
  border: none;
  width: 120px;
  height: 5px;
  background-color:#a363aa ;
  border-radius: 10px;
  margin-bottom: 20px;
}

.contact-inputs{
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color:#666;
  border-radius: 50px;
}

.contact-left textarea{
  height: 200px;
  padding-top: 15px;
  border-radius: 20px;
}

.contact-inputs:focus{
border: 2px solid rgba(208, 154, 15, 0.812);

}

.contact-inputs::placeholder{
  color:#a9a9a9;
}

.contact-container{
  --s: 200px; /* control the size */
  --c1: #1d1d1d;
  --c2: #4e4f51;
  --c3: #3c3c3c;

  background: repeating-conic-gradient(
        from 30deg,
        #0000 0 120deg,
        var(--c3) 0 180deg
      )
      calc(0.5 * var(--s)) calc(0.5 * var(--s) * 0.577),
    repeating-conic-gradient(
      from 30deg,
      var(--c1) 0 60deg,
      var(--c2) 0 120deg,
      var(--c3) 0 180deg
    );
  background-size: var(--s) calc(var(--s) * 0.577);
}

.contact-left button{
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: #fff;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(270deg,#ff994f,#fa6a6d86);
  cursor: pointer;
}

@media (max-width: 800px) {
  .contact-inputs {
    width: 80vw;
  }
}

@media (max-width: 768px) {
  .text-box {
    max-width: 90%;
    padding: 1.5rem;
    text-align: center;
  }

  .text-box h1 {
    font-size: 2.5rem;
    word-wrap: break-word;
  }

  .text-box p {
    font-size: 1rem;
    word-wrap: break-word;
  }

  .web-btn, .services-btn {
    padding: 10px 16px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .text-box h1 {
    font-size: 2rem;
  }

  .text-box p {
    font-size: 0.9rem;
  }

  .web-btn, .services-btn {
    padding: 8px 14px;
    color: black;
    border: 1px solid rgba(208, 154, 15, 0.812);
    padding: 13px;
    background: transparent;
    font-size: 0.9rem;
  }
  .text-box h1 {
    font-size: 1.5rem;
  }

  .text-box p {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .menu .item .submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border: none;
    background: none;
  }

  .menu .item .submenu .submenu-item {
    width: 100%;
  }

  .menu .item .submenu .submenu-link {
    padding: 10px 20px;
    text-align: left;
  }

  .menu .item:hover .link {
    border-radius: 0;
  }

  .menu .item:hover .link::after {
    transform: none;
  }

  .menu .item:hover .link svg {
    transform: none;
  }
}

.parent {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.child {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transition: all 0.3s cubic-bezier(0.68, 0.85, 0.265, 1.85);
  border-radius: 5px;
  margin: 0 5px;
  box-shadow:
    inset 1px 1px 2px #fff,
    0 0 5px #4442;
}



.button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  font-size: 20px;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.68, -0.85, 0.265, 1.55);
}

.temp-row2{
  margin-top: 5%;
  margin:10%;
  display: flex;
  justify-content: space-between;
}
.temp-row2 .temp-col2 img{
  width: 70vh;
 }
 .temp-col2{
  flex-basis: 33%;
  background: #f8d8d8;
  border-radius: 35px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing:border-box;
  transition: 0.5s;

}

.perm-header {
  min-height: 20vh;
  width: 100%;
  background-color: grey;
  background-position: center;
  background-size: cover;
}

.perm-row {
  margin-top: 2%;
  margin: 2%;
  display: flex;
  justify-content: space-evenly;
}

.perm-col {
  flex-basis: 23%;
  background: #f8d8d8;
  border-radius: 25px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.5s;
}

.perm-row2 {
  margin-top: 5%;
  margin: 10%;
  display: flex;
  justify-content: space-between;
}

.perm-row2 .perm-col2 img {
  width: 70vh;
}
.perm-col:hover {
  box-shadow: 0 0 20px 0px;
}

.perm-col2:hover {
  box-shadow: 0 0 20px 0px;
}

.perm-header {
  min-height: 20vh;
  width: 100%;
  background-color: grey;
  background-position: center;
  background-size: cover;
}

.perm-row {
  margin-top: 2%;
  margin: 2%;
  display: flex;
  justify-content: space-evenly;
}

.perm-col {
  flex-basis: 23%;
  background: #f8d8d8;
  border-radius: 25px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.5s;
}

.perm-row2 {
  margin-top: 5%;
  margin: 10%;
  display: flex;
  justify-content: space-between;
}

.perm-row2 .perm-col2 img {
  width: 70vh;
}

.perm-col2 {
  flex-basis: 33%;
  background: #f8d8d8;
  border-radius: 35px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.5s;
}
.perm-col2 {
  flex-basis: 33%;
  background: #f8d8d8;
  border-radius: 35px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.5s;
}


.services {
  padding: 60px 0;
  background-color: #f9f9f9;
}



.services h1 {
  text-align: center;
  font-size: 2.5rem;
  color: black;
  margin-bottom: 40px;
}

.services p {
  text-align: center;
  font-size: 1.1rem;
  color: black;
  margin-bottom: 20px;
}

.service-row, .service-row2, .service-row3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin: 0 7%;
}

.service-col, .service-col2, .service-col3 {
  flex-basis: 30%;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-col:hover, .service-col2:hover, .service-col3:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-col img, .service-col2 img, .service-col3 img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.service-col h3, .service-col2 h3, .service-col3 h3 {
  text-align: center;
  font-size: 1.5rem;
  color: black;
  margin-bottom: 10px;
}

.service-col p, .service-col2 p, .service-col3 p {
  text-align: center;
  font-size: 1rem;
  color: black;
}
.temp-header {
  background: grey;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.temp-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.temp-row, .temp-row2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin: 0 7%;
}
.perm-col, .perm-col2 {
  flex-basis: 30%;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.perm-col:hover, .perm-col2:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.perm-col img, .perm-col2 img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.perm-col h3, .perm-col2 h3 {
  text-align: center;
  font-size: 1.5rem;
  color: black;
  margin-bottom: 10px;
}

.perm-col p, .perm-col2 p {
  text-align: center;
  font-size: 1rem;
  color: black;
}

@media (max-width: 768px) {
  .perm-header h1 {
    font-size: 2.5rem;
  }

  .perm-row, .perm-row2 {
    flex-direction: column;
    align-items: center;
  }

  .perm-col, .perm-col2 {
    flex-basis: 80%;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .perm-header h1 {
    font-size: 2rem;
  }

  .perm-col, .perm-col2 {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}
.temp-col, .temp-col2 {
  flex-basis: 30%;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.temp-col:hover, .temp-col2:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.temp-col img, .temp-col2 img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.temp-col h3, .temp-col2 h3 {
  text-align: center;
  font-size: 1.5rem;
  color: black;
  margin-bottom: 10px;
}

.temp-col p, .temp-col2 p {
  text-align: center;
  font-size: 1rem;
  color: black;
}

@media (max-width: 768px) {
  .temp-header h1 {
    font-size: 2.5rem;
  }

  .temp-row, .temp-row2 {
    flex-direction: column;
    align-items: center;
  }

  .temp-col, .temp-col2 {
    flex-basis: 80%;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .services h1 {
    font-size: 2.5rem;
  }

  .service-row, .service-row2, .service-row3 {
    flex-direction: column;
    align-items: center;
  }

  .service-col, .service-col2, .service-col3 {
    flex-basis: 80%;
    margin-bottom: 20px;
  }
  .service-row .service-col img{
    width: 35vh;
   }
   .service-row2 .service-col2 img{
    width: 35vh;
   }
    .service-row3 .service-col3 img{
      width: 35vh;
    }
}

@media (max-width: 480px) {
  .services h1 {
    font-size: 2rem;
  }

  .service-col, .service-col2, .service-col3 {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .temp-header h1 {
    font-size: 2rem;
  }

  .temp-col, .temp-col2 {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .service-col, .service-col2, .service-col3 {
    flex-basis: 45%;
  }
}

@media (max-width: 480px) {
  .service-col, .service-col2, .service-col3 {
    flex-basis: 100%;
  }
}

.services {
  padding: 60px 0;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: #fff;
}

.services h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .temp-header h1 {
    font-size: 2.5rem;
  }

  .temp-row, .temp-row2 {
    flex-direction: column;
    align-items: center;
  }

  .temp-col, .temp-col2 {
    flex-basis: 80%;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .temp-header h1 {
    font-size: 2rem;
  }

  .temp-col, .temp-col2 {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}

.news-container {
  padding: 60px 0;

  text-align: center;
}

.news-container h1 {
  font-size: 3rem;
 
  margin-bottom: 40px;
}

.news-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 7%;
}

.news-col {
  flex-basis: 30%;
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.news-col:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.news-col img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

.news-col h3 {
  font-size: 1.8rem;
 
  margin-bottom: 10px;
}

.news-col p {
  font-size: 1.1rem;

}

@media (max-width: 768px) {
  .news-container h1 {
    font-size: 2.5rem;
  }

  .news-row {
    flex-direction: column;
    align-items: center;
  }

  .news-col {
    flex-basis: 80%;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .news-container h1 {
    font-size: 2rem;
  }

  .news-col {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}



footer {
  background-color: #061049;
  color: #fff;
  padding: 40px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 7%;
}

.footer-column {
  flex-basis: 23%;
}

.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: rgba(208, 154, 15, 0.812);
}

.footer-column p {
  font-size: 1rem;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .footer-column {
    flex-basis: 45%;
  }
}

@media (max-width: 480px) {
  .footer-column {
    flex-basis: 100%;
  }
}
@media (max-width: 720px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    flex-basis: 100%;
    margin-bottom: 20px;
  }

  .footer-social-services {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .footer-location-contact {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .footer-social-services .footer-column,
  .footer-location-contact .footer-column {
    flex-basis: 48%;
  }
}

.temp a {
  color: rgba(208, 154, 15, 0.812);
  text-decoration: none;
}

.perm a {
  color: rgba(208, 154, 15, 0.812);
  text-decoration: none;
  
}

@media (max-width: 768px) {
  .perm-header h1 {
    font-size: 2.5rem;
  }

  .perm-row, .perm-row2 {
    flex-direction: column;
    align-items: center;
  }

  .perm-col, .perm-col2 {
    flex-basis: 80%;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .perm-header h1 {
    font-size: 2rem;
  }

  .perm-col, .perm-col2 {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}

.assessment-form {
  width: 100%;
  background-color: #fff3f3;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 40px auto;
}

.assessment-form h2 {
  color: rgba(208, 154, 15, 0.812);
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
}

.assessment-form label {
  display: block;
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
}

.assessment-form input,
.assessment-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 25px;
  font-size: 16px;
}

.assessment-form input:focus,
.assessment-form textarea:focus {
  border-color: rgba(208, 154, 15, 0.812);
  outline: none;
}

.assessment-form button {
  background-color: rgba(208, 154, 15, 0.812);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

.assessment-form button:hover {
  background-color: #d4a017;
}

@media (max-width: 768px) {
  .assessment-form {
    padding: 20px;
    margin: 20px auto;
  }

  .assessment-form h2 {
    font-size: 24px;
  }

  .assessment-form label {
    font-size: 16px;
  }

  .assessment-form input,
  .assessment-form textarea {
    padding: 10px;
    font-size: 14px;
  }

  .assessment-form button {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .assessment-form {
    padding: 15px;
    margin: 15px auto;
  }

  .assessment-form h2 {
    font-size: 20px;
  }

  .assessment-form label {
    font-size: 14px;
  }

  .assessment-form input,
  .assessment-form textarea {
    padding: 8px;
    font-size: 12px;
  }

  .assessment-form button {
    padding: 6px 12px;
    font-size: 12px;
  }
}