* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

body {
    font-family: Arial, sans-serif;
    background-color: #FAFAFA;
    position: relative;
}

body::before {
    /*content: "";*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-image: url('../img/webimage.jpg');  Your image path */
    background-size: cover;
    min-height: 200vh;
    background-position: center center;
    opacity: 0.1;
    z-index: 0.2;
    flex-grow: 1;
}

  .container {
    display: block;
    width: 100%;
    height: 100vh;
  }

  /*.sidebar {
    width: auto;
    background-color: #FAFAFA;
    color: white;
    padding: 1%;
    display: block;
    flex-direction: column;
    align-items: center;
    position: fixed;
    height:100%;
  }*/

  .sidebar {
    width: 17%;
    background-color: #FAFAFA;
    color: #333;
    padding: 1%;
    display: block;
    flex-direction: column;
    align-items: center;
    position: fixed;
    height: 100%;
    left: 0;
    top: 0;
    /* Removed transform: translateX(-100%); from default state */
    transition: transform 0.3s ease-in-out;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    z-index: 1000;
    /* Add this to ensure it's open by default */
    transform: translateX(0); /* Sidebar starts open */
  }

  .sidebar:not(.open) {
    transform: translateX(-100%); /* This will hide it when 'open' class is removed */
  }

  .sidebar-toggle {
    position: fixed;
    top: 3%;
    /* Initial position for an OPEN sidebar (arrow points right to close it) */
    left: 100%;
    transform: translateY(-50%);
    background-color: #FAFAFA;
    color: #333;
    border: none;
    padding: 10px 5px;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    z-index: 1001;
    transition: left 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

  /* Adjust toggle position when sidebar is NOT open (i.e., when hidden) */
  .sidebar:not(.open) + .sidebar-toggle {
    left: 0; /* Move it to the very left edge of the screen */
  }

  /* Add a rule for when the sidebar IS open to explicitly set toggle position */
  .sidebar.open + .sidebar-toggle {
      left: 250px;
  }


  /* Styles for the arrow icon */
  .sidebar-toggle i {
    font-size: 1.2em;
  }


  .profile-placeholder {
    width: 100%;
    height: 200px;
    background-color: #444;
    margin-bottom: 30px;
    background-image: url('../img/cs-logo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

.profile-text {
    color: #001D77;
    font-size: 1.2em;
    text-align: center;
    padding-top: 1px;
    padding-bottom: 10px;
    background-color:#FAFAFA;
    width: 100%;
    box-sizing: border-box;
}

  nav ul {
    list-style: none;
    width: 100%;
  }

  nav ul li {
    padding: 15px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    cursor: pointer;
  }

  nav ul li.active, nav ul li:hover {
    background-color: #ff5f5f;
  }

  .social-icons {
    margin-top: auto;
    display: flex;
    gap: 10px;
    font-size: 18px;
    color: #ff5f5f;
  }

  .content {
    flex-grow: 1;
    background-color: white;
    padding: 40px;
    min-height: 200vh;

    padding-left:20%;
    display: flex;
    flex-direction: column;
  }

  h1 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .underline {
    width: 50px;
    height: 4px;
    background-color: #ff5f5f;
    margin-bottom: 30px;
  }

  .about-section {
    display: flex;
    gap: 30px;
    margin-bottom: 0px;
    width: 100%;
  }



  .text {
    flex: 1;
  }

  .btn {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ff5f5f;
    border: none;
    color: white;
    cursor: pointer;
  }

  .skills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .skill {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .skill span {
    display: flex;
    justify-content: space-between;
  }

  .progress {
    width: 100%;
    height: 6px;
    background-color: #ddd;
    border-radius: 3px;
    overflow: hidden;
  }

  .bar {
    height: 100%;
    background-color: #ff5f5f;
  }

  .inactive-link{
    color:black

  }

  .image-placeholder {
    width: 50%;
    height: 20%;
    flex: 1;
    object-fit: contain;
  }



  .text-overlay {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.4);
  }

  .image-container {
    position: relative;
    width: 70%;
    margin: 0 auto;
  }

  .image-container img {
    width: 70%;
    height: auto;
    display: block;
  }



  .contact-info-section {
    flex: 1;
    background-color: #1a425f;
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 30px;
}

.contact-info-section h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.contact-info-section p {
    margin: 5px 0;
    line-height: 1.6;
}

.contact-info-section a {
    color: #fff;
    text-decoration: none;
}

.contact-info-section .underline {
    width: 30px;
    height: 3px;
    background-color: #00bcd4;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons i {
    font-size: 1.8em;
    color: #fff;
    transition: transform 0.3s ease;
}

.social-icons i:hover {
    transform: scale(1.1);
}

.enquiry-form-section {
    flex: 2;
    padding: 40px;
    background: linear-gradient(to right, #ffffff, #e0eafc);
    display: flex;
    flex-direction: column;
}

.enquiry-form-section h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
}

.enquiry-form-section p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-family: "Times New Roman", Times, serif;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #021e32;
    font-weight: bold;
    font-family: "Times New Roman", Times, serif;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
    font-family: "Times New Roman", Times, serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

.form-group.full-width {
    flex: none;
    width: 100%;
}

.send-enquiry-btn {
    background-color: #1a425f;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.send-enquiry-btn:hover {
    background-color: #133045;
}

.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.whatsapp-icon a {
    display: block;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-icon a:hover {
    transform: scale(1.1);
}

.whatsapp-icon i {
    color: #fff;
    font-size: 2.5em;
}

.container2 {
    display: flex;
    width: 80%;
    height: 92vh;
    position: fixed;
  }

@media (max-width: 800px) {
  .about-me-text-content p {
        font-size: 0.8em !important;
      }
      .photo-placeholder {
        height: 10%;
        width: 245%;
    }
    .aboutus-right-content {
      padding-left: 11px !important;
    }
    .container1 {
        flex-direction: column;
        width: 95%;
    }

    .contact-info-section, .enquiry-form-section {
        padding: 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .send-enquiry-btn {
        width: 100%;
    }
    .sidebar {
        width: 46%;
        }

    .contact-info-section h2, .enquiry-form-section h1 {
            font-size: 1.3em;
        }

        .contact-info-section p, .enquiry-form-section p, .form-group label {
            font-size: 0.9em;
        }

        .social-icons i {
            font-size: 1.5em;
        }

        .whatsapp-icon {
            bottom: 20px;
            right: 20px;
        }

        .whatsapp-icon a {
            width: 50px;
            height: 50px;
        }

        .whatsapp-icon i {
            font-size: 2em;
        }
        /* Main content should take full width when sidebar is collapsed */
            .content {
                padding-left: 10px; /* Adjust as needed for small screens */
                padding-right: 10px;
            }

            /* When sidebar is open, push content to the right */
            .sidebar.open ~ .content {
                padding-left: 260px; /* sidebar width + padding/gap */
            }

            .main-content,
            .sidebar-content {
                flex: none;
                width: 100%;
                padding-right: 0;
                padding-left: 0;
            }
            .aboutus-content {
                padding: 5px;
                font-size: 0.8em !important;
                word-spacing: 3px !important;
            }

            .aboutus-placeholder-container {
                margin-left: 5px;
                width: 100% !important;
            }

        /*.container {
            position:fixed !important;
          }*/

          .image-popup ul,
          .image-popup ol {
            text-align: justify;
            font-size: 0.8em !important;
            word-spacing: 3px !important;
          }
        .image-popup p {
          text-align: justify;
          font-family: "Times New Roman", Times, serif;
          font-size: 1em !important;
          word-spacing: 3px !important;
        }
        .photo-placeholder label{
                font-size: 1em !important;
            }

        .container2 {
            height: 170vh;
            position: absolute;
        }

        .profile-text {
            font-size: 1.1em;
           }
           .center-div {
               width: 85% !important;
               margin-top: 34% !important;
           }
}


#enquiry-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #007bff;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }

  #enquiry-link:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }

  #enquiry-link:active {
    background-color: #004085;
    border-color: #004085;
  }

  .service-image {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 10px;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
  }



  .photo-container {
    position: relative;
    width: 40%;
    height: 200px;
    margin: 0 auto;
  }

  .photo-container img {
    width: 100%;
    height: auto;
    display: block;
  }

  .photo-placeholder-container {
  position: relative;
  display: inline-block;
  width: calc(25% - 22.5px);
  margin-bottom: 20px;
}

.photo-placeholder {
  cursor: pointer;
  padding: 27px;
  border: 1px solid #ccc;
  background-color:#051C7B;
  position: relative;
  opacity: 0.9;
}

.photo-placeholder label {
  color:white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: top 0.3s ease-out, color 0.3s ease-out, transform 0.3s ease-out;
  white-space: nowrap;
  font-family: "Times New Roman", Times, serif;
}

.photo-placeholder:hover label {
  top: 0;
  transform: translate(-50%, 0);
  color: red;
  font-family: "Times New Roman", Times, serif;
}

.image-popup {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(10px);
  border: 1px solid #ddd;
  background-color: #F0F0F0;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: 30vw;
  max-width: 300px;
}

.image-popup img {
  max-width: 300px;
  height: auto;
  display: block;
}

.image-popup ul,
.image-popup ol {
  list-style-position: inside;
  padding-left: 20px;
  font-family: "Times New Roman", Times, serif;
  text-align: justify;
  font-size: 1.1em;
  word-spacing: 5px;
  color: #021e32;
}

.image-popup p {
  text-align: justify;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.1em;
  word-spacing: 5px;
  color: #021e32;
}

.service-page-box {
  background-color: #E2EBFD;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 15px;
  width: 95%;
  min-height: 80vh;
  margin: 15px auto;
  position: relative;
  z-index: 1;
  opacity: 1;
}

.image-popup img {
  width:100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.text p {
  text-align: justify;
  color:   #021e32;
}

.text ul {
  text-align: justify;
  color:   #021e32;
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.aboutus-content {
    flex: 3;
    padding: 10px;
    box-sizing: border-box;
    margin: 5px;
    font-size: 1.1em;
    word-spacing: 5px;
}
.right-content{
flex:1;
height: 100%;
padding:10px;
}
.aboutus-right-content {
    flex: 1;
    padding-left: 20px;
    box-sizing: border-box;
    /*border: 2px solid black;*/
    /*background-color: #f0f0f0;*/
    /*box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);*/
    text-align: center;
    height:52%
}



.aboutus-placeholder-container {
    position: relative;
    width: 90%;
    margin: 10px 0;
 }

.home-info-section {
  text-align: center;
  margin-top: 20px;
  clear: both;
}

.passport-photo {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
}

.passport-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.home-contact-details p {
  color: blue;
  font-size: 16px;
  margin: 5px 0;
}

.home-contact-details a {
  color: blue;
  text-decoration: none;
  font-family: "Times New Roman", Times, serif;
}

.contact-details a:hover {
  text-decoration: underline;
  font-family: "Times New Roman", Times, serif;
}

.center-div {
  background-color: #F0F0F0;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 30%; /* Adjust width as needed */
  margin-left:30%;
  margin-top: 10%;
}

.form-group-login {
  margin-bottom: 15px;
  text-align: left;
}

.form-group-login label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.form-group-login input[type="text"],
.form-group-login input[type="password"] {
  width: calc(100% - 20px);
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.buttons {
  margin-top: 20px;
}

.buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  margin: 0 10px;
  transition: background-color 0.3s ease;
}

.buttons button.login-btn {
  background-color: #2F546F;
  color: white;
}

.buttons button.login-btn:hover {
  background-color: #244256;
}

.buttons button.cancel-btn {
  background-color: #ccc;
  color: #333;
}

.buttons button.cancel-btn:hover {
  background-color: #bbb;
}

.container-login {
    display: grid;
    width: 80%;
    height: 50%;
    position: fixed;
  }

  .container-blog {
    display: flex;
    width: 100%;
    height: 100vh;
    position: relative;
  }

  .form-group label{
    color:#021e32
    font-family: "Times New Roman", Times, serif;
  }

  .enquiry-form-section h1{
    color:#021e32
    font-family: "Times New Roman", Times, serif;
  }

  .enquiry-form-section p{
    color:#021e32
    font-family: "Times New Roman", Times, serif;
  }
  .about-me-pic-wrapper {
          flex-shrink: 0;
          width: 50%;
          height: 15%;
          margin-left: 12%;
          margin-top:7%;
      }
  .about-me-text-content {
          flex-grow: 1;
          font-size: 1.1em;
          word-spacing: 5px;
          text-align: justify;
      }
      .about-me-text-content p {
          color: #021e32;
          margin-bottom: 1rem;
          font-family: "Times New Roman", Times, serif;
      }

      .container-wrapper {
              max-width: 100%;
              background-color: #ffffff;
              /*border-radius: 0.75rem;*/
              /*box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);*/
              padding-top: 1.5rem;
              margin-bottom: 2rem;
          }
          @media (min-width: 768px) {
              .container-wrapper {
                  padding-top: 1rem;
              }
          }

          .about-me-content {
                  padding: 1.5rem; /* p-6 */
                  display: flex; /* flex */
                  flex-direction: column; /* flex-col */
                  align-items: flex-start; /* items-start */
                  row-gap: 1.5rem; /* space-y-6 */
              }
              @media (min-width: 768px) { /* md:p-8, md:flex-row, md:items-center, md:space-y-0, md:space-x-6 */
                  .about-me-content {
                      padding: 2rem;
                      flex-direction: row;
                      align-items: center;
                      row-gap: 0;
                      column-gap: 1.5rem;
                  }
              }

              nav ul li a {
                text-decoration: none;
              }