@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins',sans-serif;
    overflow-x: hidden;
}
:root{
    --black-color:rgba(21, 21, 23, 1);
    --red-color:rgba(255, 81, 85, 1);
    --black-color1:rgba(0, 0, 0, 1);
    --black-color2:rgba(32, 32, 32, 1);
    --gray-color:rgba(187, 187, 187, 1);
    --light-theme: rgba(250, 251, 255, 1);
    --light-pink-color:rgba(254, 245, 245, 1);
    --title-size:42px;
    --para-size:14px;
    --pink-color2:rgba(251, 239, 239, 1);
    --light-pink:rgba(255, 202, 194, 1);
}

/* nav var ------------- */
nav{
    position: fixed;
    z-index: 10000;
    width: 100%;
    box-shadow: 0px 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: #fff;
  }
  nav .wrapper{
    position: relative;
    max-width: 1300px;
    padding: 0px 8rem 0PX 2.4REM;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .wrapper .logo a {
    color: var(--red-color);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    gap: 15px;
}
  .wrapper .nav-links{
    display: inline-flex;
  }
  .nav-links li{
    list-style: none;
  }
  .nav-links li a{
    color: var(--black-color);
    text-decoration: none;
    font-size: 12px;
    font-weight: 450;
    padding: 10px 12px;
    transition: all 0.3s ease;
  }
  .nav-links li a:hover{
    color: var(--red-color);
  }
  .nav-links .mobile-item{
    display: none;
  }
  .nav-links .drop-menu{
    position: absolute;
    background: #fff;
    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,
  .nav-links li:hover .mega-box{
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
  }
  .drop-menu li a{
    width: 100%;
    display: block;
    padding: 0 0 0 20px;
    font-weight: 400;
    border-radius: 0px;
  }
  .content .row header{
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
  }
  .content .row .mega-links{
    margin-left: -40px;
    border-left: 1px solid rgba(255,255,255,0.09);
  }
  .row .mega-links li{
    padding: 0 20px;
  }
  .row .mega-links li a{
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
  }
  .row .mega-links li a:hover{
    color: #f2f2f2;
  }
  .wrapper .btn{
    color: var(--red-color);
    font-size: 20px;
    cursor: pointer;
    display: none;
  }
  .wrapper .btn.close-btn{
    position: absolute;
    right: 30px;
    top: 10px;
  }
  @media screen and (max-width: 970px) {
    .wrapper .btn{
      display: block;
    }
    nav .wrapper{
    padding: 0 2rem;
    }
    .wrapper .nav-links{
      position: fixed;
      height: 100vh;
      width: 100%;
      max-width: 350px;
      top: 0;
      left: -100%;
      background: #fff;
      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;
    }
    /* custom scroll bar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #242526;
    }
    ::-webkit-scrollbar-thumb {
      background: var(--blue-color1);
    }
    #menu-btn:checked ~ .nav-links{
      left: 0%;
    }
    #menu-btn:checked ~ .btn.menu-btn{
      display: none;
    }
    #close-btn:checked ~ .btn.menu-btn{
      display: block;
    }
    .nav-links li{
      margin: 15px 10px;
    }
    .nav-links li a{
      padding: 0 20px;
      display: block;
      font-size: 20px;
    }
    .nav-links .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;
    }
    #showDrop:checked ~ .drop-menu,
    #showMega:checked ~ .mega-box,
    #showServicesDrop:checked ~ .drop-menu,
    #showTrainingDrop:checked ~ .drop-menu
    {
      max-height: 100%;
    }
    .nav-links .desktop-item{
      display: none;
    }
    .nav-links .mobile-item{
      display: block;
      color: var(--black-color);
      font-size: 20px;
      font-weight: 499;
      padding-left: 20px;
      cursor: pointer;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    .nav-links .mobile-item:hover{
      background: var(--blue-color1);
    }
    .drop-menu li{
      margin: 0;
    }
    .drop-menu li a{
      border-radius: 5px;
      font-size: 18px;
    }
    .mega-box{
      position: static;
      top: 65px;
      opacity: 1;
      visibility: visible;
      padding: 0 20px;
      max-height: 0px;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .mega-box .content{
      box-shadow: none;
      flex-direction: column;
      padding: 20px 20px 0 20px;
    }
    .mega-box .content .row{
      width: 100%;
      margin-bottom: 15px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2){
      border-top: 0px;
    }
    .content .row .mega-links{
      border-left: 0px;
      padding-left: 15px;
    }
    .row .mega-links li{
      margin: 0;
    }
    .content .row header{
      font-size: 19px;
    }
  }
  nav input{
    display: none;
  }
  .body-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0 30px;
  }
  .body-text div{
    font-size: 45px;
    font-weight: 600;
  }
  /* navbar end------- */

/* container 1 start */
.Conatiner1{
background-image: url('assests/contact-bg-image.jpg');
display: flex;
justify-content: center;
align-items: center;
background-repeat: no-repeat;
background-position: center;
height: 100%;
padding: 10rem 0 10rem 6.8rem;

}
.Conatiner1 .title .para1{
    color: rgba(255, 255, 255, 1);
    font-size: 86px;
    font-family: 'khand';
    font-weight: 700;
    letter-spacing: 4px;
}
.Conatiner1 .title .para2{
    color: rgba(225, 225, 225, 1);
    font-size: 18px;
    margin-left: -24rem;
}
.Conatiner1 .para2 a{
    color: rgba(187, 187, 187);
    text-decoration: none;
}
.Conatiner1 .title{
    display: flex;
    flex-direction: column;    
}
/* container 1 end */
/* responsive */
@media screen and (max-width: 1280px) {
    .Conatiner1 .title .para2 {
            margin-left: -19rem;
    } 
}

@media screen and (max-width: 1130px) {
    .Conatiner1 .title .para2 {
        margin-left: -15rem;
    }
    .navBar{
        padding: 36px 3rem 36px 2rem;
    }
}
@media screen and (max-width: 1090px) {
    .Conatiner1 .title .para2 {
        margin-left: -10rem;
    }
}
@media screen and (max-width: 840px) {
.Conatiner1 .title .para2 {
    margin-left: -6rem;
    font-size: 14px;
}
.Conatiner1 .para {
    font-size: 16px;
}
.Conatiner1 .title .para1 {
font-size: 70px;
}
}

@media screen and (max-width: 750px) {
    :root{
        --title-size: 36px;
    }
}
@media screen and (max-width: 750px) {
        .Conatiner1 .title .para1 {
            font-size: 60px;
        }
        .Conatiner1{
            height: 25rem;
        }
}
@media screen and (max-width: 695px) {
    .Conatiner1 .title .para2 {
        margin-left: -4rem;
    }
}
@media screen and (max-width: 525px) {
    :root {
        --title-size: 33px;
    }
    .Conatiner1 p {
        margin-top: 12px;
    }
        .Conatiner1 .title .para1 {
            font-size: 46px;
            letter-spacing: 1px;
        }
        .Conatiner1{
            padding: 12rem 0;
        }
        .Conatiner1 .title .para2 {
            margin-left: 0;
            font-size: 12px;
        }
}
@media screen and (max-width: 465px) {
:root {
    --title-size: 28px;
}
}
@media screen and (max-width: 410px) {
    .Conatiner1 {
        height: 26rem;
        }
    .Conatiner1 .title .para2 {
        font-size: 10px;
        margin-bottom: 2rem;
    }
    :root {
        --title-size: 24px;
    }
}
/* container2 with responsive start */
.container2{
    display: grid;
    grid-template-columns: auto auto;
    padding: 1rem 7rem;
    margin-top: 2rem;
    gap: 4rem;
}
.container2 .sec1{
    padding-right:10rem ;
}
.container2 .sec1 .title{
    font-size: 35px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 1px;
    margin-top: 2.5rem;
}
.container2 .sec1 .para{
    font-size: 19px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 10px;
}
.container2 .sec2{
    margin-top: -1rem;
}
.container2 .sec2 #image1{
    position: relative; 
    border: 8px solid var(--red-color);
}
.container2 .sec2 #image2 {
    position: absolute;
    margin-top: 14rem;
    margin-left: -30rem;
}
#para{
    margin-top: 36px
}
@media screen and (max-width:1140px) {
    .container2{
        padding: 1rem 5rem;
    }
}
@media screen and (max-width:1050px) {
    .container2{
        padding: 1rem 3rem;
    }
}
@media screen and (max-width:962px) {
    .container2{
        grid-template-columns: auto;
    }
    .container2 .sec2{
        padding-left: 10rem;
    }
    .container2 .sec1 {
        padding-right: 0rem;
    }
}
@media screen and (max-width:720px) {
    .container2 .sec2 {
        padding-left: 6rem;
    }
}
@media screen and (max-width:690px) {
    .container2 .sec1 {
        padding-right: 4rem;
    }
    .container2 .sec2 #image1{
        height: auto;
        width: auto;
    }
    .container2 .sec1 .title {
        font-size: 28px;
    }
    #para {
        margin-top: 22px;
    }
    .container2 .sec1 .para {
        font-size: 16px;
        line-height: 24px;
        margin-top: 10px;
    }
}
@media screen and (max-width:520px) {
    .container2 .sec2 #image2 {
        margin-left: -26rem;
        width: 280px;
    }
    .container2 .sec2 #image1 {
        width: 280px;
    }
    .container2 .sec2{
        padding-left: 8rem;
    }
}
@media screen and (max-width:480px) {
    .container2 .sec1 {
        padding-right: 0rem;
    }
    .container2 .sec1 .para {
        font-size: 14px;
        line-height: 22px;
    }
    .container2 .sec1 .title {
        font-size: 35px;
        line-height: 21px;
    }
    .container2 {
        padding: 1rem;
    }
    .container2 .sec2 #image1, .container2 .sec2 #image2 {
        width: 245px;
    }
    .container2 .sec2 #image2{
        margin-left: -20rem;
    }
}
@media screen and (max-width:410px) {
    .container2 .sec2 {
        padding-left: 5rem;
    }
    .container2 .sec2 #image1, .container2 .sec2 #image2 {
        width: 220px;
    }
    .container2 .sec2 #image2 {
        margin-left: -17rem;
        margin-top: 13rem;
    }
}
/* container 2 end */
/* container3 start */
.container3{
    margin-top: 4rem;
    padding: 4rem;
    display: grid;
    grid-template-columns: auto auto;
    background-color: var(--light-pink-color);
    gap: 6rem;
}
.container3 .sec1 .title{
    font-size: 56px;
    line-height: 80px;
    font-weight: 600;
}
.container3 .sec1 .title span{
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 1);
}
.container3 .sec1{
    padding-right: 5rem;
    padding-left: 3rem;
}
.container3 .sec1 .para{
    font-weight: 400;
    font-size: 28px;
    line-height: 48px;
}
.container3 .sec2{
    padding-right: 3rem;
}
.container3 .sec2 form .row1{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
}
.container3 .sec2 form .row1 .input{
    border: none;
display: block;
margin: 20px 0;
transition: .7s;
border-bottom: 1.5px solid var(--black-color);
padding: 7px 3px;
width: 100%;
background-color: transparent;
}
.input {
    background-color: white; /* Default background color */
    padding: 10px;
    margin: 5px;
    border: none; /* No default border */
    border-bottom: 1px solid white; /* Bottom border */
    border-radius: 5px;
    transition: border-color 0.3s; /* Smooth transition for border color */
}
.input:focus {
    border-bottom: 1px solid orange; /* Bottom border color when input is focused */
    outline: none; /* Remove default outline */
}
::placeholder{
    font-size: 18px;
    font-weight: 400;
    line-height: 48px;
    color: var(--black-color);
}
#submit{
    background-color: var(--red-color);
    border: 1px solid var(--red-color);
    padding: 16px 48px;
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 24px;
    box-shadow: inset 0 0 0 0 var(--red-color);
    transition: ease-out .5s;
    outline: none;
}
#submit:hover{
    box-shadow: inset 250px 0 0 0 #fff;
    color: var(--red-color);
}
@media screen and (max-width:1700px) {
    .container3 {
        margin-top: 12rem;
    }
}
@media screen and (max-width:1300px) {
    .container3 {
        margin-top: 9rem;
    }
}
@media screen and (max-width:1190px) {
    .sec2 {
        padding-right: 0rem;
    }
    .container3 .sec1 {
        padding-right: 0rem;
        padding-left: 1rem;
    }
}
@media screen and (max-width:962px) {
    .container3 {
        margin-top: 0rem;
        gap: 3rem;
        padding: 4rem 2rem;
        margin-top: 13rem;
    }
    .container3 .sec1 .title {
        font-size: 48px;
        line-height: 68px;
    }
    .container3 .sec1 .para {
        font-size: 22px;
        line-height: 42px;
    }
    ::placeholder{
        font-size: 14px;
    line-height: 46px;
    }
    #submit {
        padding: 14px 44px;
        font-size: 13px;
}
.container3 .sec2 {
    padding-right: 0rem;
}
}
@media screen and (max-width:700px) {
    .container3{
        gap: 1rem;
    }
    .container3 .sec1 .title {
        font-size: 42px;
        line-height: 56px;
    }
    #submit {
        padding: 11px 40px;
        font-size: 12px;
    }
}
@media screen and (max-width:620px) {
    .container3{
        grid-template-columns: auto;
    }
.container3 .sec1 .title {
        font-size: 34px;
        line-height: 50px;
    }
    .container3 .sec1 .para {
        font-size: 18px;
        line-height: 28px;
    }
}
@media screen and (max-width:450px) {
    .container3 .sec1 .para {
        font-size: 15px;
        line-height: 24px;
    }
    .container3 .sec1 .title {
        font-size: 30px;
        line-height: 34px;
        margin-bottom: 10px;
    }
}

