*{
    margin: 0;
    font-family: arial;
    border:border-box ;
    scroll-behavior: smooth;
}

/* box1 */

.navbar{
    height: 40px;
    background-color: #5250e3;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.nav-logo{
    height: 50px;
    width: 100px;
    
}
.logo{
    height: 50px;
    width: 100%;
    background-image: url("logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 0.5rem;
}
.border{
    border: 1.5px solid transparent;
}

.border:hover{
    border: 1.5px solid white;
}


/* box2 */
.contact-bar{
  height: 50px;
  width: 100%;
  background-color: #1e1e2f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  /* margin-top: 2px; */
  font-size: 1rem;
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
}
.location-icon{
    display: flex;
    align-self: center;
    margin-right: 40px;
    position: absolute; right: 0;
    padding-bottom: 10px;
}

.location-1{
    font-size: 0.8rem;
    margin-left: 4px;
}
.location-2{
    font-size: 0.8rem;
    margin-left: 4px;
}


.nav-location{
    height: 50px;
    margin-top: 10px;
}

/* panel */


.panel{
    height: 50px;
    width: 100%;
    font-family: 'Courier New', Courier, monospace;
    color: white; /*#4a4a58;*/
    background-color: #1e1e2f; /* #d2d2d5 343443 4a4a58*/
    display: flex;
    align-items: center;
    text-align: right;
    justify-content: space-evenly;
    margin-top: 40px;
    position: fixed; /* Set the navbar to fixed position */
    /* top: 0; Position the navbar at the top of the page */
}
.panel-option{
  display: flex;
  padding-left: 630px;
  margin-right: 0px;
}
.panel-option p {
    display: inline;
    
    font-size: 15px;
    font-weight: 400;
    margin-left: 40px;
    /* padding: 15px 15px; */
}


 .panel-option a {
    display: inline-block; /* Converts anchor to a block element  */
    padding: 15px 15px;
    /* background-color: #4CAF50; */
    color: white;
    text-decoration: none;
    /* margin-bottom: 5px; */
    text-align: center;
    /* border-radius: 5px; */
  }

.panel-option  a:hover {
    background-color: #343443;
  }  


.sitehead p {
    /* font-family: "Open Sans", sans-serif;   */
    font-family: 'Enriqueta', sans-serif;
    display: inline;
    margin-left: 130px;
    font-size: 2rem;
    position: absolute; left: 40px;top: 0;
    padding-bottom: 10px;
}

.siteheaddesignation p {
    /* font-family: "Open Sans", sans-serif;   */
    font-family: 'Enriqueta', sans-serif;
    display: inline;
    margin-left: 160px;
    font-size: 1.15rem;
    text-align: center;
    position: absolute; left: 0;top: 0;
}

.siteheaddesignation img {
    height: 90px;
    /* border: 4px solid #fbfcf8; */
    position: fixed; 
    top: 0px; 
    left: 60px;
    
    /* width: 120px; */
    /* object-fit: contain; */
}


.panel-option p:hover{
    border:1px #343443;
}
.panel-option{
    width: 60%;
    font-size: 0.85rem;
}

.gendoc1{
    float: right;
}




/* Footer */

footer{
    margin-top: 15px;
}
.foot-panel1{
    background-color: #37475a;
    color: white;
    height: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 0.85rem;
}
.foot-panel2{
    background-color: #222f3d;
    color: white;
    height: 300px;
    display: flex;
    justify-content: space-evenly;
}
ul{
    margin-top: 20px;
}
ul a {
    display: block;
    font-size: 0.85rem;
    margin-top: 10px;
    color: #dddddd;
}
.logo2{
    height: 50px;
    width: 100%;
    background-image: url("logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 0.5rem;
    margin-left: 45%;
}
.foot-panel3{
    background-color: #222f3d;
    border-top: 0.5px solid white;
    height: 70px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.foot-panel4{
    background-color: #0f1111;
    color: white;
    height: 80px;
    text-align: center;
    font-size: 0.7rem;
}
.pages{
    padding-top: 25px;
}
.copyright{
    padding-top: 5px;
}

/* ********************************* SERVICE SECTION *************************************** */
    .services-section {
      background-color: #e8e9eb; /*c5c6d0  f9f9f9*/
      display: block;
      padding: 60px 20px;
      text-align: center;
      padding-top: 120px;
    }

    .services-section h2 {
      font-size: 36px;
      margin-bottom: 10px;
      color: #333;
    }

    .services-section p {
      font-size: 16px;
      color: #777;
      margin-bottom: 40px;
    }

    .services-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .service-box {
      background-color: #fff;
      border-radius: 8px;
      padding: 30px 20px;
      width: 300px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .service-box i {
      font-size: 40px;
      border: #007BFF;
      color: #007BFF;
      margin-bottom: 15px;
    }

    .service-box img {
      width: 300px;
      height: 172px;
      border-radius: 15px;
      align-items: center;
      object-fit: contain; /* Fit image inside, maintain aspect ratio */
    }

    .service-box h3 {
      font-size: 22px;
      color: #333;
      margin-bottom: 10px;
      margin-top: 10px;
    }

    .service-box p {
      font-size: 15px;
      color: #555;
    }

/* ********************************* ABOUT US SECTION *************************************** */

  .about-section {
    background-color: #ffffff;
    padding: 40px 20px;
    padding-top: 120px;
  }

  .about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    gap: 40px;
  }

  .about-image {
    flex: 1 1 400px;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .about-content {
    flex: 1 1 400px;
  }
  .about-content i {
    flex: 1 1 400px;
    color: #333;
    font-size: 16px;
  }
  .about-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
  }

  .about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }

    .about-content h2 {
      font-size: 30px;
    }

    .about-content p {
      font-size: 15px;
    }
  }

 /* ******************************* TESTIMONIAL SECTION GPT START ***************************** */
    
    .testimonials-section {
      padding: 40px 20px;
      background-color: #ffffff;
      text-align: center;
      padding-top: 120px;
    }

    .testimonials-section h2 {
      font-size: 32px;
      margin-bottom: 40px;
      color: #333;
    }

    .testimonials-container {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
    }

    .testimonial {
      background-color: #fafafa;
      border: 1px solid #e0e0e0;
      padding: 30px;
      border-radius: 10px;
      width: 300px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }

    .testimonial:hover {
      transform: translateY(-5px);
    }

    .testimonial img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .testimonial h4 {
      font-size: 18px;
      color: #111;
      margin-bottom: 10px;
    }

    .testimonial p {
      font-size: 15px;
      color: #666;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .testimonials-container {
        flex-direction: column;
        align-items: center;
      }
    }

 /* ******************************* TESTIMONIAL SECTION GPT END ***************************** */

 /* ******************************* FOOTER SECTION GPT START ***************************** */

    .footer {
      background-color: #1e1e2f;
      color: #ffffffcc;
      padding-top: 40px;
      width: 100%;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      /* max-width: 1200px; */
      width: 100%;
      margin: 0 auto;
    }

    .footer-logo {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #ffffffcc;
    }

    .footer-column {
      flex: 1 1 200px;
      margin-bottom: 20px;
      margin-left: 128px;
    }

    .footer-column h4 {
      font-size: 16px;
      margin-bottom: 10px;
      color: #ffffffcc;
    }

    .footer-column a {
      display: block;
      color: #ffffff99;
      text-decoration: none;
      margin-bottom: 8px;
      font-size: 14px;
      transition: color 0.3s;
    }

    .footer-column2 {
      flex: 1 1 200px;
      margin-bottom: 20px;
    }
    .footer-column2 h4 {
      font-size: 16px;
      margin-bottom: 10px;
      color: #ffffffcc;
    }

    .footer-column2 p, i {
      display: inline-block;
      vertical-align: middle; /* Align them nicely vertically */
      margin-bottom: 15px; /* Remove default margin of p */
      color: #ffffff99;
      font-size: 14px;
    }
    .footer-column2 i {
      margin-left: 8px; /* Optional spacing between p and i */
      
 
    }
    .footer-column a:hover {
      color: #00bcd4;
    }

    .footer-bottom {
      padding: 5px 15px;
      text-align: center;
      /* padding-top: 10px; */
      border-top: 1px solid #333;
      font-size: 14px;
      color: #ffffff80;
      /* height: fit-content; */
    }

    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 10px;
    }

    .social-icons a {
      color: #ffffffcc;
      font-size: 20px;
      transition: color 0.3s;
    }

    .social-icons i:hover {
      color: #00bcd4;
    }


    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        text-align: center;
      }

      .footer-column {
        margin-bottom: 30px;
      }

      .social-icons {
        justify-content: center;
      }
    }

 /* ******************************* FOOTER SECTION GPT END ***************************** */

 /* ******************************* CONTACT SECTION GPT START ***************************** */



 .contact-section {
    margin: 0;
      font-family: Arial, sans-serif;
      padding: 40px 20px;
      background-color: #e8e9eb; /*f9f9f9*/
      /* max-width: 1200px; */
      margin: auto;
      padding-top: 120px;
    }
  
    .contact-section-form-area{
      max-width: 800px;
      margin: auto;
    }

    .contact-section h2 {
      text-align: center;
      font-size: 32px;
      margin-bottom: 10px;
      color: #333;
    }

    .contact-section p {
      text-align: center;
      color: #666;
      margin-bottom: 40px;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
      resize: vertical;
    }

    .contact-form textarea {
      min-height: 120px;
    }

    .contact-form button {
      background-color: #007BFF;
      color: #fff;
      padding: 15px;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .contact-form button:hover {
      background-color: #0056b3;
    }

    @media (max-width: 600px) {
      .contact-section {
        padding: 40px 15px;
      }
    }

 /* ******************************* CONTACT SECTION GPT END ***************************** */

