*{
  padding: 0;
  margin: 0;
  text-transform: capitalize;
}

body{
  max-width: 100%;
  text-transform: capitalize;
}

body,html{
  overflow-x: hidden;

}


:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Jost",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}



/* :root { 
  --background-color: #ffffff; 
  --default-color: #444444; 
  --heading-color: #37517e; 
  --accent-color: #47b2e4; 
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
} */


:root{
    --muteds: #E9C46A;   /* Warm Sand */
    --background: linear-gradient(135deg, #6A11CB, #2575FC);
    --text: #FFFFFF;
    --primary: #FF6F61;  /* Coral */
    --accent: #fdc63a;  /* Yellow */
    --muted: rgba(255, 255, 255, 0.6);
    --accent2: #2A9D8F;   /* Forest Green */
    --muted3: #8D99AE;
}




.bg-color{
  background-color: var(--accent2);
  padding-bottom: 80px;
}

nav{
  font-family: var(--nav-font);
  display: flex;
  justify-content: space-between;
  color: #fff;
  padding:20px 70px;
  width: 100%;
  align-items: center;
}

nav{
  transition: 0.5s ease-in-out;
  position: fixed;
  z-index: 999;
  top: 0px;
  height: 100px;
}

.list>ul{
  margin-top: 20px;
  list-style-type: none;
  display: flex;
  gap: 30px;
}
.logo>h1>a{
  color: #fff;
  text-decoration: none;
  font-size: 30px;
}
.button{
  text-transform: capitalize;
  padding: 10px 20px;
  background-color: var(--accent);
  color: #fff;
  border: none;
  border-radius: 20px;
  transition: 0.5s ease-in-out;
}


.button>a{
  color: #fff;
  text-decoration: none;
}



.button:hover{
  background-color: #2b8bb8;
}
.list{
  display: flex;
  align-items: center;
  gap: 20px;
}


.list>ul>li>a{
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s ease-in-out;
  border-bottom: 1px solid transparent;
}


.list>ul>li>a:hover{
  border-bottom: 1px solid #fff;
}



.bars{
  position: absolute;
  right: 30px;
  font-size: 30px;
  top: 25px;
  display: none;
}

.fa-xmark{
  display: none;
  position: absolute;
  left: 80%;
  font-size: 30px;
  z-index: 10000000;
  display: none;
  color: transparent;
}

@media (max-width:1141px){
  .fa-xmark{
    color: #37517e;
    display: block;
  }
  .list>ul{
    position: relative;
    left: 30px;
    flex-direction: column;
  }
  .list>ul>li>a{
    color: #37517e;
    border-bottom:1px solid transparent;
  }
  .list{
    background-color: #fff;
    width: 50%;
    flex-direction: column;
    position: absolute;
    left: 0px;
    padding-top: 50px;
    top: 0px;
    height: 100vh;
    display: none;
    justify-content: center;
  }
  .list>ul>li>a:hover{
    border-bottom: 1px solid #37517e;
  }
  .bars{
    display: block;
  }
  .btn{
    display: flex;
    align-items: center;
  }
  .btn>.button{
    position: relative;
    left: 20px;
    
  }
}


/* main section */

.right-section>img{
  width: 560px;
}
.main{
  justify-content: center;
  height: 700px;
  align-items: center;
  padding: 20px 100px;
  display: flex;
}
.left-section>h1{
  font-size: 45px;
  color: #fff;
}

.left-section>h3{
  width: 500px;
  font-size: 25px;
  margin: 10px 0px;
  color: #444444;
}






.btn-2>button:nth-child(2){
  background-color: transparent;
  color: #fff;
  border: none;
  margin-left: 20px;
  font-size: 25px;
  text-transform: capitalize;
}

.right-section>img{
  transition: 0.5s ease-in-out;
  animation-name: animate;
  animation: floatUpDown 2s ease-in-out infinite;
}


@media (max-width:1225px){
  .main{
    padding: 20px 80px;
  }
}

@media (max-width:1181px){
  .main{
    position: relative;
    top: 200px;
    flex-direction: column;
  }
  .left-section{
    align-items: center;
    justify-content: center;
    display:flex;
    flex-direction: column;
    text-align: center;
  }
  .left-section>h3{
    margin: 30px 0px;
  }
  .bg-color{
    padding-bottom: 300px;
  }
  .right-section{
    margin-top: 30px;
  }
}



@media (max-width:886px){
  .left-section>h1{
    width: 100%;
    padding: 30px;
    font-size: 35px;
  }
  .left-section>h3{
    font-size: 22px;
    width: 400px;
  }
}


@media (max-width:696px){
  .right-section>img{
    width: 400px;
  }
}


@keyframes floatUpDown{
  0%{
    transform: translateY(0); 
  }
  50%{
    transform: translateY(10px);
  }
  100%{
    transform: translateY(0); 
  }
}


/* slide */


/* .slide{
  display: flex;
}
.slide-1>img{
  width: 60px;
}
.slide-1{
  text-align: center;
  padding: 20px 0px;
  width: 200px;
  background-color: #cccccc;
} */


/* about us */
.about{
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
hr{
  width: 180px;
}
.divider{
  width: 80px;
  background-color: #2b8bb8;
  height: 3px;
}

.left-about>p{
  width: 600px;
}

.about-us{
  padding: 60px 120px;
  display: flex;
  gap: 60px;
}
.i{
  gap: 10px;
  display: flex;
}
.i>i{
  color: var(--accent);
  font-size: 19px;
  margin-top: 4px;
}



.i>p>span{
  font-weight: 600;
}
.button-1{
  padding: 10px 20px;
  text-align: center;
  border: 2px solid var(--accent-color);
  text-transform: capitalize;
  font-weight: 600;
  border-radius: 10px;
  background-color: transparent;
  color: var(--accent-color);
  transition: 0.5s ease-in-out;
}
.button-1:hover{
  color: #fff;
  background-color: var(--accent-color);
}




.right-about>img{
  width: 500px;
}


@media (max-width: 992px) {
  .about-us {
    padding: 40px;
    flex-direction: column;
    align-items: center;
  }

  .left-about > p,
  .right-about > img{
    width: 100%;
    text-align: justify;
  }

  .left-about,
  .right-about {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 20px;
  }

  .about-us {
    padding: 20px;
    gap: 30px;
  }

  .divider {
    width: 50px;
  }

  .button-1 {
    width: 100%;
    padding: 10px;
  }

  .i {
    flex-direction: row;
    align-items: flex-start;
  }

  .i p {
    font-size: 14px;
  }

  .left-about > p {
    width: 100%;
  }
}



@media (max-width: 1131px) {
  .about{
    padding: 100px 0px 0px 0px;
  }
  .about-us {
    margin-top: -40px;
    flex-direction: column;
    align-items: center;
    padding: 40px 60px;
    gap: 40px;
  }

  .left-about,
  .right-about {
    width: 100%;
  }

  .left-about > p,
  .right-about > p {
    width: 100%;
    text-align: justify;
  }

  .button-1 {
    padding: 10px 20px;
    font-size: 16px;
  }
}




@media (max-width:1296px){
  .about-us{
    padding: 100px 20px;
  }
}



/* dropdown */

.drop{
  background-color: #ececec;
}

.drop-left>h1{
  font-size: 20px;
}

.drop-1{
  transition: 0.2s ease-in-out;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0px 40px;
  width: 600px;
  height: 60px;
  display: flex;
  align-items: center;
}
.num{
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-color);
}


.drop-1>h4{
  justify-content: start;
  transition: 0.5s ease-in-out;
  font-size: 20px;
}

.left-drop>h1{
  width: 700px;
  font-size: 30px;
}

.left-drop>p{
  margin: 40px 0px;
  width: 600px;
}

.right-drop>img{
  width: 400px;
}

.drop{
  padding: 80px 60px;
  display: flex;
}


.p{
  display: none;
  width: 550px;
  margin: 10px 40px;
  padding: 20px 10px;
  font-weight: 400;
  font-size: 17px;
}

.dr{
  transition: 0.5s ease-in-out;
  width: 600px;
  background-color: #fff;
  margin-bottom: 20px;
  cursor: pointer;
}


.right-drop{
  position: relative;
  top: 80px;
}

.arrow{
  transition: 0.5s ease-in-out;
}

.arrow>i:hover{
  color: var(--accent-color);
}

.rotate{
  transform: rotate(90deg);
}

.dr>h4{
  text-align: start;
}

.drop-1>h4:hover{
  color: var(--accent-color);
}



@media (max-width:1203px){
  .right-drop>img{
    display: none;
  }
}

@media (max-width:694px){
  .drop{
    padding: 30px 10px;
  }
  .dr{
    width: 500px;
    text-align: center;
  }
}


@media (max-width:691px){
  .dr{
    width: 500px;
    text-align: center;
  }
  .dr>.p{
    width: 500px;
    margin: 0px;
  }
  .drop{
    padding: 30px 10px;
  }
  .drop-1{
    justify-content: start;
    gap: 20px;
    padding-left: 10px;
  }
  .drop-1>h4{
    font-size: 16px;
  }
  .left-drop>h1{
    font-size: 22px;
    padding: 0px 10px;
    width: 100%;
  }
  .left-drop>p{
    font-size: 17px;
    padding: 0px 10px;
    width: 100%;
  }
}



@media (max-width:534px){
  .dr>.p{
    width: 450px;
    margin: 0px;
  }
  .dr{
    width: 450px;
    text-align: center;
  }
  .drop{
    padding: 30px 10px;
  }
  .drop-1{
    justify-content: start;
    gap: 15px;
    padding-left: 10px;
  }
  .drop-1>h4{
    font-size: 16px;
  }
  .left-drop>h1{
    font-size: 22px;
    padding: 0px 10px;
    width: 100%;
  }
  .left-drop>p{
    font-size: 17px;
    padding: 0px 10px;
    width: 100%;
  }
}


/* range */

.range{
  padding: 120px 70px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.left-range>img{
  width: 500px;
}

.right-range>p{
  font-size: 17px;
  color: var(--default-color);
}
.opo{
  line-height: 1.4;
  color: var(--heading-color);
  font-size: 30px;
}
.right-range{
  width: 600px;
}
.htm{
  display: flex;
  justify-content: space-between;
}
.div{
  width: 600px;
  height: 10px;
  background: #b1b1b1;
}
.animate-rn{ 
  animation: rn 1s ease-in-out 1;
  width: 100%;
}

@keyframes rn {
  0%{
    width:  0%;
  }
  100%{
    width: 100%;
  }
}







.animate-rn ,.animate-rn1,.animate-rn2{
  background-color: var(--accent2);
  height: 100%;
}


.animate-rn1{
  width: 95%;
  animation: rn1 1s ease-in-out 1;
}

@keyframes rn1 {
  0%{
    width: 0%;
  }
  100%{
    width: 95%;
  }

}

.animate-rn2{
  width: 90%;
  animation: rn2 1s ease-in-out 1;
}


@keyframes rn2{
  0%{
    width: 0%;
  }
  100%{
    width: 90%;
  }
}


.html{
  margin-bottom: 30px;
}







@media (max-width:1260px){
  .left-range>img{
    display: none;
  }
  .range{
    text-align: center;
    flex-direction: column;
  }
}

@media (max-width: 668px){
  .rangess{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .div{
    width: 500px;
  }
  .htm{
    width: 500px;
  }
  .right-range>p{
    width: 100%;
    padding: 0px 20px;
  }
}



@media (max-width: 553px){
  .rangess{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .div{
    width: 400px;
  }
  .htm{
    width: 400px;
  }
  .right-range>p{
    width: 100%;
    padding: 0px 100px;
  }
}





@media (max-width: 553px){
  .rangess{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .div{
    width: 350px;
  }
  .htm{
    width: 350px;
  }
  .right-range>p{
    width: 100%;
    padding: 0px 120px;
  }
}


/* services */

.services{
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction:column;
  background-color: #ebebeb;
  padding: 80px 140px;
}



.services>p{
  margin-top: 30px;
}

.white-boxes{
  margin: 60px 0px;
  justify-content: center;
  gap: 30px;
  display: flex;
}

.box{
  transition: 0.5s ease-in-out;
  position: relative;
  bottom:0px;
  border-radius: 10px;
  box-shadow: 2px 1px 20px grey;
  padding: 50px 30px;
  background-color: #fff;
}
.box>span{
  font-size: 25px;
}

.bold{
  font-weight: 700;
  transition: 0.5s ease-in-out;
  margin: 20px 0px;
  font-size: 17px;
  color: var(--accent2);
}

.box:hover{
  position: relative;
  bottom:20px;
}
.box:hover .bold{
  color: var(--accent);
}



@media (max-width:1322px){
  .services>p{
    padding: 10px 30px;
  }
  .services>h2{
    font-size: 30px;
  }
  .box{
    margin: 10px 30px;
  }
  .white-boxes{
    flex-wrap: wrap;
  }
}


@media (max-width:703px){
  .services{
    padding: 80px 0px;
  }
}



/* contact */


.contact{
  padding: 80px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}












.con{
    justify-content: center;
    gap: 20px;
    padding: 60px 30px;
    font-family: sans-serif;
    
    display: flex;
}



.contact{
    background-color: var(--accent2);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
}











.input>input{
    height: 30px;
    border-radius: 10px;
    padding-left: 10px;
    border: 1px solid var(--accent2);
    width: 100%;
}

.input{
  width: 500px;
  line-height: 1.7;
  margin-top: 10px;

}


.emai::placeholder{
  text-transform: capitalize;
}

.input>textarea{
  border-radius: 10px;
  width: 100%;
  height: 120px;
  padding: 20px;
}



.bb>button{
    background-color: var(--accent);
    border: 1px solid var(--accent);
    padding: 10px 25px;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 10px;
}


.bb{
    margin-top: 20px;
    display: flex;
    justify-content: center;
}


.bb>button>a{
    color: var(--accent2);
}









/* responsive contact */


@media (max-width: 768px) {
  .con {
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
  }

  .contact {
    width: 100%;
    padding: 30px 50px;
    box-sizing: border-box;
  }

  .input>input{
    height: 40px;
  }

  .bb > button {
    width: 100%;
    max-width: 300px;
    font-size: 16px;
  }
}

@media (max-width: 581px) {
  .contact {
    padding: 20px 15px;
  }

  .input > input,
  .input > textarea {
    font-size: 14px;
    padding: 10px;
  }

  .bb > button {
    font-size: 14px;
    padding: 10px 15px;
  }
}




@media (max-width: 579px) {
  .input {
    width: 400px;
    box-sizing: border-box;
  }

  .input > input,
  .input > textarea {
    width: 100%;
    box-sizing: border-box;
  }
}




@media (max-width: 579px) {
  .input {
    width: 400px;
    box-sizing: border-box;
  }

  .input > input,
  .input > textarea {
    width: 100%;
    box-sizing: border-box;
  }
}




@media (max-width: 450px) {
  .input {
    width: 300px;
    box-sizing: border-box;
  }

  .input > input,
  .input > textarea {
    width: 100%;
    box-sizing: border-box;
  }
}





@media (max-width: 351px) {
  .input {
    width: 250px;
    box-sizing: border-box;
  }

  .input > input,
  .input > textarea {
    width: 100%;
    box-sizing: border-box;
  }
}




/* 
@media (max-width: 1108px) {
  .con {
    flex-direction: column;
    margin: 50px;
    align-items: center;
  }


 
  

  .input>textarea{
    width: 95%;
  }

  .input > input{
    width: 100%;
    max-width: 100%;
  }
 
  .contact {
    margin-top: 30px;
  }
}


@media (max-width: 600px) {
  .contact {
    padding: 20px;
    border-radius: 15px;
  }


  .con{
    margin: 20px;
  }

  .pone {
    flex-direction: column;
    margin: 20px 0;
  }

  .input > input,
  .input > select {
    font-size: 14px;
  }


  .input > textarea{
    width: 90%;
  }

  .btnn button,
  .bb button {
    width: 100%;
  }
} */








/* call to action*/

.action{
  background-color: var(--accent);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 100px 120px;
  align-items: center;
}
.left-action>h2{
  font-size: 30px;
  font-weight: 700;
}
.left-action>p{
  margin-top: 50px;
  width: 888px;
  font-size: 17px;
}

.action-btn{
  padding: 10px 40px;
  transition: 0.5s ease-in-out;
  border-radius: 50px;
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  text-transform: capitalize;
}
.action-btn:hover{
  background-color:  var(--accent2);
}




@media (max-width: 1357px) {
 .left-action>p{

   width: 708px;
 }
}

@media (max-width: 1254px) {
  .action {
    flex-direction: column;
    text-align: center;
    padding: 60px 30px;
  }

  .left-action > h2 {
    font-size: 26px;
  }

  .left-action > p {
    font-size: 16px;
    width: 100%;
  }

  .right-action {
    margin-top: 20px;
  }

  .action-btn {
    padding: 10px 30px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .left-action > h2 {
    font-size: 22px;
  }

  .left-action > p {
    font-size: 15px;
  }

  .action {
    padding: 40px 20px;
  }

  .action-btn {
    width: 100%;
    max-width: 250px;
  }
}











/* footer */
footer{
  padding: 90px 120px;
  display: flex;
  gap: 50px;
  justify-content: space-between;
}

.foo>ul{
  list-style-type: none;
  margin-left: -30px;
}

.foo>.f2{
  font-size: 19px;
}
.foo>ul>li{
  line-height: 2.7;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.foo>ul>li:hover{
  color: var(--accent2);
}
.foo>p>span{
  color: #444444;
  font-weight: 700;
}
.ico{
  display: flex;
  grid-gap: 10px;
}
.ico>i{
  border-radius: 50%;
  align-content: center;
  font-size: 18px;
  color: #444444;
  border: 1px solid #444444;
  transition: 0.5s ease-in-out;
  width: 50px;
  height: 40px;
}
.ico>i:hover{
  border:1px solid var(--accent2);
  color: var(--accent2);
}

.foo:nth-child(4)>p{
  width: 400px;
}



.ico>a>.fa-facebook{
  font-size: 40px;
}


@media (max-width:1310px){
  footer{
    flex-wrap: wrap;
    
  }
}


@media (max-width:594px){
  footer{
    padding: 70px 100px 70px 30px;
  }
}



@media (max-width: 361px){
  .pppp{
    width: 100%;
    padding-right:30px;
  }
  .right-section>img{
    width: 330px;
  }
}




















/* porfolio page */


.bg-colr{
  height: 70vh;
  background-image: linear-gradient(rgba(0,0,0,.5)), url(img/smiling-professional-business-leaders-employees-group-team-portrait-coaches-mentors-posing-together-diverse-office-141681202.webp);
}

.man{
  display: flex;
  justify-content: center;
  height: 65vh;
  align-items: center;
}


.man>h2{
  font-size: 50px;
  color: #fff;
}
















/* portoflio */


.project>h2{
    text-align: center;
    color: #01503f;


    margin: 90px 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: underline;
    font-size: 50px;
}
.all-pro{
    padding: 0px 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.pro>a>img{
  margin: 20px;
  width: 370px;
  height: 400px;
}




.pro {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* image hover zoom effect (optional but classy) */
.pro>a>img {
  transition: transform 0.4s ease-in-out;
}
.pro:hover>a>img {
  transform: scale(1.05);
}

/* new title overlay */
.title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);   /* dark transparent bar */
  color: #fff;
  text-align: center;
  padding: 25px 15px;
  font-size: 18px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease-in-out;
}

/* reveal on hover */
.pro:hover .title {
  opacity: 1;
  transform: translateY(0);
}

/* inner heading */
.title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}







/* responsive  */



@media (max-width: 1024px) {
  .pro>a>img {
    width: 300px;
    height: 300px;
  }
  .project>h2 {
    font-size: 40px;
    margin: 70px 0;
  }
}

/* Mobile large (1 card per row, smaller heading) */
@media (max-width: 768px) {
  .all-pro {
    gap: 30px;
  }
  .pro>a>img {
    width: 90%;
    height: auto;
  }
  .project>h2 {
    font-size: 32px;
    margin: 50px 0;
  }
}

/* Mobile small */
@media (max-width: 480px) {
  .pro>a>img {
    width: 100%;
    height: auto;
    margin: 0;
  }
  .title h3 {
    font-size: 14px;
  }
  .project>h2 {
    font-size: 26px;
    margin: 40px 0;
  }
}





.fff{
  background-color: var(--accent2);
  color: #fff;
}