/* footer start */
footer{
    background-color: var(--red-color);
    padding: 4rem 5.4rem 2rem 4.1rem;
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 5.4rem;
}
footer .col1 .footer-title,footer .col2 .footer-title,footer .col3 .footer-title,footer .col4 .footer-title{
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    font-size: 24px;
}
footer .col1 .content{
    font-family: 'poppins';
    line-height: 28px;
    font-size: 14px;
    color: #fff;
    margin-top: 24px;
}
footer .col2 ul,footer .col3 ul{
    margin-top: 24px;
    list-style-type: none;
    padding-left: 0;
}
footer .col2 ul li a,footer .col3 ul li a{
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
    font-size: 14px;
    line-height: 30px;
}
footer .col3 ul li a i{
    font-size: 16px;
}
footer .col4 a{
    text-decoration: none;
}
footer .col4 .icons{
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    row-gap: 12px;
    column-gap: 18px;
}
footer .col4 .icons i{
    color: var(--red-color);
    font-size: 14px;
    font-weight: 100;
    padding: 8px;
        background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition:all 0.3s ease;
    cursor: pointer;
}
footer .col4 .icons i:hover{
    background-color: var(--red-color);
    color: #fff;
    transform: scale(1.5);

}
.footer-pvt{
    background-color: var(--red-color);
    padding: 1rem 0 1rem;
    /* border-top: 0.1px solid #f1ebeb; */
  }
  .footer-pvt p{
    color: #fff;
    font-size: 14px;
    text-align: center;
  }
  .footer-pvt p a{
    text-decoration: none;
    color: #fff;
  }
