:root {
    --font-family-primary: "Poppins", sans-serif;
    --font-family-secondary: "Outfit", sans-serif;

    --bg-one: #06202B;
    --bg-two: #077A7D;
    --bg-three: #7AE2CF;
    --bg-four: #F5EEDD;
    --bg-five:#1cb098;
     --bg-six:#ff255c;
    --bg-seven:#1cb098;
    --bg-eight:#eff5ff;
    --bg-nine:#fdf8f4;
    --back-color1:#fff7ee;
      --back-color2:#f7efff;
        --back-color3:#effafd;
          --bg-footer:#111a24;
          --bg-icon:#d2efea;

    --text-one: #06202B;
    --text-two: #077A7D;
    --text-three: #7AE2CF;
    --text-four: #F5EEDD;
}
.head-about{
    font-size: 50px;
    color: #06202B;
    font-family: var(--font-family-secondary);
    font-weight: 800;
  
   
}


.pages-heading-main {
  background-image: url(/assets/images/page-header-bg.jpg);
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
  position: relative;
}

.pages-heading-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(4, 42, 45, 0) 22.28%, #042A2D 100%);
  z-index: 1;
}

.pages-heading-main>* {
  position: relative;
  z-index: 2;
  /* keep your text/content visible above the gradient */
}

.pages-heading {
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}

.pages-heading h1 {
  color: var(--bg-nine);
  font-family: var(--font-family-three);
  font-weight: 500;
  padding-top: 40px;
  font-size: 50px;
}

.pages-heading h1 span {
  font-weight: 700;
  background: linear-gradient(267.43deg, #73ED7C 4.95%, #019297 97.92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.pages-heading p {
  color: var(--bg-nine);
  font-family: var(--font-family-secondary);
  font-size: 18px;

}
.bg-skyblue{
    background-color: var(--bg-eight);
    padding: 50px 20px;
}
.bg-position{
    display: flex;
    justify-content: center;
    align-items: center;
     height: 250px;
     margin-top: 100px;
}
.ul-head{
    display: flex; 
    gap: 10px;
}
.ul-head li{
 list-style: none;
 font-family: var(--font-family-primary);
 margin-top: 20px;
}
.ul-head li:hover{
    color: var(--bg-five);
}
/* contact with us  */
.contact{
    margin-top: 100px;
    margin-bottom: 100px;
}
.left-contact h2{
    font-family: var(--font-family-primary);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}
.telephone-content{
    font-family: var(--font-family-secondary);
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.telephone-icon i{
  background-color:var(--bg-icon);
  width: 60px;
  height: 60px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 15px;
  color: var(--bg-five);
}
.phone-content{
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     font-family: var(--font-family-secondary);
}
.phone-content h6{
   color: gray;
   font-size: 20px;
   line-height: 30px;
   font-weight: 400;
}
.input-section1{
    display: flex; 
    gap: 20px;
}
.input-section1 input{
    width: 100%;
    padding: 20px 10px;
    border: 1px solid rgb(190, 188, 188);
}
.input-section1 input::placeholder{
    font-family: var(--font-family-primary);
}

.input-section2{
    display: flex; 
    gap: 20px;
}
.input-section2 input{
    width: 100%;
    padding: 20px 10px;
    border: 1px solid rgb(190, 188, 188);
}
.input-section2 input::placeholder{
    font-family: var(--font-family-primary);
}
.input-section3{
    display: flex; 
    gap: 20px;
}
.input-section3 textarea{
    width: 100%;
    height: 150px;
    padding: 10px;
    border: 1px solid rgb(190, 188, 188);
}
.input-section3 textarea::placeholder{
    font-family: var(--font-family-primary);
}

.btn-contact-form button{
    border: none;
    background-color: var(--bg-five);
    padding: 15px 40px;
    font-family: var(--font-family-primary);
    font-weight: 800;
    color: white;
    border-radius: 5px;
}


 .right-contact {
      background: #ffffff;
      padding: 45px 50px;
      border-radius: 20px;
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
      max-width: 750px;
      width: 100%;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    /* ===== Two Column Input Rows ===== */
    .input-row {
      display: flex;
      gap: 20px;
    }

    .input-row input {
      flex: 1;
    }

    /* ===== Input & Textarea Styling ===== */
    input,
    textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1.5px solid #dcdcdc;
      border-radius: 12px;
      font-size: 15px;
      background: #fafafa;
      color: #333;
      transition: all 0.3s ease;
      outline: none;
    }

    input:focus,
    textarea:focus {
      border-color: #019297;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(59, 255, 242, 0.1);
    }

    textarea {
      height: 140px;
      resize: none;
    }

    /* ===== Button Styling ===== */
    .btn-contact-form {
      display: flex;
      justify-content: flex-end;
    }

 .btn-contact-form   button {
      background: linear-gradient(135deg, #019297, #1cb098);
      color: #fff;
      border: none;
      padding: 14px 38px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

  .btn-contact-form  button:hover {
      background: linear-gradient(135deg, #1cb098, #019297);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 59, 59, 0.25);
    }

    /* ===== Responsive Design ===== */
    @media (max-width: 768px) {
      .input-row {
        flex-direction: column;
      }

      .right-contact {
        padding: 30px 25px;
      }

      .btn-contact-form {
        justify-content: center;
      }

    .btn-contact-form  button {
        width: 100%;
      }
      .pages-heading-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(4, 42, 45, 0) -100.72%, #042A2D 100%) !important;
  z-index: 1;
}
.pages-heading{
  height: auto !important;
  padding: 30px 0px !important;
}
.pages-heading h1{
  font-size: 25px !important;
}
    }






/* footer section here  */
.navy-footer{
    padding: 100px 0px;
    background-color: var(--bg-footer);
   

}

.footer1 p{
    color: white;
    font-family: var(--font-family-primary);
    margin-top: 20px;
    margin-bottom: 30px;
}
.phone-icon i{
    font-size: 30px;
    margin-top: 13px;
    color: var(--bg-five);
}
.phone-info{
    color: white;
}
.footer2{
    color: white;

}
.footer2 h4{
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-family-primary);
    margin-bottom: 30px;
}
.footer-list li{
    list-style: none;
    font-family: var(--font-family-secondary);
    margin-top: 20px;
    padding-left: 10px;
}
.footer3 h4{
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-family-primary);
    margin-bottom: 30px;
    color: white;
}
.footer3 img{
    margin-bottom: 30px;
    border-radius: 10px;
}
.end-head h5{
    color: white;
    margin-top: 30px;
}
.end-icon{
  margin-top: 30px; 
  display: flex;
  gap: 10px;
  justify-content: end;
}
  .end-icon i{
    color: white;
    background-color: #29313a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
     display: flex;
    justify-content: center;
    align-items: center;
}