@media screen and (max-width:1200px) {
    footer {
        padding: 4rem 3.4rem 2rem 3.1rem;
        gap: 3rem;
    }
}
@media screen and (max-width:920px) {
    footer .col4 .icons {
        grid-template-columns: repeat(6, 1fr);
    }
    footer{
        grid-template-columns: auto auto auto;
    }
    footer .col1 .footer-title, footer .col2 .footer-title, footer .col3 .footer-title, footer .col4 .footer-title {
        font-size: 20px;
    }
    footer .col2 ul li a, footer .col3 ul li a {
        font-size: 12px;
        line-height: 26px;
    }
    footer .col1 .content {
        line-height: 22px;
        font-size: 12px;
    }
}
@media screen and (max-width:760px) {
    footer {
        grid-template-columns: auto auto;
    }
    footer .col4 .icons {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width:520px) {
    footer{
        grid-template-columns: auto;
        gap: 15px;
    }
    footer .col4 .icons i {
        width: 40px;
        height: 40px;
    }
    footer .col4 .icons {
        grid-template-columns: repeat(6, 1fr);
        gap: 0;
    }
    footer .col1 .content {
        margin-top: 10px;
    }
    footer .col2 ul, footer .col3 ul {
        margin-top: 10px;
    }
    .footer-pvt p{
        font-size: 10px;
      }
}
@media screen and (max-width:440px) {
    footer {
        padding: 2rem 1.2rem 2rem 1.2rem;
        gap: 1.4rem;
    }
}

/* footer end */